@sapui5/ts-types 1.92.2 → 1.93.3

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/README.md +3 -1
  2. package/package.json +1 -1
  3. package/types/index.d.ts +2 -1
  4. package/types/sap.apf.d.ts +1 -44
  5. package/types/sap.ca.ui.d.ts +649 -651
  6. package/types/sap.chart.d.ts +49 -49
  7. package/types/sap.collaboration.d.ts +756 -762
  8. package/types/sap.esh.search.ui.d.ts +241 -0
  9. package/types/sap.f.d.ts +623 -468
  10. package/types/sap.fe.common.d.ts +1 -1
  11. package/types/sap.fe.core.d.ts +101 -75
  12. package/types/sap.fe.macros.d.ts +55 -8
  13. package/types/sap.fe.navigation.d.ts +5 -14
  14. package/types/sap.fe.placeholder-1.93.1-d.ts +3 -0
  15. package/types/sap.fe.plugins.d.ts +2 -4
  16. package/types/sap.fe.templates.d.ts +1 -16
  17. package/types/sap.fe.test.d.ts +44 -115
  18. package/types/sap.fe.tools.d.ts +2 -4
  19. package/types/sap.feedback.ui.d.ts +1 -1
  20. package/types/sap.gantt.d.ts +1321 -1191
  21. package/types/sap.landvisz.d.ts +345 -345
  22. package/types/sap.m.d.ts +5498 -4814
  23. package/types/sap.makit.d.ts +123 -123
  24. package/types/sap.me.d.ts +137 -153
  25. package/types/sap.ndc.d.ts +29 -29
  26. package/types/sap.ovp.d.ts +1 -1
  27. package/types/sap.rules.ui.d.ts +170 -124
  28. package/types/sap.suite.ui.commons.d.ts +1593 -1612
  29. package/types/sap.suite.ui.generic.template.d.ts +285 -165
  30. package/types/sap.suite.ui.microchart.d.ts +742 -508
  31. package/types/sap.tnt.d.ts +149 -117
  32. package/types/sap.ui.codeeditor.d.ts +28 -28
  33. package/types/sap.ui.commons.d.ts +1387 -1387
  34. package/types/sap.ui.comp.d.ts +1013 -1013
  35. package/types/sap.ui.core.d.ts +3852 -3973
  36. package/types/sap.ui.dt.d.ts +2 -4
  37. package/types/sap.ui.export.d.ts +3 -3
  38. package/types/sap.ui.fl.d.ts +1 -1
  39. package/types/sap.ui.generic.app.d.ts +138 -147
  40. package/types/sap.ui.generic.template.d.ts +2 -4
  41. package/types/sap.ui.integration.d.ts +118 -112
  42. package/types/sap.ui.layout.d.ts +593 -586
  43. package/types/sap.ui.mdc.d.ts +7 -1
  44. package/types/sap.ui.richtexteditor.d.ts +30 -30
  45. package/types/sap.ui.rta.d.ts +1 -1
  46. package/types/sap.ui.suite.d.ts +53 -53
  47. package/types/sap.ui.support.d.ts +6 -12
  48. package/types/sap.ui.table.d.ts +248 -248
  49. package/types/sap.ui.testrecorder.d.ts +1 -1
  50. package/types/sap.ui.unified.d.ts +853 -713
  51. package/types/sap.ui.ux3.d.ts +785 -793
  52. package/types/sap.ui.vbm.d.ts +784 -784
  53. package/types/sap.ui.vk.d.ts +3130 -2251
  54. package/types/sap.ui.vtm.d.ts +240 -240
  55. package/types/sap.uiext.inbox.d.ts +222 -222
  56. package/types/sap.ushell.d.ts +340 -377
  57. package/types/sap.ushell_abap.d.ts +127 -129
  58. package/types/sap.uxap.d.ts +384 -220
  59. package/types/sap.viz.d.ts +1527 -1527
  60. package/types/sap.webanalytics.core.d.ts +1 -1
  61. package/types/sap.zen.commons.d.ts +188 -222
  62. package/types/sap.zen.crosstab.d.ts +15 -17
  63. package/types/sap.zen.dsh.d.ts +176 -211
  64. package/types/sap.fe.placeholder.d.ts +0 -5
@@ -1,4 +1,4 @@
1
- // For Library Version: 1.92.1
1
+ // For Library Version: 1.93.3
2
2
 
3
3
  declare namespace sap {
4
4
  /**
@@ -98,6 +98,31 @@ declare namespace sap {
98
98
  */
99
99
  LaunchpadState: undefined;
100
100
 
101
+ /**
102
+ * Creates a new subclass of class sap.ushell.renderers.fiori2.Renderer with name `sClassName` and enriches
103
+ * it with the information contained in `oClassInfo`.
104
+ *
105
+ * `oClassInfo` might contain the same kind of information as described in {@link sap.ui.core.UIComponent.extend}.
106
+ */
107
+ static extend<T extends Record<string, unknown>>(
108
+ /**
109
+ * Name of the class being created
110
+ */
111
+ sClassName: string,
112
+ /**
113
+ * Object literal with information about the class
114
+ */
115
+ oClassInfo?: sap.ClassInfo<T, sap.ushell.renderers.fiori2.Renderer>,
116
+ /**
117
+ * Constructor function for the metadata object; if not given, it defaults to the metadata implementation
118
+ * used by this class
119
+ */
120
+ FNMetaImpl?: Function
121
+ ): Function;
122
+ /**
123
+ * Returns a metadata object for class sap.ushell.renderers.fiori2.Renderer.
124
+ */
125
+ static getMetadata(): sap.ui.core.ComponentMetadata;
101
126
  /**
102
127
  * @SINCE 1.30
103
128
  * @deprecated (since 1.48) - Use addUserAction instead.
@@ -151,6 +176,7 @@ declare namespace sap {
151
176
  ): object;
152
177
  /**
153
178
  * @SINCE 1.30
179
+ * @deprecated (since 1.93)
154
180
  *
155
181
  * Adds the given sap.ui.core.Control to the EndUserFeedback dialog.
156
182
  * The EndUserFeedback dialog is opened via the user actions menu in the Fiori Launchpad shell header.
@@ -798,37 +824,12 @@ declare namespace sap {
798
824
  */
799
825
  entryObject: object
800
826
  ): object;
801
- /**
802
- * Creates a new subclass of class sap.ushell.renderers.fiori2.Renderer with name `sClassName` and enriches
803
- * it with the information contained in `oClassInfo`.
804
- *
805
- * `oClassInfo` might contain the same kind of information as described in {@link sap.ui.core.UIComponent.extend}.
806
- */
807
- static extend<T extends Record<string, unknown>>(
808
- /**
809
- * Name of the class being created
810
- */
811
- sClassName: string,
812
- /**
813
- * Object literal with information about the class
814
- */
815
- oClassInfo?: sap.ClassInfo<T, sap.ushell.renderers.fiori2.Renderer>,
816
- /**
817
- * Constructor function for the metadata object; if not given, it defaults to the metadata implementation
818
- * used by this class
819
- */
820
- FNMetaImpl?: Function
821
- ): Function;
822
827
  /**
823
828
  * @SINCE 1.37
824
829
  *
825
830
  * This method returns the current state of the Viewport Container control.
826
831
  */
