@sapui5/ts-types 1.101.0 → 1.102.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (62) hide show
  1. package/package.json +1 -1
  2. package/types/index.d.ts +1 -0
  3. package/types/sap.apf.d.ts +89 -1
  4. package/types/sap.ca.ui.d.ts +1747 -124
  5. package/types/sap.chart.d.ts +375 -29
  6. package/types/sap.collaboration.d.ts +320 -40
  7. package/types/sap.esh.search.ui.d.ts +1 -669
  8. package/types/sap.f.d.ts +1785 -100
  9. package/types/sap.fe.common.d.ts +1 -1
  10. package/types/sap.fe.core.d.ts +70 -2
  11. package/types/sap.fe.macros.d.ts +78 -34
  12. package/types/sap.fe.navigation.d.ts +144 -4
  13. package/types/sap.fe.templates.d.ts +26 -5
  14. package/types/sap.fe.test.d.ts +497 -2
  15. package/types/sap.feedback.ui.d.ts +1 -1
  16. package/types/sap.gantt.d.ts +7203 -502
  17. package/types/sap.insights.d.ts +80 -0
  18. package/types/sap.landvisz.d.ts +1015 -66
  19. package/types/sap.m.d.ts +16686 -1152
  20. package/types/sap.makit.d.ts +575 -54
  21. package/types/sap.me.d.ts +578 -51
  22. package/types/sap.ndc.d.ts +63 -5
  23. package/types/sap.ovp.d.ts +5 -6
  24. package/types/sap.rules.ui.d.ts +171 -15
  25. package/types/sap.sac.df.d.ts +1430 -215
  26. package/types/sap.sac.grid.d.ts +91 -8
  27. package/types/sap.suite.ui.commons.d.ts +5515 -396
  28. package/types/sap.suite.ui.generic.template.d.ts +157 -69
  29. package/types/sap.suite.ui.microchart.d.ts +1801 -160
  30. package/types/sap.tnt.d.ts +279 -19
  31. package/types/sap.ui.codeeditor.d.ts +89 -8
  32. package/types/sap.ui.commons.d.ts +3784 -313
  33. package/types/sap.ui.comp.d.ts +3853 -276
  34. package/types/sap.ui.core.d.ts +6248 -313
  35. package/types/sap.ui.dt.d.ts +1 -1
  36. package/types/sap.ui.export.d.ts +61 -6
  37. package/types/sap.ui.fl.d.ts +1 -1
  38. package/types/sap.ui.generic.app.d.ts +238 -64
  39. package/types/sap.ui.generic.template.d.ts +1 -1
  40. package/types/sap.ui.integration.d.ts +316 -23
  41. package/types/sap.ui.layout.d.ts +1851 -199
  42. package/types/sap.ui.mdc.d.ts +1 -1
  43. package/types/sap.ui.richtexteditor.d.ts +340 -49
  44. package/types/sap.ui.rta.d.ts +5 -1
  45. package/types/sap.ui.suite.d.ts +87 -6
  46. package/types/sap.ui.support.d.ts +30 -1
  47. package/types/sap.ui.table.d.ts +1050 -80
  48. package/types/sap.ui.testrecorder.d.ts +1 -1
  49. package/types/sap.ui.unified.d.ts +2704 -202
  50. package/types/sap.ui.ux3.d.ts +2379 -181
  51. package/types/sap.ui.vbm.d.ts +2002 -197
  52. package/types/sap.ui.vk.d.ts +5353 -310
  53. package/types/sap.ui.vtm.d.ts +1130 -41
  54. package/types/sap.uiext.inbox.d.ts +423 -22
  55. package/types/sap.ushell.d.ts +1488 -49
  56. package/types/sap.ushell_abap.d.ts +4 -1
  57. package/types/sap.uxap.d.ts +902 -87
  58. package/types/sap.viz.d.ts +5514 -380
  59. package/types/sap.webanalytics.core.d.ts +1 -1
  60. package/types/sap.zen.commons.d.ts +165 -20
  61. package/types/sap.zen.crosstab.d.ts +217 -21
  62. package/types/sap.zen.dsh.d.ts +227 -14
@@ -1,4 +1,4 @@
1
- // For Library Version: 1.101.0
1
+ // For Library Version: 1.102.0
2
2
 
