@sapui5/types 1.122.2 → 1.123.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 (64) hide show
  1. package/package.json +1 -1
  2. package/types/sap.apf.d.ts +1 -1
  3. package/types/sap.ca.ui.d.ts +408 -32
  4. package/types/sap.chart.d.ts +58 -6
  5. package/types/sap.collaboration.d.ts +52 -9
  6. package/types/sap.esh.search.ui.d.ts +2066 -2
  7. package/types/sap.f.d.ts +435 -98
  8. package/types/sap.fe.core.d.ts +9 -3
  9. package/types/sap.fe.macros.d.ts +1075 -70
  10. package/types/sap.fe.navigation.d.ts +1 -1
  11. package/types/sap.fe.placeholder.d.ts +1 -1
  12. package/types/sap.fe.plugins.managecache.d.ts +1 -1
  13. package/types/sap.fe.templates.d.ts +8 -6
  14. package/types/sap.fe.test.d.ts +309 -7
  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 +1066 -146
  18. package/types/sap.insights.d.ts +4 -2
  19. package/types/sap.m.d.ts +3961 -399
  20. package/types/sap.makit.d.ts +115 -14
  21. package/types/sap.me.d.ts +84 -7
  22. package/types/sap.ndc.d.ts +22 -2
  23. package/types/sap.ovp.d.ts +1 -1
  24. package/types/sap.rules.ui.d.ts +44 -11
  25. package/types/sap.sac.df.d.ts +119 -67
  26. package/types/sap.suite.ui.commons.d.ts +1146 -2474
  27. package/types/sap.suite.ui.generic.template.d.ts +10 -2
  28. package/types/sap.suite.ui.microchart.d.ts +190 -28
  29. package/types/sap.tnt.d.ts +46 -10
  30. package/types/sap.ui.codeeditor.d.ts +16 -2
  31. package/types/sap.ui.commons.d.ts +797 -121
  32. package/types/sap.ui.comp.d.ts +964 -124
  33. package/types/sap.ui.core.d.ts +13204 -12618
  34. package/types/sap.ui.dt.d.ts +1 -1
  35. package/types/sap.ui.export.d.ts +22 -5
  36. package/types/sap.ui.fl.d.ts +40 -3
  37. package/types/sap.ui.generic.app.d.ts +217 -201
  38. package/types/sap.ui.generic.template.d.ts +1 -1
  39. package/types/sap.ui.integration.d.ts +147 -9
  40. package/types/sap.ui.layout.d.ts +171 -47
  41. package/types/sap.ui.mdc.d.ts +554 -71
  42. package/types/sap.ui.richtexteditor.d.ts +28 -2
  43. package/types/sap.ui.rta.d.ts +1 -1
  44. package/types/sap.ui.suite.d.ts +27 -3
  45. package/types/sap.ui.support.d.ts +1 -1
  46. package/types/sap.ui.table.d.ts +278 -74
  47. package/types/sap.ui.testrecorder.d.ts +1 -1
  48. package/types/sap.ui.unified.d.ts +481 -42
  49. package/types/sap.ui.ux3.d.ts +527 -34
  50. package/types/sap.ui.vbm.d.ts +544 -48
  51. package/types/sap.ui.vk.d.ts +1588 -133
  52. package/types/sap.ui.vtm.d.ts +373 -27
  53. package/types/sap.ui.webc.common.d.ts +7 -1
  54. package/types/sap.ui.webc.fiori.d.ts +351 -29
  55. package/types/sap.ui.webc.main.d.ts +1035 -83
  56. package/types/sap.uiext.inbox.d.ts +124 -13
  57. package/types/sap.ushell.d.ts +1081 -383
  58. package/types/sap.ushell_abap.d.ts +1 -1
  59. package/types/sap.uxap.d.ts +123 -23
  60. package/types/sap.viz.d.ts +2619 -130
  61. package/types/sap.webanalytics.core.d.ts +1 -1
  62. package/types/sap.zen.commons.d.ts +35 -15
  63. package/types/sap.zen.crosstab.d.ts +22 -10
  64. package/types/sap.zen.dsh.d.ts +64 -9