827
832
  getCurrentViewportState(): object;
828
- /**
829
- * Returns a metadata object for class sap.ushell.renderers.fiori2.Renderer.
830
- */
831
- static getMetadata(): sap.ui.core.ComponentMetadata;
832
833
  /**
833
834
  * @SINCE 1.30
834
835
  *
@@ -2095,7 +2096,7 @@ declare namespace sap {
2095
2096
  * The contentProviderId or undefined outside the cFLP
2096
2097
  */
2097
2098
  sContentProviderId?: string
2098
- ): jQuery.Deferred;
2099
+ ): jQuery.Promise;
2099
2100
  /**
2100
2101
  * @SINCE 1.21.2
2101
2102
  *
@@ -2124,7 +2125,7 @@ declare namespace sap {
2124
2125
  */
2125
2126
  remoteId: string;
2126
2127
  }
2127
- ): jQuery.Deferred;
2128
+ ): jQuery.Promise;
2128
2129
  /**
2129
2130
  * @SINCE 1.17.1
2130
2131
  *
@@ -2139,7 +2140,7 @@ declare namespace sap {
2139
2140
  * The URL of the bookmarks to be counted, exactly as specified to {@link #addBookmark}.
2140
2141
  */
2141
2142
  sUrl: string
2142
- ): jQuery.Deferred;
2143
+ ): jQuery.Promise;
2143
2144
  /**
2144
2145
  * @SINCE 1.17.1
2145
2146
  *
@@ -2157,7 +2158,7 @@ declare namespace sap {
2157
2158
  * The contentProviderId or undefined outside the cFLP
2158
2159
  */
2159
2160
  sContentProviderId?: string
2160
- ): jQuery.Deferred;
2161
+ ): jQuery.Promise;
2161
2162
  /**
2162
2163
  * @SINCE 1.81
2163
2164
  *
@@ -2201,7 +2202,7 @@ declare namespace sap {
2201
2202
  * The contentProviderId or undefined outside the cFLP
2202
2203
  */
2203
2204
  sContentProviderId?: string
2204
- ): jQuery.Deferred;
2205
+ ): jQuery.Promise;
2205
2206
  }
2206
2207
  /**
2207
2208
  * @SINCE 1.64.0
@@ -2224,9 +2225,6 @@ declare namespace sap {
2224
2225
  * The Unified Shell's container which manages renderers, services, and adapters.
2225
2226
  */
2226
2227
  class Container {
2227
- /**
2228
- *
2229
- */
2230
2228
  constructor();
2231
2229
  /**
2232
2230
  * @SINCE 1.21.1
@@ -3093,8 +3091,10 @@ declare namespace sap {
3093
3091
  }
3094
3092
  /**
3095
3093
  * @SINCE 1.25.1
3094
+ * @deprecated (since 1.93)
3096
3095
  *
3097
- * The Unified Shell's end user feedback service
3096
+ * The Unified Shell's end user feedback service. This service is deprecated and does nothing. End user
3097
+ * feedback functionality s not part of the ushell library.
3098
3098
  */
3099
3099
  class EndUserFeedback {
3100
3100
  /**
@@ -3103,66 +3103,27 @@ declare namespace sap {
3103
3103
  * See:
3104
3104
  * sap.ushell.services.Container#getServiceAsync
3105
3105
  */
3106
- constructor(
3107
- /**
3108
- * the service adapter for the end user feedback service, as already provided by the container
3109
- */
3110
- oAdapter: object,
3111
- /**
3112
- * the interface provided by the container
3113
- */
3114
- oContainerInterface: object,
3115
- /**
3116
- * the runtime configuration specified in the `sap.ushell.Container.getServiceAsync()` call (not evaluated
3117
- * yet)
3118
- */
3119
- sParameters: string,
3120
- /**
3121
- * the service configuration defined in the bootstrap configuration; the boolean property `enabled` controls
3122
- * the service enablement
3123
- *
3124
- * This service is enabled by default. It can be disabled explicitly in the bootstrap configuration of the
3125
- * start page:
3126
- * ```javascript
3127
- *
3128
- * window["sap-ushell-config"] = {
3129
- * services: {
3130
- * EndUserFeedback: {
3131
- * config: { enabled: true }
3132
- * }
3133
- * }
3134
- * }
3135
- * ```
3136
- *
3137
- *
3138
- * Platform implementations can also enable it dynamically by modification of the bootstrap configuration
3139
- * during boot time.
3140
- */
3141
- oServiceConfiguration: object
3142
- );
3106
+ constructor();
3143
3107
 
3144
3108
  /**
3145
3109
  * @SINCE 1.25.1
3110
+ * @deprecated (since 1.93)
3146
3111
  */
3147
- getLegalText(): String;
3112
+ getLegalText(): string;
3148
3113
  /**
3149
3114
  * @SINCE 1.25.1
3115
+ * @deprecated (since 1.93)
3150
3116
  *
3151
- * Checks if the service is enabled. The service enablement depends on the configuration in the back-end
3152
- * system and the bootstrap configuration.
3117
+ * The service is deprecated. The function always returns a negative answer.
3153
3118
  */
3154
3119
  isEnabled(): Object;
3155
3120
  /**
3156
3121
  * @SINCE 1.25.1
3122
+ * @deprecated (since 1.93)
3157
3123
  *
3158
- * Sends a feedback. Forwards the given data (JSON object) to the associated adapter.
3124
+ * Sends a feedback.
3159
3125
  */
3160
- sendFeedback(
3161
- /**
3162
- * object containing the input fields required for the end user feedback.
3163
- */
3164
- Plain: object
3165
- ): void;
3126
+ sendFeedback(): Promise<any>;
3166
3127
  }
3167
3128
  /**
3168
3129
  * @SINCE 1.15.0
@@ -4324,13 +4285,6 @@ declare namespace sap {
4324
4285
  */
4325
4286
  oComponent: sap.ui.core.Component
4326
4287
  ): object;
4327
- /**
4328
- * @SINCE 1.28.0
4329
- *
4330
- * Returns a generated key This key is suitably random depending on the platform, but it is viable to brute
4331
- * force attacks and storages based on it shall not be used for sensitive data
4332
- */
4333
- getGeneratedKey(): string;
4334
4288
  /**
4335
4289
  * @SINCE 1.18.0
4336
4290
  * @deprecated - use getContainer()
@@ -5083,8 +5037,8 @@ declare namespace sap {
5083
5037
  /**
5084
5038
  * any value
5085
5039
  */
