@sapui5/types 1.120.6 → 1.120.8

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 (51) hide show
  1. package/package.json +1 -1
  2. package/types/sap.ca.ui.d.ts +1 -1
  3. package/types/sap.chart.d.ts +175 -43
  4. package/types/sap.f.d.ts +1484 -843
  5. package/types/sap.fe.core.d.ts +1 -1
  6. package/types/sap.fe.macros.d.ts +1 -1
  7. package/types/sap.fe.navigation.d.ts +1 -1
  8. package/types/sap.fe.placeholder.d.ts +1 -1
  9. package/types/sap.fe.templates.d.ts +1 -1
  10. package/types/sap.fe.test.d.ts +1 -1
  11. package/types/sap.fe.tools.d.ts +1 -1
  12. package/types/sap.gantt.d.ts +1 -1
  13. package/types/sap.insights.d.ts +1 -1
  14. package/types/sap.m.d.ts +12919 -8169
  15. package/types/sap.makit.d.ts +367 -185
  16. package/types/sap.me.d.ts +229 -35
  17. package/types/sap.ndc.d.ts +40 -9
  18. package/types/sap.sac.df.d.ts +1 -1
  19. package/types/sap.suite.ui.commons.d.ts +1 -1
  20. package/types/sap.suite.ui.generic.template.d.ts +201 -126
  21. package/types/sap.suite.ui.microchart.d.ts +966 -392
  22. package/types/sap.tnt.d.ts +190 -95
  23. package/types/sap.ui.codeeditor.d.ts +46 -17
  24. package/types/sap.ui.commons.d.ts +1992 -668
  25. package/types/sap.ui.comp.d.ts +3653 -2889
  26. package/types/sap.ui.core.d.ts +5281 -3347
  27. package/types/sap.ui.dt.d.ts +1 -1
  28. package/types/sap.ui.export.d.ts +73 -65
  29. package/types/sap.ui.fl.d.ts +95 -46
  30. package/types/sap.ui.integration.d.ts +446 -387
  31. package/types/sap.ui.layout.d.ts +1116 -634
  32. package/types/sap.ui.mdc.d.ts +1907 -1277
  33. package/types/sap.ui.richtexteditor.d.ts +112 -55
  34. package/types/sap.ui.rta.d.ts +7 -7
  35. package/types/sap.ui.suite.d.ts +42 -10
  36. package/types/sap.ui.support.d.ts +31 -23
  37. package/types/sap.ui.table.d.ts +898 -616
  38. package/types/sap.ui.testrecorder.d.ts +1 -1
  39. package/types/sap.ui.unified.d.ts +1834 -1207
  40. package/types/sap.ui.ux3.d.ts +1279 -477
  41. package/types/sap.ui.webc.common.d.ts +7 -5
  42. package/types/sap.ui.webc.fiori.d.ts +836 -213
  43. package/types/sap.ui.webc.main.d.ts +2670 -591
  44. package/types/sap.uiext.inbox.d.ts +207 -36
  45. package/types/sap.ushell.d.ts +1024 -782
  46. package/types/sap.ushell_abap.d.ts +1 -1
  47. package/types/sap.uxap.d.ts +571 -316
  48. package/types/sap.viz.d.ts +4030 -2318
  49. package/types/sap.zen.commons.d.ts +1 -1
  50. package/types/sap.zen.crosstab.d.ts +1 -1
  51. package/types/sap.zen.dsh.d.ts +1 -1
package/types/sap.me.d.ts CHANGED
@@ -1,11 +1,11 @@
1
- // For Library Version: 1.120.6
1
+ // For Library Version: 1.120.8
2
2
 
