@sapui5/ts-types 1.119.2 → 1.120.0

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 (65) hide show
  1. package/package.json +1 -1
  2. package/types/index.d.ts +0 -1
  3. package/types/sap.apf.d.ts +1 -1
  4. package/types/sap.ca.ui.d.ts +58 -58
  5. package/types/sap.chart.d.ts +1 -1
  6. package/types/sap.collaboration.d.ts +1 -1
  7. package/types/sap.esh.search.ui.d.ts +111 -1
  8. package/types/sap.f.d.ts +2 -2
  9. package/types/sap.fe.core.d.ts +10 -1
  10. package/types/sap.fe.macros.d.ts +78 -74
  11. package/types/sap.fe.navigation.d.ts +1 -1
  12. package/types/sap.fe.placeholder.d.ts +1 -1
  13. package/types/sap.fe.templates.d.ts +11 -2
  14. package/types/sap.fe.test.d.ts +5 -5
  15. package/types/sap.fe.tools.d.ts +1 -1
  16. package/types/sap.feedback.ui.d.ts +1 -1
  17. package/types/sap.gantt.d.ts +933 -15
  18. package/types/sap.insights.d.ts +93 -12
  19. package/types/sap.m.d.ts +6447 -913
  20. package/types/sap.makit.d.ts +1 -1
  21. package/types/sap.me.d.ts +1 -1
  22. package/types/sap.ndc.d.ts +1 -1
  23. package/types/sap.ovp.d.ts +4 -3
  24. package/types/sap.rules.ui.d.ts +1 -1
  25. package/types/sap.sac.df.d.ts +848 -975
  26. package/types/sap.suite.ui.commons.d.ts +34 -2
  27. package/types/sap.suite.ui.generic.template.d.ts +29 -1
  28. package/types/sap.suite.ui.microchart.d.ts +1 -1
  29. package/types/sap.tnt.d.ts +47 -1
  30. package/types/sap.ui.codeeditor.d.ts +1 -1
  31. package/types/sap.ui.commons.d.ts +1 -1
  32. package/types/sap.ui.comp.d.ts +572 -35
  33. package/types/sap.ui.core.d.ts +1925 -329
  34. package/types/sap.ui.dt.d.ts +1 -1
  35. package/types/sap.ui.export.d.ts +1 -1
  36. package/types/sap.ui.fl.d.ts +3 -1
  37. package/types/sap.ui.generic.app.d.ts +1 -1
  38. package/types/sap.ui.generic.template.d.ts +1 -1
  39. package/types/sap.ui.integration.d.ts +1 -1
  40. package/types/sap.ui.layout.d.ts +125 -102
  41. package/types/sap.ui.mdc.d.ts +1857 -1151
  42. package/types/sap.ui.richtexteditor.d.ts +4 -12
  43. package/types/sap.ui.rta.d.ts +1 -1
  44. package/types/sap.ui.suite.d.ts +1 -1
  45. package/types/sap.ui.support.d.ts +7 -1
  46. package/types/sap.ui.table.d.ts +117 -47
  47. package/types/sap.ui.testrecorder.d.ts +1 -1
  48. package/types/sap.ui.unified.d.ts +1 -1
  49. package/types/sap.ui.ux3.d.ts +1 -1
  50. package/types/sap.ui.vbm.d.ts +1 -1
  51. package/types/sap.ui.vk.d.ts +5 -11
  52. package/types/sap.ui.vtm.d.ts +1 -1
  53. package/types/sap.ui.webc.common.d.ts +1 -1
  54. package/types/sap.ui.webc.fiori.d.ts +470 -136
  55. package/types/sap.ui.webc.main.d.ts +3623 -1052
  56. package/types/sap.uiext.inbox.d.ts +1 -1
  57. package/types/sap.ushell.d.ts +1971 -832
  58. package/types/sap.ushell_abap.d.ts +1 -1
  59. package/types/sap.uxap.d.ts +1 -1
  60. package/types/sap.viz.d.ts +1 -1
  61. package/types/sap.webanalytics.core.d.ts +1 -1
  62. package/types/sap.zen.commons.d.ts +1 -1
  63. package/types/sap.zen.crosstab.d.ts +1 -1
  64. package/types/sap.zen.dsh.d.ts +1 -1
  65. package/types/sap.landvisz.d.ts +0 -7875