5086
- sURL: String
5087
- ): String;
5040
+ sURL: string
5041
+ ): string;
5088
5042
  /**
5089
5043
  * @SINCE 1.16.0
5090
5044
  *
@@ -5125,8 +5079,8 @@ declare namespace sap {
5125
5079
  /**
5126
5080
  * the URL to test. Note: this url must be in internal format.
5127
5081
  */
5128
- sUrl: String
5129
- ): Boolean;
5082
+ sUrl: string
5083
+ ): boolean;
5130
5084
  /**
5131
5085
  * @SINCE 1.20.0
5132
5086
  *
@@ -5137,8 +5091,8 @@ declare namespace sap {
5137
5091
  /**
5138
5092
  * any value { ABC : [1,"1 2"], DEF : ["4"]}
5139
5093
  */
5140
- oParams: Object
5141
- ): String;
5094
+ oParams: object
5095
+ ): string;
5142
5096
  /**
5143
5097
  * @SINCE 1.20.0
5144
5098
  *
@@ -5148,8 +5102,8 @@ declare namespace sap {
5148
5102
  /**
5149
5103
  * Parameter string, e.g. `?ABC=1&ABC=1%202DEF=4`
5150
5104
  */
5151
- sParams: String
5152
- ): Object;
5105
+ sParams: string
5106
+ ): object;
5153
5107
  /**
5154
5108
  * @SINCE 1.16.0
5155
5109
  *
@@ -5161,7 +5115,7 @@ declare namespace sap {
5161
5115
  *
5162
5116
  * e.g. `"#Object-name~AFE2==?PV1=PV2&PV4=V5&/display/detail/7?UU=HH`
5163
5117
  */
5164
- sHash: String
5118
+ sHash: string
5165
5119
  ): object;
5166
5120
  /**
5167
5121
  * @SINCE 1.16.0
@@ -5175,7 +5129,7 @@ declare namespace sap {
5175
5129
  * Hash part of a shell conformant URL #SO-Action~Context?P1=a&P2=x&/route?RPV=1 the hash part
5176
5130
  * of an URL, e.g. "#Object-name~AFE2==?PV1=PV2&PV4=V5&/display/detail/7?UU=HH
5177
5131
  */
5178
- sHash: String
5132
+ sHash: string
5179
5133
  ): object;
5180
5134
  }
5181
5135
  /**
@@ -5281,18 +5235,27 @@ declare namespace sap {
5281
5235
  }
5282
5236
  /**
5283
5237
  * @SINCE 1.16.3
5284
- *
5285
- * The Unified Shell's user information service, which allows you to retrieve information about the logged-in
5286
- * user.
5287
5238
  */
5288
5239
  class UserInfo {
5289
5240
  /**
5290
5241
  * This method MUST be called by the Unified Shell's container only, others MUST call `sap.ushell.Container.getServiceAsync("UserInfo").then(function
5291
5242
  * (UserInfo) {});`. Constructs a new instance of the user information service.
5243
+ *
5244
+ * The Unified Shell's user information service, which allows you to retrieve information about the logged-in
5245
+ * user.
5292
5246
  * See:
5293
5247
  * sap.ushell.services.Container#getServiceAsync
5294
5248
  */
5295
- constructor();
5249
+ constructor(
5250
+ /**
5251
+ * Adapter
5252
+ */
5253
+ oAdapter: object,
5254
+ /**
5255
+ * interface
5256
+ */
5257
+ oContainerInterface: object
5258
+ );
5296
5259
 
5297
5260
  /**
5298
5261
  * @SINCE 1.86.0
@@ -5343,7 +5306,7 @@ declare namespace sap {
5343
5306
  | sap.ushell.components.factsheet.controls.PictureViewerItem
5344
5307
  | string;
5345
5308
 
5346
- pictureDelete?: Function;
5309
+ pictureDelete?: (oEvent: sap.ui.base.Event) => void;
5347
5310
  }
5348
5311
 
5349
5312
  interface $PictureViewerSettings
@@ -5361,7 +5324,7 @@ declare namespace sap {
5361
5324
  | sap.ushell.components.factsheet.controls.PictureViewerItem
5362
5325
  | sap.ui.base.ManagedObject.AggregationBindingInfo;
5363
5326
 
5364
- pictureDeleted?: Function;
5327
+ pictureDeleted?: (oEvent: sap.ui.base.Event) => void;
5365
5328
  }
5366
5329
 
5367
5330
  interface $PictureViewerItemSettings
@@ -5411,6 +5374,34 @@ declare namespace sap {
5411
5374
  mSettings?: sap.ushell.components.factsheet.controls.$PictureTileSettings
5412
5375
  );
5413
5376
 
5377
+ /**
5378
+ * Creates a new subclass of class sap.ushell.components.factsheet.controls.PictureTile with name `sClassName`
5379
+ * and enriches it with the information contained in `oClassInfo`.
5380
+ *
5381
+ * `oClassInfo` might contain the same kind of information as described in {@link sap.m.CustomTile.extend}.
5382
+ */
5383
+ static extend<T extends Record<string, unknown>>(
5384
+ /**
5385
+ * Name of the class being created
5386
+ */
5387
+ sClassName: string,
5388
+ /**
5389
+ * Object literal with information about the class
5390
+ */
5391
+ oClassInfo?: sap.ClassInfo<
5392
+ T,
5393
+ sap.ushell.components.factsheet.controls.PictureTile
5394
+ >,
5395
+ /**
5396
+ * Constructor function for the metadata object; if not given, it defaults to the metadata implementation
5397
+ * used by this class
5398
+ */
5399
+ FNMetaImpl?: Function
5400
+ ): Function;
5401
+ /**
5402
+ * Returns a metadata object for class sap.ushell.components.factsheet.controls.PictureTile.
5403
+ */
5404
+ static getMetadata(): sap.ui.core.ElementMetadata;
5414
5405
  /**
5415
5406
  * Attaches event handler `fnFunction` to the {@link #event:pictureDelete pictureDelete} event of this `sap.ushell.components.factsheet.controls.PictureTile`.
5416
5407
  *
@@ -5466,30 +5457,6 @@ declare namespace sap {
5466
5457
  */
5467
5458
  oListener?: object
5468
5459
  ): this;
