@sapui5/ts-types 1.124.1 → 1.124.4

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 (56) hide show
  1. package/package.json +1 -1
  2. package/types/index.d.ts +5 -5
  3. package/types/{mdc-1.124.0-d.ts → mdc-1.124.1-d.ts} +7 -7
  4. package/types/sap.chart.d.ts +1 -1
  5. package/types/sap.esh.search.ui.d.ts +1 -1
  6. package/types/sap.f.d.ts +46 -1
  7. package/types/sap.fe.core.d.ts +12 -2
  8. package/types/sap.fe.macros.d.ts +1 -1
  9. package/types/sap.fe.navigation.d.ts +1 -1
  10. package/types/sap.fe.placeholder.d.ts +1 -1
  11. package/types/sap.fe.plugins.managecache.d.ts +1 -1
  12. package/types/sap.fe.templates.d.ts +1 -1
  13. package/types/sap.fe.test.d.ts +1 -1
  14. package/types/sap.fe.tools.d.ts +1 -1
  15. package/types/sap.gantt.d.ts +47 -7
  16. package/types/sap.insights.d.ts +1 -1
  17. package/types/{mobile-1.124.0-d.ts → sap.m.d.ts} +176 -27
  18. package/types/sap.makit.d.ts +1 -1
  19. package/types/sap.me.d.ts +1 -1
  20. package/types/sap.ndc.d.ts +1 -1
  21. package/types/sap.ovp.d.ts +41 -24
  22. package/types/sap.sac.df.d.ts +1 -1
  23. package/types/sap.suite.ui.commons.d.ts +6 -5
  24. package/types/sap.suite.ui.generic.template.d.ts +7 -4
  25. package/types/sap.suite.ui.microchart.d.ts +1 -1
  26. package/types/sap.ui.codeeditor.d.ts +1 -1
  27. package/types/sap.ui.commons.d.ts +1 -1
  28. package/types/sap.ui.comp.d.ts +1 -1
  29. package/types/{core-1.124.0-d.ts → sap.ui.core.d.ts} +96 -34
  30. package/types/{dt-1.124.0-d.ts → sap.ui.dt.d.ts} +1 -1
  31. package/types/sap.ui.export.d.ts +1 -1
  32. package/types/sap.ui.fl.d.ts +1 -1
  33. package/types/sap.ui.generic.app.d.ts +1 -1
  34. package/types/sap.ui.generic.template.d.ts +1 -1
  35. package/types/sap.ui.integration.d.ts +1 -1
  36. package/types/sap.ui.layout.d.ts +1 -1
  37. package/types/sap.ui.richtexteditor.d.ts +1 -1
  38. package/types/sap.ui.rta.d.ts +1 -1
  39. package/types/sap.ui.suite.d.ts +1 -1
  40. package/types/sap.ui.support.d.ts +1 -1
  41. package/types/sap.ui.table.d.ts +6 -3
  42. package/types/sap.ui.testrecorder.d.ts +1 -1
  43. package/types/sap.ui.unified.d.ts +1 -1
  44. package/types/sap.ui.ux3.d.ts +1 -1
  45. package/types/sap.ui.webc.common.d.ts +3 -1
  46. package/types/sap.ui.webc.fiori.d.ts +1 -1
  47. package/types/sap.ui.webc.main.d.ts +1 -1
  48. package/types/sap.uiext.inbox.d.ts +1 -1
  49. package/types/sap.ushell.d.ts +14 -2
  50. package/types/sap.ushell_abap.d.ts +1 -1
  51. package/types/sap.uxap.d.ts +46 -1
  52. package/types/sap.viz.d.ts +1 -1
  53. package/types/sap.zen.commons.d.ts +1 -1
  54. package/types/sap.zen.crosstab.d.ts +1 -1
  55. package/types/sap.zen.dsh.d.ts +1 -1
  56. package/types/{tnt-1.124.0-d.ts → tnt-1.124.1-d.ts} +1 -1
@@ -279,7 +279,7 @@ declare namespace sap {
279
279
  "sap/ui/thirdparty/qunit-2": undefined;
280
280
  }
281
281
  }
282
- // For Library Version: 1.124.0
282
+ // For Library Version: 1.124.3
283
283
 