@@ -1,4 +1,4 @@
1
- // For Library Version: 1.122.1
1
+ // For Library Version: 1.123.0
2
2
 
3
3
  declare module "sap/uiext/inbox/library" {}
4
4
 
@@ -80,7 +80,9 @@ declare module "sap/uiext/inbox/composite/InboxAddAttachmentTile" {
80
80
  */
81
81
  static getMetadata(): ElementMetadata;
82
82
  }
83
-
83
+ /**
84
+ * Describes the settings that can be provided to the InboxAddAttachmentTile constructor.
85
+ */
84
86
  export interface $InboxAddAttachmentTileSettings extends $ControlSettings {}
85
87
  }
86
88
 
@@ -649,7 +651,9 @@ declare module "sap/uiext/inbox/composite/InboxAttachmentsTileContainer" {
649
651
  sUploadUrl?: string
650
652
  ): this;
651
653
  }
652
-
654
+ /**
655
+ * Describes the settings that can be provided to the InboxAttachmentsTileContainer constructor.
656
+ */
653
657
  export interface $InboxAttachmentsTileContainerSettings
654
658
  extends $ControlSettings {
655
659
  /**
@@ -707,22 +711,40 @@ declare module "sap/uiext/inbox/composite/InboxAttachmentsTileContainer" {
707
711
  uploadFailed?: (oEvent: Event) => void;
708
712
  }
709
713
 
714
+ /**
715
+ * Parameters of the InboxAttachmentsTileContainer#uploadButtonPress event.
716
+ */
710
717
  export interface InboxAttachmentsTileContainer$UploadButtonPressEventParameters {}
711
718
 
719
+ /**
720
+ * Event object of the InboxAttachmentsTileContainer#uploadButtonPress event.
721
+ */
712
722
  export type InboxAttachmentsTileContainer$UploadButtonPressEvent = Event<
713
723
  InboxAttachmentsTileContainer$UploadButtonPressEventParameters,
714
724
  InboxAttachmentsTileContainer
715
725
  >;
716
726
 
727
+ /**
728
+ * Parameters of the InboxAttachmentsTileContainer#uploadFailed event.
729
+ */
717
730
  export interface InboxAttachmentsTileContainer$UploadFailedEventParameters {}
718
731
 
732
+ /**
733
+ * Event object of the InboxAttachmentsTileContainer#uploadFailed event.
734
+ */
719
735
  export type InboxAttachmentsTileContainer$UploadFailedEvent = Event<
720
736
  InboxAttachmentsTileContainer$UploadFailedEventParameters,
721
737
  InboxAttachmentsTileContainer
722
738
  >;
723
739
 
740
+ /**
741
+ * Parameters of the InboxAttachmentsTileContainer#uploadSuccess event.
742
+ */
724
743
  export interface InboxAttachmentsTileContainer$UploadSuccessEventParameters {}
725
744
 
745
+ /**
746
+ * Event object of the InboxAttachmentsTileContainer#uploadSuccess event.
747
+ */
726
748
  export type InboxAttachmentsTileContainer$UploadSuccessEvent = Event<
727
749
  InboxAttachmentsTileContainer$UploadSuccessEventParameters,
728
750
  InboxAttachmentsTileContainer
@@ -1094,7 +1116,9 @@ declare module "sap/uiext/inbox/composite/InboxAttachmentTile" {
1094
1116
  bShowDeleteButton?: boolean
1095
1117
  ): this;
1096
1118
  }