3
3
  declare module "sap/me/library" {
4
4
  /**
5
+ * Type of Design for the Calendar
6
+ *
5
7
  * @deprecated (since 1.34)
6
8
  * @experimental (since 1.12) - API is not yet finished and might change completely
7
- *
8
- * Type of Design for the Calendar
9
9
  */
10
10
  export enum CalendarDesign {
11
11
  /**
@@ -18,10 +18,10 @@ declare module "sap/me/library" {
18
18
  Approval = "Approval",
19
19
  }
20
20
  /**
21
+ * Type code for a calendar event
22
+ *
21
23
  * @deprecated (since 1.34)
22
24
  * @experimental (since 1.12) - API is not yet finished and might change completely
23
- *
24
- * Type code for a calendar event
25
25
  */
26
26
  export enum CalendarEventType {
27
27
  /**
@@ -50,10 +50,10 @@ declare module "sap/me/library" {
50
50
  Type10 = "Type10",
51
51
  }
52
52
  /**
53
+ * Selection Mode for the Calendar
54
+ *
53
55
  * @deprecated (since 1.34)
54
56
  * @experimental (since 1.12) - API is not yet finished and might change completely
55
- *
56
- * Selection Mode for the Calendar
57
57
  */
58
58
  export enum CalendarSelectionMode {
59
59
  /**
@@ -89,10 +89,10 @@ declare module "sap/me/Calendar" {
89
89
  import Event from "sap/ui/base/Event";
90
90
 
91
91
  /**
92
+ * This is the Calendar control
93
+ *
92
94
  * @deprecated (since 1.26.0) - This control was experimental since 1.12. Please use the sap.ui.unified.Calendar
93
95
  * instead!
94
- *
95
- * This is the Calendar control
96
96
  */
97
97
  export default class Calendar extends Control {
98
98
  /**
@@ -132,6 +132,7 @@ declare module "sap/me/Calendar" {
132
132
  *
133
133
  * `oClassInfo` might contain the same kind of information as described in {@link sap.ui.core.Control.extend}.
134
134
  *
135
+ *
135
136
  * @returns Created class / constructor function
136
137
  */
137
138
  static extend<T extends Record<string, unknown>>(
@@ -152,6 +153,7 @@ declare module "sap/me/Calendar" {
152
153
  /**
153
154
  * Returns a metadata object for class sap.me.Calendar.
154
155
  *
156
+ *
155
157
  * @returns Metadata object describing this class
156
158
  */
157
159
  static getMetadata(): ElementMetadata;
@@ -160,6 +162,7 @@ declare module "sap/me/Calendar" {
160
162
  * methods. IMPORTANT: The only valid values for the created Date are: year, month, day. Disregard
161
163
  * any other value: hours, minutes, seconds, milliseconds...
162
164
  *
165
+ *
163
166
  * @returns The Date, parsed from the input string.
164
167
  */
165
168
  static parseDate(
@@ -177,6 +180,7 @@ declare module "sap/me/Calendar" {
177
180
  *
178
181
  * event fired when tap to next or previous button and currentDate is updated
179
182
  *
183
+ *
180
184
  * @returns Reference to `this` in order to allow method chaining
181
185
  */
182
186
  attachChangeCurrentDate(
@@ -203,6 +207,7 @@ declare module "sap/me/Calendar" {
203
207
  *
204
208
  * event fired when tap to next or previous button and currentDate is updated
205
209
  *
210
+ *
206
211
  * @returns Reference to `this` in order to allow method chaining
207
212
  */
208
213
  attachChangeCurrentDate(
@@ -223,6 +228,7 @@ declare module "sap/me/Calendar" {
223
228
  *
224
229
  * when the range of selected dates changes
225
230
  *
231
+ *
226
232
  * @returns Reference to `this` in order to allow method chaining
227
233
  */
228
234
  attachChangeRange(
@@ -248,6 +254,7 @@ declare module "sap/me/Calendar" {
248
254
  *
249
255
  * when the range of selected dates changes
250
256
  *
257
+ *
251
258
  * @returns Reference to `this` in order to allow method chaining
252
259
  */
253
260
  attachChangeRange(
@@ -268,6 +275,7 @@ declare module "sap/me/Calendar" {
268
275
  *
269
276
  * event fired when a date is tapped
270
277
  *
278
+ *
271
279
  * @returns Reference to `this` in order to allow method chaining
272
280
  */
273
281
  attachTapOnDate(
@@ -293,6 +301,7 @@ declare module "sap/me/Calendar" {
293
301
  *
294
302
  * event fired when a date is tapped
295
303
  *
304
+ *
296
305
  * @returns Reference to `this` in order to allow method chaining
297
306
  */
298
307
  attachTapOnDate(
@@ -311,6 +320,7 @@ declare module "sap/me/Calendar" {
311
320
  *
312
321
  * The passed function and listener object must match the ones used for event registration.
313
322
  *
323
+ *
314
324
  * @returns Reference to `this` in order to allow method chaining
315
325
  */
316
326
  detachChangeCurrentDate(
@@ -328,6 +338,7 @@ declare module "sap/me/Calendar" {
328
338
  *
329
339
  * The passed function and listener object must match the ones used for event registration.
330
340
  *
341
+ *
331
342
  * @returns Reference to `this` in order to allow method chaining
332
343
  */
333
344
  detachChangeRange(
@@ -345,6 +356,7 @@ declare module "sap/me/Calendar" {
345
356
  *
346
357
  * The passed function and listener object must match the ones used for event registration.
347
358
  *
359
+ *
348
360
  * @returns Reference to `this` in order to allow method chaining
349
361
  */
350
362
  detachTapOnDate(
@@ -358,10 +370,10 @@ declare module "sap/me/Calendar" {
358
370
  oListener?: object
359
371
  ): this;
360
372
  /**
361
- * @ui5-protected Do not call from applications (only from related classes in the framework)
362
- *
363
373
  * Fires event {@link #event:changeCurrentDate changeCurrentDate} to attached listeners.
364
374
  *
375
+ * @ui5-protected Do not call from applications (only from related classes in the framework)
376
+ *
365
377
  * @returns Reference to `this` in order to allow method chaining
366
378
  */
367
379
  fireChangeCurrentDate(
@@ -371,10 +383,10 @@ declare module "sap/me/Calendar" {
371
383
  mParameters?: Calendar$ChangeCurrentDateEventParameters
372
384
  ): this;
373
385
  /**
374
- * @ui5-protected Do not call from applications (only from related classes in the framework)
375
- *
376
386
  * Fires event {@link #event:changeRange changeRange} to attached listeners.
377
387
  *
388
+ * @ui5-protected Do not call from applications (only from related classes in the framework)
389
+ *
378
390
  * @returns Reference to `this` in order to allow method chaining
379
391
  */
380
392
  fireChangeRange(
@@ -384,10 +396,10 @@ declare module "sap/me/Calendar" {
384
396
  mParameters?: Calendar$ChangeRangeEventParameters
385
397
  ): this;
386
398
  /**
387
- * @ui5-protected Do not call from applications (only from related classes in the framework)
388
- *
389
399
  * Fires event {@link #event:tapOnDate tapOnDate} to attached listeners.
390
400
  *
401
+ * @ui5-protected Do not call from applications (only from related classes in the framework)
402
+ *
391
403
  * @returns Reference to `this` in order to allow method chaining
392
404
  */
393
405
  fireTapOnDate(
@@ -401,6 +413,7 @@ declare module "sap/me/Calendar" {
401
413
  *
402
414
  * the center date where the month/week will be built around
403
415
  *
416
+ *
404
417
  * @returns Value of property `currentDate`
405
418
  */
406
419
  getCurrentDate(): string;
@@ -411,6 +424,7 @@ declare module "sap/me/Calendar" {
411
424
  *
412
425
  * Default value is `50`.
413
426
  *
427
+ *
414
428
  * @returns Value of property `dayHeight`
415
429
  */
416
430
  getDayHeight(): int;
@@ -420,6 +434,7 @@ declare module "sap/me/Calendar" {
420
434
  * Array of day names, default value is sap.m.getLocaleData().getDays("abbreviated") Check sap.ui.core.LocaleData
421
435
  * documentation for more info.
422
436
  *
437
+ *
423
438
  * @returns Value of property `days`
424
439
  */
425
440
  getDays(): any;
@@ -430,6 +445,7 @@ declare module "sap/me/Calendar" {
430
445
  *
431
446
  * Default value is `45`.
432
447
  *
448
+ *
433
449
  * @returns Value of property `dayWidth`
434
450
  */
435
451
  getDayWidth(): int;
@@ -440,6 +456,7 @@ declare module "sap/me/Calendar" {
440
456
  *
441
457
  * Default value is `Approval`.
442
458
  *
459
+ *
443
460
  * @returns Value of property `design`
444
461
  */
445
462
  getDesign(): CalendarDesign | keyof typeof CalendarDesign;
@@ -448,6 +465,7 @@ declare module "sap/me/Calendar" {
448
465
  *
449
466
  * Array of specific dates (strings or Date objects) that will be disabled/non interactive
450
467
  *
468
+ *
451
469
  * @returns Value of property `disabledDates`
452
470
  */
453
471
  getDisabledDates(): any;
@@ -457,6 +475,7 @@ declare module "sap/me/Calendar" {
457
475
  * Array of weekDays (as integers where 0=Sunday, 1=Monday etc) to be disabled. Interaction will be disabled
458
476
  * for these week days.
459
477
  *
478
+ *
460
479
  * @returns Value of property `disabledWeekDays`
461
480
  */
462
481
  getDisabledWeekDays(): any;
@@ -467,6 +486,7 @@ declare module "sap/me/Calendar" {
467
486
  *
468
487
  * Default value is `false`.
469
488
  *
489
+ *
470
490
  * @returns Value of property `enableMultiselection`
471
491
  */
472
492
  getEnableMultiselection(): boolean;
@@ -477,6 +497,7 @@ declare module "sap/me/Calendar" {
477
497
  *
478
498
  * Default value is `0`.
479
499
  *
500
+ *
480
501
  * @returns Value of property `firstDayOffset`
481
502
  */
482
503
  getFirstDayOffset(): int;
@@ -487,6 +508,7 @@ declare module "sap/me/Calendar" {
487
508
  *
488
509
  * Default value is `false`.
489
510
  *
511
+ *
490
512
  * @returns Value of property `hideMonthTitles`
491
513
  */
492
514
  getHideMonthTitles(): boolean;
@@ -497,6 +519,7 @@ declare module "sap/me/Calendar" {
497
519
  *
498
520
  * Default value is `false`.
499
521
  *
522
+ *
500
523
  * @returns Value of property `hideNavControls`
501
524
  */
502
525
  getHideNavControls(): boolean;
@@ -506,6 +529,7 @@ declare module "sap/me/Calendar" {
506
529
  * Array of month names, default value is sap.m.getLocaleData().getMonths("abbreviated") Check sap.ui.core.LocaleData
507
530
  * documentation for more info.
508
531
  *
532
+ *
509
533
  * @returns Value of property `months`
510
534
  */
511
535
  getMonths(): any;
@@ -517,6 +541,7 @@ declare module "sap/me/Calendar" {
517
541
  *
518
542
  * Default value is `1`.
519
543
  *
544
+ *
520
545
  * @returns Value of property `monthsPerRow`
521
546
  */
522
547
  getMonthsPerRow(): int;
@@ -527,6 +552,7 @@ declare module "sap/me/Calendar" {
527
552
  *
528
553
  * Default value is `1`.
529
554
  *
555
+ *
530
556
  * @returns Value of property `monthsToDisplay`
531
557
  */
532
558
  getMonthsToDisplay(): int;
@@ -541,6 +567,7 @@ declare module "sap/me/Calendar" {
541
567
  *
542
568
  * Default value is `SINGLE`.
543
569
  *
570
+ *
544
571
  * @returns Value of property `selectionMode`
545
572
  */
546
573
  getSelectionMode():
@@ -551,6 +578,7 @@ declare module "sap/me/Calendar" {
551
578
  *
552
579
  * boolean that sets the view to week mode or month mode
553
580
  *
581
+ *
554
582
  * @returns Value of property `singleRow`
555
583
  */
556
584
  getSingleRow(): boolean;
@@ -561,6 +589,7 @@ declare module "sap/me/Calendar" {
561
589
  *
562
590
  * Default value is `false`.
563
591
  *
592
+ *
564
593
  * @returns Value of property `swipeToNavigate`
565
594
  */
566
595
  getSwipeToNavigate(): boolean;
@@ -571,6 +600,7 @@ declare module "sap/me/Calendar" {
571
600
  *
572
601
  * Default value is `true`.
573
602
  *
603
+ *
574
604
  * @returns Value of property `visible`
575
605
  */
576
606
  getVisible(): boolean;
@@ -581,6 +611,7 @@ declare module "sap/me/Calendar" {
581
611
  *
582
612
  * Default value is `1`.
583
613
  *
614
+ *
584
615
  * @returns Value of property `weeksPerRow`
585
616
  */
586
617
  getWeeksPerRow(): int;
@@ -591,12 +622,14 @@ declare module "sap/me/Calendar" {
591
622
  *
592
623
  * Default value is `'100%'`.
593
624
  *
625
+ *
594
626
  * @returns Value of property `width`
595
627
  */
596
628
  getWidth(): CSSSize;
597
629
  /**
598
630
  * Sets the current date of the calendar.
599
631
  *
632
+ *
600
633
  * @returns `this` to allow method chaining.
601
634
  */
602
635
  setCurrentDate(
@@ -614,6 +647,7 @@ declare module "sap/me/Calendar" {
614
647
  *
615
648
  * Default value is `50`.
616
649
  *
650
+ *
617
651
  * @returns Reference to `this` in order to allow method chaining
618
652
  */
619
653
  setDayHeight(
@@ -630,6 +664,7 @@ declare module "sap/me/Calendar" {
630
664
  *
631
665
  * When called with a value of `null` or `undefined`, the default value of the property will be restored.
632
666
  *
667
+ *
633
668
  * @returns Reference to `this` in order to allow method chaining
634
669
  */
635
670
  setDays(
@@ -647,6 +682,7 @@ declare module "sap/me/Calendar" {
647
682
  *
648
683
  * Default value is `45`.
649
684
  *
685
+ *
650
686
  * @returns Reference to `this` in order to allow method chaining
651
687
  */
652
688
  setDayWidth(
@@ -664,6 +700,7 @@ declare module "sap/me/Calendar" {
664
700
  *
665
701
  * Default value is `Approval`.
666
702
  *
703
+ *
667
704
  * @returns Reference to `this` in order to allow method chaining
668
705
  */
669
706
  setDesign(
@@ -679,6 +716,7 @@ declare module "sap/me/Calendar" {
679
716
  *
680
717
  * When called with a value of `null` or `undefined`, the default value of the property will be restored.
681
718
  *
719
+ *
682
720
  * @returns Reference to `this` in order to allow method chaining
683
721
  */
684
722
  setDisabledDates(
@@ -695,6 +733,7 @@ declare module "sap/me/Calendar" {
695
733
  *
696
734
  * When called with a value of `null` or `undefined`, the default value of the property will be restored.
697
735
  *
736
+ *
698
737
  * @returns Reference to `this` in order to allow method chaining
699
738
  */
700
739
  setDisabledWeekDays(
@@ -712,6 +751,7 @@ declare module "sap/me/Calendar" {
712
751
  *
713
752
  * Default value is `false`.
714
753
  *
754
+ *
715
755
  * @returns Reference to `this` in order to allow method chaining
716
756
  */
717
757
  setEnableMultiselection(
@@ -729,6 +769,7 @@ declare module "sap/me/Calendar" {
729
769
  *
730
770
  * Default value is `0`.
731
771
  *
772
+ *
732
773
  * @returns Reference to `this` in order to allow method chaining
733
774
  */
734
775
  setFirstDayOffset(
@@ -746,6 +787,7 @@ declare module "sap/me/Calendar" {
746
787
  *
747
788
  * Default value is `false`.
748
789
  *
790
+ *
749
791
  * @returns Reference to `this` in order to allow method chaining
750
792
  */
751
793
  setHideMonthTitles(
@@ -763,6 +805,7 @@ declare module "sap/me/Calendar" {
763
805
  *
764
806
  * Default value is `false`.
765
807
  *
808
+ *
766
809
  * @returns Reference to `this` in order to allow method chaining
767
810
  */
768
811
  setHideNavControls(
@@ -779,6 +822,7 @@ declare module "sap/me/Calendar" {
779
822
  *
780
823
  * When called with a value of `null` or `undefined`, the default value of the property will be restored.
781
824
  *
825
+ *
782
826
  * @returns Reference to `this` in order to allow method chaining
783
827
  */
784
828
  setMonths(
@@ -797,6 +841,7 @@ declare module "sap/me/Calendar" {
797
841
  *
798
842
  * Default value is `1`.
799
843
  *
844
+ *
800
845
  * @returns Reference to `this` in order to allow method chaining
801
846
  */
802
847
  setMonthsPerRow(
@@ -814,6 +859,7 @@ declare module "sap/me/Calendar" {
814
859
  *
815
860
  * Default value is `1`.
816
861
  *
862
+ *
817
863
  * @returns Reference to `this` in order to allow method chaining
818
864
  */
819
865
  setMonthsToDisplay(
@@ -831,6 +877,7 @@ declare module "sap/me/Calendar" {
831
877
  *
832
878
  * Default value is `SINGLE`.
833
879
  *
880
+ *
834
881
  * @returns Reference to `this` in order to allow method chaining
835
882
  */
836
883
  setSelectionMode(
@@ -848,6 +895,7 @@ declare module "sap/me/Calendar" {
848
895
  *
849
896
  * When called with a value of `null` or `undefined`, the default value of the property will be restored.
850
897
  *
898
+ *
851
899
  * @returns Reference to `this` in order to allow method chaining
852
900
  */
853
901
  setSingleRow(
@@ -865,6 +913,7 @@ declare module "sap/me/Calendar" {
865
913
  *
866
914
  * Default value is `false`.
867
915
  *
916
+ *
868
917
  * @returns Reference to `this` in order to allow method chaining
869
918
  */
870
919
  setSwipeToNavigate(
@@ -882,6 +931,7 @@ declare module "sap/me/Calendar" {
882
931
  *
883
932
  * Default value is `true`.
884
933
  *
934
+ *
885
935
  * @returns Reference to `this` in order to allow method chaining
886
936
  */
887
937
  setVisible(
@@ -899,6 +949,7 @@ declare module "sap/me/Calendar" {
899
949
  *
900
950
  * Default value is `1`.
901
951
  *
952
+ *
902
953
  * @returns Reference to `this` in order to allow method chaining
903
954
  */
904
955
  setWeeksPerRow(
@@ -916,6 +967,7 @@ declare module "sap/me/Calendar" {
916
967
  *
917
968
  * Default value is `'100%'`.
918
969
  *
970
+ *
919
971
  * @returns Reference to `this` in order to allow method chaining
920
972
  */
921
973
  setWidth(
@@ -1163,10 +1215,10 @@ declare module "sap/me/CalendarLegend" {
1163
1215
  import { PropertyBindingInfo } from "sap/ui/base/ManagedObject";
1164
1216
 
1165
1217
  /**
1218
+ * Legend for the calendar control
1219
+ *
1166
1220
  * @deprecated (since 1.34.0) - This control was experimental since 1.12. Please use the sap.ui.unified.CalendarLegend
1167
1221
  * instead!
1168
- *
1169
- * Legend for the calendar control
1170
1222
  */
1171
1223
  export default class CalendarLegend extends Control {
1172
1224
  /**
@@ -1206,6 +1258,7 @@ declare module "sap/me/CalendarLegend" {
1206
1258
  *
1207
1259
  * `oClassInfo` might contain the same kind of information as described in {@link sap.ui.core.Control.extend}.
1208
1260
  *
1261
+ *
1209
1262
  * @returns Created class / constructor function
1210
1263
  */
1211
1264
  static extend<T extends Record<string, unknown>>(
@@ -1226,6 +1279,7 @@ declare module "sap/me/CalendarLegend" {
1226
1279
  /**
1227
1280
  * Returns a metadata object for class sap.me.CalendarLegend.
1228
1281
  *
1282
+ *
1229
1283
  * @returns Metadata object describing this class
1230
1284
  */
1231
1285
  static getMetadata(): ElementMetadata;
@@ -1236,6 +1290,7 @@ declare module "sap/me/CalendarLegend" {
1236
1290
  *
1237
1291
  * Default value is `Approval`.
1238
1292
  *
1293
+ *
1239
1294
  * @returns Value of property `design`
1240
1295
  */
1241
1296
  getDesign(): CalendarDesign | keyof typeof CalendarDesign;
@@ -1246,6 +1301,7 @@ declare module "sap/me/CalendarLegend" {
1246
1301
  *
1247
1302
  * Default value is `true`.
1248
1303
  *
1304
+ *
1249
1305
  * @returns Value of property `expandable`
1250
1306
  */
1251
1307
  getExpandable(): boolean;
@@ -1256,6 +1312,7 @@ declare module "sap/me/CalendarLegend" {
1256
1312
  *
1257
1313
  * Default value is `true`.
1258
1314
  *
1315
+ *
1259
1316
  * @returns Value of property `expanded`
1260
1317
  */
1261
1318
  getExpanded(): boolean;
@@ -1264,6 +1321,7 @@ declare module "sap/me/CalendarLegend" {
1264
1321
  *
1265
1322
  * legend for normal
1266
1323
  *
1324
+ *
1267
1325
  * @returns Value of property `legendForNormal`
1268
1326
  */
1269
1327
  getLegendForNormal(): string;
@@ -1272,6 +1330,7 @@ declare module "sap/me/CalendarLegend" {
1272
1330
  *
1273
1331
  * legend for selected
1274
1332
  *
1333
+ *
1275
1334
  * @returns Value of property `legendForSelected`
1276
1335
  */
1277
1336
  getLegendForSelected(): string;
@@ -1280,6 +1339,7 @@ declare module "sap/me/CalendarLegend" {
1280
1339
  *
1281
1340
  * legend for selected 00
1282
1341
  *
1342
+ *
1283
1343
  * @returns Value of property `legendForSelected00`
1284
1344
  */
1285
1345
  getLegendForSelected00(): string;
@@ -1288,6 +1348,7 @@ declare module "sap/me/CalendarLegend" {
1288
1348
  *
1289
1349
  * legend for today
1290
1350
  *
1351
+ *
1291
1352
  * @returns Value of property `legendForToday`
1292
1353
  */
1293
1354
  getLegendForToday(): string;
@@ -1296,6 +1357,7 @@ declare module "sap/me/CalendarLegend" {
1296
1357
  *
1297
1358
  * legend for type 00
1298
1359
  *
1360
+ *
1299
1361
  * @returns Value of property `legendForType00`
1300
1362
  */
1301
1363
  getLegendForType00(): string;
@@ -1304,6 +1366,7 @@ declare module "sap/me/CalendarLegend" {
1304
1366
  *
1305
1367
  * legend for type 01
1306
1368
  *
1369
+ *
1307
1370
  * @returns Value of property `legendForType01`
1308
1371
  */
1309
1372
  getLegendForType01(): string;
@@ -1312,6 +1375,7 @@ declare module "sap/me/CalendarLegend" {
1312
1375
  *
1313
1376
  * legend for type 04
1314
1377
  *
1378
+ *
1315
1379
  * @returns Value of property `legendForType04`
1316
1380
  */
1317
1381
  getLegendForType04(): string;
@@ -1320,6 +1384,7 @@ declare module "sap/me/CalendarLegend" {
1320
1384
  *
1321
1385
  * legend for type 06
1322
1386
  *
1387
+ *
1323
1388
  * @returns Value of property `legendForType06`
1324
1389
  */
1325
1390
  getLegendForType06(): string;
@@ -1328,6 +1393,7 @@ declare module "sap/me/CalendarLegend" {
1328
1393
  *
1329
1394
  * legend for type 07
1330
1395
  *
1396
+ *
1331
1397
  * @returns Value of property `legendForType07`
1332
1398
  */
1333
1399
  getLegendForType07(): string;
@@ -1338,6 +1404,7 @@ declare module "sap/me/CalendarLegend" {
1338
1404
  *
1339
1405
  * Default value is `'12.5rem'`.
1340
1406
  *
1407
+ *
1341
1408
  * @returns Value of property `legendWidth`
1342
1409
  */
1343
1410
  getLegendWidth(): CSSSize;
@@ -1348,6 +1415,7 @@ declare module "sap/me/CalendarLegend" {
1348
1415
  *
1349
1416
  * Default value is `true`.
1350
1417
  *
1418
+ *
1351
1419
  * @returns Value of property `visible`
1352
1420
  */
1353
1421
  getVisible(): boolean;
@@ -1358,6 +1426,7 @@ declare module "sap/me/CalendarLegend" {
1358
1426
  *
1359
1427
  * Default value is `'auto'`.
1360
1428
  *
1429
+ *
1361
1430
  * @returns Value of property `width`
1362
1431
  */
1363
1432
  getWidth(): CSSSize;
@@ -1370,6 +1439,7 @@ declare module "sap/me/CalendarLegend" {
1370
1439
  *
1371
1440
  * Default value is `Approval`.
1372
1441
  *
1442
+ *
1373
1443
  * @returns Reference to `this` in order to allow method chaining
1374
1444
  */
1375
1445
  setDesign(
@@ -1387,6 +1457,7 @@ declare module "sap/me/CalendarLegend" {
1387
1457
  *
1388
1458
  * Default value is `true`.
1389
1459
  *
1460
+ *
1390
1461
  * @returns Reference to `this` in order to allow method chaining
1391
1462
  */
1392
1463
  setExpandable(
@@ -1404,6 +1475,7 @@ declare module "sap/me/CalendarLegend" {
1404
1475
  *
1405
1476
  * Default value is `true`.
1406
1477
  *
1478
+ *
1407
1479
  * @returns Reference to `this` in order to allow method chaining
1408
1480
  */
1409
1481
  setExpanded(
@@ -1419,6 +1491,7 @@ declare module "sap/me/CalendarLegend" {
1419
1491
  *
1420
1492
  * When called with a value of `null` or `undefined`, the default value of the property will be restored.
1421
1493
  *
1494
+ *
1422
1495
  * @returns Reference to `this` in order to allow method chaining
1423
1496
  */
1424
1497
  setLegendForNormal(
@@ -1434,6 +1507,7 @@ declare module "sap/me/CalendarLegend" {
1434
1507
  *
1435
1508
  * When called with a value of `null` or `undefined`, the default value of the property will be restored.
1436
1509
  *
1510
+ *
1437
1511
  * @returns Reference to `this` in order to allow method chaining
1438
1512
  */
1439
1513
  setLegendForSelected(
@@ -1449,6 +1523,7 @@ declare module "sap/me/CalendarLegend" {
1449
1523
  *
1450
1524
  * When called with a value of `null` or `undefined`, the default value of the property will be restored.
1451
1525
  *
1526
+ *
1452
1527
  * @returns Reference to `this` in order to allow method chaining
1453
1528
  */
1454
1529
  setLegendForSelected00(
@@ -1464,6 +1539,7 @@ declare module "sap/me/CalendarLegend" {
1464
1539
  *
1465
1540
  * When called with a value of `null` or `undefined`, the default value of the property will be restored.
1466
1541
  *
1542
+ *
1467
1543
  * @returns Reference to `this` in order to allow method chaining
1468
1544
  */
1469
1545
  setLegendForToday(
@@ -1479,6 +1555,7 @@ declare module "sap/me/CalendarLegend" {
1479
1555
  *
1480
1556
  * When called with a value of `null` or `undefined`, the default value of the property will be restored.
1481
1557
  *
1558
+ *
1482
1559
  * @returns Reference to `this` in order to allow method chaining
1483
1560
  */
1484
1561
  setLegendForType00(
@@ -1494,6 +1571,7 @@ declare module "sap/me/CalendarLegend" {
1494
1571
  *
1495
1572
  * When called with a value of `null` or `undefined`, the default value of the property will be restored.
1496
1573
  *
1574
+ *
1497
1575
  * @returns Reference to `this` in order to allow method chaining
1498
1576
  */
1499
1577
  setLegendForType01(
@@ -1509,6 +1587,7 @@ declare module "sap/me/CalendarLegend" {
1509
1587
  *
1510
1588
  * When called with a value of `null` or `undefined`, the default value of the property will be restored.
1511
1589
  *
1590
+ *
1512
1591
  * @returns Reference to `this` in order to allow method chaining
1513
1592
  */
1514
1593
  setLegendForType04(
@@ -1524,6 +1603,7 @@ declare module "sap/me/CalendarLegend" {
1524
1603
  *
1525
1604
  * When called with a value of `null` or `undefined`, the default value of the property will be restored.
1526
1605
  *
1606
+ *
1527
1607
  * @returns Reference to `this` in order to allow method chaining
1528
1608
  */
1529
1609
  setLegendForType06(
@@ -1539,6 +1619,7 @@ declare module "sap/me/CalendarLegend" {
1539
1619
  *
1540
1620
  * When called with a value of `null` or `undefined`, the default value of the property will be restored.
1541
1621
  *
1622
+ *
1542
1623
  * @returns Reference to `this` in order to allow method chaining
1543
1624
  */
1544
1625
  setLegendForType07(
@@ -1556,6 +1637,7 @@ declare module "sap/me/CalendarLegend" {
1556
1637
  *
1557
1638
  * Default value is `'12.5rem'`.
1558
1639
  *
1640
+ *
1559
1641
  * @returns Reference to `this` in order to allow method chaining
1560
1642
  */
1561
1643
  setLegendWidth(
@@ -1573,6 +1655,7 @@ declare module "sap/me/CalendarLegend" {
1573
1655
  *
1574
1656
  * Default value is `true`.
1575
1657
  *
1658
+ *
1576
1659
  * @returns Reference to `this` in order to allow method chaining
1577
1660
  */
1578
1661
  setVisible(
@@ -1590,6 +1673,7 @@ declare module "sap/me/CalendarLegend" {
1590
1673
  *
1591
1674
  * Default value is `'auto'`.
1592
1675
  *
1676
+ *
1593
1677
  * @returns Reference to `this` in order to allow method chaining
1594
1678
  */
1595
1679
  setWidth(
@@ -1700,10 +1784,10 @@ declare module "sap/me/OverlapCalendar" {
1700
1784
  import Event from "sap/ui/base/Event";
1701
1785
 
1702
1786
  /**
1787
+ * A calendar that allows to display events in a grid and show the overlapped events
1788
+ *
1703
1789
  * @deprecated (since 1.34.0) - This control was experimental since 1.12. Please use the sap.m.PlanningCalendar
1704
1790
  * instead!
1705
- *
1706
- * A calendar that allows to display events in a grid and show the overlapped events
1707
1791
  */
1708
1792
  export default class OverlapCalendar extends Control {
1709
1793
  /**
@@ -1743,6 +1827,7 @@ declare module "sap/me/OverlapCalendar" {
1743
1827
  *
1744
1828
  * `oClassInfo` might contain the same kind of information as described in {@link sap.ui.core.Control.extend}.
1745
1829
  *
1830
+ *
1746
1831
  * @returns Created class / constructor function
1747
1832
  */
1748
1833
  static extend<T extends Record<string, unknown>>(
@@ -1763,12 +1848,14 @@ declare module "sap/me/OverlapCalendar" {
1763
1848
  /**
1764
1849
  * Returns a metadata object for class sap.me.OverlapCalendar.
1765
1850
  *
1851
+ *
1766
1852
  * @returns Metadata object describing this class
1767
1853
  */
1768
1854
  static getMetadata(): ElementMetadata;
1769
1855
  /**
1770
1856
  * Adds some calendarEvent to the aggregation {@link #getCalendarEvents calendarEvents}.
1771
1857
  *
1858
+ *
1772
1859
  * @returns Reference to `this` in order to allow method chaining
1773
1860
  */
1774
1861
  addCalendarEvent(
@@ -1785,6 +1872,7 @@ declare module "sap/me/OverlapCalendar" {
1785
1872
  *
1786
1873
  * Triggered when the displayed dates change
1787
1874
  *
1875
+ *
1788
1876
  * @returns Reference to `this` in order to allow method chaining
1789
1877
  */
1790
1878
  attachChangeDate(
@@ -1810,6 +1898,7 @@ declare module "sap/me/OverlapCalendar" {
1810
1898
  *
1811
1899
  * Triggered when the displayed dates change
1812
1900
  *
1901
+ *
1813
1902
  * @returns Reference to `this` in order to allow method chaining
1814
1903
  */
1815
1904
  attachChangeDate(
@@ -1830,6 +1919,7 @@ declare module "sap/me/OverlapCalendar" {
1830
1919
  *
1831
1920
  * Indicates that we have reach the last week with data
1832
1921
  *
1922
+ *
1833
1923
  * @returns Reference to `this` in order to allow method chaining
1834
1924
  */
1835
1925
  attachEndOfData(
@@ -1855,6 +1945,7 @@ declare module "sap/me/OverlapCalendar" {
1855
1945
  *
1856
1946
  * Indicates that we have reach the last week with data
1857
1947
  *
1948
+ *
1858
1949
  * @returns Reference to `this` in order to allow method chaining
1859
1950
  */
1860
1951
  attachEndOfData(
@@ -1870,6 +1961,7 @@ declare module "sap/me/OverlapCalendar" {
1870
1961
  /**
1871
1962
  * Destroys all the calendarEvents in the aggregation {@link #getCalendarEvents calendarEvents}.
1872
1963
  *
1964
+ *
1873
1965
  * @returns Reference to `this` in order to allow method chaining
1874
1966
  */
1875
1967
  destroyCalendarEvents(): this;
@@ -1878,6 +1970,7 @@ declare module "sap/me/OverlapCalendar" {
1878
1970
  *
1879
1971
  * The passed function and listener object must match the ones used for event registration.
1880
1972
  *
1973
+ *
1881
1974
  * @returns Reference to `this` in order to allow method chaining
1882
1975
  */
1883
1976
  detachChangeDate(
@@ -1895,6 +1988,7 @@ declare module "sap/me/OverlapCalendar" {
1895
1988
  *
1896
1989
  * The passed function and listener object must match the ones used for event registration.
1897
1990
  *
1991
+ *
1898
1992
  * @returns Reference to `this` in order to allow method chaining
1899
1993
  */
1900
1994
  detachEndOfData(
@@ -1908,10 +2002,10 @@ declare module "sap/me/OverlapCalendar" {
1908
2002
  oListener?: object
1909
2003
  ): this;
1910
2004
  /**
1911
- * @ui5-protected Do not call from applications (only from related classes in the framework)
1912
- *
1913
2005
  * Fires event {@link #event:changeDate changeDate} to attached listeners.
1914
2006
  *
2007
+ * @ui5-protected Do not call from applications (only from related classes in the framework)
2008
+ *
1915
2009
  * @returns Reference to `this` in order to allow method chaining
1916
2010
  */
1917
2011
  fireChangeDate(
@@ -1921,10 +2015,10 @@ declare module "sap/me/OverlapCalendar" {
1921
2015
  mParameters?: OverlapCalendar$ChangeDateEventParameters
1922
2016
  ): this;
1923
2017
  /**
1924
- * @ui5-protected Do not call from applications (only from related classes in the framework)
1925
- *
1926
2018
  * Fires event {@link #event:endOfData endOfData} to attached listeners.
1927
2019
  *
2020
+ * @ui5-protected Do not call from applications (only from related classes in the framework)
2021
+ *
1928
2022
  * @returns Reference to `this` in order to allow method chaining
1929
2023
  */
1930
2024
  fireEndOfData(
@@ -1951,6 +2045,7 @@ declare module "sap/me/OverlapCalendar" {
1951
2045
  *
1952
2046
  * Default value is `0`.
1953
2047
  *
2048
+ *
1954
2049
  * @returns Value of property `firstDayOffset`
1955
2050
  */
1956
2051
  getFirstDayOffset(): int;
@@ -1961,6 +2056,7 @@ declare module "sap/me/OverlapCalendar" {
1961
2056
  *
1962
2057
  * Default value is `false`.
1963
2058
  *
2059
+ *
1964
2060
  * @returns Value of property `showOverlapIndicator`
1965
2061
  */
1966
2062
  getShowOverlapIndicator(): boolean;
@@ -1969,6 +2065,7 @@ declare module "sap/me/OverlapCalendar" {
1969
2065
  *
1970
2066
  * The first date to display for the calendar
1971
2067
  *
2068
+ *
1972
2069
  * @returns Value of property `startDate`
1973
2070
  */
1974
2071
  getStartDate(): string;
@@ -1979,6 +2076,7 @@ declare module "sap/me/OverlapCalendar" {
1979
2076
  *
1980
2077
  * Default value is `true`.
1981
2078
  *
2079
+ *
1982
2080
  * @returns Value of property `swipeToNavigate`
1983
2081
  */
1984
2082
  getSwipeToNavigate(): boolean;
@@ -1989,6 +2087,7 @@ declare module "sap/me/OverlapCalendar" {
1989
2087
  *
1990
2088
  * Default value is `true`.
1991
2089
  *
2090
+ *
1992
2091
  * @returns Value of property `visible`
1993
2092
  */
1994
2093
  getVisible(): boolean;
@@ -1999,6 +2098,7 @@ declare module "sap/me/OverlapCalendar" {
1999
2098
  *
2000
2099
  * Default value is `2`.
2001
2100
  *
2101
+ *
2002
2102
  * @returns Value of property `weeksPerRow`
2003
2103
  */
2004
2104
  getWeeksPerRow(): int;
@@ -2009,6 +2109,7 @@ declare module "sap/me/OverlapCalendar" {
2009
2109
  *
2010
2110
  * Default value is `'100%'`.
2011
2111
  *
2112
+ *
2012
2113
  * @returns Value of property `width`
2013
2114
  */
2014
2115
  getWidth(): CSSSize;
@@ -2016,6 +2117,7 @@ declare module "sap/me/OverlapCalendar" {
2016
2117
  * Checks for the provided `sap.me.OverlapCalendarEvent` in the aggregation {@link #getCalendarEvents calendarEvents}.
2017
2118
  * and returns its index if found or -1 otherwise.
2018
2119
  *
2120
+ *
2019
2121
  * @returns The index of the provided control in the aggregation if found, or -1 otherwise
2020
2122
  */
2021
2123
  indexOfCalendarEvent(
@@ -2027,6 +2129,7 @@ declare module "sap/me/OverlapCalendar" {
2027
2129
  /**
2028
2130
  * Inserts a calendarEvent into the aggregation {@link #getCalendarEvents calendarEvents}.
2029
2131
  *
2132
+ *
2030
2133
  * @returns Reference to `this` in order to allow method chaining
2031
2134
  */
2032
2135
  insertCalendarEvent(
@@ -2054,12 +2157,14 @@ declare module "sap/me/OverlapCalendar" {
2054
2157
  *
2055
2158
  * Additionally, it unregisters them from the hosting UIArea.
2056
2159
  *
2160
+ *
2057
2161
  * @returns An array of the removed elements (might be empty)
2058
2162
  */
2059
2163
  removeAllCalendarEvents(): OverlapCalendarEvent[];
2060
2164
  /**
2061
2165
  * Removes a calendarEvent from the aggregation {@link #getCalendarEvents calendarEvents}.
2062
2166
  *
2167
+ *
2063
2168
  * @returns The removed calendarEvent or `null`
2064
2169
  */
2065
2170
  removeCalendarEvent(
@@ -2077,6 +2182,7 @@ declare module "sap/me/OverlapCalendar" {
2077
2182
  *
2078
2183
  * Default value is `0`.
2079
2184
  *
2185
+ *
2080
2186
  * @returns Reference to `this` in order to allow method chaining
2081
2187
  */
2082
2188
  setFirstDayOffset(
@@ -2094,6 +2200,7 @@ declare module "sap/me/OverlapCalendar" {
2094
2200
  *
2095
2201
  * Default value is `false`.
2096
2202
  *
2203
+ *
2097
2204
  * @returns Reference to `this` in order to allow method chaining
2098
2205
  */
2099
2206
  setShowOverlapIndicator(
@@ -2120,6 +2227,7 @@ declare module "sap/me/OverlapCalendar" {
2120
2227
  *
2121
2228
  * Default value is `true`.
2122
2229
  *
2230
+ *
2123
2231
  * @returns Reference to `this` in order to allow method chaining
2124
2232
  */
2125
2233
  setVisible(
@@ -2144,6 +2252,7 @@ declare module "sap/me/OverlapCalendar" {
2144
2252
  *
2145
2253
  * Default value is `'100%'`.
2146
2254
  *
2255
+ *
2147
2256
  * @returns Reference to `this` in order to allow method chaining
2148
2257
  */
2149
2258
  setWidth(
@@ -2248,10 +2357,10 @@ declare module "sap/me/OverlapCalendarEvent" {
2248
2357
  import ElementMetadata from "sap/ui/core/ElementMetadata";
2249
2358
 
2250
2359
  /**
2360
+ * Represent the data of an event for the overlap calendar
2361
+ *
2251
2362
  * @deprecated (since 1.34.0) - This control was experimental since 1.12. Please use the sap.ui.unified.CalendarAppointment
2252
2363
  * instead!
2253
- *
2254
- * Represent the data of an event for the overlap calendar
2255
2364
  */
2256
2365
  export default class OverlapCalendarEvent extends UI5Element {
2257
2366
  /**
@@ -2291,6 +2400,7 @@ declare module "sap/me/OverlapCalendarEvent" {
2291
2400
  *
2292
2401
  * `oClassInfo` might contain the same kind of information as described in {@link sap.ui.core.Element.extend}.
2293
2402
  *
2403
+ *
2294
2404
  * @returns Created class / constructor function
2295
2405
  */
2296
2406
  static extend<T extends Record<string, unknown>>(
@@ -2311,6 +2421,7 @@ declare module "sap/me/OverlapCalendarEvent" {
2311
2421
  /**
2312
2422
  * Returns a metadata object for class sap.me.OverlapCalendarEvent.
2313
2423
  *
2424
+ *
2314
2425
  * @returns Metadata object describing this class
2315
2426
  */
2316
2427
  static getMetadata(): ElementMetadata;
@@ -2320,6 +2431,7 @@ declare module "sap/me/OverlapCalendarEvent" {
2320
2431
  * See {@link sap.ui.base.ManagedObject#bindProperty ManagedObject.bindProperty} for a detailed description
2321
2432
  * of the possible properties of `oBindingInfo`
2322
2433
  *
2434
+ *
2323
2435
  * @returns Reference to `this` in order to allow method chaining
2324
2436
  */
2325
2437
  bindEndDay(
@@ -2334,6 +2446,7 @@ declare module "sap/me/OverlapCalendarEvent" {
2334
2446
  * See {@link sap.ui.base.ManagedObject#bindProperty ManagedObject.bindProperty} for a detailed description
2335
2447
  * of the possible properties of `oBindingInfo`
2336
2448
  *
2449
+ *
2337
2450
  * @returns Reference to `this` in order to allow method chaining
2338
2451
  */
2339
2452
  bindHalfDay(
@@ -2348,6 +2461,7 @@ declare module "sap/me/OverlapCalendarEvent" {
2348
2461
  * See {@link sap.ui.base.ManagedObject#bindProperty ManagedObject.bindProperty} for a detailed description
2349
2462
  * of the possible properties of `oBindingInfo`
2350
2463
  *
2464
+ *
2351
2465
  * @returns Reference to `this` in order to allow method chaining
2352
2466
  */
2353
2467
  bindName(
@@ -2362,6 +2476,7 @@ declare module "sap/me/OverlapCalendarEvent" {
2362
2476
  * See {@link sap.ui.base.ManagedObject#bindProperty ManagedObject.bindProperty} for a detailed description
2363
2477
  * of the possible properties of `oBindingInfo`
2364
2478
  *
2479
+ *
2365
2480
  * @returns Reference to `this` in order to allow method chaining
2366
2481
  */
2367
2482
  bindRelevant(
@@ -2376,6 +2491,7 @@ declare module "sap/me/OverlapCalendarEvent" {
2376
2491
  * See {@link sap.ui.base.ManagedObject#bindProperty ManagedObject.bindProperty} for a detailed description
2377
2492
  * of the possible properties of `oBindingInfo`
2378
2493
  *
2494
+ *
2379
2495
  * @returns Reference to `this` in order to allow method chaining
2380
2496
  */
2381
2497
  bindRow(
@@ -2390,6 +2506,7 @@ declare module "sap/me/OverlapCalendarEvent" {
2390
2506
  * See {@link sap.ui.base.ManagedObject#bindProperty ManagedObject.bindProperty} for a detailed description
2391
2507
  * of the possible properties of `oBindingInfo`
2392
2508
  *
2509
+ *
2393
2510
  * @returns Reference to `this` in order to allow method chaining
2394
2511
  */
2395
2512
  bindStartDay(
@@ -2404,6 +2521,7 @@ declare module "sap/me/OverlapCalendarEvent" {
2404
2521
  * See {@link sap.ui.base.ManagedObject#bindProperty ManagedObject.bindProperty} for a detailed description
2405
2522
  * of the possible properties of `oBindingInfo`
2406
2523
  *
2524
+ *
2407
2525
  * @returns Reference to `this` in order to allow method chaining
2408
2526
  */
2409
2527
  bindType(
@@ -2418,6 +2536,7 @@ declare module "sap/me/OverlapCalendarEvent" {
2418
2536
  * See {@link sap.ui.base.ManagedObject#bindProperty ManagedObject.bindProperty} for a detailed description
2419
2537
  * of the possible properties of `oBindingInfo`
2420
2538
  *
2539
+ *
2421
2540
  * @returns Reference to `this` in order to allow method chaining
2422
2541
  */
2423
2542
  bindTypeName(
@@ -2431,6 +2550,7 @@ declare module "sap/me/OverlapCalendarEvent" {
2431
2550
  *
2432
2551
  * Last day of the event
2433
2552
  *
2553
+ *
2434
2554
  * @returns Value of property `endDay`
2435
2555
  */
2436
2556
  getEndDay(): string;
@@ -2441,6 +2561,7 @@ declare module "sap/me/OverlapCalendarEvent" {
2441
2561
  *
2442
2562
  * Default value is `false`.
2443
2563
  *
2564
+ *
2444
2565
  * @returns Value of property `halfDay`
2445
2566
  */
2446
2567
  getHalfDay(): boolean;
@@ -2449,6 +2570,7 @@ declare module "sap/me/OverlapCalendarEvent" {
2449
2570
  *
2450
2571
  * Name of the row
2451
2572
  *
2573
+ *
2452
2574
  * @returns Value of property `name`
2453
2575
  */
2454
2576
  getName(): string;
@@ -2457,6 +2579,7 @@ declare module "sap/me/OverlapCalendarEvent" {
2457
2579
  *
2458
2580
  * Indicates if this elements is relevant to be consider in the overlap
2459
2581
  *
2582
+ *
2460
2583
  * @returns Value of property `relevant`
2461
2584
  */
2462
2585
  getRelevant(): boolean;
@@ -2467,6 +2590,7 @@ declare module "sap/me/OverlapCalendarEvent" {
2467
2590
  *
2468
2591
  * Default value is `-1`.
2469
2592
  *
2593
+ *
2470
2594
  * @returns Value of property `row`
2471
2595
  */
2472
2596
  getRow(): int;
@@ -2475,6 +2599,7 @@ declare module "sap/me/OverlapCalendarEvent" {
2475
2599
  *
2476
2600
  * The first day of the event
2477
2601
  *
2602
+ *
2478
2603
  * @returns Value of property `startDay`
2479
2604
  */
2480
2605
  getStartDay(): string;
@@ -2483,6 +2608,7 @@ declare module "sap/me/OverlapCalendarEvent" {
2483
2608
  *
2484
2609
  * Type of the event. Display in the second label (no overlap)
2485
2610
  *
2611
+ *
2486
2612
  * @returns Value of property `type`
2487
2613
  */
2488
2614
  getType(): string;
@@ -2491,6 +2617,7 @@ declare module "sap/me/OverlapCalendarEvent" {
2491
2617
  *
2492
2618
  * The CSS class to use
2493
2619
  *
2620
+ *
2494
2621
  * @returns Value of property `typeName`
2495
2622
  */
2496
2623
  getTypeName(): string;
@@ -2501,6 +2628,7 @@ declare module "sap/me/OverlapCalendarEvent" {
2501
2628
  *
2502
2629
  * When called with a value of `null` or `undefined`, the default value of the property will be restored.
2503
2630
  *
2631
+ *
2504
2632
  * @returns Reference to `this` in order to allow method chaining
2505
2633
  */
2506
2634
  setEndDay(
@@ -2518,6 +2646,7 @@ declare module "sap/me/OverlapCalendarEvent" {
2518
2646
  *
2519
2647
  * Default value is `false`.
2520
2648
  *
2649
+ *
2521
2650
  * @returns Reference to `this` in order to allow method chaining
2522
2651
  */
2523
2652
  setHalfDay(
@@ -2533,6 +2662,7 @@ declare module "sap/me/OverlapCalendarEvent" {
2533
2662
  *
2534
2663
  * When called with a value of `null` or `undefined`, the default value of the property will be restored.
2535
2664
  *
2665
+ *
2536
2666
  * @returns Reference to `this` in order to allow method chaining
2537
2667
  */
2538
2668
  setName(
@@ -2548,6 +2678,7 @@ declare module "sap/me/OverlapCalendarEvent" {
2548
2678
  *
2549
2679
  * When called with a value of `null` or `undefined`, the default value of the property will be restored.
2550
2680
  *
2681
+ *
2551
2682
  * @returns Reference to `this` in order to allow method chaining
2552
2683
  */
2553
2684
  setRelevant(
@@ -2565,6 +2696,7 @@ declare module "sap/me/OverlapCalendarEvent" {
2565
2696
  *
2566
2697
  * Default value is `-1`.
2567
2698
  *
2699
+ *
2568
2700
  * @returns Reference to `this` in order to allow method chaining
2569
2701
  */
2570
2702
  setRow(
@@ -2580,6 +2712,7 @@ declare module "sap/me/OverlapCalendarEvent" {
2580
2712
  *
2581
2713
  * When called with a value of `null` or `undefined`, the default value of the property will be restored.
2582
2714
  *
2715
+ *
2583
2716
  * @returns Reference to `this` in order to allow method chaining
2584
2717
  */
2585
2718
  setStartDay(
@@ -2595,6 +2728,7 @@ declare module "sap/me/OverlapCalendarEvent" {
2595
2728
  *
2596
2729
  * When called with a value of `null` or `undefined`, the default value of the property will be restored.
2597
2730
  *
2731
+ *
2598
2732
  * @returns Reference to `this` in order to allow method chaining
2599
2733
  */
2600
2734
  setType(
@@ -2610,6 +2744,7 @@ declare module "sap/me/OverlapCalendarEvent" {
2610
2744
  *
2611
2745
  * When called with a value of `null` or `undefined`, the default value of the property will be restored.
2612
2746
  *
2747
+ *
2613
2748
  * @returns Reference to `this` in order to allow method chaining
2614
2749
  */
2615
2750
  setTypeName(
@@ -2621,48 +2756,56 @@ declare module "sap/me/OverlapCalendarEvent" {
2621
2756
  /**
2622
2757
  * Unbinds property {@link #getEndDay endDay} from model data.
2623
2758
  *
2759
+ *
2624
2760
  * @returns Reference to `this` in order to allow method chaining
2625
2761
  */
2626
2762
  unbindEndDay(): this;
2627
2763
  /**
2628
2764
  * Unbinds property {@link #getHalfDay halfDay} from model data.
2629
2765
  *
2766
+ *
2630
2767
  * @returns Reference to `this` in order to allow method chaining
2631
2768
  */
2632
2769
  unbindHalfDay(): this;
2633
2770
  /**
2634
2771
  * Unbinds property {@link #getName name} from model data.
2635
2772
  *
2773
+ *
2636
2774
  * @returns Reference to `this` in order to allow method chaining
2637
2775
  */
2638
2776
  unbindName(): this;
2639
2777
  /**
2640
2778
  * Unbinds property {@link #getRelevant relevant} from model data.
2641
2779
  *
2780
+ *
2642
2781
  * @returns Reference to `this` in order to allow method chaining
2643
2782
  */
2644
2783
  unbindRelevant(): this;
2645
2784
  /**
2646
2785
  * Unbinds property {@link #getRow row} from model data.
2647
2786
  *
2787
+ *
2648
2788
  * @returns Reference to `this` in order to allow method chaining
2649
2789
  */
2650
2790
  unbindRow(): this;
2651
2791
  /**
2652
2792
  * Unbinds property {@link #getStartDay startDay} from model data.
2653
2793
  *
2794
+ *
2654
2795
  * @returns Reference to `this` in order to allow method chaining
2655
2796
  */
2656
2797
  unbindStartDay(): this;
2657
2798
  /**
2658
2799
  * Unbinds property {@link #getType type} from model data.
2659
2800
  *
2801
+ *
2660
2802
  * @returns Reference to `this` in order to allow method chaining
2661
2803
  */
2662
2804
  unbindType(): this;
2663
2805
  /**
2664
2806
  * Unbinds property {@link #getTypeName typeName} from model data.
2665
2807
  *
2808
+ *
2666
2809
  * @returns Reference to `this` in order to allow method chaining
2667
2810
  */
2668
2811
  unbindTypeName(): this;
@@ -2721,11 +2864,11 @@ declare module "sap/me/ProgressIndicator" {
2721
2864
  import { PropertyBindingInfo } from "sap/ui/base/ManagedObject";
2722
2865
 
2723
2866
  /**
2724
- * @deprecated (since 1.14) - This control is replaced by sap.m.ProgressIndicator
2725
- *
2726
2867
  * Shows the progress of a process in a graphical way. The indicator can be displayed with or without numerical
2727
2868
  * values. The filling can be displayed in color only, or additionally with the percentage rate. The indicator
2728
2869
  * status can be interactive.
2870
+ *
2871
+ * @deprecated (since 1.14) - This control is replaced by sap.m.ProgressIndicator
2729
2872
  */
2730
2873
  export default class ProgressIndicator extends Control {
2731
2874
  /**
@@ -2765,6 +2908,7 @@ declare module "sap/me/ProgressIndicator" {
2765
2908
  *
2766
2909
  * `oClassInfo` might contain the same kind of information as described in {@link sap.ui.core.Control.extend}.
2767
2910
  *
2911
+ *
2768
2912
  * @returns Created class / constructor function
2769
2913
  */
2770
2914
  static extend<T extends Record<string, unknown>>(
@@ -2785,6 +2929,7 @@ declare module "sap/me/ProgressIndicator" {
2785
2929
  /**
2786
2930
  * Returns a metadata object for class sap.me.ProgressIndicator.
2787
2931
  *
2932
+ *
2788
2933
  * @returns Metadata object describing this class
2789
2934
  */
2790
2935
  static getMetadata(): ElementMetadata;
@@ -2796,6 +2941,7 @@ declare module "sap/me/ProgressIndicator" {
2796
2941
  *
2797
2942
  * Default value is `NEUTRAL`.
2798
2943
  *
2944
+ *
2799
2945
  * @returns Value of property `barColor`
2800
2946
  */
2801
2947
  getBarColor(): BarColor | keyof typeof BarColor;
@@ -2806,6 +2952,7 @@ declare module "sap/me/ProgressIndicator" {
2806
2952
  *
2807
2953
  * Default value is `'0%'`.
2808
2954
  *
2955
+ *
2809
2956
  * @returns Value of property `displayValue`
2810
2957
  */
2811
2958
  getDisplayValue(): string;
@@ -2816,6 +2963,7 @@ declare module "sap/me/ProgressIndicator" {
2816
2963
  *
2817
2964
  * Default value is `true`.
2818
2965
  *
2966
+ *
2819
2967
  * @returns Value of property `enabled`
2820
2968
  */
2821
2969
  getEnabled(): boolean;
@@ -2826,6 +2974,7 @@ declare module "sap/me/ProgressIndicator" {
2826
2974
  *
2827
2975
  * Default value is `0`.
2828
2976
  *
2977
+ *
2829
2978
  * @returns Value of property `percentValue`
2830
2979
  */
2831
2980
  getPercentValue(): int;
@@ -2836,6 +2985,7 @@ declare module "sap/me/ProgressIndicator" {
2836
2985
  *
2837
2986
  * Default value is `true`.
2838
2987
  *
2988
+ *
2839
2989
  * @returns Value of property `showValue`
2840
2990
  */
2841
2991
  getShowValue(): boolean;
@@ -2846,6 +2996,7 @@ declare module "sap/me/ProgressIndicator" {
2846
2996
  *
2847
2997
  * Default value is `true`.
2848
2998
  *
2999
+ *
2849
3000
  * @returns Value of property `visible`
2850
3001
  */
2851
3002
  getVisible(): boolean;
@@ -2856,6 +3007,7 @@ declare module "sap/me/ProgressIndicator" {
2856
3007
  *
2857
3008
  * Default value is `'100%'`.
2858
3009
  *
3010
+ *
2859
3011
  * @returns Value of property `width`
2860
3012
  */
2861
3013
  getWidth(): CSSSize;
@@ -2869,6 +3021,7 @@ declare module "sap/me/ProgressIndicator" {
2869
3021
  *
2870
3022
  * Default value is `NEUTRAL`.
2871
3023
  *
3024
+ *
2872
3025
  * @returns Reference to `this` in order to allow method chaining
2873
3026
  */
2874
3027
  setBarColor(
@@ -2886,6 +3039,7 @@ declare module "sap/me/ProgressIndicator" {
2886
3039
  *
2887
3040
  * Default value is `'0%'`.
2888
3041
  *
3042
+ *
2889
3043
  * @returns Reference to `this` in order to allow method chaining
2890
3044
  */
2891
3045
  setDisplayValue(
@@ -2903,6 +3057,7 @@ declare module "sap/me/ProgressIndicator" {
2903
3057
  *
2904
3058
  * Default value is `true`.
2905
3059
  *
3060
+ *
2906
3061
  * @returns Reference to `this` in order to allow method chaining
2907
3062
  */
2908
3063
  setEnabled(
@@ -2914,6 +3069,7 @@ declare module "sap/me/ProgressIndicator" {
2914
3069
  /**
2915
3070
  * Property setter for the PercentValue A new rendering is not necessary, only the bar has to be moved.
2916
3071
  *
3072
+ *
2917
3073
  * @returns `this` to allow method chaining
2918
3074
  */
2919
3075
  setPercentValue(iPercentValue: undefined): this;
@@ -2926,6 +3082,7 @@ declare module "sap/me/ProgressIndicator" {
2926
3082
  *
2927
3083
  * Default value is `true`.
2928
3084
  *
3085
+ *
2929
3086
  * @returns Reference to `this` in order to allow method chaining
2930
3087
  */
2931
3088
  setShowValue(
@@ -2943,6 +3100,7 @@ declare module "sap/me/ProgressIndicator" {
2943
3100
  *
2944
3101
  * Default value is `true`.
2945
3102
  *
3103
+ *
2946
3104
  * @returns Reference to `this` in order to allow method chaining
2947
3105
  */
2948
3106
  setVisible(
@@ -2960,6 +3118,7 @@ declare module "sap/me/ProgressIndicator" {
2960
3118
  *
2961
3119
  * Default value is `'100%'`.
2962
3120
  *
3121
+ *
2963
3122
  * @returns Reference to `this` in order to allow method chaining
2964
3123
  */
2965
3124
  setWidth(
@@ -3022,10 +3181,10 @@ declare module "sap/me/TabContainer" {
3022
3181
  import { PropertyBindingInfo } from "sap/ui/base/ManagedObject";
3023
3182
 
3024
3183
  /**
3184
+ * The TabContainer allow to stack 1 to 4 contents in a view with corresponding icons
3185
+ *
3025
3186
  * @deprecated (since 1.15.0) - The functionality of this control is merged with the sap.m.IconTabBar. Please
3026
3187
  * use the sap.m.IconTabBar instead! This control will not be supported anymore.
3027
- *
3028
- * The TabContainer allow to stack 1 to 4 contents in a view with corresponding icons
3029
3188
  */
3030
3189
  export default class TabContainer extends Control {
3031
3190
  /**
@@ -3065,6 +3224,7 @@ declare module "sap/me/TabContainer" {
3065
3224
  *
3066
3225
  * `oClassInfo` might contain the same kind of information as described in {@link sap.ui.core.Control.extend}.
3067
3226
  *
3227
+ *
3068
3228
  * @returns Created class / constructor function
3069
3229
  */
3070
3230
  static extend<T extends Record<string, unknown>>(
@@ -3085,6 +3245,7 @@ declare module "sap/me/TabContainer" {
3085
3245
  /**
3086
3246
  * Returns a metadata object for class sap.me.TabContainer.
3087
3247
  *
3248
+ *
3088
3249
  * @returns Metadata object describing this class
3089
3250
  */
3090
3251
  static getMetadata(): ElementMetadata;
@@ -3096,6 +3257,7 @@ declare module "sap/me/TabContainer" {
3096
3257
  *
3097
3258
  * Indicates that the tab will collapse
3098
3259
  *
3260
+ *
3099
3261
  * @returns Reference to `this` in order to allow method chaining
3100
3262
  */
3101
3263
  attachCollapse(
@@ -3121,6 +3283,7 @@ declare module "sap/me/TabContainer" {
3121
3283
  *
3122
3284
  * Indicates that the tab will collapse
3123
3285
  *
3286
+ *
3124
3287
  * @returns Reference to `this` in order to allow method chaining
3125
3288
  */
3126
3289
  attachCollapse(
@@ -3141,6 +3304,7 @@ declare module "sap/me/TabContainer" {
3141
3304
  *
3142
3305
  * Indicates that the tab will expand
3143
3306
  *
3307
+ *
3144
3308
  * @returns Reference to `this` in order to allow method chaining
3145
3309
  */
3146
3310
  attachExpand(
@@ -3166,6 +3330,7 @@ declare module "sap/me/TabContainer" {
3166
3330
  *
3167
3331
  * Indicates that the tab will expand
3168
3332
  *
3333
+ *
3169
3334
  * @returns Reference to `this` in order to allow method chaining
3170
3335
  */
3171
3336
  attachExpand(
@@ -3186,6 +3351,7 @@ declare module "sap/me/TabContainer" {
3186
3351
  *
3187
3352
  * Indicates that the selected tab has changed
3188
3353
  *
3354
+ *
3189
3355
  * @returns Reference to `this` in order to allow method chaining
3190
3356
  */
3191
3357
  attachSelect(
@@ -3211,6 +3377,7 @@ declare module "sap/me/TabContainer" {
3211
3377
  *
3212
3378
  * Indicates that the selected tab has changed
3213
3379
  *
3380
+ *
3214
3381
  * @returns Reference to `this` in order to allow method chaining
3215
3382
  */
3216
3383
  attachSelect(
@@ -3226,24 +3393,28 @@ declare module "sap/me/TabContainer" {
3226
3393
  /**
3227
3394
  * Destroys the contentAttachments in the aggregation {@link #getContentAttachments contentAttachments}.
3228
3395
  *
3396
+ *
3229
3397
  * @returns Reference to `this` in order to allow method chaining
3230
3398
  */
3231
3399
  destroyContentAttachments(): this;
3232
3400
  /**
3233
3401
  * Destroys the contentInfo in the aggregation {@link #getContentInfo contentInfo}.
3234
3402
  *
3403
+ *
3235
3404
  * @returns Reference to `this` in order to allow method chaining
3236
3405
  */
3237
3406
  destroyContentInfo(): this;
3238
3407
  /**
3239
3408
  * Destroys the contentNotes in the aggregation {@link #getContentNotes contentNotes}.
3240
3409
  *
3410
+ *
3241
3411
  * @returns Reference to `this` in order to allow method chaining
3242
3412
  */
3243
3413
  destroyContentNotes(): this;
3244
3414
  /**
3245
3415
  * Destroys the contentPeople in the aggregation {@link #getContentPeople contentPeople}.
3246
3416
  *
3417
+ *
3247
3418
  * @returns Reference to `this` in order to allow method chaining
3248
3419
  */
3249
3420
  destroyContentPeople(): this;
@@ -3252,6 +3423,7 @@ declare module "sap/me/TabContainer" {
3252
3423
  *
3253
3424
  * The passed function and listener object must match the ones used for event registration.
3254
3425
  *
3426
+ *
3255
3427
  * @returns Reference to `this` in order to allow method chaining
3256
3428
  */
3257
3429
  detachCollapse(
@@ -3269,6 +3441,7 @@ declare module "sap/me/TabContainer" {
3269
3441
  *
3270
3442
  * The passed function and listener object must match the ones used for event registration.
3271
3443
  *
3444
+ *
3272
3445
  * @returns Reference to `this` in order to allow method chaining
3273
3446
  */
3274
3447
  detachExpand(
@@ -3286,6 +3459,7 @@ declare module "sap/me/TabContainer" {
3286
3459
  *
3287
3460
  * The passed function and listener object must match the ones used for event registration.
3288
3461
  *
3462
+ *
3289
3463
  * @returns Reference to `this` in order to allow method chaining
3290
3464
  */
3291
3465
  detachSelect(
@@ -3299,10 +3473,10 @@ declare module "sap/me/TabContainer" {
3299
3473
  oListener?: object
3300
3474
  ): this;
3301
3475
  /**
3302
- * @ui5-protected Do not call from applications (only from related classes in the framework)
3303
- *
3304
3476
  * Fires event {@link #event:collapse collapse} to attached listeners.
3305
3477
  *
3478
+ * @ui5-protected Do not call from applications (only from related classes in the framework)
3479
+ *
3306
3480
  * @returns Reference to `this` in order to allow method chaining
3307
3481
  */
3308
3482
  fireCollapse(
@@ -3312,10 +3486,10 @@ declare module "sap/me/TabContainer" {
3312
3486
  mParameters?: object
3313
3487
  ): this;
3314
3488
  /**
3315
- * @ui5-protected Do not call from applications (only from related classes in the framework)
3316
- *
3317
3489
  * Fires event {@link #event:expand expand} to attached listeners.
3318
3490
  *
3491
+ * @ui5-protected Do not call from applications (only from related classes in the framework)
3492
+ *
3319
3493
  * @returns Reference to `this` in order to allow method chaining
3320
3494
  */
3321
3495
  fireExpand(
@@ -3325,13 +3499,13 @@ declare module "sap/me/TabContainer" {
3325
3499
  mParameters?: object
3326
3500
  ): this;
3327
3501
  /**
3328
- * @ui5-protected Do not call from applications (only from related classes in the framework)
3329
- *
3330
3502
  * Fires event {@link #event:select select} to attached listeners.
3331
3503
  *
3332
3504
  * Listeners may prevent the default action of this event by calling the `preventDefault` method on the
3333
3505
  * event object. The return value of this method indicates whether the default action should be executed.
3334
3506
  *
3507
+ * @ui5-protected Do not call from applications (only from related classes in the framework)
3508
+ *
3335
3509
  * @returns Whether or not to prevent the default action
3336
3510
  */
3337
3511
  fireSelect(
@@ -3345,6 +3519,7 @@ declare module "sap/me/TabContainer" {
3345
3519
  *
3346
3520
  * The number to display in the badge for the attachments tab
3347
3521
  *
3522
+ *
3348
3523
  * @returns Value of property `badgeAttachments`
3349
3524
  */
3350
3525
  getBadgeAttachments(): int;
@@ -3353,6 +3528,7 @@ declare module "sap/me/TabContainer" {
3353
3528
  *
3354
3529
  * The number to display in the badge for the info tab
3355
3530
  *
3531
+ *
3356
3532
  * @returns Value of property `badgeInfo`
3357
3533
  */
3358
3534
  getBadgeInfo(): int;
@@ -3361,6 +3537,7 @@ declare module "sap/me/TabContainer" {
3361
3537
  *
3362
3538
  * The number to display in the badge for the notes tab
3363
3539
  *
3540
+ *
3364
3541
  * @returns Value of property `badgeNotes`
3365
3542
  */
3366
3543
  getBadgeNotes(): int;
@@ -3369,6 +3546,7 @@ declare module "sap/me/TabContainer" {
3369
3546
  *
3370
3547
  * The number to display in the badge for the people tab
3371
3548
  *
3549
+ *
3372
3550
  * @returns Value of property `badgePeople`
3373
3551
  */
3374
3552
  getBadgePeople(): int;
@@ -3403,6 +3581,7 @@ declare module "sap/me/TabContainer" {
3403
3581
  *
3404
3582
  * Default value is `true`.
3405
3583
  *
3584
+ *
3406
3585
  * @returns Value of property `expandable`
3407
3586
  */
3408
3587
  getExpandable(): boolean;
@@ -3413,6 +3592,7 @@ declare module "sap/me/TabContainer" {
3413
3592
  *
3414
3593
  * Default value is `true`.
3415
3594
  *
3595
+ *
3416
3596
  * @returns Value of property `expanded`
3417
3597
  */
3418
3598
  getExpanded(): boolean;
@@ -3421,6 +3601,7 @@ declare module "sap/me/TabContainer" {
3421
3601
  *
3422
3602
  * Return the index of the selected tab
3423
3603
  *
3604
+ *
3424
3605
  * @returns Value of property `selectedTab`
3425
3606
  */
3426
3607
  getSelectedTab(): int;
@@ -3431,6 +3612,7 @@ declare module "sap/me/TabContainer" {
3431
3612
  *
3432
3613
  * Default value is `true`.
3433
3614
  *
3615
+ *
3434
3616
  * @returns Value of property `visible`
3435
3617
  */
3436
3618
  getVisible(): boolean;
@@ -3441,6 +3623,7 @@ declare module "sap/me/TabContainer" {
3441
3623
  *
3442
3624
  * When called with a value of `null` or `undefined`, the default value of the property will be restored.
3443
3625
  *
3626
+ *
3444
3627
  * @returns Reference to `this` in order to allow method chaining
3445
3628
  */
3446
3629
  setBadgeAttachments(
@@ -3456,6 +3639,7 @@ declare module "sap/me/TabContainer" {
3456
3639
  *
3457
3640
  * When called with a value of `null` or `undefined`, the default value of the property will be restored.
3458
3641
  *
3642
+ *
3459
3643
  * @returns Reference to `this` in order to allow method chaining
3460
3644
  */
3461
3645
  setBadgeInfo(
@@ -3471,6 +3655,7 @@ declare module "sap/me/TabContainer" {
3471
3655
  *
3472
3656
  * When called with a value of `null` or `undefined`, the default value of the property will be restored.
3473
3657
  *
3658
+ *
3474
3659
  * @returns Reference to `this` in order to allow method chaining
3475
3660
  */
3476
3661
  setBadgeNotes(
@@ -3486,6 +3671,7 @@ declare module "sap/me/TabContainer" {
3486
3671
  *
3487
3672
  * When called with a value of `null` or `undefined`, the default value of the property will be restored.
3488
3673
  *
3674
+ *
3489
3675
  * @returns Reference to `this` in order to allow method chaining
3490
3676
  */
3491
3677
  setBadgePeople(
@@ -3497,6 +3683,7 @@ declare module "sap/me/TabContainer" {
3497
3683
  /**
3498
3684
  * Sets the aggregated {@link #getContentAttachments contentAttachments}.
3499
3685
  *
3686
+ *
3500
3687
  * @returns Reference to `this` in order to allow method chaining
3501
3688
  */
3502
3689
  setContentAttachments(
@@ -3508,6 +3695,7 @@ declare module "sap/me/TabContainer" {
3508
3695
  /**
3509
3696
  * Sets the aggregated {@link #getContentInfo contentInfo}.
3510
3697
  *
3698
+ *
3511
3699
  * @returns Reference to `this` in order to allow method chaining
3512
3700
  */
3513
3701
  setContentInfo(
@@ -3519,6 +3707,7 @@ declare module "sap/me/TabContainer" {
3519
3707
  /**
3520
3708
  * Sets the aggregated {@link #getContentNotes contentNotes}.
3521
3709
  *
3710
+ *
3522
3711
  * @returns Reference to `this` in order to allow method chaining
3523
3712
  */
3524
3713
  setContentNotes(
@@ -3530,6 +3719,7 @@ declare module "sap/me/TabContainer" {
3530
3719
  /**
3531
3720
  * Sets the aggregated {@link #getContentPeople contentPeople}.
3532
3721
  *
3722
+ *
3533
3723
  * @returns Reference to `this` in order to allow method chaining
3534
3724
  */
3535
3725
  setContentPeople(
@@ -3547,6 +3737,7 @@ declare module "sap/me/TabContainer" {
3547
3737
  *
3548
3738
  * Default value is `true`.
3549
3739
  *
3740
+ *
3550
3741
  * @returns Reference to `this` in order to allow method chaining
3551
3742
  */
3552
3743
  setExpandable(
@@ -3564,6 +3755,7 @@ declare module "sap/me/TabContainer" {
3564
3755
  *
3565
3756
  * Default value is `true`.
3566
3757
  *
3758
+ *
3567
3759
  * @returns Reference to `this` in order to allow method chaining
3568
3760
  */
3569
3761
  setExpanded(
@@ -3579,6 +3771,7 @@ declare module "sap/me/TabContainer" {
3579
3771
  *
3580
3772
  * When called with a value of `null` or `undefined`, the default value of the property will be restored.
3581
3773
  *
3774
+ *
3582
3775
  * @returns Reference to `this` in order to allow method chaining
3583
3776
  */
3584
3777
  setSelectedTab(
@@ -3596,6 +3789,7 @@ declare module "sap/me/TabContainer" {
3596
3789
  *
3597
3790
  * Default value is `true`.
3598
3791
  *
3792
+ *
3599
3793
  * @returns Reference to `this` in order to allow method chaining
3600
3794
  */
3601
3795
  setVisible(