@sapui5/ts-types 1.115.0 → 1.115.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 (44) hide show
  1. package/package.json +1 -1
  2. package/types/index.d.ts +2 -0
  3. package/types/sap.chart.d.ts +92 -49
  4. package/types/sap.f.d.ts +775 -686
  5. package/types/sap.fe.core.d.ts +57 -57
  6. package/types/sap.fe.macros.d.ts +66 -10
  7. package/types/sap.fe.navigation.d.ts +5 -5
  8. package/types/sap.fe.placeholder.d.ts +3 -0
  9. package/types/sap.fe.templates.d.ts +5 -6
  10. package/types/sap.fe.test.d.ts +4 -4
  11. package/types/sap.fe.tools.d.ts +3 -0
  12. package/types/sap.m.d.ts +7827 -6468
  13. package/types/sap.makit.d.ts +77 -30
  14. package/types/sap.me.d.ts +108 -75
  15. package/types/sap.ndc.d.ts +42 -30
  16. package/types/sap.suite.ui.generic.template.d.ts +72 -64
  17. package/types/sap.suite.ui.microchart.d.ts +354 -225
  18. package/types/sap.tnt.d.ts +67 -73
  19. package/types/sap.ui.codeeditor.d.ts +38 -34
  20. package/types/sap.ui.commons.d.ts +841 -675
  21. package/types/sap.ui.comp.d.ts +2545 -2065
  22. package/types/sap.ui.core.d.ts +2532 -1908
  23. package/types/sap.ui.dt.d.ts +1 -1
  24. package/types/sap.ui.export.d.ts +42 -27
  25. package/types/sap.ui.fl.d.ts +78 -56
  26. package/types/sap.ui.integration.d.ts +345 -299
  27. package/types/sap.ui.layout.d.ts +347 -337
  28. package/types/sap.ui.mdc.d.ts +959 -801
  29. package/types/sap.ui.richtexteditor.d.ts +62 -37
  30. package/types/sap.ui.rta.d.ts +7 -7
  31. package/types/sap.ui.suite.d.ts +23 -8
  32. package/types/sap.ui.support.d.ts +11 -11
  33. package/types/sap.ui.table.d.ts +476 -420
  34. package/types/sap.ui.testrecorder.d.ts +1 -1
  35. package/types/sap.ui.unified.d.ts +1186 -909
  36. package/types/sap.ui.ux3.d.ts +957 -736
  37. package/types/sap.ui.webc.common.d.ts +9 -9
  38. package/types/sap.ui.webc.fiori.d.ts +519 -386
  39. package/types/sap.ui.webc.main.d.ts +1377 -902
  40. package/types/sap.uiext.inbox.d.ts +135 -31
  41. package/types/sap.ushell.d.ts +379 -267
  42. package/types/sap.ushell_abap.d.ts +1 -1
  43. package/types/sap.uxap.d.ts +280 -242
  44. package/types/sap.viz.d.ts +1677 -601
@@ -39,7 +39,7 @@ declare namespace sap {
39
39
  }
40
40
 
41
41
  /**
42
- * @SINCE 1.90.0
42
+ * @since 1.90.0
43
43
  *
44
44
  * A controller extension offering hooks into the edit flow of the application
45
45
  */