1097
-
1119
+ /**
1120
+ * Describes the settings that can be provided to the InboxAttachmentTile constructor.
1121
+ */
1098
1122
  export interface $InboxAttachmentTileSettings extends $ControlSettings {
1099
1123
  /**
1100
1124
  * Name of the attachment
@@ -1142,8 +1166,14 @@ declare module "sap/uiext/inbox/composite/InboxAttachmentTile" {
1142
1166
  deleteAttachment?: (oEvent: Event) => void;
1143
1167
  }
1144
1168
 
1169
+ /**
1170
+ * Parameters of the InboxAttachmentTile#deleteAttachment event.
1171
+ */
1145
1172
  export interface InboxAttachmentTile$DeleteAttachmentEventParameters {}
1146
1173
 
1174
+ /**
1175
+ * Event object of the InboxAttachmentTile#deleteAttachment event.
1176
+ */
1147
1177
  export type InboxAttachmentTile$DeleteAttachmentEvent = Event<
1148
1178
  InboxAttachmentTile$DeleteAttachmentEventParameters,
1149
1179
  InboxAttachmentTile
@@ -1228,7 +1258,9 @@ declare module "sap/uiext/inbox/composite/InboxBusyIndicator" {
1228
1258
  */
1229
1259
  static getMetadata(): ElementMetadata;
1230
1260
  }
1231
-
1261
+ /**
1262
+ * Describes the settings that can be provided to the InboxBusyIndicator constructor.
1263
+ */
1232
1264
  export interface $InboxBusyIndicatorSettings extends $ControlSettings {}
1233
1265
  }
1234
1266
 
@@ -1458,7 +1490,9 @@ declare module "sap/uiext/inbox/composite/InboxComment" {
1458
1490
  sTimestamp?: string
1459
1491
  ): this;
1460
1492
  }