@@ -1,4 +1,4 @@
1
- // For Library Version: 1.119.0
1
+ // For Library Version: 1.120.0
2
2
 
3
3
  declare namespace sap {
4
4
  namespace esh {
@@ -395,6 +395,35 @@ declare namespace sap {
395
395
  | sap.ui.base.ManagedObject.PropertyBindingInfo
396
396
  | `{${string}}`;
397
397
 
398
+ /**
399
+ * @since 1.120
400
+ *
401
+ * Callback for formatting the filter string to be displayed in the filter bar (for closed facet panel).
402
+ */
403
+ formatFilterBarText?:
404
+ | Function
405
+ | sap.ui.base.ManagedObject.PropertyBindingInfo
406
+ | `{${string}}`;
407
+
408
+ /**
409
+ * @since 1.120
410
+ *
411
+ * Callback for checking whether the filter bar is visible.
412
+ */
413
+ isFilterBarVisible?:
414
+ | Function
415
+ | sap.ui.base.ManagedObject.PropertyBindingInfo
416
+ | `{${string}}`;
417
+
418
+ /**
419
+ * @since 1.120
420
+ *
421
+ * Adds a callback function which is called whenever there is a user triggered event.
422
+ */
423
+ eventConsumers?:
424
+ | string
425
+ | sap.ui.base.ManagedObject.PropertyBindingInfo;
426
+
398
427
  /**
399
428
  * Control instances which are part of this composite control.
400
429
  */
@@ -777,6 +806,16 @@ declare namespace sap {
777
806
  * @returns Value of property `enableQueryLanguage`
778
807
  */
779
808
  getEnableQueryLanguage(): boolean;
809
+ /**
810
+ * @since 1.120
811
+ *
812
+ * Gets current value of property {@link #getEventConsumers eventConsumers}.
813
+ *
814
+ * Adds a callback function which is called whenever there is a user triggered event.
815
+ *
816
+ * @returns Value of property `eventConsumers`
817
+ */
818
+ getEventConsumers(): string;
780
819
  /**
781
820
  * @since 1.108.0
782
821
  *
@@ -873,6 +912,16 @@ declare namespace sap {
873
912
  * @returns Value of property `folderModeForInitialSearch`
874
913
  */
875
914
  getFolderModeForInitialSearch(): boolean;
915
+ /**
916
+ * @since 1.120
917
+ *
918
+ * Gets current value of property {@link #getFormatFilterBarText formatFilterBarText}.
919
+ *
920
+ * Callback for formatting the filter string to be displayed in the filter bar (for closed facet panel).
921
+ *
922
+ * @returns Value of property `formatFilterBarText`
923
+ */
924
+ getFormatFilterBarText(): Function;
876
925
  /**
877
926
  * @since 1.94.0
878
927
  *
@@ -903,6 +952,16 @@ declare namespace sap {
903
952
  * @returns Value of property `initAsync`
904
953
  */
905
954
  getInitAsync(): Function;
955
+ /**
956
+ * @since 1.120
957
+ *
958
+ * Gets current value of property {@link #getIsFilterBarVisible isFilterBarVisible}.
959
+ *
960
+ * Callback for checking whether the filter bar is visible.
961
+ *
962
+ * @returns Value of property `isFilterBarVisible`
963
+ */
964
+ getIsFilterBarVisible(): Function;
906
965
  /**
907
966
  * @since 1.113.0
908
967
  *
@@ -1321,6 +1380,23 @@ declare namespace sap {
1321
1380
  */
1322
1381
  bEnableQueryLanguage?: boolean
1323
1382
  ): this;
1383
+ /**
1384
+ * @since 1.120
1385
+ *
1386
+ * Sets a new value for property {@link #getEventConsumers eventConsumers}.
1387
+ *
1388
+ * Adds a callback function which is called whenever there is a user triggered event.
1389
+ *
1390
+ * When called with a value of `null` or `undefined`, the default value of the property will be restored.
1391
+ *
1392
+ * @returns Reference to `this` in order to allow method chaining
1393
+ */
1394
+ setEventConsumers(
1395
+ /**
1396
+ * New value for property `eventConsumers`
1397
+ */
1398
+ sEventConsumers: string
1399
+ ): this;
1324
1400
  /**
1325
1401
  * @since 1.108.0
1326
1402
  *
@@ -1464,6 +1540,23 @@ declare namespace sap {
1464
1540
  */
1465
1541
  bFolderModeForInitialSearch?: boolean
1466
1542
  ): this;
1543
+ /**
1544
+ * @since 1.120
1545
+ *
1546
+ * Sets a new value for property {@link #getFormatFilterBarText formatFilterBarText}.
1547
+ *
1548
+ * Callback for formatting the filter string to be displayed in the filter bar (for closed facet panel).
1549
+ *
1550
+ * When called with a value of `null` or `undefined`, the default value of the property will be restored.
1551
+ *
1552
+ * @returns Reference to `this` in order to allow method chaining
1553
+ */
1554
+ setFormatFilterBarText(
1555
+ /**
1556
+ * New value for property `formatFilterBarText`
1557
+ */
1558
+ fnFormatFilterBarText: Function
1559
+ ): this;
1467
1560
  /**
1468
1561
  * @since 1.94.0
1469
1562
  *
@@ -1515,6 +1608,23 @@ declare namespace sap {
1515
1608
  */
1516
1609
  fnInitAsync: Function
1517
1610
  ): this;
1611
+ /**
1612
+ * @since 1.120
1613
+ *
1614
+ * Sets a new value for property {@link #getIsFilterBarVisible isFilterBarVisible}.
1615
+ *
1616
+ * Callback for checking whether the filter bar is visible.
1617
+ *
1618
+ * When called with a value of `null` or `undefined`, the default value of the property will be restored.
1619
+ *
1620
+ * @returns Reference to `this` in order to allow method chaining
1621
+ */
1622
+ setIsFilterBarVisible(
1623
+ /**
1624
+ * New value for property `isFilterBarVisible`
1625
+ */
1626
+ fnIsFilterBarVisible: Function
1627
+ ): this;
1518
1628
  /**
1519
1629
  * @since 1.113.0
1520
1630
  *
package/types/sap.f.d.ts CHANGED
@@ -1,4 +1,4 @@
1
- // For Library Version: 1.119.1
1
+ // For Library Version: 1.120.0
2
2
 
3
3
  declare namespace sap {
4
4
  /**
@@ -2558,7 +2558,7 @@ declare namespace sap {
2558
2558
  };
2559
2559
 
2560
2560
  /**
2561
- * Configures the target layouts of the navigation acion buttons in a column.
2561
+ * Configures the target layouts of the navigation action buttons in a column.
2562
2562
  */
2563
2563
  type NavigationActionsTargets = {
2564
2564
  /**
@@ -1,4 +1,4 @@
1
- // For Library Version: 1.119.0
1
+ // For Library Version: 1.120.0
2
2
 
3
3
  declare namespace sap {
4
4
  /**
@@ -127,10 +127,19 @@ declare namespace sap {
127
127
  * External - The creation is done in a different application specified via the parameter 'outbound'
128
128
  */
129
129
  creationMode: string;
130
+ /**
131
+ * The initial data for the created document
132
+ */
133
+ data?: object;
130
134
  /**
131
135
  * The navigation target where the document is created in case of creationMode 'External'
132
136
  */
133
137
  outbound?: string;
138
+ /**
139
+ * The contexts that are selected in the table initiating the creation. Used in case of a TreeTable to determine
140
+ * the parent context of the created document
141
+ */
142
+ selectedContexts?: sap.ui.model.odata.v4.Context[];
134
143
  /**
135
144
  * ID of the table
136
145
  */
@@ -1,4 +1,4 @@
1
- // For Library Version: 1.119.0
1
+ // For Library Version: 1.120.0
2
2
 
3
3
  declare namespace sap {
4
4
  namespace fe {
@@ -71,17 +71,6 @@ declare namespace sap {
71
71
  };
72
72
  }
73
73
 
74
- namespace field {
75
- interface $TextAreaExSettings extends sap.m.$TextAreaSettings {}
76
-
77
- /**
78
- * Extension of the TextArea control to add a check for the maximum length when setting the value.
79
- */
80
- class TextAreaEx extends sap.m.TextArea {
81
- constructor();
82
- }
83
- }
84
-
85
74
  namespace table {
86
75
  /**
87
76
  * Definition of a custom action to be used inside the table toolbar
@@ -269,11 +258,6 @@ declare namespace sap {
269
258
  | sap.ui.base.ManagedObject.PropertyBindingInfo
270
259
  | `{${string}}`;
271
260
 
272
- /**
273
- * ID of the chart
274
- */
275
- id?: string | sap.ui.base.ManagedObject.PropertyBindingInfo;
276
-
277
261
  /**
278
262
  * Metadata path to the presentation context (UI.Chart with or without a qualifier)
279
263
  */
@@ -335,6 +319,9 @@ declare namespace sap {
335
319
  | `{${string}}`;
336
320
  }
337
321
 
322
+ interface $FlexibleColumnLayoutActionsSettings
323
+ extends sap.ui.core.$ControlSettings {}
324
+
338
325
  interface $FieldSettings extends sap.fe.macros.$MacroAPISettings {
339
326
  /**
340
327
  * Defines the path of the context used in the current page or block.
@@ -350,11 +337,6 @@ declare namespace sap {
350
337
  | sap.ui.base.ManagedObject.PropertyBindingInfo
351
338
  | `{${string}}`;
352
339
 
353
- /**
354
- * The identifier of the Field control.
355
- */
356
- id?: string | sap.ui.base.ManagedObject.PropertyBindingInfo;
357
-
358
340
  /**
359
341
  * Defines the relative path of the property in the metamodel, based on the current contextPath.
360
342
  */
@@ -385,11 +367,6 @@ declare namespace sap {
385
367
  */
386
368
  contextPath?: string | sap.ui.base.ManagedObject.PropertyBindingInfo;
387
369
 
388
- /**
389
- * The identifier of the FilterBar control.
390
- */
391
- id?: string | sap.ui.base.ManagedObject.PropertyBindingInfo;
392
-
393
370
  /**
394
371
  * If true, the search is triggered automatically when a filter value is changed.
395
372
  */
@@ -447,11 +424,6 @@ declare namespace sap {
447
424
  | sap.ui.base.ManagedObject.PropertyBindingInfo
448
425
  | `{${string}}`;
449
426
 
450
- /**
451
- * The identifier of the form control.
452
- */
453
- id?: string | sap.ui.base.ManagedObject.PropertyBindingInfo;
454
-
455
427
  /**
456
428
  * Defines the relative path of the property in the metamodel, based on the current contextPath.
457
429
  */
@@ -476,11 +448,6 @@ declare namespace sap {
476
448
  | sap.ui.base.ManagedObject.PropertyBindingInfo
477
449
  | `{${string}}`;
478
450
 
479
- /**
480
- * The identifier of the FormElement building block.
481
- */
482
- id?: string | sap.ui.base.ManagedObject.PropertyBindingInfo;
483
-
484
451
  /**
485
452
  * Label shown for the field. If not set, the label from the annotations will be shown.
486
453
  */
@@ -509,6 +476,49 @@ declare namespace sap {
509
476
  fields?: sap.ui.core.Control;
510
477
  }
511
478
 
479
+ interface $KPITagSettings extends sap.ui.core.$ControlSettings {
480
+ /**
481
+ * The Number to be displayed.
482
+ */
483
+ number?:
484
+ | number
485
+ | sap.ui.base.ManagedObject.PropertyBindingInfo
486
+ | `{${string}}`;
487
+
488
+ /**
489
+ * An event is triggered when the KPI is pressed.
490
+ */
491
+ press?: string | sap.ui.base.ManagedObject.PropertyBindingInfo;
492
+
493
+ /**
494
+ * Set it to `true` if the KPI should display its status icon.
495
+ */
496
+ showIcon?:
497
+ | boolean
498
+ | sap.ui.base.ManagedObject.PropertyBindingInfo
499
+ | `{${string}}`;
500
+
501
+ /**
502
+ * The Status to be displayed.
503
+ */
504
+ status?: string | sap.ui.base.ManagedObject.PropertyBindingInfo;
505
+
506
+ /**
507
+ * The Text to be displayed.
508
+ */
509
+ text?: string | sap.ui.base.ManagedObject.PropertyBindingInfo;
510
+
511
+ /**
512
+ * The Tooltip to be displayed.
513
+ */
514
+ tooltip?: string | sap.ui.base.ManagedObject.PropertyBindingInfo;
515
+
516
+ /**
517
+ * The Unit of Measure of the number to be displayed.
518
+ */
519
+ unit?: string | sap.ui.base.ManagedObject.PropertyBindingInfo;
520
+ }
521
+
512
522
  interface $MicroChartSettings extends sap.ui.core.$ControlSettings {}
513
523
 
514
524
  interface $MultiValueFieldSettings extends sap.ui.core.$ControlSettings {
@@ -520,11 +530,6 @@ declare namespace sap {
520
530
  | sap.ui.base.ManagedObject.PropertyBindingInfo
521
531
  | `{${string}}`;
522
532
 
523
- /**
524
- * The 'id' property
525
- */
526
- id?: string | sap.ui.base.ManagedObject.PropertyBindingInfo;
527
-
528
533
  /**
529
534
  * Defines the relative Metadata path to the MultiValueField.
530
535
  * The metaPath should point to a Property or DataField.
@@ -543,12 +548,7 @@ declare namespace sap {
543
548
  | `{${string}}`;
544
549
  }
545
550
 
546
- interface $PaginatorSettings extends sap.ui.core.$ControlSettings {
547
- /**
548
- * The identifier of the Paginator control.
549
- */
550
- id?: string | sap.ui.base.ManagedObject.PropertyBindingInfo;
551
- }
551
+ interface $PaginatorSettings extends sap.ui.core.$ControlSettings {}
552
552
 
553
553
  interface $RichTextEditorSettings extends sap.ui.core.$ControlSettings {
554
554
  /**
@@ -560,11 +560,6 @@ declare namespace sap {
560
560
  | sap.ui.base.ManagedObject.PropertyBindingInfo
561
561
  | `{${string}}`;
562
562
 
563
- /**
564
- * ID of the editor
565
- */
566
- id?: string | sap.ui.base.ManagedObject.PropertyBindingInfo;
567
-
568
563
  /**
569
564
  * Use the readOnly attribute to override the edit flow of the page.
570
565
  * By setting 'readOnly' to true, a FormattedText will be displayed instead of the editor.
@@ -607,11 +602,6 @@ declare namespace sap {
607
602
  | sap.ui.base.ManagedObject.PropertyBindingInfo
608
603
  | `{${string}}`;
609
604
 
610
- /**
611
- * ID of the editor
612
- */
613
- id?: string | sap.ui.base.ManagedObject.PropertyBindingInfo;
614
-
615
605
  /**
616
606
  * The metaPath of the displayed property
617
607
  */
@@ -639,11 +629,6 @@ declare namespace sap {
639
629
  }
640
630
 
641
631
  interface $ShareSettings extends sap.ui.core.$ControlSettings {
642
- /**
643
- * The identifier of the Share control.
644
- */
645
- id?: string | sap.ui.base.ManagedObject.PropertyBindingInfo;
646
-
647
632
  /**
648
633
  * Whether the share control should be visible on the screen.
649
634
  */
@@ -735,11 +720,6 @@ declare namespace sap {
735
720
  | sap.ui.base.ManagedObject.PropertyBindingInfo
736
721
  | `{${string}}`;
737
722
 
738
- /**
739
- * The identifier of the table control.
740
- */
741
- id?: string | sap.ui.base.ManagedObject.PropertyBindingInfo;
742
-
743
723
  /**
744
724
  * Defines whether to display the search action.
745
725
  */
@@ -810,8 +790,11 @@ declare namespace sap {
810
790
 
811
791
  /**
812
792
  * Defines the selection mode to be used by the table.
813
- * Allowed values are `None`, `Single`, `Multi` or `Auto`. If not set to 'None', SAP Fiori elements hooks
814
- * into the standard lifecycle to determine the consistent selection mode.
793
+ * Allowed values are `None`, `Single`, `ForceSingle`, `Multi`, `ForceMulti` or `Auto`.
794
+ * If set to 'Single', 'Multi' or 'Auto', SAP Fiori elements hooks into the standard lifecycle to determine
795
+ * the consistent selection mode.
796
+ * If set to 'ForceSingle' or 'ForceMulti' your choice will be respected but this might not respect the
797
+ * Fiori guidelines.
815
798
  */
816
799
  selectionMode?: string | sap.ui.base.ManagedObject.PropertyBindingInfo;
817
800
 
@@ -910,6 +893,21 @@ declare namespace sap {
910
893
  */
911
894
  getSelectedContexts(): sap.ui.model.odata.v4.Context[];
912
895
  }
896
+ /**
897
+ * @since 1.93.0
898
+ *
899
+ * Building block for adding overflow toolbar buttons to integrate into the flexible column layout support
900
+ * from Fiori elements.
901
+ * Usage example:
902
+ *
903
+ * ```javascript
904
+ *
905
+ * <macro:FlexibleColumnLayoutActions />
906
+ * ```
907
+ */
908
+ class FlexibleColumnLayoutActions extends sap.ui.core.Control {
909
+ constructor();
910
+ }
913
911
  /**
914
912
  * Building block for creating a field based on the metadata provided by OData V4.
915
913
  *
@@ -1078,6 +1076,12 @@ declare namespace sap {
1078
1076
  class FormElement extends sap.ui.core.Control {
1079
1077
  constructor();
1080
1078
  }
1079
+ /**
1080
+ * Building block used to create a KPI tag.
1081
+ */
1082
+ class KPITag extends sap.ui.core.Control {
1083
+ constructor();
1084
+ }
1081
1085
  /**
1082
1086
  * @since 1.93.0
1083
1087
  *
@@ -1127,7 +1131,6 @@ declare namespace sap {
1127
1131
  }
1128
1132
  /**
1129
1133
  * @since 1.117.0
1130
- * @experimental (since 1.117.0)
1131
1134
  *
1132
1135
  * Building block that exposes the RichTextEditor UI5 control.
1133
1136
  * It's used to enter formatted text, and uses the third-party component called TinyMCE.
@@ -1137,7 +1140,6 @@ declare namespace sap {
1137
1140
  }
1138
1141
  /**
1139
1142
  * @since 1.117.0
1140
- * @experimental (since 1.117.0)
1141
1143
  *
1142
1144
  * Metadata-driven building block that exposes the RichTextEditor UI5 control.
1143
1145
  * It's used to enter formatted text and uses the third-party component called TinyMCE.
@@ -1376,9 +1378,9 @@ declare namespace sap {
1376
1378
  interface IUI5DefineDependencyNames {
1377
1379
  "sap/fe/macros/chart/ChartAPI": undefined;
1378
1380
 
1379
- "sap/fe/macros/field/FieldAPI": undefined;
1381
+ "sap/fe/macros/fcl/FlexibleColumnLayoutActions.block": undefined;
1380
1382
 
1381
- "sap/fe/macros/field/TextAreaEx": undefined;
1383
+ "sap/fe/macros/field/FieldAPI": undefined;
1382
1384
 
1383
1385
  "sap/fe/macros/filterBar/FilterBarAPI": undefined;
1384
1386
 
@@ -1386,6 +1388,8 @@ declare namespace sap {
1386
1388
 
1387
1389
  "sap/fe/macros/form/FormElement.block": undefined;
1388
1390
 
1391
+ "sap/fe/macros/kpiTag/KPITag.block": undefined;
1392
+
1389
1393
  "sap/fe/macros/library": undefined;
1390
1394
 
1391
1395
  "sap/fe/macros/MacroAPI": undefined;
@@ -1,4 +1,4 @@
1
- // For Library Version: 1.119.0
1
+ // For Library Version: 1.120.0
2
2
 
3
3
  declare namespace sap {
4
4
  namespace fe {
@@ -1,3 +1,3 @@
1
- // For Library Version: 1.119.0
1
+ // For Library Version: 1.120.0
2
2
 
3
3
  declare namespace sap {}
@@ -1,4 +1,4 @@
1
- // For Library Version: 1.119.0
1
+ // For Library Version: 1.120.0
2
2
 
3
3
  declare namespace sap {
4
4
  namespace fe {
@@ -100,6 +100,15 @@ declare namespace sap {
100
100
  | string[]
101
101
  | undefined
102
102
  ): Promise<void>;
103
+ /**
104
+ * Provides an option for the selection of a specific tab programamatically.
105
+ */
106
+ setSelectedTab(
107
+ /**
108
+ * Specific tab to be selected.
109
+ */
110
+ tabKey: string
111
+ ): void;
103
112
  }
104
113
  /**
105
114
  * Controller class for the list report page, used inside an SAP Fiori elements application.
@@ -215,7 +224,7 @@ declare namespace sap {
215
224
  * The message to be displayed
216
225
  */
217
226
  messages: sap.ui.core.message.Message[]
218
- ): Promise<void>;
227
+ ): void;
219
228
  /**
220
229
  * Displays or hides the side content of an object page.
221
230
  */
@@ -1,4 +1,4 @@
1
- // For Library Version: 1.119.0
1
+ // For Library Version: 1.120.0
2
2
 
3
3
  declare namespace sap {
4
4
  namespace fe {
@@ -2505,7 +2505,7 @@ declare namespace sap {
2505
2505
  /**
2506
2506
  * ListReport actions
2507
2507
  */
2508
- interface actions {
2508
+ interface actions extends sap.fe.test.TemplatePage.actions {
2509
2509
  /**
2510
2510
  * Collapses or expands the page header.
2511
2511
  *
@@ -2565,7 +2565,7 @@ declare namespace sap {
2565
2565
  /**
2566
2566
  * ListReport assertions
2567
2567
  */
2568
- interface assertions {
2568
+ interface assertions extends sap.fe.test.TemplatePage.assertions {
2569
2569
  /**
2570
2570
  * Checks the view of a Multiple View List Report table.
2571
2571
  *
@@ -2626,7 +2626,7 @@ declare namespace sap {
2626
2626
  /**
2627
2627
  * ObjectPage actions
2628
2628
  */
2629
- interface actions {
2629
+ interface actions extends sap.fe.test.TemplatePage.actions {
2630
2630
  /**
2631
2631
  * Collapses or expands the page header.
2632
2632
  *
@@ -2716,7 +2716,7 @@ declare namespace sap {
2716
2716
  /**
2717
2717
  * ObjectPage assertions
2718
2718
  */
2719
- interface assertions {
2719
+ interface assertions extends sap.fe.test.TemplatePage.assertions {
2720
2720
  /**
2721
2721
  * Returns a {@link sap.fe.test.api.FilterBarAssertions} instance.
2722
2722
  *
@@ -1,3 +1,3 @@
1
- // For Library Version: 1.119.0
1
+ // For Library Version: 1.120.0
2
2
 
3
3
  declare namespace sap {}
@@ -1,3 +1,3 @@
1
- // For Library Version: 1.119.0
1
+ // For Library Version: 1.120.0
2
2
 
3
3
  declare namespace sap {}