@@ -47,7 +47,7 @@ declare namespace sap {
47
47
  constructor();
48
48
 
49
49
  /**
50
- * @SINCE 1.90.0
50
+ * @since 1.90.0
51
51
  *
52
52
  * Submit the current set of changes and navigate back.
53
53
  *
@@ -60,7 +60,7 @@ declare namespace sap {
60
60
  oContext: sap.ui.model.odata.v4.Context
61
61
  ): Promise<void>;
62
62
  /**
63
- * @SINCE 1.90.0
63
+ * @since 1.90.0
64
64
  *
65
65
  * Discard the editable document.
66
66
  *
@@ -86,7 +86,7 @@ declare namespace sap {
86
86
  }
87
87
  ): Promise<any>;
88
88
  /**
89
- * @SINCE 1.90.0
89
+ * @since 1.90.0
90
90
  *
91
91
  * Creates a new document.
92
92
  *
@@ -126,7 +126,7 @@ declare namespace sap {
126
126
  }
127
127
  ): Promise<void>;
128
128
  /**
129
- * @SINCE 1.90.0
129
+ * @since 1.90.0
130
130
  *
131
131
  * Deletes the document.
132
132
  *
@@ -152,7 +152,7 @@ declare namespace sap {
152
152
  }
153
153
  ): Promise<void>;
154
154
  /**
155
- * @SINCE 1.90.0
155
+ * @since 1.90.0
156
156
  *
157
157
  * Creates a draft document for an existing active document.
158
158
  *
@@ -165,7 +165,7 @@ declare namespace sap {
165
165
  oContext: sap.ui.model.odata.v4.Context
166
166
  ): Promise<void>;
167
167
  /**
168
- * @SINCE 1.90.0
168
+ * @since 1.90.0
169
169
  *
170
170
  * Invokes an action (bound or unbound) and tracks the changes so that other pages can be refreshed and
171
171
  * show the updated data upon navigation.
@@ -228,7 +228,7 @@ declare namespace sap {
228
228
  }
229
229
  ): Promise<void>;
230
230
  /**
231
- * @SINCE 1.98.0
231
+ * @since 1.98.0
232
232
  *
233
233
  * This function can be used to intercept the 'Create' action. You can execute custom coding in this function.
234
234
  * The framework waits for the returned promise to be resolved before continuing the 'Create' action.
@@ -256,7 +256,7 @@ declare namespace sap {
256
256
  }
257
257
  ): Promise<void>;
258
258
  /**
259
- * @SINCE 1.98.0
259
+ * @since 1.98.0
260
260
  *
261
261
  * This function can be used to intercept the 'Delete' action. You can execute custom coding in this function.
262
262
  * The framework waits for the returned promise to be resolved before continuing the 'Delete' action.
@@ -280,7 +280,7 @@ declare namespace sap {
280
280
  }
281
281
  ): Promise<void>;
282
282
  /**
283
- * @SINCE 1.98.0
283
+ * @since 1.98.0
284
284
  *
285
285
  * This function can be used to intercept the 'Discard' action. You can execute custom coding in this function.
286
286
  * The framework waits for the returned promise to be resolved before continuing the 'Discard' action.
@@ -304,7 +304,7 @@ declare namespace sap {
304
304
  }
305
305
  ): Promise<void>;
306
306
  /**
307
- * @SINCE 1.98.0
307
+ * @since 1.98.0
308
308
  *
309
309
  * This function can be used to intercept the 'Edit' action. You can execute custom coding in this function.
310
310
  * The framework waits for the returned promise to be resolved before continuing the 'Edit' action.
@@ -328,7 +328,7 @@ declare namespace sap {
328
328
  }
329
329
  ): Promise<void>;
330
330
  /**
331
- * @SINCE 1.90.0
331
+ * @since 1.90.0
332
332
  *
333
333
  * This function can be used to intercept the 'Save' action. You can execute custom coding in this function.
334
334
  * The framework waits for the returned promise to be resolved before continuing the 'Save' action.
@@ -352,7 +352,7 @@ declare namespace sap {
352
352
  }
353
353
  ): Promise<void>;
354
354
  /**
355
- * @SINCE 1.90.0
355
+ * @since 1.90.0
356
356
  *
357
357
  * Saves a new document after checking it.
358
358
  *
@@ -365,7 +365,7 @@ declare namespace sap {
365
365
  oContext: sap.ui.model.odata.v4.Context
366
366
  ): Promise<void>;
367
367
  /**
368
- * @SINCE 1.90.0
368
+ * @since 1.90.0
369
369
  *
370
370
  * Secured execution of the given function. Ensures that the function is only executed when certain conditions
371
371
  * are fulfilled.
@@ -405,7 +405,7 @@ declare namespace sap {
405
405
  }
406
406
  ): Promise<void>;
407
407
  /**
408
- * @SINCE 1.90.0
408
+ * @since 1.90.0
409
409
  *
410
410
  * Updates the draft status and displays the error messages if there are errors during an update.
411
411
  *
@@ -424,7 +424,7 @@ declare namespace sap {
424
424
  ): Promise<void>;
425
425
  }
426
426
  /**
427
- * @SINCE 1.86.0
427
+ * @since 1.86.0
428
428
  *
429
429
  * Controller extension providing hooks for intent-based navigation
430
430
  */
@@ -433,7 +433,7 @@ declare namespace sap {
433
433
  constructor();
434
434
 
435
435
  /**
436
- * @SINCE 1.86.0
436
+ * @since 1.86.0
437
437
  *
438
438
  * Provides a hook to customize the {@link sap.fe.navigation.SelectionVariant} related to the intent-based
439
439
  * navigation.
@@ -442,7 +442,7 @@ declare namespace sap {
442
442
  /**
443
443
  * SelectionVariant provided by SAP Fiori elements.
444
444
  */
445
- _oSelectionVariant: /* was: sap.fe.navigation.SelectionVariant */ any,
445
+ _oSelectionVariant: sap.fe.navigation.SelectionVariant,
446
446
  /**
447
447
  * Object containing intent-based navigation-related info
448
448
  */
@@ -458,7 +458,7 @@ declare namespace sap {
458
458
  }
459
459
  ): void;
460
460
  /**
461
- * @SINCE 1.86.0
461
+ * @since 1.86.0
462
462
  *
463
463
  * Navigates to an intent defined by an outbound definition in the manifest.
464
464
  */
@@ -480,8 +480,8 @@ declare namespace sap {
480
480
  ): void;
481
481
  }