3
3
  declare namespace sap {
4
4
  /**
@@ -10,16 +10,19 @@ declare namespace sap {
10
10
  interface $ComponentSettings extends sap.ui.core.$UIComponentSettings {
11
11
  axisOrientation?:
12
12
  | sap.suite.ui.commons.TimelineAxisOrientation
13
- | sap.ui.base.ManagedObject.PropertyBindingInfo;
13
+ | sap.ui.base.ManagedObject.PropertyBindingInfo
14
+ | `{${string}}`;
14
15
 
15
16
  feedSources?:
16
17
  | object
17
18
  | string[]
18
- | sap.ui.base.ManagedObject.PropertyBindingInfo;
19
+ | sap.ui.base.ManagedObject.PropertyBindingInfo
20
+ | `{${string}}`;
19
21
 
20
22
  enableScroll?:
21
23
  | boolean
22
- | sap.ui.base.ManagedObject.PropertyBindingInfo;
24
+ | sap.ui.base.ManagedObject.PropertyBindingInfo
25
+ | `{${string}}`;
23
26
  }
24
27
 
25
28
  /**
@@ -81,6 +84,8 @@ declare namespace sap {
81
84
  * enriches it with the information contained in `oClassInfo`.
82
85
  *
83
86
  * `oClassInfo` might contain the same kind of information as described in {@link sap.ui.core.UIComponent.extend}.
87
+ *
88
+ * @returns Created class / constructor function
84
89
  */
85
90
  static extend<T extends Record<string, unknown>>(
86
91
  /**
@@ -102,10 +107,14 @@ declare namespace sap {
102
107
  ): Function;
103
108
  /**
104
109
  * Returns a metadata object for class sap.collaboration.components.feed.Component.
110
+ *
111
+ * @returns Metadata object describing this class
105
112
  */
106
113
  static getMetadata(): sap.ui.core.ComponentMetadata;
107
114
  /**
108
115
  * Returns the selected Group.
116
+ *
117
+ * @returns a map containing information about the selected Group (e.g. Id, Name, etc...)
109
118
  */
110
119
  static getSelectedGroup(): Record<string, any>;
111
120
  /**
@@ -147,20 +156,28 @@ declare namespace sap {
147
156
  * Getter for property `axisOrientation`.
148
157
  *
149
158
  * Default value is `Vertical`
159
+ *
160
+ * @returns the value of property `axisOrientation`
150
161
  */
151
162
  getAxisOrientation(): sap.suite.ui.commons.TimelineAxisOrientation;
152
163
  /**
153
164
  * Getter for property `enableScroll`.
165
+ *
166
+ * @returns the value of property `enableScroll`
154
167
  */
155
168
  getEnableScroll(): boolean;
156
169
  /**
157
170
  * Getter for property `feedSources`.
171
+ *
172
+ * @returns the value of property `feedSources`
158
173
  */
159
174
  getFeedSources(): Record<string, any> | string[];
160
175
  /**
161
176
  * Setter for property `axisOrientation`.
162
177
  *
163
178
  * Default value is `Vertical`
179
+ *
180
+ * @returns `this` to allow method chaining
164
181
  */
165
182
  setAxisOrientation(
166
183
  /**
@@ -177,6 +194,8 @@ declare namespace sap {
177
194
  *
178
195
  *
179
196
  * Default value is `true`
197
+ *
198
+ * @returns `this` to allow method chaining
180
199
  */
181
200
  setEnableScroll(
182
201
  /**
@@ -210,7 +229,8 @@ declare namespace sap {
210
229
  */
211
230
  width?:
212
231
  | sap.ui.core.CSSSize
213
- | sap.ui.base.ManagedObject.PropertyBindingInfo;
232
+ | sap.ui.base.ManagedObject.PropertyBindingInfo
233
+ | `{${string}}`;
214
234
 
215
235
  /**
216
236
  * The height of the component.
@@ -219,7 +239,8 @@ declare namespace sap {
219
239
  */
220
240
  height?:
221
241
  | sap.ui.core.CSSSize
222
- | sap.ui.base.ManagedObject.PropertyBindingInfo;
242
+ | sap.ui.base.ManagedObject.PropertyBindingInfo
243
+ | `{${string}}`;
223
244
 
224
245
  /**
225
246
  * **[DEPRECATED]** The type of feed to be displayed.
@@ -247,7 +268,10 @@ declare namespace sap {
247
268
  * Note: The object is passed by reference, which means that the attributes will be modified in the original
248
269
  * object, for example, when the URLs contained in the id and type attributes are mapped (via OData call).
249
270
  */
250
- object?: object | sap.ui.base.ManagedObject.PropertyBindingInfo;
271
+ object?:
272
+ | object
273
+ | sap.ui.base.ManagedObject.PropertyBindingInfo
274
+ | `{${string}}`;
251
275
 
252
276
  /**
253
277
  * A JSON object passed to the Feed Dialog Component. This object represents business related information,
@@ -266,7 +290,8 @@ declare namespace sap {
266
290
  */
267
291
  businessObject?:
268
292
  | object
269
- | sap.ui.base.ManagedObject.PropertyBindingInfo;
293
+ | sap.ui.base.ManagedObject.PropertyBindingInfo
294
+ | `{${string}}`;
270
295
  }
271
296
 
272
297
  /**
@@ -319,6 +344,8 @@ declare namespace sap {
319
344
  * and enriches it with the information contained in `oClassInfo`.
320
345
  *
321
346
  * `oClassInfo` might contain the same kind of information as described in {@link sap.ui.core.UIComponent.extend}.
347
+ *
348
+ * @returns Created class / constructor function
322
349
  */
323
350
  static extend<T extends Record<string, unknown>>(
324
351
  /**
@@ -340,6 +367,8 @@ declare namespace sap {
340
367
  ): Function;
341
368
  /**
342
369
  * Returns a metadata object for class sap.collaboration.components.fiori.feed.dialog.Component.
370
+ *
371
+ * @returns Metadata object describing this class
343
372
  */
344
373
  static getMetadata(): sap.ui.core.ComponentMetadata;
345
374
  /**
@@ -358,6 +387,8 @@ declare namespace sap {
358
387
  * - {string} name: The short name of the Business Object. Example: "Sales Order 123", "Opportunity
359
388
  * 123", "Account 123", etc.
360
389
  * - {string} ui_url: The URL to navigate to the same business object in the application.
390
+ *
391
+ * @returns Value of property `businessObject`
361
392
  */
362
393
  getBusinessObject(): object;
363
394
  /**
@@ -368,12 +399,16 @@ declare namespace sap {
368
399
  * The available types are in @link sap.collaboration.FeedType.
369
400
  *
370
401
  * Default value is `FeedType.object`.
402
+ *
403
+ * @returns Value of property `feedType`
371
404
  */
372
405
  getFeedType(): string;
373
406
  /**
374
407
  * Gets current value of property {@link #getGroupIds groupIds}.
375
408
  *
376
409
  * **[DEPRECATED]** The IDs of the group to display in the widget.
410
+ *
411
+ * @returns Value of property `groupIds`
377
412
  */
378
413
  getGroupIds(): string;
379
414
  /**
@@ -384,6 +419,8 @@ declare namespace sap {
384
419
  * We need to pass a value in pixels, otherwise the dialog won't render correctly
385
420
  *
386
421
  * Default value is `"605px"`.
422
+ *
423
+ * @returns Value of property `height`
387
424
  */
388
425
  getHeight(): sap.ui.core.CSSSize;
389
426
  /**
@@ -401,6 +438,8 @@ declare namespace sap {
401
438
  * - ui_url (optional): the URL to navigate to the same business object in the application.
402
439
  * Note: The object is passed by reference, which means that the attributes will be modified in the original
403
440
  * object, for example, when the URLs contained in the id and type attributes are mapped (via OData call).
441
+ *
442
+ * @returns Value of property `object`
404
443
  */
405
444
  getObject(): object;
406
445
  /**
@@ -409,6 +448,8 @@ declare namespace sap {
409
448
  * The width of the component.
410
449
  *
411
450
  * Default value is `"575px"`.
451
+ *
452
+ * @returns Value of property `width`
412
453
  */
413
454
  getWidth(): sap.ui.core.CSSSize;
414
455
  /**
@@ -433,6 +474,8 @@ declare namespace sap {
433
474
  * - {string} ui_url: The URL to navigate to the same business object in the application.
434
475
  *
435
476
  * When called with a value of `null` or `undefined`, the default value of the property will be restored.
477
+ *
478
+ * @returns Reference to `this` in order to allow method chaining
436
479
  */
437
480
  setBusinessObject(
438
481
  /**
@@ -450,6 +493,8 @@ declare namespace sap {
450
493
  * When called with a value of `null` or `undefined`, the default value of the property will be restored.
451
494
  *
452
495
  * Default value is `FeedType.object`.
496
+ *
497
+ * @returns Reference to `this` in order to allow method chaining
453
498
  */
454
499
  setFeedType(
455
500
  /**
@@ -463,6 +508,8 @@ declare namespace sap {
463
508
  * **[DEPRECATED]** The IDs of the group to display in the widget.
464
509
  *
465
510
  * When called with a value of `null` or `undefined`, the default value of the property will be restored.
511
+ *
512
+ * @returns Reference to `this` in order to allow method chaining
466
513
  */
467
514
  setGroupIds(
468
515
  /**
@@ -480,6 +527,8 @@ declare namespace sap {
480
527
  * When called with a value of `null` or `undefined`, the default value of the property will be restored.
481
528
  *
482
529
  * Default value is `"605px"`.
530
+ *
531
+ * @returns Reference to `this` in order to allow method chaining
483
532
  */
484
533
  setHeight(
485
534
  /**
@@ -504,6 +553,8 @@ declare namespace sap {
504
553
  * object, for example, when the URLs contained in the id and type attributes are mapped (via OData call).
505
554
  *
506
555
  * When called with a value of `null` or `undefined`, the default value of the property will be restored.
556
+ *
557
+ * @returns Reference to `this` in order to allow method chaining
507
558
  */
508
559
  setObject(
509
560
  /**
@@ -534,6 +585,8 @@ declare namespace sap {
534
585
  * When called with a value of `null` or `undefined`, the default value of the property will be restored.
535
586
  *
536
587
  * Default value is `"575px"`.
588
+ *
589
+ * @returns Reference to `this` in order to allow method chaining
537
590
  */
538
591
  setWidth(
539
592
  /**
@@ -551,21 +604,24 @@ declare namespace sap {
551
604
  */
552
605
  width?:
553
606
  | sap.ui.core.CSSSize
554
- | sap.ui.base.ManagedObject.PropertyBindingInfo;
607
+ | sap.ui.base.ManagedObject.PropertyBindingInfo
608
+ | `{${string}}`;
555
609
 
556
610
  /**
557
611
  * The height of the component.
558
612
  */
559
613
  height?:
560
614
  | sap.ui.core.CSSSize
561
- | sap.ui.base.ManagedObject.PropertyBindingInfo;
615
+ | sap.ui.base.ManagedObject.PropertyBindingInfo
616
+ | `{${string}}`;
562
617
 
563
618
  /**
564
619
  * The OData service URL needed for the Feed Component.
565
620
  */
566
621
  oDataServiceUrl?:
567
622
  | sap.ui.core.URI
568
- | sap.ui.base.ManagedObject.PropertyBindingInfo;
623
+ | sap.ui.base.ManagedObject.PropertyBindingInfo
624
+ | `{${string}}`;
569
625
 
570
626
  /**
571
627
  * The type of feed to be displayed. The available types are in @link sap.collaboration.FeedType.
@@ -591,7 +647,10 @@ declare namespace sap {
591
647
  * i.e. "SO 57746", "Opportunity 123", etc.
592
648
  * - **ui_url?** (optional): The URL to navigate to the same Business Object in the application.
593
649
  */
594
- object?: object | sap.ui.base.ManagedObject.PropertyBindingInfo;
650
+ object?:
651
+ | object
652
+ | sap.ui.base.ManagedObject.PropertyBindingInfo
653
+ | `{${string}}`;
595
654
  }
596
655
 
597
656
  /**
@@ -643,6 +702,8 @@ declare namespace sap {
643
702
  * and enriches it with the information contained in `oClassInfo`.
644
703
  *
645
704
  * `oClassInfo` might contain the same kind of information as described in {@link sap.ui.core.UIComponent.extend}.
705
+ *
706
+ * @returns Created class / constructor function
646
707
  */
647
708
  static extend<T extends Record<string, unknown>>(
648
709
  /**
@@ -664,18 +725,24 @@ declare namespace sap {
664
725
  ): Function;
665
726
  /**
666
727
  * Returns a metadata object for class sap.collaboration.components.fiori.feed.Component.
728
+ *
729
+ * @returns Metadata object describing this class
667
730
  */
668
731
  static getMetadata(): sap.ui.core.ComponentMetadata;
669
732
  /**
670
733
  * Gets current value of property {@link #getFeedType feedType}.
671
734
  *
672
735
  * The type of feed to be displayed. The available types are in @link sap.collaboration.FeedType.
736
+ *
737
+ * @returns Value of property `feedType`
673
738
  */
674
739
  getFeedType(): string;
675
740
  /**
676
741
  * Gets current value of property {@link #getGroupIds groupIds}.
677
742
  *
678
743
  * A comma separated list of the IDs of the groups to display in the widget.
744
+ *
745
+ * @returns Value of property `groupIds`
679
746
  */
680
747
  getGroupIds(): string;
681
748
  /**
@@ -684,6 +751,8 @@ declare namespace sap {
684
751
  * The height of the component.
685
752
  *
686
753
  * Default value is `empty string`.
754
+ *
755
+ * @returns Value of property `height`
687
756
  */
688
757
  getHeight(): sap.ui.core.CSSSize;
689
758
  /**
@@ -701,6 +770,9 @@ declare namespace sap {
701
770
  * - **name?** (optional): The description of the Business Object to be displayed in SAP Jam,
702
771
  * i.e. "SO 57746", "Opportunity 123", etc.
703
772
  * - **ui_url?** (optional): The URL to navigate to the same Business Object in the application.
773
+ *
774
+ *
775
+ * @returns Value of property `object`
704
776
  */
705
777
  getObject(): object;
706
778
  /**
@@ -709,6 +781,8 @@ declare namespace sap {
709
781
  * The OData service URL needed for the Feed Component.
710
782
  *
711
783
  * Default value is `"/sap/opu/odata/sap/SM_INTEGRATION_SRV"`.
784
+ *
785
+ * @returns Value of property `oDataServiceUrl`
712
786
  */
713
787
  getODataServiceUrl(): sap.ui.core.URI;
714
788
  /**
@@ -717,6 +791,8 @@ declare namespace sap {
717
791
  * The width of the component.
718
792
  *
719
793
  * Default value is `empty string`.
794
+ *
795
+ * @returns Value of property `width`
720
796
  */
721
797
  getWidth(): sap.ui.core.CSSSize;
722
798
  /**
@@ -725,6 +801,8 @@ declare namespace sap {
725
801
  * The type of feed to be displayed. The available types are in @link sap.collaboration.FeedType.
726
802
  *
727
803
  * When called with a value of `null` or `undefined`, the default value of the property will be restored.
804
+ *
805
+ * @returns Reference to `this` in order to allow method chaining
728
806
  */
729
807
  setFeedType(
730
808
  /**
@@ -738,6 +816,8 @@ declare namespace sap {
738
816
  * A comma separated list of the IDs of the groups to display in the widget.
739
817
  *
740
818
  * When called with a value of `null` or `undefined`, the default value of the property will be restored.
819
+ *
820
+ * @returns Reference to `this` in order to allow method chaining
741
821
  */
742
822
  setGroupIds(
743
823
  /**
@@ -753,6 +833,8 @@ declare namespace sap {
753
833
  * When called with a value of `null` or `undefined`, the default value of the property will be restored.
754
834
  *
755
835
  * Default value is `empty string`.
836
+ *
837
+ * @returns Reference to `this` in order to allow method chaining
756
838
  */
757
839
  setHeight(
758
840
  /**
@@ -778,6 +860,8 @@ declare namespace sap {
778
860
  *
779
861
  *
780
862
  * When called with a value of `null` or `undefined`, the default value of the property will be restored.
863
+ *
864
+ * @returns Reference to `this` in order to allow method chaining
781
865
  */
782
866
  setObject(
783
867
  /**
@@ -793,6 +877,8 @@ declare namespace sap {
793
877
  * When called with a value of `null` or `undefined`, the default value of the property will be restored.
794
878
  *
795
879
  * Default value is `"/sap/opu/odata/sap/SM_INTEGRATION_SRV"`.
880
+ *
881
+ * @returns Reference to `this` in order to allow method chaining
796
882
  */
797
883
  setODataServiceUrl(
798
884
  /**
@@ -822,6 +908,8 @@ declare namespace sap {
822
908
  * When called with a value of `null` or `undefined`, the default value of the property will be restored.
823
909
  *
824
910
  * Default value is `empty string`.
911
+ *
912
+ * @returns Reference to `this` in order to allow method chaining
825
913
  */
826
914
  setWidth(
827
915
  /**
@@ -840,35 +928,40 @@ declare namespace sap {
840
928
  */
841
929
  oDataServiceUrl?:
842
930
  | sap.ui.core.URI
843
- | sap.ui.base.ManagedObject.PropertyBindingInfo;
931
+ | sap.ui.base.ManagedObject.PropertyBindingInfo
932
+ | `{${string}}`;
844
933
 
845
934
  /**
846
935
  * The maximum number of notifications to be displayed.
847
936
  */
848
937
  numberOfNotifications?:
849
938
  | int
850
- | sap.ui.base.ManagedObject.PropertyBindingInfo;
939
+ | sap.ui.base.ManagedObject.PropertyBindingInfo
940
+ | `{${string}}`;
851
941
 
852
942
  /**
853
943
  * The time in seconds a notification is displayed before the next notification is displayed.
854
944
  */
855
945
  transitionInterval?:
856
946
  | int
857
- | sap.ui.base.ManagedObject.PropertyBindingInfo;
947
+ | sap.ui.base.ManagedObject.PropertyBindingInfo
948
+ | `{${string}}`;
858
949
 
859
950
  /**
860
951
  * The time in seconds before calling the backend to update the notifications.
861
952
  */
862
953
  refreshInterval?:
863
954
  | int
864
- | sap.ui.base.ManagedObject.PropertyBindingInfo;
955
+ | sap.ui.base.ManagedObject.PropertyBindingInfo
956
+ | `{${string}}`;
865
957
 
866
958
  /**
867
959
  * When a user clicks on the component, a new browser tab will open at this URL.
868
960
  */
869
961
  notificationsTargetUrl?:
870
962
  | sap.ui.core.URI
871
- | sap.ui.base.ManagedObject.PropertyBindingInfo;
963
+ | sap.ui.base.ManagedObject.PropertyBindingInfo
964
+ | `{${string}}`;
872
965
  }
873
966
 
874
967
  /**
@@ -919,6 +1012,8 @@ declare namespace sap {
919
1012
  * and enriches it with the information contained in `oClassInfo`.
920
1013
  *
921
1014
  * `oClassInfo` might contain the same kind of information as described in {@link sap.ui.core.UIComponent.extend}.
1015
+ *
1016
+ * @returns Created class / constructor function
922
1017
  */
923
1018
  static extend<T extends Record<string, unknown>>(
924
1019
  /**
@@ -940,12 +1035,16 @@ declare namespace sap {
940
1035
  ): Function;
941
1036
  /**
942
1037
  * Returns a metadata object for class sap.collaboration.components.fiori.notification.Component.
1038
+ *
1039
+ * @returns Metadata object describing this class
943
1040
  */
944
1041
  static getMetadata(): sap.ui.core.ComponentMetadata;
945
1042
  /**
946
1043
  * Gets current value of property {@link #getNotificationsTargetUrl notificationsTargetUrl}.
947
1044
  *
948
1045
  * When a user clicks on the component, a new browser tab will open at this URL.
1046
+ *
1047
+ * @returns Value of property `notificationsTargetUrl`
949
1048
  */
950
1049
  getNotificationsTargetUrl(): sap.ui.core.URI;
951
1050
  /**
@@ -954,6 +1053,8 @@ declare namespace sap {
954
1053
  * The maximum number of notifications to be displayed.
955
1054
  *
956
1055
  * Default value is `10`.
1056
+ *
1057
+ * @returns Value of property `numberOfNotifications`
957
1058
  */
958
1059
  getNumberOfNotifications(): int;
959
1060
  /**
@@ -962,6 +1063,8 @@ declare namespace sap {
962
1063
  * The OData service URL needed for the notification component.
963
1064
  *
964
1065
  * Default value is `"/sap/opu/odata/sap/SM_INTEGRATION_SRV"`.
1066
+ *
1067
+ * @returns Value of property `oDataServiceUrl`
965
1068
  */
966
1069
  getODataServiceUrl(): sap.ui.core.URI;
967
1070
  /**
@@ -970,6 +1073,8 @@ declare namespace sap {
970
1073
  * The time in seconds before calling the backend to update the notifications.
971
1074
  *
972
1075
  * Default value is `300`.
1076
+ *
1077
+ * @returns Value of property `refreshInterval`
973
1078
  */
974
1079
  getRefreshInterval(): int;
975
1080
  /**
@@ -978,6 +1083,8 @@ declare namespace sap {
978
1083
  * The time in seconds a notification is displayed before the next notification is displayed.
979
1084
  *
980
1085
  * Default value is `10`.
1086
+ *
1087
+ * @returns Value of property `transitionInterval`
981
1088
  */
982
1089
  getTransitionInterval(): int;
983
1090
  /**
@@ -986,6 +1093,8 @@ declare namespace sap {
986
1093
  * When a user clicks on the component, a new browser tab will open at this URL.
987
1094
  *
988
1095
  * When called with a value of `null` or `undefined`, the default value of the property will be restored.
1096
+ *
1097
+ * @returns Reference to `this` in order to allow method chaining
989
1098
  */
990
1099
  setNotificationsTargetUrl(
991
1100
  /**
@@ -1001,6 +1110,8 @@ declare namespace sap {
1001
1110
  * When called with a value of `null` or `undefined`, the default value of the property will be restored.
1002
1111
  *
1003
1112
  * Default value is `10`.
1113
+ *
1114
+ * @returns Reference to `this` in order to allow method chaining
1004
1115
  */
1005
1116
  setNumberOfNotifications(
1006
1117
  /**
@@ -1016,6 +1127,8 @@ declare namespace sap {
1016
1127
  * When called with a value of `null` or `undefined`, the default value of the property will be restored.
1017
1128
  *
1018
1129
  * Default value is `"/sap/opu/odata/sap/SM_INTEGRATION_SRV"`.
1130
+ *
1131
+ * @returns Reference to `this` in order to allow method chaining
1019
1132
  */
1020
1133
  setODataServiceUrl(
1021
1134
  /**
@@ -1031,6 +1144,8 @@ declare namespace sap {
1031
1144
  * When called with a value of `null` or `undefined`, the default value of the property will be restored.
1032
1145
  *
1033
1146
  * Default value is `300`.
1147
+ *
1148
+ * @returns Reference to `this` in order to allow method chaining
1034
1149
  */
1035
1150
  setRefreshInterval(
1036
1151
  /**
@@ -1046,6 +1161,8 @@ declare namespace sap {
1046
1161
  * When called with a value of `null` or `undefined`, the default value of the property will be restored.
1047
1162
  *
1048
1163
  * Default value is `10`.
1164
+ *
1165
+ * @returns Reference to `this` in order to allow method chaining
1049
1166
  */
1050
1167
  setTransitionInterval(
1051
1168
  /**
@@ -1088,6 +1205,8 @@ declare namespace sap {
1088
1205
  * name `sClassName` and enriches it with the information contained in `oClassInfo`.
1089
1206
  *
1090
1207
  * `oClassInfo` might contain the same kind of information as described in {@link sap.ui.base.Object.extend}.
1208
+ *
1209
+ * @returns Created class / constructor function
1091
1210
  */
1092
1211
  static extend<T extends Record<string, unknown>>(
1093
1212
  /**
@@ -1109,6 +1228,8 @@ declare namespace sap {
1109
1228
  ): Function;
1110
1229
  /**
1111
1230
  * Returns a metadata object for class sap.collaboration.components.fiori.sharing.attachment.Attachment.
1231
+ *
1232
+ * @returns Metadata object describing this class
1112
1233
  */
1113
1234
  static getMetadata(): sap.ui.base.Metadata;
1114
1235
  }
@@ -1125,7 +1246,8 @@ declare namespace sap {
1125
1246
  */
1126
1247
  attachments?:
1127
1248
  | object
1128
- | sap.ui.base.ManagedObject.PropertyBindingInfo;
1249
+ | sap.ui.base.ManagedObject.PropertyBindingInfo
1250
+ | `{${string}}`;
1129
1251
 
1130
1252
  /**
1131
1253
  * A JSON object passed to the share component. This object contains the following properties:
@@ -1137,7 +1259,10 @@ declare namespace sap {
1137
1259
  * content which needs to be corrected by the application owners.
1138
1260
  * - share (optional): is a note that will be displayed in the component UI and shared to SAP Jam too
1139
1261
  */
1140
- object?: object | sap.ui.base.ManagedObject.PropertyBindingInfo;
1262
+ object?:
1263
+ | object
1264
+ | sap.ui.base.ManagedObject.PropertyBindingInfo
1265
+ | `{${string}}`;
1141
1266
 
1142
1267
  /**
1143
1268
  * A Business Object such as an Opportunity, Sales Order, Account, etc. from the back-end that will be shared
@@ -1158,7 +1283,8 @@ declare namespace sap {
1158
1283
  */
1159
1284
  externalObject?:
1160
1285
  | object
1161
- | sap.ui.base.ManagedObject.PropertyBindingInfo;
1286
+ | sap.ui.base.ManagedObject.PropertyBindingInfo
1287
+ | `{${string}}`;
1162
1288
  }
1163
1289
 
1164
1290
  /**
@@ -1204,6 +1330,8 @@ declare namespace sap {
1204
1330
  * `sClassName` and enriches it with the information contained in `oClassInfo`.
1205
1331
  *
1206
1332
  * `oClassInfo` might contain the same kind of information as described in {@link sap.ui.core.UIComponent.extend}.
1333
+ *
1334
+ * @returns Created class / constructor function
1207
1335
  */
1208
1336
  static extend<T extends Record<string, unknown>>(
1209
1337
  /**
@@ -1225,6 +1353,8 @@ declare namespace sap {
1225
1353
  ): Function;
1226
1354
  /**
1227
1355
  * Returns a metadata object for class sap.collaboration.components.fiori.sharing.dialog.Component.
1356
+ *
1357
+ * @returns Metadata object describing this class
1228
1358
  */
1229
1359
  static getMetadata(): sap.ui.core.ComponentMetadata;
1230
1360
  /**
@@ -1234,6 +1364,8 @@ declare namespace sap {
1234
1364
  * need to be specified:
1235
1365
  * - attachmentsArray: An array of {@link sap.collaboration.components.fiori.sharing.attachment.Attachment}
1236
1366
  * objects. This array offers users a list of files they can attach.
1367
+ *
1368
+ * @returns Value of property `attachments`
1237
1369
  */
1238
1370
  getAttachments(): object;
1239
1371
  /**
@@ -1254,6 +1386,8 @@ declare namespace sap {
1254
1386
  * be mapped in the Back-end System and Jam in order to make the External Object work.
1255
1387
  * **Note:** the externalObject is dependent on object.id, therefore, the object.id must also be passed
1256
1388
  * to the Share Component. See the parameter "object" for more information.
1389
+ *
1390
+ * @returns Value of property `externalObject`
1257
1391
  */
1258
1392
  getExternalObject(): object;
1259
1393
  /**
@@ -1267,6 +1401,9 @@ declare namespace sap {
1267
1401
  * type of objects (for example: `ap.ui.commons.TextView`) may result in problems in the rendering of the
1268
1402
  * content which needs to be corrected by the application owners.
1269
1403
  * - share (optional): is a note that will be displayed in the component UI and shared to SAP Jam too
1404
+ *
1405
+ *
1406
+ * @returns Value of property `object`
1270
1407
  */
1271
1408
  getObject(): object;
1272
1409
  /**
@@ -1282,6 +1419,8 @@ declare namespace sap {
1282
1419
  * objects. This array offers users a list of files they can attach.
1283
1420
  *
1284
1421
  * When called with a value of `null` or `undefined`, the default value of the property will be restored.
1422
+ *
1423
+ * @returns Reference to `this` in order to allow method chaining
1285
1424
  */
1286
1425
  setAttachments(
1287
1426
  /**
@@ -1309,6 +1448,8 @@ declare namespace sap {
1309
1448
  * to the Share Component. See the parameter "object" for more information.
1310
1449
  *
1311
1450
  * When called with a value of `null` or `undefined`, the default value of the property will be restored.
1451
+ *
1452
+ * @returns Reference to `this` in order to allow method chaining
1312
1453
  */
1313
1454
  setExternalObject(
1314
1455
  /**
@@ -1330,6 +1471,8 @@ declare namespace sap {
1330
1471
  *
1331
1472
  *
1332
1473
  * When called with a value of `null` or `undefined`, the default value of the property will be restored.
1474
+ *
1475
+ * @returns Reference to `this` in order to allow method chaining
1333
1476
  */
1334
1477
  setObject(
1335
1478
  /**
@@ -1354,26 +1497,31 @@ declare namespace sap {
1354
1497
  extends sap.ui.core.$UIComponentSettings {
1355
1498
  width?:
1356
1499
  | sap.ui.core.CSSSize
1357
- | sap.ui.base.ManagedObject.PropertyBindingInfo;
1500
+ | sap.ui.base.ManagedObject.PropertyBindingInfo
1501
+ | `{${string}}`;
1358
1502
 
1359
1503
  height?:
1360
1504
  | sap.ui.core.CSSSize
1361
- | sap.ui.base.ManagedObject.PropertyBindingInfo;
1505
+ | sap.ui.base.ManagedObject.PropertyBindingInfo
1506
+ | `{${string}}`;
1362
1507
 
1363
1508
  /**
1364
1509
  * The OData service URL needed for the share component.
1365
1510
  */
1366
1511
  oDataServiceUrl?:
1367
1512
  | sap.ui.core.URI
1368
- | sap.ui.base.ManagedObject.PropertyBindingInfo;
1513
+ | sap.ui.base.ManagedObject.PropertyBindingInfo
1514
+ | `{${string}}`;
1369
1515
 
1370
1516
  collaborationHostODataServiceUrl?:
1371
1517
  | sap.ui.core.URI
1372
- | sap.ui.base.ManagedObject.PropertyBindingInfo;
1518
+ | sap.ui.base.ManagedObject.PropertyBindingInfo
1519
+ | `{${string}}`;
1373
1520
 
1374
1521
  tunnelServiceUrl?:
1375
1522
  | sap.ui.core.URI
1376
- | sap.ui.base.ManagedObject.PropertyBindingInfo;
1523
+ | sap.ui.base.ManagedObject.PropertyBindingInfo
1524
+ | `{${string}}`;
1377
1525
 
1378
1526
  /**
1379
1527
  * A JSON object passed to the share component. This object contains the following properties:
@@ -1382,11 +1530,15 @@ declare namespace sap {
1382
1530
  * - display (optional): is a UI5 control to be displayed in the component UI
1383
1531
  * - share (optional): is a note that will be displayed in the component UI and shared to SAP Jam too
1384
1532
  */
1385
- object?: object | sap.ui.base.ManagedObject.PropertyBindingInfo;
1533
+ object?:
1534
+ | object
1535
+ | sap.ui.base.ManagedObject.PropertyBindingInfo
1536
+ | `{${string}}`;
1386
1537
 
1387
1538
  attachments?:
1388
1539
  | object
1389
- | sap.ui.base.ManagedObject.PropertyBindingInfo;
1540
+ | sap.ui.base.ManagedObject.PropertyBindingInfo
1541
+ | `{${string}}`;
1390
1542
 
1391
1543
  /**
1392
1544
  * A Business Object such as an Opportunity, Sales Order, Account, etc. from the back-end that will be shared
@@ -1407,7 +1559,8 @@ declare namespace sap {
1407
1559
  */
1408
1560
  externalObject?:
1409
1561
  | object
1410
- | sap.ui.base.ManagedObject.PropertyBindingInfo;
1562
+ | sap.ui.base.ManagedObject.PropertyBindingInfo
1563
+ | `{${string}}`;
1411
1564
  }
1412
1565
 
1413
1566
  /**
@@ -1454,6 +1607,8 @@ declare namespace sap {
1454
1607
  * and enriches it with the information contained in `oClassInfo`.
1455
1608
  *
1456
1609
  * `oClassInfo` might contain the same kind of information as described in {@link sap.ui.core.UIComponent.extend}.
1610
+ *
1611
+ * @returns Created class / constructor function
1457
1612
  */
1458
1613
  static extend<T extends Record<string, unknown>>(
1459
1614
  /**
@@ -1475,16 +1630,22 @@ declare namespace sap {
1475
1630
  ): Function;
1476
1631
  /**
1477
1632
  * Returns a metadata object for class sap.collaboration.components.fiori.sharing.Component.
1633
+ *
1634
+ * @returns Metadata object describing this class
1478
1635
  */
1479
1636
  static getMetadata(): sap.ui.core.ComponentMetadata;
1480
1637
  /**
1481
1638
  * Gets current value of property {@link #getAttachments attachments}.
1639
+ *
1640
+ * @returns Value of property `attachments`
1482
1641
  */
1483
1642
  getAttachments(): object;
1484
1643
  /**
1485
1644
  * Gets current value of property {@link #getCollaborationHostODataServiceUrl collaborationHostODataServiceUrl}.
1486
1645
  *
1487
1646
  * Default value is `"/sap/bc/ui2/smi/rest_tunnel/Jam/api/v1/OData"`.
1647
+ *
1648
+ * @returns Value of property `collaborationHostODataServiceUrl`
1488
1649
  */
1489
1650
  getCollaborationHostODataServiceUrl(): sap.ui.core.URI;
1490
1651
  /**
@@ -1505,12 +1666,16 @@ declare namespace sap {
1505
1666
  * be mapped in the Back-end System and Jam in order to make the External Object work.
1506
1667
  * **Note:** the externalObject is dependent on object.id, therefore, the object.id must also be passed
1507
1668
  * to the Share Component. See the parameter "object" for more information.
1669
+ *
1670
+ * @returns Value of property `externalObject`
1508
1671
  */
1509
1672
  getExternalObject(): object;
1510
1673
  /**
1511
1674
  * Gets current value of property {@link #getHeight height}.
1512
1675
  *
1513
1676
  * Default value is `"100%"`.
1677
+ *
1678
+ * @returns Value of property `height`
1514
1679
  */
1515
1680
  getHeight(): sap.ui.core.CSSSize;
1516
1681
  /**
@@ -1521,6 +1686,9 @@ declare namespace sap {
1521
1686
  * object in the application
1522
1687
  * - display (optional): is a UI5 control to be displayed in the component UI
1523
1688
  * - share (optional): is a note that will be displayed in the component UI and shared to SAP Jam too
1689
+ *
1690
+ *
1691
+ * @returns Value of property `object`
1524
1692
  */
1525
1693
  getObject(): object;
1526
1694
  /**
@@ -1529,24 +1697,32 @@ declare namespace sap {
1529
1697
  * The OData service URL needed for the share component.
1530
1698
  *
1531
1699
  * Default value is `"/sap/opu/odata/sap/SM_INTEGRATION_V2_SRV"`.
1700
+ *
1701
+ * @returns Value of property `oDataServiceUrl`
1532
1702
  */
1533
1703
  getODataServiceUrl(): sap.ui.core.URI;
1534
1704
  /**
1535
1705
  * Gets current value of property {@link #getTunnelServiceUrl tunnelServiceUrl}.
1536
1706
  *
1537
1707
  * Default value is `"/sap/bc/z_sail_httproxy/Jam/api/v1/OData"`.
1708
+ *
1709
+ * @returns Value of property `tunnelServiceUrl`
1538
1710
  */
1539
1711
  getTunnelServiceUrl(): sap.ui.core.URI;
1540
1712
  /**
1541
1713
  * Gets current value of property {@link #getWidth width}.
1542
1714
  *
1543
1715
  * Default value is `"100%"`.
1716
+ *
1717
+ * @returns Value of property `width`
1544
1718
  */
1545
1719
  getWidth(): sap.ui.core.CSSSize;
1546
1720
  /**
1547
1721
  * Sets a new value for property {@link #getAttachments attachments}.
1548
1722
  *
1549
1723
  * When called with a value of `null` or `undefined`, the default value of the property will be restored.
1724
+ *
1725
+ * @returns Reference to `this` in order to allow method chaining
1550
1726
  */
1551
1727
  setAttachments(
1552
1728
  /**
@@ -1560,6 +1736,8 @@ declare namespace sap {
1560
1736
  * When called with a value of `null` or `undefined`, the default value of the property will be restored.
1561
1737
  *
1562
1738
  * Default value is `"/sap/bc/ui2/smi/rest_tunnel/Jam/api/v1/OData"`.
1739
+ *
1740
+ * @returns Reference to `this` in order to allow method chaining
1563
1741
  */
1564
1742
  setCollaborationHostODataServiceUrl(
1565
1743
  /**
@@ -1587,6 +1765,8 @@ declare namespace sap {
1587
1765
  * to the Share Component. See the parameter "object" for more information.
1588
1766
  *
1589
1767
  * When called with a value of `null` or `undefined`, the default value of the property will be restored.
1768
+ *
1769
+ * @returns Reference to `this` in order to allow method chaining
1590
1770
  */
1591
1771
  setExternalObject(
1592
1772
  /**
@@ -1600,6 +1780,8 @@ declare namespace sap {
1600
1780
  * When called with a value of `null` or `undefined`, the default value of the property will be restored.
1601
1781
  *
1602
1782
  * Default value is `"100%"`.
1783
+ *
1784
+ * @returns Reference to `this` in order to allow method chaining
1603
1785
  */
1604
1786
  setHeight(
1605
1787
  /**
@@ -1618,6 +1800,8 @@ declare namespace sap {
1618
1800
  *
1619
1801
  *
1620
1802
  * When called with a value of `null` or `undefined`, the default value of the property will be restored.
1803
+ *
1804
+ * @returns Reference to `this` in order to allow method chaining
1621
1805
  */
1622
1806
  setObject(
1623
1807
  /**
@@ -1633,6 +1817,8 @@ declare namespace sap {
1633
1817
  * When called with a value of `null` or `undefined`, the default value of the property will be restored.
1634
1818
  *
1635
1819
  * Default value is `"/sap/opu/odata/sap/SM_INTEGRATION_V2_SRV"`.
1820
+ *
1821
+ * @returns Reference to `this` in order to allow method chaining
1636
1822
  */
1637
1823
  setODataServiceUrl(
1638
1824
  /**
@@ -1656,6 +1842,8 @@ declare namespace sap {
1656
1842
  * When called with a value of `null` or `undefined`, the default value of the property will be restored.
1657
1843
  *
1658
1844
  * Default value is `"/sap/bc/z_sail_httproxy/Jam/api/v1/OData"`.
1845
+ *
1846
+ * @returns Reference to `this` in order to allow method chaining
1659
1847
  */
1660
1848
  setTunnelServiceUrl(
1661
1849
  /**
@@ -1669,6 +1857,8 @@ declare namespace sap {
1669
1857
  * When called with a value of `null` or `undefined`, the default value of the property will be restored.
1670
1858
  *
1671
1859
  * Default value is `"100%"`.
1860
+ *
1861
+ * @returns Reference to `this` in order to allow method chaining
1672
1862
  */
1673
1863
  setWidth(
1674
1864
  /**
@@ -1688,23 +1878,30 @@ declare namespace sap {
1688
1878
  interface $ComponentSettings extends sap.ui.core.$UIComponentSettings {
1689
1879
  placement?:
1690
1880
  | sap.m.PlacementType
1691
- | sap.ui.base.ManagedObject.PropertyBindingInfo;
1881
+ | sap.ui.base.ManagedObject.PropertyBindingInfo
1882
+ | `{${string}}`;
1692
1883
 
1693
1884
  memberId?: string | sap.ui.base.ManagedObject.PropertyBindingInfo;
1694
1885
 
1695
- memberInfo?: object | sap.ui.base.ManagedObject.PropertyBindingInfo;
1886
+ memberInfo?:
1887
+ | object
1888
+ | sap.ui.base.ManagedObject.PropertyBindingInfo
1889
+ | `{${string}}`;
1696
1890
 
1697
1891
  openingControl?:
1698
1892
  | object
1699
- | sap.ui.base.ManagedObject.PropertyBindingInfo;
1893
+ | sap.ui.base.ManagedObject.PropertyBindingInfo
1894
+ | `{${string}}`;
1700
1895
 
1701
1896
  height?:
1702
1897
  | sap.ui.core.CSSSize
1703
- | sap.ui.base.ManagedObject.PropertyBindingInfo;
1898
+ | sap.ui.base.ManagedObject.PropertyBindingInfo
1899
+ | `{${string}}`;
1704
1900
 
1705
1901
  width?:
1706
1902
  | sap.ui.core.CSSSize
1707
- | sap.ui.base.ManagedObject.PropertyBindingInfo;
1903
+ | sap.ui.base.ManagedObject.PropertyBindingInfo
1904
+ | `{${string}}`;
1708
1905
  }
1709
1906
 
1710
1907
  /**
@@ -1763,6 +1960,8 @@ declare namespace sap {
1763
1960
  * and enriches it with the information contained in `oClassInfo`.
1764
1961
  *
1765
1962
  * `oClassInfo` might contain the same kind of information as described in {@link sap.ui.core.UIComponent.extend}.
1963
+ *
1964
+ * @returns Created class / constructor function
1766
1965
  */
1767
1966
  static extend<T extends Record<string, unknown>>(
1768
1967
  /**
@@ -1784,6 +1983,8 @@ declare namespace sap {
1784
1983
  ): Function;
1785
1984
  /**
1786
1985
  * Returns a metadata object for class sap.collaboration.components.socialprofile.Component.
1986
+ *
1987
+ * @returns Metadata object describing this class
1787
1988
  */
1788
1989
  static getMetadata(): sap.ui.core.ComponentMetadata;
1789
1990
  /**
@@ -1816,36 +2017,50 @@ declare namespace sap {
1816
2017
  * Getter for property `height`. Gets the height of the Social Profile
1817
2018
  *
1818
2019
  * Default value is `380px`
2020
+ *
2021
+ * @returns the value of property `height`
1819
2022
  */
1820
2023
  getHeight(): sap.ui.core.CSSSize;
1821
2024
  /**
1822
2025
  * Getter for property `memberId`. Gets the SAP Jam member id of the user
2026
+ *
2027
+ * @returns the value of property `memberId`
1823
2028
  */
1824
2029
  getMemberId(): string;
1825
2030
  /**
1826
2031
  * Getter for property `memberInfo`. Gets the SAP Jam member information
2032
+ *
2033
+ * @returns member information `memberInfo`
1827
2034
  */
1828
2035
  getMemberInfo(): object;
1829
2036
  /**
1830
2037
  * Getter for property `openingControl`. Gets the opening control for the Social Profile
2038
+ *
2039
+ * @returns the value of property `openingControl`
1831
2040
  */
1832
2041
  getOpeningControl(): object;
1833
2042
  /**
1834
2043
  * Getter for property `placement`. Gets the placement of the Social Profile
1835
2044
  *
1836
2045
  * Default value is `sap.m.PlacementType.Auto`
2046
+ *
2047
+ * @returns the value of property `placement`
1837
2048
  */
1838
2049
  getPlacement(): sap.m.PlacementType;
1839
2050
  /**
1840
2051
  * Getter for property `width`. Gets the width of the Social Profile
1841
2052
  *
1842
2053
  * Default value is `300px`
2054
+ *
2055
+ * @returns the value of property `width`
1843
2056
  */
1844
2057
  getWidth(): sap.ui.core.CSSSize;
1845
2058
  /**
1846
2059
  * Setter for property `height`. Sets the height of the Social Profile
1847
2060
  *
1848
2061
  * Default value is `380px`
2062
+ *
2063
+ * @returns `this` to allow method chaining
1849
2064
  */
1850
2065
  setHeight(
1851
2066
  /**
@@ -1855,6 +2070,8 @@ declare namespace sap {
1855
2070
  ): sap.collaboration.components.socialprofile.Component;
1856
2071
  /**
1857
2072
  * Setter for property `memberId`. Sets the memberId of the user
2073
+ *
2074
+ * @returns `this` to allow method chaining
1858
2075
  */
1859
2076
  setMemberId(
1860
2077
  /**
@@ -1864,6 +2081,8 @@ declare namespace sap {
1864
2081
  ): sap.collaboration.components.socialprofile.Component;
1865
2082
  /**
1866
2083
  * Setter for property `memberInfo`. Sets the memberInformation of the user
2084
+ *
2085
+ * @returns `this` to allow method chaining
1867
2086
  */
1868
2087
  setMemberInfo(
1869
2088
  /**
@@ -1873,6 +2092,8 @@ declare namespace sap {
1873
2092
  ): sap.collaboration.components.socialprofile.Component;
1874
2093
  /**
1875
2094
  * Setter for property `openingControl`. Sets the opening control for the Social Profile
2095
+ *
2096
+ * @returns `this` to allow method chaining
1876
2097
  */
1877
2098
  setOpeningControl(
1878
2099
  /**
@@ -1884,6 +2105,8 @@ declare namespace sap {
1884
2105
  * Setter for property `placement`. Sets the placement of the Social Profile
1885
2106
  *
1886
2107
  * Default value is `sap.m.PlacementType.Auto`
2108
+ *
2109
+ * @returns `this` to allow method chaining
1887
2110
  */
1888
2111
  setPlacement(
1889
2112
  /**
@@ -1895,6 +2118,8 @@ declare namespace sap {
1895
2118
  * Setter for property `width`. Sets the width of the Social Profile
1896
2119
  *
1897
2120
  * Default value is `300px`
2121
+ *
2122
+ * @returns `this` to allow method chaining
1898
2123
  */
1899
2124
  setWidth(
1900
2125
  /**
@@ -1909,29 +2134,40 @@ declare namespace sap {
1909
2134
  interface $ComponentSettings extends sap.ui.core.$UIComponentSettings {
1910
2135
  enableSocial?:
1911
2136
  | boolean
1912
- | sap.ui.base.ManagedObject.PropertyBindingInfo;
2137
+ | sap.ui.base.ManagedObject.PropertyBindingInfo
2138
+ | `{${string}}`;
1913
2139
 
1914
2140
  alignment?:
1915
2141
  | sap.suite.ui.commons.TimelineAlignment
1916
- | sap.ui.base.ManagedObject.PropertyBindingInfo;
2142
+ | sap.ui.base.ManagedObject.PropertyBindingInfo
2143
+ | `{${string}}`;
1917
2144
 
1918
2145
  axisOrientation?:
1919
2146
  | sap.suite.ui.commons.TimelineAxisOrientation
1920
- | sap.ui.base.ManagedObject.PropertyBindingInfo;
2147
+ | sap.ui.base.ManagedObject.PropertyBindingInfo
2148
+ | `{${string}}`;
1921
2149
 
1922
2150
  noDataText?: string | sap.ui.base.ManagedObject.PropertyBindingInfo;
1923
2151
 
1924
- showIcons?: boolean | sap.ui.base.ManagedObject.PropertyBindingInfo;
2152
+ showIcons?:
2153
+ | boolean
2154
+ | sap.ui.base.ManagedObject.PropertyBindingInfo
2155
+ | `{${string}}`;
1925
2156
 
1926
- visible?: boolean | sap.ui.base.ManagedObject.PropertyBindingInfo;
2157
+ visible?:
2158
+ | boolean
2159
+ | sap.ui.base.ManagedObject.PropertyBindingInfo
2160
+ | `{${string}}`;
1927
2161
 
1928
2162
  width?:
1929
2163
  | sap.ui.core.CSSSize
1930
- | sap.ui.base.ManagedObject.PropertyBindingInfo;
2164
+ | sap.ui.base.ManagedObject.PropertyBindingInfo
2165
+ | `{${string}}`;
1931
2166
 
1932
2167
  customFilter?:
1933
2168
  | object[]
1934
- | sap.ui.base.ManagedObject.PropertyBindingInfo;
2169
+ | sap.ui.base.ManagedObject.PropertyBindingInfo
2170
+ | `{${string}}`;
1935
2171
 
1936
2172
  customActionPress?: (oEvent: sap.ui.base.Event) => void;
1937
2173
  }
@@ -2005,6 +2241,8 @@ declare namespace sap {
2005
2241
  * and enriches it with the information contained in `oClassInfo`.
2006
2242
  *
2007
2243
  * `oClassInfo` might contain the same kind of information as described in {@link sap.ui.core.UIComponent.extend}.
2244
+ *
2245
+ * @returns Created class / constructor function
2008
2246
  */
2009
2247
  static extend<T extends Record<string, unknown>>(
2010
2248
  /**
@@ -2026,6 +2264,8 @@ declare namespace sap {
2026
2264
  ): Function;
2027
2265
  /**
2028
2266
  * Returns a metadata object for class sap.collaboration.components.socialtimeline.Component.
2267
+ *
2268
+ * @returns Metadata object describing this class
2029
2269
  */
2030
2270
  static getMetadata(): sap.ui.core.ComponentMetadata;
2031
2271
  /**
@@ -2107,6 +2347,8 @@ declare namespace sap {
2107
2347
  *
2108
2348
  * When called, the context of the event handler (its `this`) will be bound to `oListener` if specified,
2109
2349
  * otherwise it will be bound to this `sap.collaboration.components.socialtimeline.Component` itself.
2350
+ *
2351
+ * @returns Reference to `this` in order to allow method chaining
2110
2352
  */
2111
2353
  attachCustomActionPress(
2112
2354
  /**
@@ -2130,6 +2372,8 @@ declare namespace sap {
2130
2372
  *
2131
2373
  * When called, the context of the event handler (its `this`) will be bound to `oListener` if specified,
2132
2374
  * otherwise it will be bound to this `sap.collaboration.components.socialtimeline.Component` itself.
2375
+ *
2376
+ * @returns Reference to `this` in order to allow method chaining
2133
2377
  */
2134
2378
  attachCustomActionPress(
2135
2379
  /**
@@ -2147,6 +2391,8 @@ declare namespace sap {
2147
2391
  * of this `sap.collaboration.components.socialtimeline.Component`.
2148
2392
  *
2149
2393
  * The passed function and listener object must match the ones used for event registration.
2394
+ *
2395
+ * @returns Reference to `this` in order to allow method chaining
2150
2396
  */
2151
2397
  detachCustomActionPress(
2152
2398
  /**
@@ -2160,6 +2406,8 @@ declare namespace sap {
2160
2406
  ): this;
2161
2407
  /**
2162
2408
  * Fires event {@link #event:customActionPress customActionPress} to attached listeners.
2409
+ *
2410
+ * @returns Reference to `this` in order to allow method chaining
2163
2411
  */
2164
2412
  fireCustomActionPress(
2165
2413
  /**
@@ -2171,12 +2419,16 @@ declare namespace sap {
2171
2419
  * Gets current value of property {@link #getAlignment alignment}.
2172
2420
  *
2173
2421
  * Default value is `Right`.
2422
+ *
2423
+ * @returns Value of property `alignment`
2174
2424
  */
2175
2425
  getAlignment(): sap.suite.ui.commons.TimelineAlignment;
2176
2426
  /**
2177
2427
  * Getter for property `axisOrientation`. Timeline axis orientation.
2178
2428
  *
2179
2429
  * Default value is `Vertical`
2430
+ *
2431
+ * @returns the value of property `axisOrientation`
2180
2432
  */
2181
2433
  getAxisOrientation(): sap.suite.ui.commons.TimelineAxisOrientation;
2182
2434
  /**
@@ -2184,36 +2436,48 @@ declare namespace sap {
2184
2436
  *
2185
2437
  * Default value is `[]`. The customFilter is an array of objects, each object contains text and value.
2186
2438
  * Text is the name of the filter category and value is the filter value.
2439
+ *
2440
+ * @returns the value of property `customFilter`
2187
2441
  */
2188
2442
  getCustomFilter(): any[];
2189
2443
  /**
2190
2444
  * Gets current value of property {@link #getEnableSocial enableSocial}.
2191
2445
  *
2192
2446
  * Default value is `true`.
2447
+ *
2448
+ * @returns Value of property `enableSocial`
2193
2449
  */
2194
2450
  getEnableSocial(): boolean;
2195
2451
  /**
2196
2452
  * Getter for property `noDataText`. This text is displayed when the control has no data.
2197
2453
  *
2198
2454
  * Default value is empty/`undefined`
2455
+ *
2456
+ * @returns the value of property `noDataText`
2199
2457
  */
2200
2458
  getNoDataText(): string;
2201
2459
  /**
2202
2460
  * Getter for property `showIcons`. Show icon on each Timeline item.
2203
2461
  *
2204
2462
  * Default value is `true`
2463
+ *
2464
+ * @returns the value of property `showIcons`
2205
2465
  */
2206
2466
  getShowIcons(): boolean;
2207
2467
  /**
2208
2468
  * Getter for property `visible`. Set Timeline control visibility
2209
2469
  *
2210
2470
  * Default value is `true`
2471
+ *
2472
+ * @returns the value of property `visible`
2211
2473
  */
2212
2474
  getVisible(): boolean;
2213
2475
  /**
2214
2476
  * Getter for property `width`. Sets the width of the Timeline.
2215
2477
  *
2216
2478
  * Default value is `100%`
2479
+ *
2480
+ * @returns the value of property `width`
2217
2481
  */
2218
2482
  getWidth(): sap.ui.core.CSSSize;
2219
2483
  /**
@@ -2222,6 +2486,8 @@ declare namespace sap {
2222
2486
  * When called with a value of `null` or `undefined`, the default value of the property will be restored.
2223
2487
  *
2224
2488
  * Default value is `Right`.
2489
+ *
2490
+ * @returns Reference to `this` in order to allow method chaining
2225
2491
  */
2226
2492
  setAlignment(
2227
2493
  /**
@@ -2233,6 +2499,8 @@ declare namespace sap {
2233
2499
  * Setter for property `axisOrientation`.
2234
2500
  *
2235
2501
  * Default value is `Vertical`
2502
+ *
2503
+ * @returns `this` to allow method chaining
2236
2504
  */
2237
2505
  setAxisOrientation(
2238
2506
  /**
@@ -2244,6 +2512,8 @@ declare namespace sap {
2244
2512
  * Sets a new value for property {@link #getCustomFilter customFilter}.
2245
2513
  *
2246
2514
  * When called with a value of `null` or `undefined`, the default value of the property will be restored.
2515
+ *
2516
+ * @returns Reference to `this` in order to allow method chaining
2247
2517
  */
2248
2518
  setCustomFilter(
2249
2519
  /**
@@ -2257,6 +2527,8 @@ declare namespace sap {
2257
2527
  * When called with a value of `null` or `undefined`, the default value of the property will be restored.
2258
2528
  *
2259
2529
  * Default value is `true`.
2530
+ *
2531
+ * @returns Reference to `this` in order to allow method chaining
2260
2532
  */
2261
2533
  setEnableSocial(
2262
2534
  /**
@@ -2268,6 +2540,8 @@ declare namespace sap {
2268
2540
  * Setter for property `noDataText`.
2269
2541
  *
2270
2542
  * Default value is empty/`undefined`
2543
+ *
2544
+ * @returns `this` to allow method chaining
2271
2545
  */
2272
2546
  setNoDataText(
2273
2547
  /**
@@ -2279,6 +2553,8 @@ declare namespace sap {
2279
2553
  * Setter for property `showIcons`.
2280
2554
  *
2281
2555
  * Default value is `true`
2556
+ *
2557
+ * @returns `this` to allow method chaining
2282
2558
  */
2283
2559
  setShowIcons(
2284
2560
  /**
@@ -2290,6 +2566,8 @@ declare namespace sap {
2290
2566
  * Setter for property `visible`.
2291
2567
  *
2292
2568
  * Default value is `true`
2569
+ *
2570
+ * @returns `this` to allow method chaining
2293
2571
  */
2294
2572
  setVisible(
2295
2573
  /**
@@ -2301,6 +2579,8 @@ declare namespace sap {
2301
2579
  * Setter for property `width`.
2302
2580
  *
2303
2581
  * Default value is `100%`
2582
+ *
2583
+ * @returns `this` to allow method chaining
2304
2584
  */
2305
2585
  setWidth(
2306
2586
  /**