5469
- /**
5470
- * Creates a new subclass of class sap.ushell.components.factsheet.controls.PictureTile with name `sClassName`
5471
- * and enriches it with the information contained in `oClassInfo`.
5472
- *
5473
- * `oClassInfo` might contain the same kind of information as described in {@link sap.m.CustomTile.extend}.
5474
- */
5475
- static extend<T extends Record<string, unknown>>(
5476
- /**
5477
- * Name of the class being created
5478
- */
5479
- sClassName: string,
5480
- /**
5481
- * Object literal with information about the class
5482
- */
5483
- oClassInfo?: sap.ClassInfo<
5484
- T,
5485
- sap.ushell.components.factsheet.controls.PictureTile
5486
- >,
5487
- /**
5488
- * Constructor function for the metadata object; if not given, it defaults to the metadata implementation
5489
- * used by this class
5490
- */
5491
- FNMetaImpl?: Function
5492
- ): Function;
5493
5460
  /**
5494
5461
  * Fires event {@link #event:pictureDelete pictureDelete} to attached listeners.
5495
5462
  */
@@ -5505,10 +5472,6 @@ declare namespace sap {
5505
5472
  * Default value is `"32px"`.
5506
5473
  */
5507
5474
  getHeight(): sap.ui.core.CSSSize;
5508
- /**
5509
- * Returns a metadata object for class sap.ushell.components.factsheet.controls.PictureTile.
5510
- */
5511
- static getMetadata(): sap.ui.core.ElementMetadata;
5512
5475
  /**
5513
5476
  * ID of the element which is the current target of the association {@link #getTileContent tileContent},
5514
5477
  * or `null`.
@@ -5598,6 +5561,34 @@ declare namespace sap {
5598
5561
  mSettings?: sap.ushell.components.factsheet.controls.$PictureViewerSettings
5599
5562
  );
5600
5563
 
5564
+ /**
5565
+ * Creates a new subclass of class sap.ushell.components.factsheet.controls.PictureViewer with name `sClassName`
5566
+ * and enriches it with the information contained in `oClassInfo`.
5567
+ *
5568
+ * `oClassInfo` might contain the same kind of information as described in {@link sap.m.TileContainer.extend}.
5569
+ */
5570
+ static extend<T extends Record<string, unknown>>(
5571
+ /**
5572
+ * Name of the class being created
5573
+ */
5574
+ sClassName: string,
5575
+ /**
5576
+ * Object literal with information about the class
5577
+ */
5578
+ oClassInfo?: sap.ClassInfo<
5579
+ T,
5580
+ sap.ushell.components.factsheet.controls.PictureViewer
5581
+ >,
5582
+ /**
5583
+ * Constructor function for the metadata object; if not given, it defaults to the metadata implementation
5584
+ * used by this class
5585
+ */
5586
+ FNMetaImpl?: Function
5587
+ ): Function;
5588
+ /**
5589
+ * Returns a metadata object for class sap.ushell.components.factsheet.controls.PictureViewer.
5590
+ */
5591
+ static getMetadata(): sap.ui.core.ElementMetadata;
5601
5592
  /**
5602
5593
  * @deprecated - Use aggregation "tiles"
5603
5594
  *
@@ -5680,30 +5671,6 @@ declare namespace sap {
5680
5671
  */
5681
5672
  oListener?: object
5682
5673
  ): this;
5683
- /**
5684
- * Creates a new subclass of class sap.ushell.components.factsheet.controls.PictureViewer with name `sClassName`
5685
- * and enriches it with the information contained in `oClassInfo`.
5686
- *
5687
- * `oClassInfo` might contain the same kind of information as described in {@link sap.m.TileContainer.extend}.
5688
- */
5689
- static extend<T extends Record<string, unknown>>(
5690
- /**
5691
- * Name of the class being created
5692
- */
5693
- sClassName: string,
5694
- /**
5695
- * Object literal with information about the class
5696
- */
5697
- oClassInfo?: sap.ClassInfo<
5698
- T,
5699
- sap.ushell.components.factsheet.controls.PictureViewer
5700
- >,
5701
- /**
5702
- * Constructor function for the metadata object; if not given, it defaults to the metadata implementation
5703
- * used by this class
5704
- */
5705
- FNMetaImpl?: Function
5706
- ): Function;
5707
5674
  /**
5708
5675
  * Fires event {@link #event:pictureDeleted pictureDeleted} to attached listeners.
5709
5676
  */