482
482
  /**
483
- * @SINCE 1.90.0
484
- * @EXPERIMENTAL (since 1.90.0)
483
+ * @since 1.90.0
484
+ * @experimental (since 1.90.0)
485
485
  *
486
486
  * A controller extension offering message handling.
487
487
  */
@@ -489,8 +489,8 @@ declare namespace sap {
489
489
  constructor();
490
490
 
491
491
  /**
492
- * @SINCE 1.90.0
493
- * @EXPERIMENTAL (since 1.90.0)
492
+ * @since 1.90.0
493
+ * @experimental (since 1.90.0)
494
494
  *
495
495
  * Shows a message dialog with transition messages if there are any.
496
496
  * The message dialog is shown as a modal dialog. Once the user confirms the dialog, all transition messages
@@ -506,7 +506,7 @@ declare namespace sap {
506
506
  showMessageDialog(): Promise<void>;
507
507
  }
508
508
  /**
509
- * @SINCE 1.94.0
509
+ * @since 1.94.0
510
510
  *
511
511
  * Controller extension providing hooks for the navigation using paginators
512
512
  */
@@ -514,7 +514,7 @@ declare namespace sap {
514
514
  constructor();
515
515
 
516
516
  /**
517
- * @SINCE 1.94.0
517
+ * @since 1.94.0
518
518
  *
519
519
  * Initiates the paginator control.
520
520
  */
@@ -529,7 +529,7 @@ declare namespace sap {
529
529
  oContext?: sap.ui.model.odata.v4.Context
530
530
  ): void;
531
531
  /**
532
- * @SINCE 1.94.0
532
+ * @since 1.94.0
533
533
  *
534
534
  * Returns the updated context after the paginator operation.
535
535
  */
@@ -541,7 +541,7 @@ declare namespace sap {
541
541
  ): void;
542
542
  }
543
543
  /**
544
- * @SINCE 1.86.0
544
+ * @since 1.86.0
545
545
  *
546
546
  * A controller extension offering hooks into the routing flow of the application
547
547
  */
@@ -549,7 +549,7 @@ declare namespace sap {
549
549
  constructor();
550
550
 
551
551
  /**
552
- * @SINCE 1.90.0
552
+ * @since 1.90.0
553
553
  *
554
554
  * Allows navigation to a specific context.
555
555
  */
@@ -575,7 +575,7 @@ declare namespace sap {
575
575
  oParameters?: any
576
576
  ): Promise<boolean>;
577
577
  /**
578
- * @SINCE 1.90.0
578
+ * @since 1.90.0
579
579
  *
580
580
  * This function is used to intercept the routing event after binding a page.
581
581
  * If it is declared as an extension, it allows you to intercept and change the normal flow of binding.
@@ -590,7 +590,7 @@ declare namespace sap {
590
590
  oContext: object
591
591
  ): void;
592
592
  /**
593
- * @SINCE 1.90.0
593
+ * @since 1.90.0
594
594
  *
595
595
  * This function is used to intercept the routing event before binding a page.
596
596
  * If it is declared as an extension, it allows you to intercept and change the normal flow of binding.
@@ -605,7 +605,7 @@ declare namespace sap {
605
605
  oContext: object
606
606
  ): void;
607
607
  /**
608
- * @SINCE 1.86.0
608
+ * @since 1.86.0
609
609
  *
610
610
  * This function can be used to intercept the routing event happening during the normal process of navigating
611
611
  * from one page to another (like clicking on the table row to navigate, or when pagination buttons are
@@ -636,7 +636,7 @@ declare namespace sap {
636
636
  ): boolean;
637
637
  }
638
638
  /**
639
- * @SINCE 1.86.0
639
+ * @since 1.86.0
640
640
  *
641
641
  * A controller extension offering hooks into the routing flow of the application
642
642
  */
@@ -644,7 +644,7 @@ declare namespace sap {
644
644
  constructor();
645
645
 
646
646
  /**
647
- * @SINCE 1.93.0
647
+ * @since 1.93.0
648
648
  *
649
649
  * Adapts the metadata used while sharing the page URL via 'Send Email', 'Share in SAP Jam', and 'Save as
650
650
  * Tile'.
@@ -719,7 +719,7 @@ declare namespace sap {
719
719
  }
720
720
  ): Promise<object> | object;
721
721
  /**
722
- * @SINCE 1.93.0
722
+ * @since 1.93.0
723
723
  *
724
724
  * Opens the share sheet.
725
725
  */
@@ -731,7 +731,7 @@ declare namespace sap {
731
731
  ): void;
732
732
  }
733
733
  /**
734
- * @SINCE 1.85.0
734
+ * @since 1.85.0
735
735
  *
736
736
  * A controller extension offering hooks for state handling
737
737
  * If you need to maintain a specific state for your application, you can use the controller extension.
@@ -740,7 +740,7 @@ declare namespace sap {
740
740
  constructor();
741
741
 
742
742
  /**
743
- * @PROTECTED - DO NOT USE IN APPLICATIONS (only for related classes in the framework)
743
+ * @ui5-protected Do not call from applications (only from related classes in the framework)
744
744
  *
745
745
  * This function should add all controls relevant for refreshing to the provided control array.
746
746
  * This function is meant to be individually overridden by consuming controllers, but not to be called directly.
@@ -753,7 +753,7 @@ declare namespace sap {
753
753
  aCollectedControls: sap.ui.base.ManagedObject[]
754
754
  ): void;
755
755
  /**
756
- * @PROTECTED - DO NOT USE IN APPLICATIONS (only for related classes in the framework)
756
+ * @ui5-protected Do not call from applications (only from related classes in the framework)
757
757
  *
758
758
  * Customize the `refreshBinding` function for a certain control.
759
759
  * This function is meant to be individually overridden by consuming controllers, but not to be called directly.
@@ -770,7 +770,7 @@ declare namespace sap {
770
770
  oControlHandler: any[]
771
771
  ): void;
772
772
  /**
773
- * @PROTECTED - DO NOT USE IN APPLICATIONS (only for related classes in the framework)
773
+ * @ui5-protected Do not call from applications (only from related classes in the framework)
774
774
  *
775
775
  * Customize the `retrieve` and `apply` functions for a certain control.
776
776
  * This function is meant to be individually overridden by consuming controllers, but not to be called directly.
@@ -787,7 +787,7 @@ declare namespace sap {
787
787
  aControlHandler: object[]
788
788
  ): void;
789
789
  /**
790
- * @PROTECTED - DO NOT USE IN APPLICATIONS (only for related classes in the framework)
790
+ * @ui5-protected Do not call from applications (only from related classes in the framework)
791
791
  *
792
792
  * This function should add all controls for given view that should be considered for the state handling
793
793
  * to the provided control array.
@@ -801,7 +801,7 @@ declare namespace sap {
801
801
  aCollectedControls: sap.ui.base.ManagedObject[]
802
802
  ): void;
803
803
  /**
804
- * @PROTECTED - DO NOT USE IN APPLICATIONS (only for related classes in the framework)
804
+ * @ui5-protected Do not call from applications (only from related classes in the framework)
805
805
  *
806
806
  * Applying additional, not control related, states - is called only if navigation type is iAppState.
807
807
  * This function is meant to be individually overridden by consuming controllers, but not to be called directly.
@@ -818,7 +818,7 @@ declare namespace sap {
818
818
  aPromises: Promise<any>
819
819
  ): void;
820
820
  /**
821
- * @PROTECTED - DO NOT USE IN APPLICATIONS (only for related classes in the framework)
821
+ * @ui5-protected Do not call from applications (only from related classes in the framework)
822
822
  *
823
823
  * Defines whether the view state should only be applied once initially.
824
824
  * This function is meant to be individually overridden by consuming controllers, but not to be called directly.
@@ -833,7 +833,7 @@ declare namespace sap {
833
833
  */
834
834
  applyInitialStateOnly(): boolean;
835
835
  /**
836
- * @PROTECTED - DO NOT USE IN APPLICATIONS (only for related classes in the framework)
836
+ * @ui5-protected Do not call from applications (only from related classes in the framework)
837
837
  *
838
838
  * Apply navigation parameters is not called if the navigation type is iAppState
839
839
  * This function is meant to be individually overridden by consuming controllers, but not to be called directly.
@@ -882,7 +882,7 @@ declare namespace sap {
882
882
  oNavParameter: sap.fe.core.controllerextensions.ViewState.NavigationParameter
883
883
  ): Promise<any>;
884
884
  /**
885
- * @PROTECTED - DO NOT USE IN APPLICATIONS (only for related classes in the framework)
885
+ * @ui5-protected Do not call from applications (only from related classes in the framework)
886
886
  *
887
887
  * Hook to react when state for given view was applied.
888
888
  * This function is meant to be individually overridden by consuming controllers, but not to be called directly.
@@ -895,7 +895,7 @@ declare namespace sap {
895
895
  aPromises: Promise<any>
896
896
  ): void;
897
897
  /**
898
- * @PROTECTED - DO NOT USE IN APPLICATIONS (only for related classes in the framework)
898
+ * @ui5-protected Do not call from applications (only from related classes in the framework)
899
899
  *
900
900
  * Hook to react before a state for given view is applied.
901
901
  * This function is meant to be individually overridden by consuming controllers, but not to be called directly.
@@ -920,7 +920,7 @@ declare namespace sap {
920
920
  */
921
921
  onSuspend(): void;
922
922
  /**
923
- * @PROTECTED - DO NOT USE IN APPLICATIONS (only for related classes in the framework)
923
+ * @ui5-protected Do not call from applications (only from related classes in the framework)
924
924
  *
925
925
  * Extend the map of additional states (not control bound) to be added to the current view state of the
926
926
  * given view.
@@ -948,8 +948,8 @@ declare namespace sap {
948
948
  */
949
949
  namespace fpm {
950
950
  /**
951
- * @SINCE 1.92.0
952
- * @EXPERIMENTAL (since 1.92.0)
951
+ * @since 1.92.0
952
+ * @experimental (since 1.92.0)
953
953
  *
954
954
  * Component that can be used as a wrapper component for custom pages.
955
955
  * The component can be used in case you want to use SAP Fiori elements Building Blocks or XML template
@@ -982,7 +982,7 @@ declare namespace sap {
982
982
 
983
983
  namespace rootView {
984
984
  /**
985
- * @SINCE 1.110.0
985
+ * @since 1.110.0
986
986
  *
987
987
  * Base controller class for your own root view with an sap.f.FlexibleColumnLayout control.
988
988
  * By using or extending this controller, you can use your own root view with the sap.fe.core.AppComponent
@@ -1001,7 +1001,7 @@ declare namespace sap {
1001
1001
  displayErrorPage(): Promise<boolean>;
1002
1002
  }
1003
1003
  /**
1004
- * @SINCE 1.108.0
1004
+ * @since 1.108.0
1005
1005
  *
1006
1006
  * Base controller class for your own root view with a sap.m.NavContainer control.
1007
1007
  * By using or extending this controller you can use your own root view with the sap.fe.core.AppComponent
@@ -1068,7 +1068,7 @@ declare namespace sap {
1068
1068
  initializeFeatureToggles(): Promise<void>;
1069
1069
  }
1070
1070
  /**
1071
- * @SINCE 1.90.0
1071
+ * @since 1.90.0
1072
1072
  *
1073
1073
  * Internal base controller class for SAP Fiori elements application.
1074
1074
  * If you want to extend a base controller for your custom page, please use for sap.fe.core.PageController.
@@ -1077,7 +1077,7 @@ declare namespace sap {
1077
1077
  constructor();
1078
1078
 
1079
1079
  /**
1080
- * @SINCE 1.91.0
1080
+ * @since 1.91.0
1081
1081
  *
1082
1082
  * Returns the current app component.
1083
1083
  *
@@ -1113,7 +1113,7 @@ declare namespace sap {
1113
1113
  ): sap.ui.core.mvc.View;
1114
1114
  }
1115
1115
  /**
1116
- * @SINCE 1.79.0
1116
+ * @since 1.79.0
1117
1117
  *
1118
1118
  * Common Extension API for all pages of SAP Fiori elements for OData V4.
1119
1119
  * To correctly integrate your app extension coding with SAP Fiori elements, use only the extensionAPI of
@@ -1190,11 +1190,11 @@ declare namespace sap {
1190
1190
  /**
1191
1191
  * The contextPath to be used for the templating process
1192
1192
  */
1193
- contextPath: string;
1193
+ contextPath?: string;
1194
1194
  /**
1195
1195
  * The controller to be attached to the fragment
1196
1196
  */
1197
- controller: object;
1197
+ controller?: object;
1198
1198
  /**
1199
1199
  * The ID of the fragment itself
1200
1200
  */
@@ -1202,7 +1202,7 @@ declare namespace sap {
1202
1202
  /**
1203
1203
  * The initial binding context
1204
1204
  */
1205
- initialBindingContext: sap.ui.model.Context;
1205
+ initialBindingContext?: sap.ui.model.Context;
1206
1206
  /**
1207
1207
  * The name of the fragment to be loaded
1208
1208
  */
@@ -1240,7 +1240,7 @@ declare namespace sap {
1240
1240
  updateAppState(): Promise<object | void>;
1241
1241
  }
1242
1242
  /**
1243
- * @SINCE 1.88.0
1243
+ * @since 1.88.0
1244
1244
  *
1245
1245
  * Base controller class for your custom page used inside an SAP Fiori elements application.
1246
1246
  * This controller provides preconfigured extensions that will ensure you have the basic functionalities
@@ -1257,7 +1257,7 @@ declare namespace sap {
1257
1257
  getExtensionAPI(): sap.fe.core.ExtensionAPI;
1258
1258
  }
1259
1259
  /**
1260
- * @SINCE 1.86.0
1260
+ * @since 1.86.0
1261
1261
  *
1262
1262
  * Possible initial load (first app startup) modes for a ListReport.
1263
1263
  */
@@ -648,19 +648,19 @@ declare namespace sap {
648
648
  | `{${string}}`;
649
649
  }
650
650
 
651
- interface $ChartSelectionChangeEventParameters {}
651
+ interface Chart$SelectionChangeEventParameters {}
652
652
 
653
- interface $FieldChangeEventParameters {}
653
+ interface Field$ChangeEventParameters {}
654
654
 
655
- interface $FilterBarAfterClearEventParameters {}
655
+ interface FilterBar$AfterClearEventParameters {}
656
656
 
657
- interface $FilterBarFilterChangedEventParameters {}
657
+ interface FilterBar$FilterChangedEventParameters {}
658
658
 
659
- interface $FilterBarSearchEventParameters {}
659
+ interface FilterBar$SearchEventParameters {}
660
660
 
661
- interface $TableRowPressEventParameters {}
661
+ interface Table$RowPressEventParameters {}
662
662
 
663
- interface $TableSelectionChangeEventParameters {}
663
+ interface Table$SelectionChangeEventParameters {}
664
664
 
665
665
  /**
666
666
  * Base API control for building blocks.
@@ -827,7 +827,7 @@ declare namespace sap {
827
827
  constructor();
828
828
  }
829
829
  /**
830
- * @SINCE 1.90.0
830
+ * @since 1.90.0
831
831
  *
832
832
  * Building block used to create a form element based on the metadata provided by OData V4.
833
833
  */
@@ -835,7 +835,7 @@ declare namespace sap {
835
835
  constructor();
836
836
  }
837
837
  /**
838
- * @SINCE 1.93.0
838
+ * @since 1.93.0
839
839
  *
840
840
  * Building block used to create a MicroChart based on the metadata provided by OData V4.
841
841
  */
@@ -843,7 +843,7 @@ declare namespace sap {
843
843
  constructor();
844
844
  }
845
845
  /**
846
- * @SINCE 1.94.0
846
+ * @since 1.94.0
847
847
  *
848
848
  * Building block used to create a paginator control.
849
849
  * Usage example:
@@ -1013,6 +1013,62 @@ declare namespace sap {
1013
1013
  */
1014
1014
  showMessages: boolean;
1015
1015
  };
1016
+
1017
+ /**
1018
+ * @deprecated (since 1.115.1) - This name was introduced in 1.115.0, but will be 'Chart$SelectionChangeEventParameters'
1019
+ * in 1.115.1 and any later releases.
1020
+ */
1021
+ type $ChartSelectionChangeEventParameters = sap.fe.macros.Chart$SelectionChangeEventParameters;
1022
+
1023
+ type Chart$SelectionChangeEvent = sap.ui.base.Event<Chart$SelectionChangeEventParameters>;
1024
+
1025
+ /**
1026
+ * @deprecated (since 1.115.1) - This name was introduced in 1.115.0, but will be 'Field$ChangeEventParameters'
1027
+ * in 1.115.1 and any later releases.
1028
+ */
1029
+ type $FieldChangeEventParameters = sap.fe.macros.Field$ChangeEventParameters;
1030
+
1031
+ type Field$ChangeEvent = sap.ui.base.Event<Field$ChangeEventParameters>;
1032
+
1033
+ /**
1034
+ * @deprecated (since 1.115.1) - This name was introduced in 1.115.0, but will be 'FilterBar$AfterClearEventParameters'
1035
+ * in 1.115.1 and any later releases.
1036
+ */
1037
+ type $FilterBarAfterClearEventParameters = sap.fe.macros.FilterBar$AfterClearEventParameters;
1038
+
1039
+ type FilterBar$AfterClearEvent = sap.ui.base.Event<FilterBar$AfterClearEventParameters>;
1040
+
1041
+ /**
1042
+ * @deprecated (since 1.115.1) - This name was introduced in 1.115.0, but will be 'FilterBar$FilterChangedEventParameters'
1043
+ * in 1.115.1 and any later releases.
1044
+ */
1045
+ type $FilterBarFilterChangedEventParameters = sap.fe.macros.FilterBar$FilterChangedEventParameters;
1046
+
1047
+ type FilterBar$FilterChangedEvent = sap.ui.base.Event<FilterBar$FilterChangedEventParameters>;
1048
+
1049
+ /**
1050
+ * @deprecated (since 1.115.1) - This name was introduced in 1.115.0, but will be 'FilterBar$SearchEventParameters'
1051
+ * in 1.115.1 and any later releases.
1052
+ */
1053
+ type $FilterBarSearchEventParameters = sap.fe.macros.FilterBar$SearchEventParameters;
1054
+
1055
+ type FilterBar$SearchEvent = sap.ui.base.Event<FilterBar$SearchEventParameters>;
1056
+
1057
+ /**
1058
+ * @deprecated (since 1.115.1) - This name was introduced in 1.115.0, but will be 'Table$RowPressEventParameters'
1059
+ * in 1.115.1 and any later releases.
1060
+ */
1061
+ type $TableRowPressEventParameters = sap.fe.macros.Table$RowPressEventParameters;
1062
+
1063
+ type Table$RowPressEvent = sap.ui.base.Event<Table$RowPressEventParameters>;
1064
+
1065
+ /**
1066
+ * @deprecated (since 1.115.1) - This name was introduced in 1.115.0, but will be 'Table$SelectionChangeEventParameters'
1067
+ * in 1.115.1 and any later releases.
1068
+ */
1069
+ type $TableSelectionChangeEventParameters = sap.fe.macros.Table$SelectionChangeEventParameters;
1070
+
1071
+ type Table$SelectionChangeEvent = sap.ui.base.Event<Table$SelectionChangeEventParameters>;
1016
1072
  }
1017
1073
  }
1018
1074
 
@@ -7,7 +7,7 @@ declare namespace sap {
7
7
  */
8
8
  namespace navigation {
9
9
  /**
10
- * @SINCE 1.83.0
10
+ * @since 1.83.0
11
11
  *
12
12
  * This is the successor of {@link sap.ui.generic.app.navigation.service.NavError}.
13
13
  * An object that provides error handling information during runtime.
@@ -31,7 +31,7 @@ declare namespace sap {
31
31
  getErrorCode(): string;
32
32
  }
33
33
  /**
34
- * @SINCE 1.83.0
34
+ * @since 1.83.0
35
35
  *
36
36
  * This is the successor of {@link sap.ui.generic.app.navigation.service.NavigationHandler}.
37
37
  * Creates a new NavigationHandler class by providing the required environment.
@@ -65,7 +65,7 @@ declare namespace sap {
65
65
  constructor();
66
66
 
67
67
  /**
68
- * @PROTECTED - DO NOT USE IN APPLICATIONS (only for related classes in the framework)
68
+ * @ui5-protected Do not call from applications (only from related classes in the framework)
69
69
  *
70
70
  * The method creates a context url based on provided data. This context url can either be used as
71
71
  * {@link sap.fe.navigation.NavigationHandler#setParameterContextUrl ParameterContextUrl} or
@@ -456,7 +456,7 @@ declare namespace sap {
456
456
  ): object;
457
457
  }
458
458
  /**
459
- * @SINCE 1.83.0
459
+ * @since 1.83.0
460
460
  *
461
461
  * This is the successor of {@link sap.ui.generic.app.navigation.service.PresentationVariant}.
462
462
  * Creates a new instance of a PresentationVariant class. If no parameter is passed, an new empty instance
@@ -592,7 +592,7 @@ declare namespace sap {
592
592
  toJSONString(): string;
593
593
  }
594
594
  /**
595
- * @SINCE 1.83.0
595
+ * @since 1.83.0
596
596
  */
597
597
  class SelectionVariant extends sap.ui.base.Object {
598
598
  constructor();
@@ -0,0 +1,3 @@
1
+ // For Library Version: 1.115.1
2
+
3
+ declare namespace sap {}
@@ -8,14 +8,14 @@ declare namespace sap {
8
8
  namespace templates {
9
9
  namespace ListReport {
10
10
  /**
11
- * @SINCE 1.79.0
11
+ * @since 1.79.0
12
12
  *
13
13
  * Extension API for list reports in SAP Fiori elements for OData V4.
14
14
  * To correctly integrate your app extension coding with SAP Fiori elements, use only the extensionAPI of
15
15
  * SAP Fiori elements. Don't access or manipulate controls, properties, models, or other internal objects
16
16
  * created by the SAP Fiori elements framework.
17
17
  */
18
- class ExtensionAPI /* was: sap.fe.core.ExtensionAPI */ extends Object {
18
+ class ExtensionAPI extends sap.fe.core.ExtensionAPI {
19
19
  constructor();
20
20
 
21
21
  /**
@@ -103,8 +103,7 @@ declare namespace sap {
103
103
  /**
104
104
  * Controller class for the list report page, used inside an SAP Fiori elements application.
105
105
  */
106
- class ListReportController
107
- /* was: sap.fe.core.PageController */ extends Object {
106
+ class ListReportController extends sap.fe.core.PageController {
108
107
  constructor();
109
108
 
110
109
  /**
@@ -162,14 +161,14 @@ declare namespace sap {
162
161
 
163
162
  namespace ObjectPage {
164
163
  /**
165
- * @SINCE 1.79.0
164
+ * @since 1.79.0
166
165
  *
167
166
  * Extension API for object pages on SAP Fiori elements for OData V4.
168
167
  * To correctly integrate your app extension coding with SAP Fiori elements, use only the extensionAPI of
169
168
  * SAP Fiori elements. Don't access or manipulate controls, properties, models, or other internal objects
170
169
  * created by the SAP Fiori elements framework.
171
170
  */
172
- class ExtensionAPI /* was: sap.fe.core.ExtensionAPI */ extends Object {
171
+ class ExtensionAPI extends sap.fe.core.ExtensionAPI {
173
172
  constructor();
174
173
 
175
174
  /**