284
284
  declare module "sap/base/assert" {
285
285
  /**
@@ -20980,14 +20980,64 @@ declare namespace sap {
20980
20980
  * **Note:** This static method is automatically propagated to subclasses of `ControllerExtension`.
20981
20981
  *
20982
20982
  *
20983
- * @returns A controller extension class
20983
+ * @returns The adapted controller extension class
20984
20984
  */
20985
- static override(
20985
+ static override<
20986
+ TheExtension extends new () => ControllerExtension,
20987
+ AddtlProps extends object,
20988
+ >(
20989
+ this: TheExtension,
20986
20990
  /**
20987
20991
  * The custom extension definition
20988
20992
  */
20989
- oExtension: Record<string, Function>
20990
- ): Function;
20993
+ customExtension: AddtlProps
20994
+ ): new () => InstanceType<TheExtension> & AddtlProps;
20995
+ /**
20996
+ * A marker method for applying controller extensions to controller class members in TypeScript code.
20997
+ * This method is only used to make TypeScript usage compatible to the UI5 runtime behavior, where an extension
20998
+ * *class* is assigned when the controller is defined, but each controller instance gets an *instance* of
20999
+ * this extension. This method call is removed in the class transformer when the ES class is transformed
21000
+ * to the traditional UI5 class definition syntax.
21001
+ *
21002
+ * To allow for proper removal, it may only be called directly on the base class `ControllerExtension`,
21003
+ * at the place where a controller extension is assigned to a member property of the new controller class.
21004
+ * The class transformation then removes this call. If it is not removed because it is used in any other
21005
+ * way, then it throws an error at runtime.
21006
+ *
21007
+ * Usage example:
21008
+ * ```javascript
21009
+ * import Routing from "sap/fe/core/controllerextensions/Routing";
21010
+ * import ControllerExtension from "sap/ui/core/mvc/ControllerExtension";
21011
+ * ...
21012
+ * export default class App extends Controller {
21013
+ * routing = ControllerExtension.use(Routing);
21014
+ * ```
21015
+ *
21016
+ * Usage example with overriding extension callbacks:
21017
+ * ```javascript
21018
+ * import Routing from "sap/fe/core/controllerextensions/Routing";
21019
+ * import ControllerExtension from "sap/ui/core/mvc/ControllerExtension";
21020
+ * ...
21021
+ * export default class App extends Controller {
21022
+ * routing = ControllerExtension.use(Routing.override({
21023
+ * ...
21024
+ * }));
21025
+ * ```
21026
+ *
21027
+ *
21028
+ *
21029
+ * @returns An instance of the given `ControllerExtension`. **NOTE:** this is only a dummy return type for
21030
+ * proper usage in TypeScript. This method does not actually return an instance of `ControllerExtension`,
21031
+ * but only throws an error at runtime. The sole purpose of this method is to mimic the actual runtime behavior
21032
+ * where a *class* is given when a controller is defined, but an *instance* is present in each controller
21033
+ * instance.
21034
+ */
21035
+ static use<TheExtension extends sap.ui.core.mvc.ControllerExtension>(
21036
+ /**
21037
+ * The ControllerExtension to use
21038
+ */
21039
+ extensionClass: new () => TheExtension
21040
+ ): TheExtension;
20991
21041
  /**
20992
21042
  * Returns an Element of the connected view with the given local ID.
20993
21043
  *
@@ -27581,7 +27631,7 @@ declare namespace sap {
27581
27631
  /**
27582
27632
  * Describes the settings that can be provided to the OpenSearchProvider constructor.
27583
27633
  *
27584
- * @deprecated (since 1.120)
27634
+ * @deprecated (since 1.120) - There is no API replacement.
27585
27635
  */
27586
27636
  interface $OpenSearchProviderSettings
27587
27637
  extends sap.ui.core.search.$SearchProviderSettings {
@@ -27603,7 +27653,7 @@ declare namespace sap {
27603
27653
  /**
27604
27654
  * Describes the settings that can be provided to the SearchProvider constructor.
27605
27655
  *
27606
- * @deprecated (since 1.120)
27656
+ * @deprecated (since 1.120) - There is no API replacement.
27607
27657
  */
27608
27658
  interface $SearchProviderSettings extends sap.ui.core.$ElementSettings {
27609
27659
  /**
@@ -27615,7 +27665,7 @@ declare namespace sap {
27615
27665
  /**
27616
27666
  * A SearchProvider which uses the OpenSearch protocol (either JSON or XML).
27617
27667
  *
27618
- * @deprecated (since 1.120)
27668
+ * @deprecated (since 1.120) - There is no API replacement.
27619
27669
  */
27620
27670
  class OpenSearchProvider extends sap.ui.core.search.SearchProvider {
27621
27671
  /**
@@ -27760,7 +27810,7 @@ declare namespace sap {
27760
27810
  *
27761
27811
  * Do not create instances of this class, but use a concrete subclass instead.
27762
27812
  *
27763
- * @deprecated (since 1.120)
27813
+ * @deprecated (since 1.120) - There is no API replacement.
27764
27814
  */
27765
27815
  abstract class SearchProvider extends sap.ui.core.Element {
27766
27816
  /**
@@ -28148,7 +28198,8 @@ declare namespace sap {
28148
28198
  /**
28149
28199
  * Describes the settings that can be provided to the DOMAttribute constructor.
28150
28200
  *
28151
- * @deprecated (since 1.56)
28201
+ * @deprecated (since 1.56) - Use an {@link sap.ui.core.mvc.XMLView XMLView} or a {@link topic:e6bb33d076dc4f23be50c082c271b9f0 Typed View }
28202
+ * instead.
28152
28203
  */
28153
28204
  interface $DOMAttributeSettings extends sap.ui.core.$ElementSettings {
28154
28205
  /**
@@ -28165,7 +28216,8 @@ declare namespace sap {
28165
28216
  /**
28166
28217
  * Describes the settings that can be provided to the DOMElement constructor.
28167
28218
  *
28168
- * @deprecated (since 1.56)
28219
+ * @deprecated (since 1.56) - Use an {@link sap.ui.core.mvc.XMLView XMLView} or a {@link topic:e6bb33d076dc4f23be50c082c271b9f0 Typed View }
28220
+ * instead.
28169
28221
  */
28170
28222
  interface $DOMElementSettings extends sap.ui.core.$ControlSettings {
28171
28223
  /**
@@ -28200,7 +28252,8 @@ declare namespace sap {
28200
28252
  /**
28201
28253
  * Describes the settings that can be provided to the HandlebarsTemplate constructor.
28202
28254
  *
28203
- * @deprecated (since 1.56)
28255
+ * @deprecated (since 1.56) - Use an {@link sap.ui.core.mvc.XMLView XMLView} or a {@link topic:e6bb33d076dc4f23be50c082c271b9f0 Typed View }
28256
+ * instead.
28204
28257
  */
28205
28258
  interface $HandlebarsTemplateSettings
28206
28259
  extends sap.ui.core.tmpl.$TemplateSettings {}
@@ -28221,7 +28274,8 @@ declare namespace sap {
28221
28274
  /**
28222
28275
  * Describes the settings that can be provided to the TemplateControl constructor.
28223
28276
  *
28224
- * @deprecated (since 1.56)
28277
+ * @deprecated (since 1.56) - Use an {@link sap.ui.core.mvc.XMLView XMLView} or a {@link topic:e6bb33d076dc4f23be50c082c271b9f0 Typed View }
28278
+ * instead.
28225
28279
  */
28226
28280
  interface $TemplateControlSettings
28227
28281
  extends sap.ui.core.$ControlSettings {
@@ -28265,7 +28319,8 @@ declare namespace sap {
28265
28319
  * Represents a DOM attribute of a DOM element.
28266
28320
  *
28267
28321
  * @since 1.15
28268
- * @deprecated (since 1.56)
28322
+ * @deprecated (since 1.56) - Use an {@link sap.ui.core.mvc.XMLView XMLView} or a {@link topic:e6bb33d076dc4f23be50c082c271b9f0 Typed View }
28323
+ * instead.
28269
28324
  */
28270
28325
  class DOMAttribute extends sap.ui.core.Element {
28271
28326
  /**
@@ -28385,7 +28440,8 @@ declare namespace sap {
28385
28440
  * Represents a DOM element. It allows to use databinding for the properties and nested DOM attributes.
28386
28441
  *
28387
28442
  * @since 1.15
28388
- * @deprecated (since 1.56)
28443
+ * @deprecated (since 1.56) - Use an {@link sap.ui.core.mvc.XMLView XMLView} or a {@link topic:e6bb33d076dc4f23be50c082c271b9f0 Typed View }
28444
+ * instead.
28389
28445
  */
28390
28446
  class DOMElement extends sap.ui.core.Control {
28391
28447
  /**
@@ -28693,7 +28749,8 @@ declare namespace sap {
28693
28749
  * The class for Handlebars Templates.
28694
28750
  *
28695
28751
  * @since 1.15
28696
- * @deprecated (since 1.56)
28752
+ * @deprecated (since 1.56) - Use an {@link sap.ui.core.mvc.XMLView XMLView} or a {@link topic:e6bb33d076dc4f23be50c082c271b9f0 Typed View }
28753
+ * instead.
28697
28754
  */
28698
28755
  abstract class HandlebarsTemplate extends sap.ui.core.tmpl.Template {
28699
28756
  /**
@@ -29032,7 +29089,8 @@ declare namespace sap {
29032
29089
  * This is the base class for all template controls. Template controls are declared based on templates.
29033
29090
  *
29034
29091
  * @since 1.15
29035
- * @deprecated (since 1.56)
29092
+ * @deprecated (since 1.56) - Use an {@link sap.ui.core.mvc.XMLView XMLView} or a {@link topic:e6bb33d076dc4f23be50c082c271b9f0 Typed View }
29093
+ * instead.
29036
29094
  */
29037
29095
  class TemplateControl extends sap.ui.core.Control {
29038
29096
  /**
@@ -29484,7 +29542,7 @@ declare namespace sap {
29484
29542
  *
29485
29543
  * @since 1.107
29486
29544
  * @deprecated (since 1.120) - without a replacement. Applications should not be interested in the set of
29487
- * all `UIArea`s. They should only assign controls to them, by using {@link sap.ui.core.Control.prototype.placeAt Control.prototype.placeAt }
29545
+ * `UIArea`s. They should only assign controls to them, by using {@link sap.ui.core.Control.prototype.placeAt Control.prototype.placeAt }
29488
29546
  * or use the API of a `UIArea` as reachable via {@link sap.ui.core.Control.prototype.getUIArea Control.prototype.getUIArea}.
29489
29547
  */
29490
29548
  interface registry {
@@ -29492,7 +29550,7 @@ declare namespace sap {
29492
29550
  * Number of existing UIAreas.
29493
29551
  *
29494
29552
  * @deprecated (since 1.120) - without a replacement. Applications should not be interested in the set of
29495
- * all `UIArea`s. They should only assign controls to them, by using {@link sap.ui.core.Control.prototype.placeAt Control.prototype.placeAt }
29553
+ * `UIArea`s. They should only assign controls to them, by using {@link sap.ui.core.Control.prototype.placeAt Control.prototype.placeAt }
29496
29554
  * or use the API of a `UIArea` as reachable via {@link sap.ui.core.Control.prototype.getUIArea Control.prototype.getUIArea}.
29497
29555
  */
29498
29556
  size: int;
@@ -29596,8 +29654,8 @@ declare namespace sap {
29596
29654
  * When the ID is `null` or `undefined` or when there's no UIArea with the given ID, then `undefined` is
29597
29655
  * returned.
29598
29656
  *
29599
- * @deprecated (since 1.120) - without a replacement. Applications should not be interested in the set of
29600
- * all `UIArea`s. They should only assign controls to them, by using {@link sap.ui.core.Control.prototype.placeAt Control.prototype.placeAt }
29657
+ * @deprecated (since 1.120) - without a replacement. Applications should not be interested in a certain
29658
+ * `UIArea`. They should only assign controls to them, by using {@link sap.ui.core.Control.prototype.placeAt Control.prototype.placeAt }
29601
29659
  * or use the API of a `UIArea` as reachable via {@link sap.ui.core.Control.prototype.getUIArea Control.prototype.getUIArea}.
29602
29660
  *
29603
29661
  * @returns UIArea with the given ID or `undefined`
@@ -31321,7 +31379,7 @@ declare namespace sap {
31321
31379
  /**
31322
31380
  * Class to mock http requests made to a remote server supporting the OData V2 REST protocol.
31323
31381
  */
31324
- abstract class MockServer extends sap.ui.base.ManagedObject {
31382
+ class MockServer extends sap.ui.base.ManagedObject {
31325
31383
  /**
31326
31384
  * Creates a mocked server. This helps to mock some back-end calls, e.g. for OData V2/JSON Models or simple
31327
31385
  * XHR calls, without changing the application code. This class can also be used for qunit tests.
@@ -48871,7 +48929,7 @@ declare namespace sap {
48871
48929
  * The node must have an ID that will be used as ID for this instance of `UIArea`.
48872
48930
  *
48873
48931
  * @deprecated (since 1.107) - without a replacement. Applications should not create or modify `UIArea`s
48874
- * programmatically. THey should only assign controls to them, by using {@link sap.ui.core.Control.prototype.placeAt Control.prototype.placeAt }
48932
+ * programmatically. They should only assign controls to them, by using {@link sap.ui.core.Control.prototype.placeAt Control.prototype.placeAt }
48875
48933
  * or use the API of a `UIArea` as reachable via {@link sap.ui.core.Control.prototype.getUIArea Control.prototype.getUIArea}.
48876
48934
  */
48877
48935
  setRootNode(
@@ -54098,9 +54156,13 @@ declare namespace sap {
54098
54156
  oContext?: sap.ui.model.Context
54099
54157
  ): any | null | undefined;
54100
54158
  /**
54101
- * Load JSON-encoded data from the server using a GET HTTP request and store the resulting JSON data in
54102
- * the model. Note: Due to browser security restrictions, most "Ajax" requests are subject to the same origin
54103
- * policy, the request can not successfully retrieve data from a different domain, subdomain, or protocol.
54159
+ * Loads JSON-encoded data from the server and stores the resulting JSON data in the model. Note: Due to
54160
+ * browser security restrictions, most "Ajax" requests are subject to the same origin policy, the request
54161
+ * can not successfully retrieve data from a different domain, subdomain, or protocol.
54162
+ *
54163
+ * Note: To send a JSON object in the body of a "POST" request to load the model data, `oParameters` has
54164
+ * to be the JSON-stringified value of the object to be sent, and `mHeaders` has to contain a `"Content-Type"`
54165
+ * property with the value `"application/json;charset=utf-8"`.
54104
54166
  *
54105
54167
  *
54106
54168
  * @returns in case bAsync is set to true a Promise is returned; this promise resolves/rejects based on
@@ -54108,15 +54170,16 @@ declare namespace sap {
54108
54170
  */
54109
54171
  loadData(
54110
54172
  /**
54111
- * A string containing the URL to which the request is sent.
54173
+ * A string containing the URL to which the request is sent
54112
54174
  */
54113
54175
  sURL: string,
54114
54176
  /**
54115
- * A map or string that is sent to the server with the request. If the value of this parameter is a string,
54116
- * it must already be url-encoded. If the value of this parameter is an object (map), it is converted to
54117
- * a string and then url-encoded. The resulting string is appended to the URL if the HTTP request method
54118
- * cannot have a request body, e.g. for a GET request. Otherwise, the resulting string is added to the request
54119
- * body.
54177
+ * The data to be sent to the server with the data-loading request. If `oParameters` is a string, it has
54178
+ * to be encoded based on the used content type. The default encoding is `'application/x-www-form-urlencoded;
54179
+ * charset=UTF-8'` but it may be overwritten via the `"Content-Type"` property given in `mHeaders`. If `oParameters`
54180
+ * is an object, a string is generated and the keys and values are URL-encoded. The resulting string is
54181
+ * appended to the URL if the HTTP request method cannot have a request body, e.g. for a "GET" request.
54182
+ * Otherwise, the resulting string is added to the request body.
54120
54183
  */
54121
54184
  oParameters?: object | string,
54122
54185
  /**
@@ -54126,8 +54189,7 @@ declare namespace sap {
54126
54189
  */
54127
54190
  bAsync?: boolean,
54128
54191
  /**
54129
- * The type of request to make ("POST" or "GET"), default is "GET". Note: Other HTTP request methods, such
54130
- * as PUT and DELETE, can also be used here, but they are not supported by all browsers.
54192
+ * The HTTP verb to use for the request ("GET" or "POST")
54131
54193
  */
54132
54194
  sType?: string,
54133
54195
  /**
@@ -1,4 +1,4 @@
1
- // For Library Version: 1.124.0
1
+ // For Library Version: 1.124.3
2
2
 
3
3
  declare namespace sap {
4
4
  interface IUI5DefineDependencyNames {
@@ -1,4 +1,4 @@
1
- // For Library Version: 1.124.1
1
+ // For Library Version: 1.124.3
2
2
 
3
3
  declare namespace sap {
4
4
  namespace ui {
@@ -1,4 +1,4 @@
1
- // For Library Version: 1.124.1
1
+ // For Library Version: 1.124.3
2
2
 
3
3
  declare namespace sap {
4
4
  namespace ui {
@@ -1,4 +1,4 @@
1
- // For Library Version: 1.124.1
1
+ // For Library Version: 1.124.2
2
2
 
3
3
  declare namespace sap {
4
4
  namespace ui {
@@ -1,3 +1,3 @@
1
- // For Library Version: 1.124.1
1
+ // For Library Version: 1.124.2
2
2
 
3
3
  declare namespace sap {}
@@ -1,4 +1,4 @@
1
- // For Library Version: 1.124.1
1
+ // For Library Version: 1.124.3
2
2
 
3
3
  declare namespace sap {
4
4
  namespace ui {
@@ -1,4 +1,4 @@
1
- // For Library Version: 1.124.1
1
+ // For Library Version: 1.124.3
2
2
 
3
3
  declare namespace sap {
4
4
  namespace ui {
@@ -1,4 +1,4 @@
1
- // For Library Version: 1.124.1
1
+ // For Library Version: 1.124.3
2
2
 
3
3
  declare namespace sap {
4
4
  namespace ui {
@@ -1,4 +1,4 @@
1
- // For Library Version: 1.124.1
1
+ // For Library Version: 1.124.3
2
2
 
3
3
  declare module "sap/ui/rta/api/startAdaptation" {
4
4
  /**
@@ -1,4 +1,4 @@
1
- // For Library Version: 1.124.1
1
+ // For Library Version: 1.124.3
2
2
 
3
3
  declare namespace sap {
4
4
  namespace ui {
@@ -1,4 +1,4 @@
1
- // For Library Version: 1.124.1
1
+ // For Library Version: 1.124.3
2
2
 
3
3
  declare namespace sap {
4
4
  namespace ui {
@@ -1,4 +1,4 @@
1
- // For Library Version: 1.124.1
1
+ // For Library Version: 1.124.3
2
2
 
3
3
  declare namespace sap {
4
4
  namespace ui {
@@ -118,8 +118,11 @@ declare namespace sap {
118
118
 
119
119
  /**
120
120
  * Implements a plugin to enable a special multi-selection behavior:
121
- * - No Select All checkbox, select all can only be done via range selection
122
- * - Dedicated Deselect All button to clear the selection
121
+ * - Select All checkbox for selecting rows up to the set limit.
122
+ * If the number of selected rows is smaller than the limit, all these rows can be selected at once with
123
+ * a single operation. If there are more rows than the limit, the first x rows are selected until the limit
124
+ * x has been reached.
125
+ * - Dedicated Deselect All button for removing the selection
123
126
  * - The number of indices which can be selected in a range is defined by the `limit` property. If the
124
127
  * user tries to select more indices, the selection is automatically limited, and the table scrolls to the
125
128
  * last selected index.
@@ -1,4 +1,4 @@
1
- // For Library Version: 1.124.1
1
+ // For Library Version: 1.124.3
2
2
 
3
3
  declare namespace sap {
4
4
  interface IUI5DefineDependencyNames {
@@ -1,4 +1,4 @@
1
- // For Library Version: 1.124.1
1
+ // For Library Version: 1.124.3
2
2
 
3
3
  declare namespace sap {
4
4
  namespace ui {
@@ -1,4 +1,4 @@
1
- // For Library Version: 1.124.1
1
+ // For Library Version: 1.124.3
2
2
 
3
3
  declare namespace sap {
4
4
  namespace ui {
@@ -1,4 +1,4 @@
1
- // For Library Version: 1.124.1
1
+ // For Library Version: 1.124.3
2
2
 
3
3
  declare namespace sap {
4
4
  namespace ui {
@@ -6,6 +6,8 @@ declare namespace sap {
6
6
  * Namespace for UI5 Web Components Retrofit libraries
7
7
  *
8
8
  * @since 1.92.0
9
+ * @deprecated (since 1.120) - this Web Components consumption model has been discarded. An alternative
10
+ * consumption model is planned for the future.
9
11
  * @experimental (since 1.92.0)
10
12
  */
11
13
  namespace webc {
@@ -1,4 +1,4 @@
1
- // For Library Version: 1.124.1
1
+ // For Library Version: 1.124.3
2
2
 
3
3
  declare namespace sap {
4
4
  namespace ui {
@@ -1,4 +1,4 @@
1
- // For Library Version: 1.124.1
1
+ // For Library Version: 1.124.3
2
2
 
3
3
  declare namespace sap {
4
4
  namespace ui {
@@ -1,4 +1,4 @@
1
- // For Library Version: 1.124.1
1
+ // For Library Version: 1.124.3
2
2
 
3
3
  declare namespace sap {
4
4
  namespace uiext {
@@ -1,4 +1,4 @@
1
- // For Library Version: 1.124.2
1
+ // For Library Version: 1.124.4
2
2
 
3
3
  declare namespace sap {
4
4
  /**
@@ -463,6 +463,10 @@ declare namespace sap {
463
463
  /**
464
464
  * Item wrapping an item positioned in an extension point. To be instantiated by {@link sap.ushell.services.Extension}.
465
465
  *
466
+ * The item will be automatically destroyed when the user navigates away from the current application.
467
+ * After calling {@link sap.ushell.services.Extension.Item#showOnHome} or {@link sap.ushell.services.Extension.Item#showForAllApps }
468
+ * the item is not destroyed automatically and has to be destroyed manually via {@link sap.ushell.services.Extension.Item#destroy}.
469
+ *
466
470
  * @since 1.120.0
467
471
  */
468
472
  class Item {
@@ -506,6 +510,7 @@ declare namespace sap {
506
510
  hideOnHome(): this;
507
511
  /**
508
512
  * Shows the item for all applications. Does not change the visibility of the item for the launchpad "home".
513
+ * Disables the automatic destruction of the item when the user navigates away from the current application.
509
514
  *
510
515
  * @since 1.120.0
511
516
  *
@@ -523,6 +528,7 @@ declare namespace sap {
523
528
  showForCurrentApp(): this;
524
529
  /**
525
530
  * Shows the item for launchpad "home". Does not change the visibility of the item within applications.
531
+ * Disables the automatic destruction of the item when the user navigates away from the current application.
526
532
  *
527
533
  * @since 1.120.0
528
534
  *
@@ -567,7 +573,11 @@ declare namespace sap {
567
573
  /**
568
574
  * Item wrapping an item positioned in an extension point. To be instantiated by {@link sap.ushell.services.FrameBoundExtension}.
569
575
  *
570
- * **Restriction:** Does not work when called from within a iframe. The calling function has to be in
576
+ * The item will be automatically destroyed when the user navigates away from the current application.
577
+ * After calling {@link sap.ushell.services.FrameBoundExtension.Item#showOnHome} or {@link sap.ushell.services.FrameBoundExtension.Item#showForAllApps }
578
+ * the item is not destroyed automatically and has to be destroyed manually via {@link sap.ushell.services.FrameBoundExtension.Item#destroy}.
579
+ *
580
+ * **Restriction:** Does not work when called from within a iframe. The calling function has to be in
571
581
  * the 'same frame' as the launchpad itself.
572
582
  *
573
583
  * @since 1.124.0
@@ -621,6 +631,7 @@ declare namespace sap {
621
631
  hideOnHome(): this;
622
632
  /**
623
633
  * Shows the item for all applications. Does not change the visibility of the item for the launchpad "home".
634
+ * Disables the automatic destruction of the item when the user navigates away from the current application.
624
635
  *
625
636
  * @since 1.124.0
626
637
  *
@@ -638,6 +649,7 @@ declare namespace sap {
638
649
  showForCurrentApp(): this;
639
650
  /**
640
651
  * Shows the item for launchpad "home". Does not change the visibility of the item within applications.
652
+ * Disables the automatic destruction of the item when the user navigates away from the current application.
641
653
  *
642
654
  * @since 1.124.0
643
655
  *
@@ -1,4 +1,4 @@
1
- // For Library Version: 1.124.2
1
+ // For Library Version: 1.124.4
2
2
 
3
3
  declare namespace sap {
4
4
  interface IUI5DefineDependencyNames {
@@ -1,4 +1,4 @@
1
- // For Library Version: 1.124.1
1
+ // For Library Version: 1.124.3
2
2
 
3
3
  declare namespace sap {
4
4
  /**
@@ -330,6 +330,18 @@ declare namespace sap {
330
330
  * is set.
331
331
  */
332
332
  footerLabel?: string | sap.ui.base.ManagedObject.PropertyBindingInfo;
333
+
334
+ /**
335
+ * Texts which describe the landmark of the section inside the header container of the corresponding `sap.uxap.ObjectPageLayout`
336
+ * control.
337
+ *
338
+ * If not set, default "Expanded header" aria-label is set.
339
+ *
340
+ * @since 1.127.0
341
+ */
342
+ headerContentLabel?:
343
+ | string
344
+ | sap.ui.base.ManagedObject.PropertyBindingInfo;
333
345
  }
334
346
 
335
347
  /**
@@ -2682,6 +2694,19 @@ declare namespace sap {
2682
2694
  * @returns Value of property `footerRole`
2683
2695
  */
2684
2696
  getFooterRole(): sap.ui.core.AccessibleLandmarkRole;
2697
+ /**
2698
+ * Gets current value of property {@link #getHeaderContentLabel headerContentLabel}.
2699
+ *
2700
+ * Texts which describe the landmark of the section inside the header container of the corresponding `sap.uxap.ObjectPageLayout`
2701
+ * control.
2702
+ *
2703
+ * If not set, default "Expanded header" aria-label is set.
2704
+ *
2705
+ * @since 1.127.0
2706
+ *
2707
+ * @returns Value of property `headerContentLabel`
2708
+ */
2709
+ getHeaderContentLabel(): string;
2685
2710
  /**
2686
2711
  * Gets current value of property {@link #getHeaderLabel headerLabel}.
2687
2712
  *
@@ -2840,6 +2865,26 @@ declare namespace sap {
2840
2865
  */
2841
2866
  sFooterRole?: sap.ui.core.AccessibleLandmarkRole
2842
2867
  ): this;
2868
+ /**
2869
+ * Sets a new value for property {@link #getHeaderContentLabel headerContentLabel}.
2870
+ *
2871
+ * Texts which describe the landmark of the section inside the header container of the corresponding `sap.uxap.ObjectPageLayout`
2872
+ * control.
2873
+ *
2874
+ * If not set, default "Expanded header" aria-label is set.
2875
+ *
2876
+ * When called with a value of `null` or `undefined`, the default value of the property will be restored.
2877
+ *
2878
+ * @since 1.127.0
2879
+ *
2880
+ * @returns Reference to `this` in order to allow method chaining
2881
+ */
2882
+ setHeaderContentLabel(
2883
+ /**
2884
+ * New value for property `headerContentLabel`
2885
+ */
2886
+ sHeaderContentLabel?: string
2887
+ ): this;
2843
2888
  /**
2844
2889
  * Sets a new value for property {@link #getHeaderLabel headerLabel}.
2845
2890
  *
@@ -1,4 +1,4 @@
1
- // For Library Version: 1.124.1
1
+ // For Library Version: 1.124.3
2
2
 
3
3
  declare namespace sap {
4
4
  /**
@@ -1,4 +1,4 @@
1
- // For Library Version: 1.124.4
1
+ // For Library Version: 1.124.7
2
2
 
3
3
  declare namespace sap {
4
4
  namespace zen {
@@ -1,4 +1,4 @@
1
- // For Library Version: 1.124.4
1
+ // For Library Version: 1.124.7
2
2
 
3
3
  declare namespace sap {
4
4
  namespace zen {
@@ -1,4 +1,4 @@
1
- // For Library Version: 1.124.4
1
+ // For Library Version: 1.124.7
2
2
 
3
3
  declare namespace sap {
4
4
  namespace zen {
@@ -1,4 +1,4 @@
1
- // For Library Version: 1.124.0
1
+ // For Library Version: 1.124.1
2
2
 
3
3
  declare namespace sap {
4
4
  /**