@@ -5721,10 +5688,6 @@ declare namespace sap {
5721
5688
  * Gets content of aggregation {@link #getItems items}.
5722
5689
  */
5723
5690
  getItems(): sap.ushell.components.factsheet.controls.PictureViewerItem[];
5724
- /**
5725
- * Returns a metadata object for class sap.ushell.components.factsheet.controls.PictureViewer.
5726
- */
5727
- static getMetadata(): sap.ui.core.ElementMetadata;
5728
5691
  /**
5729
5692
  * Gets current value of property {@link #getRemovable removable}.
5730
5693
  *
@@ -5867,10 +5830,6 @@ declare namespace sap {
5867
5830
  mSettings?: sap.ushell.components.factsheet.controls.$PictureViewerItemSettings
5868
5831
  );
5869
5832
 
5870
- /**
5871
- * Destroys the image in the aggregation {@link #getImage image}.
5872
- */
5873
- destroyImage(): this;
5874
5833
  /**
5875
5834
  * Creates a new subclass of class sap.ushell.components.factsheet.controls.PictureViewerItem with name
5876
5835
  * `sClassName` and enriches it with the information contained in `oClassInfo`.
@@ -5895,14 +5854,18 @@ declare namespace sap {
5895
5854
  */
5896
5855
  FNMetaImpl?: Function
5897
5856
  ): Function;
5898
- /**
5899
- * Gets content of aggregation {@link #getImage image}.
5900
- */
5901
- getImage(): sap.m.Image;
5902
5857
  /**
5903
5858
  * Returns a metadata object for class sap.ushell.components.factsheet.controls.PictureViewerItem.
5904
5859
  */
5905
5860
  static getMetadata(): sap.ui.core.ElementMetadata;
5861
+ /**
5862
+ * Destroys the image in the aggregation {@link #getImage image}.
5863
+ */
5864
+ destroyImage(): this;
5865
+ /**
5866
+ * Gets content of aggregation {@link #getImage image}.
5867
+ */
5868
+ getImage(): sap.m.Image;
5906
5869
  /**
5907
5870
  * Gets current value of property {@link #getSrc src}.
5908
5871
  */
@@ -5970,12 +5933,12 @@ declare namespace sap {
5970
5933
  /**
5971
5934
  * Fires when the appBox is pressed.
5972
5935
  */
5973
- press?: Function;
5936
+ press?: (oEvent: sap.ui.base.Event) => void;
5974
5937
 
5975
5938
  /**
5976
5939
  * Fires after the appBox is rendered.
5977
5940
  */
5978
- afterRendering?: Function;
5941
+ afterRendering?: (oEvent: sap.ui.base.Event) => void;
5979
5942
  }
5980
5943
 
5981
5944
  /**
@@ -6014,13 +5977,38 @@ declare namespace sap {
6014
5977
  );
6015
5978
 
6016
5979
  /**
6017
- * Attaches event handler `fnFunction` to the {@link #event:afterRendering afterRendering} event of this
6018
- * `sap.ushell.ui.appfinder.AppBox`.
6019
- *
6020
- * When called, the context of the event handler (its `this`) will be bound to `oListener` if specified,
6021
- * otherwise it will be bound to this `sap.ushell.ui.appfinder.AppBox` itself.
5980
+ * Creates a new subclass of class sap.ushell.ui.appfinder.AppBox with name `sClassName` and enriches it
5981
+ * with the information contained in `oClassInfo`.
6022
5982
  *
6023
- * Fires after the appBox is rendered.
5983
+ * `oClassInfo` might contain the same kind of information as described in {@link sap.ui.core.Control.extend}.
5984
+ */
5985
+ static extend<T extends Record<string, unknown>>(
5986
+ /**
5987
+ * Name of the class being created
5988
+ */
5989
+ sClassName: string,
5990
+ /**
5991
+ * Object literal with information about the class
5992
+ */
5993
+ oClassInfo?: sap.ClassInfo<T, sap.ushell.ui.appfinder.AppBox>,
5994
+ /**
5995
+ * Constructor function for the metadata object; if not given, it defaults to the metadata implementation
5996
+ * used by this class
5997
+ */
5998
+ FNMetaImpl?: Function
5999
+ ): Function;
6000
+ /**
6001
+ * Returns a metadata object for class sap.ushell.ui.appfinder.AppBox.
6002
+ */
6003
+ static getMetadata(): sap.ui.core.ElementMetadata;
6004
+ /**
6005
+ * Attaches event handler `fnFunction` to the {@link #event:afterRendering afterRendering} event of this
6006
+ * `sap.ushell.ui.appfinder.AppBox`.
6007
+ *
6008
+ * When called, the context of the event handler (its `this`) will be bound to `oListener` if specified,
6009
+ * otherwise it will be bound to this `sap.ushell.ui.appfinder.AppBox` itself.
6010
+ *
6011
+ * Fires after the appBox is rendered.
6024
6012
  */
6025
6013
  attachAfterRendering(
6026
6014
  /**
@@ -6132,27 +6120,6 @@ declare namespace sap {
6132
6120
  */
6133
6121
  oListener?: object
6134
6122
  ): this;
6135
- /**
6136
- * Creates a new subclass of class sap.ushell.ui.appfinder.AppBox with name `sClassName` and enriches it
6137
- * with the information contained in `oClassInfo`.
6138
- *
6139
- * `oClassInfo` might contain the same kind of information as described in {@link sap.ui.core.Control.extend}.
6140
- */
6141
- static extend<T extends Record<string, unknown>>(
6142
- /**
6143
- * Name of the class being created
6144
- */
6145
- sClassName: string,
6146
- /**
6147
- * Object literal with information about the class
6148
- */
6149
- oClassInfo?: sap.ClassInfo<T, sap.ushell.ui.appfinder.AppBox>,
6150
- /**
6151
- * Constructor function for the metadata object; if not given, it defaults to the metadata implementation
6152
- * used by this class
6153
- */
6154
- FNMetaImpl?: Function
6155
- ): Function;
6156
6123
  /**
6157
6124
  * Fires event {@link #event:afterRendering afterRendering} to attached listeners.
6158
6125
  */
@@ -6177,10 +6144,6 @@ declare namespace sap {
6177
6144
  * Specifies the icon url of the appBox.
6178
6145
  */
6179
6146
  getIcon(): string;
6180
- /**
6181
- * Returns a metadata object for class sap.ushell.ui.appfinder.AppBox.
6182
- */
6183
- static getMetadata(): sap.ui.core.ElementMetadata;
6184
6147
  /**
6185
6148
  * Gets current value of property {@link #getNavigationMode navigationMode}.
6186
6149
  *
@@ -6292,9 +6255,9 @@ declare namespace sap {
6292
6255
  interface $ActionItemSettings extends sap.m.$ButtonSettings {
6293
6256
  actionType?: string | sap.ui.base.ManagedObject.PropertyBindingInfo;
6294
6257
 
6295
- press?: Function;
6258
+ press?: (oEvent: sap.ui.base.Event) => void;
6296
6259
 
6297
- afterRendering?: Function;
6260
+ afterRendering?: (oEvent: sap.ui.base.Event) => void;
6298
6261
  }
6299
6262
 
6300
6263
  interface $DashboardGroupsContainerSettings
@@ -6317,7 +6280,7 @@ declare namespace sap {
6317
6280
  | sap.ui.core.Control
6318
6281
  | sap.ui.base.ManagedObject.AggregationBindingInfo;
6319
6282
 
6320
- afterRendering?: Function;
6283
+ afterRendering?: (oEvent: sap.ui.base.Event) => void;
6321
6284
  }
6322
6285
 
6323
6286
  interface $GridContainerSettings extends sap.ui.core.$ControlSettings {
@@ -6421,17 +6384,17 @@ declare namespace sap {
6421
6384
  | sap.ui.core.Control
6422
6385
  | sap.ui.base.ManagedObject.AggregationBindingInfo;
6423
6386
 
6424
- afterRendering?: Function;
6387
+ afterRendering?: (oEvent: sap.ui.base.Event) => void;
6425
6388
 
6426
- titleChange?: Function;
6389
+ titleChange?: (oEvent: sap.ui.base.Event) => void;
6427
6390
 
6428
- tileDragStart?: Function;
6391
+ tileDragStart?: (oEvent: sap.ui.base.Event) => void;
6429
6392
 
6430
- tileDragEnter?: Function;
6393
+ tileDragEnter?: (oEvent: sap.ui.base.Event) => void;
6431
6394
 
6432
- tileDrop?: Function;
6395
+ tileDrop?: (oEvent: sap.ui.base.Event) => void;
6433
6396
 
6434
- layoutChange?: Function;
6397
+ layoutChange?: (oEvent: sap.ui.base.Event) => void;
6435
6398
  }
6436
6399
 
6437
6400
  interface $LinkTileWrapperSettings
@@ -6470,19 +6433,19 @@ declare namespace sap {
6470
6433
  | sap.ui.core.Control
6471
6434
  | sap.ui.base.ManagedObject.AggregationBindingInfo;
6472
6435
 
6473
- press?: Function;
6436
+ press?: (oEvent: sap.ui.base.Event) => void;
6474
6437
 
6475
- coverDivPress?: Function;
6438
+ coverDivPress?: (oEvent: sap.ui.base.Event) => void;
6476
6439
 
6477
- afterRendering?: Function;
6440
+ afterRendering?: (oEvent: sap.ui.base.Event) => void;
6478
6441
 
6479
- showActions?: Function;
6442
+ showActions?: (oEvent: sap.ui.base.Event) => void;
6480
6443
  }
6481
6444
 
6482
6445
  interface $TileStateSettings extends sap.ui.core.$ControlSettings {
6483
6446
  state?: string | sap.ui.base.ManagedObject.PropertyBindingInfo;
6484
6447
 
6485
- press?: Function;
6448
+ press?: (oEvent: sap.ui.base.Event) => void;
6486
6449
  }
6487
6450
 
6488
6451
  class ActionItem extends sap.m.Button {
@@ -6517,6 +6480,31 @@ declare namespace sap {
6517
6480
  mSettings?: sap.ushell.ui.launchpad.$ActionItemSettings
6518
6481
  );
6519
6482
 
6483
+ /**
6484
+ * Creates a new subclass of class sap.ushell.ui.launchpad.ActionItem with name `sClassName` and enriches
6485
+ * it with the information contained in `oClassInfo`.
6486
+ *
6487
+ * `oClassInfo` might contain the same kind of information as described in {@link sap.m.Button.extend}.
6488
+ */
6489
+ static extend<T extends Record<string, unknown>>(
6490
+ /**
6491
+ * Name of the class being created
6492
+ */
6493
+ sClassName: string,
6494
+ /**
6495
+ * Object literal with information about the class
6496
+ */
6497
+ oClassInfo?: sap.ClassInfo<T, sap.ushell.ui.launchpad.ActionItem>,
6498
+ /**
6499
+ * Constructor function for the metadata object; if not given, it defaults to the metadata implementation
6500
+ * used by this class
6501
+ */
6502
+ FNMetaImpl?: Function
6503
+ ): Function;
6504
+ /**
6505
+ * Returns a metadata object for class sap.ushell.ui.launchpad.ActionItem.
6506
+ */
6507
+ static getMetadata(): sap.ui.core.ElementMetadata;
6520
6508
  /**
6521
6509
  * Attaches event handler `fnFunction` to the {@link #event:afterRendering afterRendering} event of this
6522
6510
  * `sap.ushell.ui.launchpad.ActionItem`.
@@ -6628,27 +6616,6 @@ declare namespace sap {
6628
6616
  */
6629
6617
  oListener?: object
6630
6618
  ): this;
6631
- /**
6632
- * Creates a new subclass of class sap.ushell.ui.launchpad.ActionItem with name `sClassName` and enriches
6633
- * it with the information contained in `oClassInfo`.
6634
- *
6635
- * `oClassInfo` might contain the same kind of information as described in {@link sap.m.Button.extend}.
6636
- */
6637
- static extend<T extends Record<string, unknown>>(
6638
- /**
6639
- * Name of the class being created
6640
- */
6641
- sClassName: string,
6642
- /**
6643
- * Object literal with information about the class
6644
- */
6645
- oClassInfo?: sap.ClassInfo<T, sap.ushell.ui.launchpad.ActionItem>,
6646
- /**
6647
- * Constructor function for the metadata object; if not given, it defaults to the metadata implementation
6648
- * used by this class
6649
- */
6650
- FNMetaImpl?: Function
6651
- ): Function;
6652
6619
  /**
6653
6620
  * Fires event {@link #event:afterRendering afterRendering} to attached listeners.
6654
6621
  */
@@ -6673,10 +6640,6 @@ declare namespace sap {
6673
6640
  * Default value is `"standard"`.
6674
6641
  */
6675
6642
  getActionType(): string;
6676
- /**
6677
- * Returns a metadata object for class sap.ushell.ui.launchpad.ActionItem.
6678
- */
6679
- static getMetadata(): sap.ui.core.ElementMetadata;
6680
6643
  /**
6681
6644
  * Sets a new value for property {@link #getActionType actionType}.
6682
6645
  *
@@ -6724,6 +6687,34 @@ declare namespace sap {
6724
6687
  mSettings?: sap.ushell.ui.launchpad.$DashboardGroupsContainerSettings
6725
6688
  );
6726
6689
 
6690
+ /**
6691
+ * Creates a new subclass of class sap.ushell.ui.launchpad.DashboardGroupsContainer with name `sClassName`
6692
+ * and enriches it with the information contained in `oClassInfo`.
6693
+ *
6694
+ * `oClassInfo` might contain the same kind of information as described in {@link sap.ui.core.Control.extend}.
6695
+ */
6696
+ static extend<T extends Record<string, unknown>>(
6697
+ /**
6698
+ * Name of the class being created
6699
+ */
6700
+ sClassName: string,
6701
+ /**
6702
+ * Object literal with information about the class
6703
+ */
6704
+ oClassInfo?: sap.ClassInfo<
6705
+ T,
6706
+ sap.ushell.ui.launchpad.DashboardGroupsContainer
6707
+ >,
6708
+ /**
6709
+ * Constructor function for the metadata object; if not given, it defaults to the metadata implementation
6710
+ * used by this class
6711
+ */
6712
+ FNMetaImpl?: Function
6713
+ ): Function;
6714
+ /**
6715
+ * Returns a metadata object for class sap.ushell.ui.launchpad.DashboardGroupsContainer.
6716
+ */
6717
+ static getMetadata(): sap.ui.core.ElementMetadata;
6727
6718
  /**
6728
6719
  * Adds some group to the aggregation {@link #getGroups groups}.
6729
6720
  */
@@ -6794,30 +6785,6 @@ declare namespace sap {
6794
6785
  */
6795
6786
  oListener?: object
6796
6787
  ): this;
6797
- /**
6798
- * Creates a new subclass of class sap.ushell.ui.launchpad.DashboardGroupsContainer with name `sClassName`
6799
- * and enriches it with the information contained in `oClassInfo`.
6800
- *
6801
- * `oClassInfo` might contain the same kind of information as described in {@link sap.ui.core.Control.extend}.
6802
- */
6803
- static extend<T extends Record<string, unknown>>(
6804
- /**
6805
- * Name of the class being created
6806
- */
6807
- sClassName: string,
6808
- /**
6809
- * Object literal with information about the class
6810
- */
6811
- oClassInfo?: sap.ClassInfo<
6812
- T,
6813
- sap.ushell.ui.launchpad.DashboardGroupsContainer
6814
- >,
6815
- /**
6816
- * Constructor function for the metadata object; if not given, it defaults to the metadata implementation
6817
- * used by this class
6818
- */
6819
- FNMetaImpl?: Function
6820
- ): Function;
6821
6788
  /**
6822
6789
  * Fires event {@link #event:afterRendering afterRendering} to attached listeners.
6823
6790
  */
@@ -6847,10 +6814,6 @@ declare namespace sap {
6847
6814
  * Gets content of aggregation {@link #getGroups groups}.
6848
6815
  */
6849
6816
  getGroups(): sap.ui.core.Control[];
6850
- /**
6851
- * Returns a metadata object for class sap.ushell.ui.launchpad.DashboardGroupsContainer.
6852
- */
6853
- static getMetadata(): sap.ui.core.ElementMetadata;
6854
6817
  /**
6855
6818
  * Checks for the provided `sap.ui.core.Control` in the aggregation {@link #getGroups groups}. and returns
6856
6819
  * its index if found or -1 otherwise.
@@ -6966,6 +6929,34 @@ declare namespace sap {
6966
6929
  mSettings?: sap.ushell.ui.launchpad.$GridContainerSettings
6967
6930
  );
6968
6931
 
6932
+ /**
6933
+ * Creates a new subclass of class sap.ushell.ui.launchpad.GridContainer with name `sClassName` and enriches
6934
+ * it with the information contained in `oClassInfo`.
6935
+ *
6936
+ * `oClassInfo` might contain the same kind of information as described in {@link sap.ui.core.Control.extend}.
6937
+ */
6938
+ static extend<T extends Record<string, unknown>>(
6939
+ /**
6940
+ * Name of the class being created
6941
+ */
6942
+ sClassName: string,
6943
+ /**
6944
+ * Object literal with information about the class
6945
+ */
6946
+ oClassInfo?: sap.ClassInfo<
6947
+ T,
6948
+ sap.ushell.ui.launchpad.GridContainer
6949
+ >,
6950
+ /**
6951
+ * Constructor function for the metadata object; if not given, it defaults to the metadata implementation
6952
+ * used by this class
6953
+ */
6954
+ FNMetaImpl?: Function
6955
+ ): Function;
6956
+ /**
6957
+ * Returns a metadata object for class sap.ushell.ui.launchpad.GridContainer.
6958
+ */
6959
+ static getMetadata(): sap.ui.core.ElementMetadata;
6969
6960
  /**
6970
6961
  * Adds some afterContent to the aggregation {@link #getAfterContent afterContent}.
6971
6962
  */
@@ -7373,30 +7364,6 @@ declare namespace sap {
7373
7364
  */
7374
7365
  oListener?: object
7375
7366
  ): this;
7376
- /**
7377
- * Creates a new subclass of class sap.ushell.ui.launchpad.GridContainer with name `sClassName` and enriches
7378
- * it with the information contained in `oClassInfo`.
7379
- *
7380
- * `oClassInfo` might contain the same kind of information as described in {@link sap.ui.core.Control.extend}.
7381
- */
7382
- static extend<T extends Record<string, unknown>>(
7383
- /**
7384
- * Name of the class being created
7385
- */
7386
- sClassName: string,
7387
- /**
7388
- * Object literal with information about the class
7389
- */
7390
- oClassInfo?: sap.ClassInfo<
7391
- T,
7392
- sap.ushell.ui.launchpad.GridContainer
7393
- >,
7394
- /**
7395
- * Constructor function for the metadata object; if not given, it defaults to the metadata implementation
7396
- * used by this class
7397
- */
7398
- FNMetaImpl?: Function
7399
- ): Function;
7400
7367
  /**
7401
7368
  * Fires event {@link #event:afterRendering afterRendering} to attached listeners.
7402
7369
  */
@@ -7541,10 +7508,6 @@ declare namespace sap {
7541
7508
  * Gets content of aggregation {@link #getLinks links}.
7542
7509
  */
7543
7510
  getLinks(): sap.ui.core.Control[];
7544
- /**
7545
- * Returns a metadata object for class sap.ushell.ui.launchpad.GridContainer.
7546
- */
7547
- static getMetadata(): sap.ui.core.ElementMetadata;
7548
7511
  /**
7549
7512
  * Gets current value of property {@link #getShowBackground showBackground}.
7550
7513
  *
@@ -8157,6 +8120,34 @@ declare namespace sap {
8157
8120
  mSettings?: sap.ushell.ui.launchpad.$LinkTileWrapperSettings
8158
8121
  );
8159
8122
 
8123
+ /**
8124
+ * Creates a new subclass of class sap.ushell.ui.launchpad.LinkTileWrapper with name `sClassName` and enriches
8125
+ * it with the information contained in `oClassInfo`.
8126
+ *
8127
+ * `oClassInfo` might contain the same kind of information as described in {@link sap.ui.core.Control.extend}.
8128
+ */
8129
+ static extend<T extends Record<string, unknown>>(
8130
+ /**
8131
+ * Name of the class being created
8132
+ */
8133
+ sClassName: string,
8134
+ /**
8135
+ * Object literal with information about the class
8136
+ */
8137
+ oClassInfo?: sap.ClassInfo<
8138
+ T,
8139
+ sap.ushell.ui.launchpad.LinkTileWrapper
8140
+ >,
8141
+ /**
8142
+ * Constructor function for the metadata object; if not given, it defaults to the metadata implementation
8143
+ * used by this class
8144
+ */
8145
+ FNMetaImpl?: Function
8146
+ ): Function;
8147
+ /**
8148
+ * Returns a metadata object for class sap.ushell.ui.launchpad.LinkTileWrapper.
8149
+ */
8150
+ static getMetadata(): sap.ui.core.ElementMetadata;
8160
8151
  /**
8161
8152
  * Adds some footItem to the aggregation {@link #getFootItems footItems}.
8162
8153
  */
@@ -8403,30 +8394,6 @@ declare namespace sap {
8403
8394
  */
8404
8395
  oListener?: object
8405
8396
  ): this;
8406
- /**
8407
- * Creates a new subclass of class sap.ushell.ui.launchpad.LinkTileWrapper with name `sClassName` and enriches
8408
- * it with the information contained in `oClassInfo`.
8409
- *
8410
- * `oClassInfo` might contain the same kind of information as described in {@link sap.ui.core.Control.extend}.
8411
- */
8412
- static extend<T extends Record<string, unknown>>(
8413
- /**
8414
- * Name of the class being created
8415
- */
8416
- sClassName: string,
8417
- /**
8418
- * Object literal with information about the class
8419
- */
8420
- oClassInfo?: sap.ClassInfo<
8421
- T,
8422
- sap.ushell.ui.launchpad.LinkTileWrapper
8423
- >,
8424
- /**
8425
- * Constructor function for the metadata object; if not given, it defaults to the metadata implementation
8426
- * used by this class
8427
- */
8428
- FNMetaImpl?: Function
8429
- ): Function;
8430
8397
  /**
8431
8398
  * Fires event {@link #event:afterRendering afterRendering} to attached listeners.
8432
8399
  */
@@ -8489,10 +8456,6 @@ declare namespace sap {
8489
8456
  * Default value is `false`.
8490
8457
  */
8491
8458
  getIsLocked(): boolean;
8492
- /**
8493
- * Returns a metadata object for class sap.ushell.ui.launchpad.LinkTileWrapper.
8494
- */
8495
- static getMetadata(): sap.ui.core.ElementMetadata;
8496
8459
  /**
8497
8460
  * Gets current value of property {@link #getTarget target}.
8498
8461
  */
@@ -8746,6 +8709,31 @@ declare namespace sap {
8746
8709
  mSettings?: sap.ushell.ui.launchpad.$TileStateSettings
8747
8710
  );
8748
8711
 
8712
+ /**
8713
+ * Creates a new subclass of class sap.ushell.ui.launchpad.TileState with name `sClassName` and enriches
8714
+ * it with the information contained in `oClassInfo`.
8715
+ *
8716
+ * `oClassInfo` might contain the same kind of information as described in {@link sap.ui.core.Control.extend}.
8717
+ */
8718
+ static extend<T extends Record<string, unknown>>(
8719
+ /**
8720
+ * Name of the class being created
8721
+ */
8722
+ sClassName: string,
8723
+ /**
8724
+ * Object literal with information about the class
8725
+ */
8726
+ oClassInfo?: sap.ClassInfo<T, sap.ushell.ui.launchpad.TileState>,
8727
+ /**
8728
+ * Constructor function for the metadata object; if not given, it defaults to the metadata implementation
8729
+ * used by this class
8730
+ */
8731
+ FNMetaImpl?: Function
8732
+ ): Function;
8733
+ /**
8734
+ * Returns a metadata object for class sap.ushell.ui.launchpad.TileState.
8735
+ */
8736
+ static getMetadata(): sap.ui.core.ElementMetadata;
8749
8737
  /**
8750
8738
  * Attaches event handler `fnFunction` to the {@link #event:press press} event of this `sap.ushell.ui.launchpad.TileState`.
8751
8739
  *
@@ -8798,27 +8786,6 @@ declare namespace sap {
8798
8786
  */
8799
8787
  oListener?: object
8800
8788
  ): this;
8801
- /**
8802
- * Creates a new subclass of class sap.ushell.ui.launchpad.TileState with name `sClassName` and enriches
8803
- * it with the information contained in `oClassInfo`.
8804
- *
8805
- * `oClassInfo` might contain the same kind of information as described in {@link sap.ui.core.Control.extend}.
8806
- */
8807
- static extend<T extends Record<string, unknown>>(
8808
- /**
8809
- * Name of the class being created
8810
- */
8811
- sClassName: string,
8812
- /**
8813
- * Object literal with information about the class
8814
- */
8815
- oClassInfo?: sap.ClassInfo<T, sap.ushell.ui.launchpad.TileState>,
8816
- /**
8817
- * Constructor function for the metadata object; if not given, it defaults to the metadata implementation
8818
- * used by this class
8819
- */
8820
- FNMetaImpl?: Function
8821
- ): Function;
8822
8789
  /**
8823
8790
  * Fires event {@link #event:press press} to attached listeners.
8824
8791
  */
@@ -8828,10 +8795,6 @@ declare namespace sap {
8828
8795
  */
8829
8796
  mParameters?: object
8830
8797
  ): this;
8831
- /**
8832
- * Returns a metadata object for class sap.ushell.ui.launchpad.TileState.
8833
- */
8834
- static getMetadata(): sap.ui.core.ElementMetadata;
8835
8798
  /**
8836
8799
  * Gets current value of property {@link #getState state}.
8837
8800
  *
@@ -8892,12 +8855,12 @@ declare namespace sap {
8892
8855
  /**
8893
8856
  * Event is fired when the user presses the item.
8894
8857
  */
8895
- press?: Function;
8858
+ press?: (oEvent: sap.ui.base.Event) => void;
8896
8859
 
8897
8860
  /**
8898
8861
  * Event is fired when the user presses the Expand icon.
8899
8862
  */
8900
- expand?: Function;
8863
+ expand?: (oEvent: sap.ui.base.Event) => void;
8901
8864
  }
8902
8865
 
8903
8866
  /**
@@ -8937,6 +8900,31 @@ declare namespace sap {
8937
8900
  mSettings?: sap.ushell.ui.shell.$ToolAreaItemSettings
8938
8901
  );
8939
8902
 
8903
+ /**
8904
+ * Creates a new subclass of class sap.ushell.ui.shell.ToolAreaItem with name `sClassName` and enriches
8905
+ * it with the information contained in `oClassInfo`.
8906
+ *
8907
+ * `oClassInfo` might contain the same kind of information as described in {@link sap.ui.core.Control.extend}.
8908
+ */
8909
+ static extend<T extends Record<string, unknown>>(
8910
+ /**
8911
+ * Name of the class being created
8912
+ */
8913
+ sClassName: string,
8914
+ /**
8915
+ * Object literal with information about the class
8916
+ */
8917
+ oClassInfo?: sap.ClassInfo<T, sap.ushell.ui.shell.ToolAreaItem>,
8918
+ /**
8919
+ * Constructor function for the metadata object; if not given, it defaults to the metadata implementation
8920
+ * used by this class
8921
+ */
8922
+ FNMetaImpl?: Function
8923
+ ): Function;
8924
+ /**
8925
+ * Returns a metadata object for class sap.ushell.ui.shell.ToolAreaItem.
8926
+ */
8927
+ static getMetadata(): sap.ui.core.ElementMetadata;
8940
8928
  /**
8941
8929
  * Attaches event handler `fnFunction` to the {@link #event:expand expand} event of this `sap.ushell.ui.shell.ToolAreaItem`.
8942
8930
  *
@@ -9049,27 +9037,6 @@ declare namespace sap {
9049
9037
  */
9050
9038
  oListener?: object
9051
9039
  ): this;
9052
- /**
9053
- * Creates a new subclass of class sap.ushell.ui.shell.ToolAreaItem with name `sClassName` and enriches
9054
- * it with the information contained in `oClassInfo`.
9055
- *
9056
- * `oClassInfo` might contain the same kind of information as described in {@link sap.ui.core.Control.extend}.
9057
- */
9058
- static extend<T extends Record<string, unknown>>(
9059
- /**
9060
- * Name of the class being created
9061
- */
9062
- sClassName: string,
9063
- /**
9064
- * Object literal with information about the class
9065
- */
9066
- oClassInfo?: sap.ClassInfo<T, sap.ushell.ui.shell.ToolAreaItem>,
9067
- /**
9068
- * Constructor function for the metadata object; if not given, it defaults to the metadata implementation
9069
- * used by this class
9070
- */
9071
- FNMetaImpl?: Function
9072
- ): Function;
9073
9040
  /**
9074
9041
  * Fires event {@link #event:expand expand} to attached listeners.
9075
9042
  */
@@ -9112,10 +9079,6 @@ declare namespace sap {
9112
9079
  * Icon that is displayed in the item.
9113
9080
  */
9114
9081
  getIcon(): sap.ui.core.URI;
9115
- /**
9116
- * Returns a metadata object for class sap.ushell.ui.shell.ToolAreaItem.
9117
- */
9118
- static getMetadata(): sap.ui.core.ElementMetadata;
9119
9082
  /**
9120
9083
  * Gets current value of property {@link #getSelected selected}.
9121
9084
  *