1461
-
1493
+ /**
1494
+ * Describes the settings that can be provided to the InboxComment constructor.
1495
+ */
1462
1496
  export interface $InboxCommentSettings extends $ControlSettings {
1463
1497
  /**
1464
1498
  * Sender of the comment chunk
@@ -1841,7 +1875,9 @@ declare module "sap/uiext/inbox/composite/InboxTaskComments" {
1841
1875
  bShowHeader?: boolean
1842
1876
  ): this;
1843
1877
  }
1844
-
1878
+ /**
1879
+ * Describes the settings that can be provided to the InboxTaskComments constructor.
1880
+ */
1845
1881
  export interface $InboxTaskCommentsSettings extends $ControlSettings {
1846
1882
  /**
1847
1883
  * Sender for the comment feeder
@@ -1878,8 +1914,14 @@ declare module "sap/uiext/inbox/composite/InboxTaskComments" {
1878
1914
  commentSubmit?: (oEvent: Event) => void;
1879
1915
  }
1880
1916
 
1917
+ /**
1918
+ * Parameters of the InboxTaskComments#commentSubmit event.
1919
+ */
1881
1920
  export interface InboxTaskComments$CommentSubmitEventParameters {}
1882
1921
 
1922
+ /**
1923
+ * Event object of the InboxTaskComments#commentSubmit event.
1924
+ */
1883
1925
  export type InboxTaskComments$CommentSubmitEvent = Event<
1884
1926
  InboxTaskComments$CommentSubmitEventParameters,
1885
1927
  InboxTaskComments
@@ -2091,7 +2133,9 @@ declare module "sap/uiext/inbox/composite/InboxTaskTitleControl" {
2091
2133
  oTitleLink: Control
2092
2134
  ): this;
2093
2135
  }
2094
-
2136
+ /**
2137
+ * Describes the settings that can be provided to the InboxTaskTitleControl constructor.
2138
+ */
2095
2139
  export interface $InboxTaskTitleControlSettings extends $ControlSettings {
2096
2140
  /**
2097
2141
  * The Task Title of the Task
@@ -2331,7 +2375,9 @@ declare module "sap/uiext/inbox/composite/InboxUploadAttachmentTile" {
2331
2375
  sFileTypeIcon?: URI
2332
2376
  ): this;
2333
2377
  }
2334
-
2378
+ /**
2379
+ * Describes the settings that can be provided to the InboxUploadAttachmentTile constructor.
2380
+ */
2335
2381
  export interface $InboxUploadAttachmentTileSettings extends $ControlSettings {
2336
2382
  /**
2337
2383
  * name of the selected file
@@ -2349,8 +2395,14 @@ declare module "sap/uiext/inbox/composite/InboxUploadAttachmentTile" {
2349
2395
  uploadSelectedFile?: (oEvent: Event) => void;
2350
2396
  }
2351
2397
 
2398
+ /**
2399
+ * Parameters of the InboxUploadAttachmentTile#uploadSelectedFile event.
2400
+ */
2352
2401
  export interface InboxUploadAttachmentTile$UploadSelectedFileEventParameters {}
2353
2402
 
2403
+ /**
2404
+ * Event object of the InboxUploadAttachmentTile#uploadSelectedFile event.
2405
+ */
2354
2406
  export type InboxUploadAttachmentTile$UploadSelectedFileEvent = Event<
2355
2407
  InboxUploadAttachmentTile$UploadSelectedFileEventParameters,
2356
2408
  InboxUploadAttachmentTile
@@ -3008,7 +3060,12 @@ declare module "sap/uiext/inbox/Inbox" {
3008
3060
  sTaskExecutionURLThemeValue?: string
3009
3061
  ): this;
3010
3062
  }
3011
-
3063
+ /**
3064
+ * Describes the settings that can be provided to the Inbox constructor.
3065
+ *
3066
+ * @deprecated (since 1.38.0)
3067
+ * @experimental (since 1.5.2) - API is not yet finished and might change completely
3068
+ */
3012
3069
  export interface $InboxSettings extends $ControlSettings {
3013
3070
  /**
3014
3071
  * set the theme URL parameter string to be appended to the task Execution URL. In case of a function callback
@@ -3051,26 +3108,50 @@ declare module "sap/uiext/inbox/Inbox" {
3051
3108
  taskSelectionChange?: (oEvent: Event) => void;
3052
3109
  }
3053
3110
 
3111
+ /**
3112
+ * Parameters of the Inbox#oDataRequestCompleted event.
3113
+ */
3054
3114
  export interface Inbox$ODataRequestCompletedEventParameters {}
3055
3115
 
3116
+ /**
3117
+ * Event object of the Inbox#oDataRequestCompleted event.
3118
+ */
3056
3119
  export type Inbox$ODataRequestCompletedEvent = Event<
3057
3120
  Inbox$ODataRequestCompletedEventParameters,
3058
3121
  Inbox
3059
3122
  >;
3060
3123
 
3124
+ /**
3125
+ * Parameters of the Inbox#refresh event.
3126
+ */
3061
3127
  export interface Inbox$RefreshEventParameters {}
3062
3128
 
3129
+ /**
3130
+ * Event object of the Inbox#refresh event.
3131
+ */
3063
3132
  export type Inbox$RefreshEvent = Event<Inbox$RefreshEventParameters, Inbox>;
3064
3133
 
3134
+ /**
3135
+ * Parameters of the Inbox#taskAction event.
3136
+ */
3065
3137
  export interface Inbox$TaskActionEventParameters {}
3066
3138
 
3139
+ /**
3140
+ * Event object of the Inbox#taskAction event.
3141
+ */
3067
3142
  export type Inbox$TaskActionEvent = Event<
3068
3143
  Inbox$TaskActionEventParameters,
3069
3144
  Inbox
3070
3145
  >;
3071
3146
 
3147
+ /**
3148
+ * Parameters of the Inbox#taskSelectionChange event.
3149
+ */
3072
3150
  export interface Inbox$TaskSelectionChangeEventParameters {}
3073
3151
 
3152
+ /**
3153
+ * Event object of the Inbox#taskSelectionChange event.
3154
+ */
3074
3155
  export type Inbox$TaskSelectionChangeEvent = Event<
3075
3156
  Inbox$TaskSelectionChangeEventParameters,
3076
3157
  Inbox
@@ -3576,7 +3657,11 @@ declare module "sap/uiext/inbox/InboxLaunchPad" {
3576
3657
  sUserName?: string
3577
3658
  ): this;
3578
3659
  }
3579
-
3660
+ /**
3661
+ * Describes the settings that can be provided to the InboxLaunchPad constructor.
3662
+ *
3663
+ * @experimental (since 1.7.0) - API is not yet finished and might change completely
3664
+ */
3580
3665
  export interface $InboxLaunchPadSettings extends $ControlSettings {
3581
3666
  /**
3582
3667
  * The title text appearing in Inbox LaunchPad header bar.
@@ -3616,15 +3701,27 @@ declare module "sap/uiext/inbox/InboxLaunchPad" {
3616
3701
  logout?: (oEvent: Event) => void;
3617
3702
  }
3618
3703
 
3704
+ /**
3705
+ * Parameters of the InboxLaunchPad#logout event.
3706
+ */
3619
3707
  export interface InboxLaunchPad$LogoutEventParameters {}
3620
3708
 
3709
+ /**
3710
+ * Event object of the InboxLaunchPad#logout event.
3711
+ */
3621
3712
  export type InboxLaunchPad$LogoutEvent = Event<
3622
3713
  InboxLaunchPad$LogoutEventParameters,
3623
3714
  InboxLaunchPad
3624
3715
  >;
3625
3716
 
3717
+ /**
3718
+ * Parameters of the InboxLaunchPad#tileSelected event.
3719
+ */
3626
3720
  export interface InboxLaunchPad$TileSelectedEventParameters {}
3627
3721
 
3722
+ /**
3723
+ * Event object of the InboxLaunchPad#tileSelected event.
3724
+ */
3628
3725
  export type InboxLaunchPad$TileSelectedEvent = Event<
3629
3726
  InboxLaunchPad$TileSelectedEventParameters,
3630
3727
  InboxLaunchPad
@@ -4159,7 +4256,11 @@ declare module "sap/uiext/inbox/InboxSplitApp" {
4159
4256
  sTcmServiceURL?: string
4160
4257
  ): this;
4161
4258
  }
4162
-
4259
+ /**
4260
+ * Describes the settings that can be provided to the InboxSplitApp constructor.
4261
+ *
4262
+ * @experimental (since 1.7.0) - API is not yet finished and might change completely
4263
+ */
4163
4264
  export interface $InboxSplitAppSettings extends $ControlSettings {
4164
4265
  /**
4165
4266
  * Show/Hide the Navigation Button for the Master Page
@@ -4192,8 +4293,14 @@ declare module "sap/uiext/inbox/InboxSplitApp" {
4192
4293
  navButtonPressed?: (oEvent: Event) => void;
4193
4294
  }
4194
4295
 
4296
+ /**
4297
+ * Parameters of the InboxSplitApp#navButtonPressed event.
4298
+ */
4195
4299
  export interface InboxSplitApp$NavButtonPressedEventParameters {}
4196
4300
 
4301
+ /**
4302
+ * Event object of the InboxSplitApp#navButtonPressed event.
4303
+ */
4197
4304
  export type InboxSplitApp$NavButtonPressedEvent = Event<
4198
4305
  InboxSplitApp$NavButtonPressedEventParameters,
4199
4306
  InboxSplitApp
@@ -4289,7 +4396,11 @@ declare module "sap/uiext/inbox/SubstitutionRulesManager" {
4289
4396
  path: string
4290
4397
  ): SubstitutionRulesManager;
4291
4398
  }
4292
-
4399
+ /**
4400
+ * Describes the settings that can be provided to the SubstitutionRulesManager constructor.
4401
+ *
4402
+ * @experimental (since 1.7.0) - API is not yet finished and might change completely
4403
+ */
4293
4404
  export interface $SubstitutionRulesManagerSettings extends $ControlSettings {}
4294
4405
  }
4295
4406