@openui5/ts-types 1.132.0 → 1.133.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.
@@ -64,7 +64,7 @@ interface JQuery<TElement = HTMLElement> extends Iterable<TElement> {
64
64
 
65
65
  /**
66
66
  * Extension function to the jQuery.fn which identifies SAPUI5 controls in the given jQuery context.
67
- * @deprecated since 1.106, use sap.ui.core.Element.closestTo instead.
67
+ * @deprecated As of version 1.106, use {@link sap.ui.core.Element.closestTo} instead.
68
68
  */
69
69
  control(
70
70
  /**
@@ -75,7 +75,7 @@ interface JQuery<TElement = HTMLElement> extends Iterable<TElement> {
75
75
 
76
76
  /**
77
77
  * Extension function to the jQuery.fn which identifies SAPUI5 controls in the given jQuery context.
78
- * @deprecated since 1.106, use sap.ui.core.Element.closestTo instead.
78
+ * @deprecated As of version 1.106, use {@link sap.ui.core.Element.closestTo} instead.
79
79
  */
80
80
  control(
81
81
  /**
@@ -279,7 +279,7 @@ declare namespace sap {
279
279
  "sap/ui/thirdparty/qunit-2": undefined;
280
280
  }
281
281
  }
282
- // For Library Version: 1.132.0
282
+ // For Library Version: 1.133.0
283
283
 
284
284
  declare module "sap/base/assert" {
285
285
  /**
@@ -484,7 +484,7 @@ declare module "sap/base/i18n/Formatting" {
484
484
  *
485
485
  * @returns the current calendar type, e.g. `Gregorian`
486
486
  */
487
- getCalendarType(): CalendarType | keyof typeof CalendarType;
487
+ getCalendarType(): CalendarType;
488
488
  /**
489
489
  * Returns the calendar week numbering algorithm used to determine the first day of the week and the first
490
490
  * calendar week of the year, see {@link module:sap/base/i18n/date/CalendarWeekNumbering CalendarWeekNumbering}.
@@ -493,9 +493,7 @@ declare module "sap/base/i18n/Formatting" {
493
493
  *
494
494
  * @returns The calendar week numbering algorithm
495
495
  */
496
- getCalendarWeekNumbering():
497
- | CalendarWeekNumbering
498
- | keyof typeof CalendarWeekNumbering;
496
+ getCalendarWeekNumbering(): CalendarWeekNumbering;
499
497
  /**
500
498
  * Gets the custom currencies that have been set via {@link #.addCustomCurrencies Formatting.addCustomCurrencies }
501
499
  * or {@link #.setCustomCurrencies Formatting.setCustomCurrencies}. There is a special currency code named
@@ -2613,7 +2611,7 @@ declare module "sap/base/security/URLWhitelist" {
2613
2611
  /**
2614
2612
  * Entry object of the URLWhitelist.
2615
2613
  *
2616
- * @deprecated (since 1.85) - use {@link module:sap/base/security/URLListValidator.Entry} instead.
2614
+ * @deprecated As of version 1.85. use {@link module:sap/base/security/URLListValidator.Entry} instead.
2617
2615
  */
2618
2616
  export type Entry = {
2619
2617
  /**
@@ -3033,7 +3031,7 @@ declare module "sap/base/util/includes" {
3033
3031
  * Checks if value is included in collection.
3034
3032
  *
3035
3033
  * @since 1.58
3036
- * @deprecated (since 1.90) - Use the `Array.prototype.includes` or `String.prototype.includes` instead,
3034
+ * @deprecated As of version 1.90. Use the `Array.prototype.includes` or `String.prototype.includes` instead,
3037
3035
  * but note that `Array.prototype.includes` or `String.prototype.includes` fail when called on null values.
3038
3036
  *
3039
3037
  * @returns - true if value is in the collection, false otherwise
@@ -3367,7 +3365,7 @@ declare module "sap/base/util/UriParameters" {
3367
3365
  * `null` serves the same purpose.
3368
3366
  *
3369
3367
  * @since 1.68
3370
- * @deprecated (since 1.119) - See class description for details.
3368
+ * @deprecated As of version 1.119. See class description for details.
3371
3369
  */
3372
3370
  export default class UriParameters {
3373
3371
  /**
@@ -3962,7 +3960,7 @@ declare module "sap/ui/core/ControlBehavior" {
3962
3960
  *
3963
3961
  * @returns The current animationMode
3964
3962
  */
3965
- getAnimationMode(): AnimationMode | keyof typeof AnimationMode;
3963
+ getAnimationMode(): AnimationMode;
3966
3964
  /**
3967
3965
  * Returns whether the accessibility mode is enabled or not.
3968
3966
  *
@@ -3993,6 +3991,8 @@ declare module "sap/ui/core/ControlBehavior" {
3993
3991
  }
3994
3992
 
3995
3993
  declare module "sap/ui/core/date/CalendarUtils" {
3994
+ import CalendarWeekNumbering from "sap/base/i18n/date/CalendarWeekNumbering";
3995
+
3996
3996
  /**
3997
3997
  * Provides calendar-related utilities.
3998
3998
  *
@@ -4009,7 +4009,7 @@ declare module "sap/ui/core/date/CalendarUtils" {
4009
4009
  *
4010
4010
  * @since 1.108.0
4011
4011
  *
4012
- * @returns The calendar week configuration, or `undefined for an invalid value of sap.ui.core.date.CalendarWeekNumbering`.
4012
+ * @returns The calendar week configuration, or `undefined for an invalid value of module:sap/base/i18n/date/CalendarWeekNumbering`.
4013
4013
  */
4014
4014
  getWeekConfigurationValues(
4015
4015
  /**
@@ -4017,7 +4017,9 @@ declare module "sap/ui/core/date/CalendarUtils" {
4017
4017
  * {@link module:sap/base/i18n/Formatting.getCalendarWeekNumbering Formatting.getCalendarWeekNumbering}.
4018
4018
  * If this value is `Default` the returned calendar week configuration is derived from the given `oLocale`.
4019
4019
  */
4020
- sCalendarWeekNumbering?: sap.ui.core.date.CalendarWeekNumbering,
4020
+ sCalendarWeekNumbering?:
4021
+ | CalendarWeekNumbering
4022
+ | keyof typeof CalendarWeekNumbering,
4021
4023
  /**
4022
4024
  * The locale to use; if no locale is given, a locale for the currently configured language is used; see
4023
4025
  * {@link module:sap/base/i18n/Formatting.getLanguageTag Formatting.getLanguageTag}. Is only used when `sCalendarWeekNumbering`
@@ -4245,7 +4247,7 @@ declare module "sap/ui/core/date/UI5Date" {
4245
4247
  /**
4246
4248
  * Returns the year of this date instance minus 1900 according to the configured time zone, see `Date.prototype.getYear`.
4247
4249
  *
4248
- * @deprecated (since 1.111) - as it is deprecated in the base class JavaScript Date; use {@link #getFullYear }
4250
+ * @deprecated As of version 1.111. as it is deprecated in the base class JavaScript Date; use {@link #getFullYear }
4249
4251
  * instead
4250
4252
  *
4251
4253
  * @returns The year of this date instance minus 1900 according to the configured time zone
@@ -4525,7 +4527,7 @@ declare module "sap/ui/core/date/UI5Date" {
4525
4527
  /**
4526
4528
  * Sets the year for this date instance plus 1900 considering the configured time zone, see `Date.prototype.setYear`.
4527
4529
  *
4528
- * @deprecated (since 1.111) - as it is deprecated in the base class JavaScript Date; use {@link #setFullYear }
4530
+ * @deprecated As of version 1.111. as it is deprecated in the base class JavaScript Date; use {@link #setFullYear }
4529
4531
  * instead
4530
4532
  *
4531
4533
  * @returns The milliseconds of the new timestamp based on the UNIX epoch, or `NaN` if the timestamp could
@@ -4783,13 +4785,44 @@ declare module "sap/ui/core/ElementRegistry" {
4783
4785
  export default ElementRegistry;
4784
4786
  }
4785
4787
 
4788
+ declare module "sap/ui/core/fieldhelp/FieldHelpUtil" {
4789
+ /**
4790
+ * Utility class to set field help information for controls for which field help information cannot be deduced
4791
+ * automatically from OData metadata or for which the automatically deduced field help needs to be overwritten.
4792
+ * These can be controls like filter fields that don't have OData property bindings.
4793
+ *
4794
+ * @since 1.133.0
4795
+ */
4796
+ export default class FieldHelpUtil {
4797
+ /**
4798
+ * @ui5-protected Do not call from applications (only from related classes in the framework)
4799
+ */
4800
+ protected constructor();
4801
+
4802
+ /**
4803
+ * Sets the field help information for the given element as `sap-ui-DocumentationRef` custom data.
4804
+ */
4805
+ static setDocumentationRef(
4806
+ /**
4807
+ * The element on which to set the field help
4808
+ */
4809
+ oElement: sap.ui.core.Element,
4810
+ /**
4811
+ * The string value or an array of string values of `com.sap.vocabularies.Common.v1.DocumentationRef` OData
4812
+ * annotations, for example `"urn:sap-com:documentation:key?=type=DE&id=MY_ID&origin=MY_ORIGIN"`"
4813
+ */
4814
+ vDocumentationRefs: string | string[]
4815
+ ): void;
4816
+ }
4817
+ }
4818
+
4786
4819
  declare module "sap/ui/core/getCompatibilityVersion" {
4787
4820
  import Version from "sap/base/util/Version";
4788
4821
 
4789
4822
  /**
4790
4823
  * Returns the used compatibility version for the given feature.
4791
4824
  *
4792
- * @deprecated (since 1.119) - without a replacement. All features that have been controlled by a compatibility
4825
+ * @deprecated As of version 1.119. without a replacement. All features that have been controlled by a compatibility
4793
4826
  * version in UI5 1.x will abandon their legacy behavior, starting with the next major version. In other
4794
4827
  * words, they will behave as if compatibility version "edge" was configured. Due to this, no more access
4795
4828
  * to the compatibility version will be required starting with the next major version.
@@ -7401,7 +7434,7 @@ declare module "sap/ui/util/Storage" {
7401
7434
  *
7402
7435
  * @returns Type of this storage or "unknown" when the Storage was created with an unknown type or implementation
7403
7436
  */
7404
- static getType(): (Type | keyof typeof Type) | string;
7437
+ static getType(): Type | string;
7405
7438
  /**
7406
7439
  * Returns whether the given storage is supported.
7407
7440
  *
@@ -7483,7 +7516,7 @@ declare module "sap/ui/util/Storage" {
7483
7516
  *
7484
7517
  * @returns Type of this storage or "unknown" when the Storage was created with an unknown type or implementation
7485
7518
  */
7486
- getType(): (Type | keyof typeof Type) | string;
7519
+ getType(): Type | string;
7487
7520
  /**
7488
7521
  * Returns whether the given storage is supported.
7489
7522
  *
@@ -7620,7 +7653,7 @@ declare namespace sap {
7620
7653
  *
7621
7654
  *
7622
7655
  * @since 1.15.0
7623
- * @deprecated (since 1.56) - use {@link sap.ui.core.Component.get Component.get} or {@link sap.ui.core.Component.create Component.create }
7656
+ * @deprecated As of version 1.56. use {@link sap.ui.core.Component.get Component.get} or {@link sap.ui.core.Component.create Component.create }
7624
7657
  * instead. Note: {@link sap.ui.core.Component.create Component.create} does not support synchronous loading
7625
7658
  * or the deprecated options ***manifestFirst*** and ***manifestUrl***.
7626
7659
  *
@@ -7729,7 +7762,7 @@ declare namespace sap {
7729
7762
  *
7730
7763
  * If only a name is given, a new instance of the named controller class is returned.
7731
7764
  *
7732
- * @deprecated (since 1.56) - use {@link sap.ui.core.mvc.Controller.extend Controller.extend} to define
7765
+ * @deprecated As of version 1.56. use {@link sap.ui.core.mvc.Controller.extend Controller.extend} to define
7733
7766
  * the controller class and {@link sap.ui.core.mvc.Controller.create Controller.create} to create controller
7734
7767
  * instances. For further information, see {@link sap.ui.core.mvc.Controller}.
7735
7768
  *
@@ -8733,7 +8766,7 @@ declare namespace sap {
8733
8766
  * point to an aggregation after the target control has already been instantiated. In the latter case the
8734
8767
  * optional parameters oTargetControls and oTargetAggregation need to be specified.
8735
8768
  *
8736
- * @deprecated (since 1.56) - Use {@link sap.ui.core.ExtensionPoint.load} instead
8769
+ * @deprecated As of version 1.56. Use {@link sap.ui.core.ExtensionPoint.load} instead
8737
8770
  *
8738
8771
  * @returns An array with 0..n controls created from an ExtensionPoint or if fnCreateDefaultContent is called
8739
8772
  * and returns a Promise, a Promise with the controls is returned instead
@@ -8804,7 +8837,7 @@ declare namespace sap {
8804
8837
  * {@link sap.ui.core.mvc.Controller.loadFragment loadFragment} factory for a closer coupling to the corresponding
8805
8838
  * Controller instance.
8806
8839
  *
8807
- * @deprecated (since 1.58) - Refer to {@link topic:04129b2798c447368f4c8922c3c33cd7 Instantiation of Fragments}.
8840
+ * @deprecated As of version 1.58. Refer to {@link topic:04129b2798c447368f4c8922c3c33cd7 Instantiation of Fragments}.
8808
8841
  *
8809
8842
  * @returns the instantiated root control(s) from the fragment content
8810
8843
  */
@@ -8848,8 +8881,8 @@ declare namespace sap {
8848
8881
  /**
8849
8882
  * Retrieve the {@link sap.ui.core.Core SAPUI5 Core} instance for the current window.
8850
8883
  *
8851
- * @deprecated (since 1.118) - Please require 'sap/ui/core/Core' instead and use the module export directly
8852
- * without using 'new'.
8884
+ * @deprecated As of version 1.118. Please require 'sap/ui/core/Core' instead and use the module export
8885
+ * directly without using 'new'.
8853
8886
  *
8854
8887
  * @returns the API of the current SAPUI5 Core instance.
8855
8888
  */
@@ -8860,7 +8893,7 @@ declare namespace sap {
8860
8893
  *
8861
8894
  * In case of the version info file is not available an error will occur when calling this function.
8862
8895
  *
8863
- * @deprecated (since 1.56) - Use {@link module:sap/ui/VersionInfo.load} instead
8896
+ * @deprecated As of version 1.56. Use {@link module:sap/ui/VersionInfo.load} instead
8864
8897
  *
8865
8898
  * @returns the full version info, the library specific one, undefined (if library is not listed or there
8866
8899
  * was an error and "failOnError" is set to "false") or a Promise which resolves with one of them
@@ -8904,7 +8937,7 @@ declare namespace sap {
8904
8937
  * In addition to an `id`, the `oFragmentConfig` object can have either a `fragmentName` or a `fragmentContent`
8905
8938
  * property, but not both.
8906
8939
  *
8907
- * @deprecated (since 1.58) - Additionally, use of fragments based on type `"HTML"` is deprecated since
8940
+ * @deprecated As of version 1.58. Additionally, use of fragments based on type `"HTML"` is deprecated since
8908
8941
  * 1.108. If you need declarative fragments, use XML fragments instead. Refer to {@link topic:04129b2798c447368f4c8922c3c33cd7 Instantiation of Fragments}.
8909
8942
  *
8910
8943
  * @returns the instantiated root control(s) from the fragment content
@@ -8965,7 +8998,7 @@ declare namespace sap {
8965
8998
  * In addition to an `id`, the `oFragmentConfig` object can have either a `fragmentName` or a `fragmentContent`
8966
8999
  * property, but not both.
8967
9000
  *
8968
- * @deprecated (since 1.58) - Additionally, use of fragments based on type `"HTML"` is deprecated since
9001
+ * @deprecated As of version 1.58. Additionally, use of fragments based on type `"HTML"` is deprecated since
8969
9002
  * 1.108. If you need declarative fragments, use XML fragments instead. Refer to {@link topic:04129b2798c447368f4c8922c3c33cd7 Instantiation of Fragments}.
8970
9003
  *
8971
9004
  * @returns the instantiated root control(s) from the fragment content
@@ -9000,8 +9033,8 @@ declare namespace sap {
9000
9033
  * Any other call signature will lead to a runtime error. If the id is omitted in the second variant, an
9001
9034
  * id will be created automatically.
9002
9035
  *
9003
- * @deprecated (since 1.56) - Use {@link sap.ui.core.mvc.HTMLView.create HTMLView.create} to create view
9004
- * instances
9036
+ * @deprecated As of version 1.56. Use {@link sap.ui.core.mvc.HTMLView.create HTMLView.create} to create
9037
+ * view instances
9005
9038
  *
9006
9039
  * @returns the created HTMLView instance in the creation case, otherwise undefined
9007
9040
  */
@@ -9037,8 +9070,8 @@ declare namespace sap {
9037
9070
  * Any other call signature will lead to a runtime error. If the id is omitted in the second variant, an
9038
9071
  * id will be created automatically.
9039
9072
  *
9040
- * @deprecated (since 1.56) - Use {@link sap.ui.core.mvc.HTMLView.create HTMLView.create} to create view
9041
- * instances
9073
+ * @deprecated As of version 1.56. Use {@link sap.ui.core.mvc.HTMLView.create HTMLView.create} to create
9074
+ * view instances
9042
9075
  *
9043
9076
  * @returns the created HTMLView instance in the creation case, otherwise undefined
9044
9077
  */
@@ -9077,7 +9110,7 @@ declare namespace sap {
9077
9110
  * ```
9078
9111
  *
9079
9112
  *
9080
- * @deprecated (since 1.58) - Refer to {@link topic:04129b2798c447368f4c8922c3c33cd7 Instantiation of Fragments}.
9113
+ * @deprecated As of version 1.58. Refer to {@link topic:04129b2798c447368f4c8922c3c33cd7 Instantiation of Fragments}.
9081
9114
  *
9082
9115
  * @returns the instantiated root control(s) from the fragment content
9083
9116
  */
@@ -9140,8 +9173,8 @@ declare namespace sap {
9140
9173
  *
9141
9174
  * Like with any other control, an id is optional and will be created when missing.
9142
9175
  *
9143
- * @deprecated (since 1.56) - Use {@link sap.ui.core.mvc.JSONView.create JSONView.create} to create view
9144
- * instances
9176
+ * @deprecated As of version 1.56. Use {@link sap.ui.core.mvc.JSONView.create JSONView.create} to create
9177
+ * view instances
9145
9178
  *
9146
9179
  * @returns the created JSONView instance
9147
9180
  */
@@ -9195,8 +9228,8 @@ declare namespace sap {
9195
9228
  *
9196
9229
  * Like with any other control, an id is optional and will be created when missing.
9197
9230
  *
9198
- * @deprecated (since 1.56) - Use {@link sap.ui.core.mvc.JSONView.create JSONView.create} to create view
9199
- * instances
9231
+ * @deprecated As of version 1.56. Use {@link sap.ui.core.mvc.JSONView.create JSONView.create} to create
9232
+ * view instances
9200
9233
  *
9201
9234
  * @returns the created JSONView instance
9202
9235
  */
@@ -9258,9 +9291,9 @@ declare namespace sap {
9258
9291
  *
9259
9292
  * **Note:** Any other call signature will lead to a runtime error.
9260
9293
  *
9261
- * @deprecated (since 1.56) - Instead use {@link topic:e6bb33d076dc4f23be50c082c271b9f0 Typed Views} by
9262
- * defining the view class with {@link sap.ui.core.mvc.View.extend View.extend} and creating the view instances
9263
- * with {@link sap.ui.core.mvc.View.create View.create}.
9294
+ * @deprecated As of version 1.56. Instead use {@link topic:e6bb33d076dc4f23be50c082c271b9f0 Typed Views }
9295
+ * by defining the view class with {@link sap.ui.core.mvc.View.extend View.extend} and creating the view
9296
+ * instances with {@link sap.ui.core.mvc.View.create View.create}.
9264
9297
  *
9265
9298
  * @returns the created JSView instance in the creation case, otherwise undefined
9266
9299
  */
@@ -9311,9 +9344,9 @@ declare namespace sap {
9311
9344
  *
9312
9345
  * **Note:** Any other call signature will lead to a runtime error.
9313
9346
  *
9314
- * @deprecated (since 1.56) - Instead use {@link topic:e6bb33d076dc4f23be50c082c271b9f0 Typed Views} by
9315
- * defining the view class with {@link sap.ui.core.mvc.View.extend View.extend} and creating the view instances
9316
- * with {@link sap.ui.core.mvc.View.create View.create}.
9347
+ * @deprecated As of version 1.56. Instead use {@link topic:e6bb33d076dc4f23be50c082c271b9f0 Typed Views }
9348
+ * by defining the view class with {@link sap.ui.core.mvc.View.extend View.extend} and creating the view
9349
+ * instances with {@link sap.ui.core.mvc.View.create View.create}.
9317
9350
  *
9318
9351
  * @returns the created JSView instance in the creation case, otherwise undefined
9319
9352
  */
@@ -9344,7 +9377,7 @@ declare namespace sap {
9344
9377
  *
9345
9378
  * **Note**: As a side effect of this method, the namespace containing the given class is created **immediately**.
9346
9379
  *
9347
- * @deprecated (since 1.56) - Lazy loading enforces synchronous requests and therefore has been deprecated
9380
+ * @deprecated As of version 1.56. Lazy loading enforces synchronous requests and therefore has been deprecated
9348
9381
  * without a replacement. Instead of loading classes via lazy stubs, they should be required as dependencies
9349
9382
  * of an AMD module (using {@link sap.ui.define}) or on demand with a call to {@link sap.ui.require}.
9350
9383
  */
@@ -9393,7 +9426,7 @@ declare namespace sap {
9393
9426
  * When applications need a more flexible mapping between resource names and their location, they can use
9394
9427
  * {@link sap.ui.loader.config} with option `paths`.
9395
9428
  *
9396
- * @deprecated (since 1.56) - use {@link sap.ui.loader.config} and its `paths` option instead.
9429
+ * @deprecated As of version 1.56. use {@link sap.ui.loader.config} and its `paths` option instead.
9397
9430
  */
9398
9431
  function localResources(
9399
9432
  /**
@@ -9404,7 +9437,7 @@ declare namespace sap {
9404
9437
  /**
9405
9438
  * Ensures that a given a namespace or hierarchy of nested namespaces exists in the current `globalThis`.
9406
9439
  *
9407
- * @deprecated (since 1.1) - see {@link topic:c78c07c094e04ccfaab659378a1707c7 Creating Control and Class Modules}.
9440
+ * @deprecated As of version 1.1. see {@link topic:c78c07c094e04ccfaab659378a1707c7 Creating Control and Class Modules}.
9408
9441
  *
9409
9442
  * @returns the innermost namespace of the hierarchy
9410
9443
  */
@@ -9489,7 +9522,7 @@ declare namespace sap {
9489
9522
  * when the given sResourcePath starts with "themes/" (= when it is a theme-dependent resource). Even when
9490
9523
  * for this theme a different location outside the normal library location is configured.
9491
9524
  *
9492
- * @deprecated (since 1.56.0) - use {@link sap.ui.require.toUrl} instead.
9525
+ * @deprecated As of version 1.56.0. use {@link sap.ui.require.toUrl} instead.
9493
9526
  *
9494
9527
  * @returns the URL of the requested resource
9495
9528
  */
@@ -9524,7 +9557,7 @@ declare namespace sap {
9524
9557
  * Internally, if a string is given that does not identify a UIArea or a control then implicitly a new `UIArea`
9525
9558
  * is created for the given DOM reference and the given control is added.
9526
9559
  *
9527
- * @deprecated (since 1.1) - use {@link sap.ui.core.Control#placeAt Control#placeAt} instead.
9560
+ * @deprecated As of version 1.1. use {@link sap.ui.core.Control#placeAt Control#placeAt} instead.
9528
9561
  */
9529
9562
  function setRoot(
9530
9563
  /**
@@ -9598,7 +9631,7 @@ declare namespace sap {
9598
9631
  * ```
9599
9632
  *
9600
9633
  *
9601
- * @deprecated (since 1.56) - use an {@link sap.ui.core.mvc.XMLView XMLView} or {@link sap.ui.core.mvc.JSView JSView }
9634
+ * @deprecated As of version 1.56. use an {@link sap.ui.core.mvc.XMLView XMLView} or {@link sap.ui.core.mvc.JSView JSView }
9602
9635
  * instead.
9603
9636
  *
9604
9637
  * @returns the created Template instance or in case of usage without parameters any array of templates
@@ -9654,7 +9687,7 @@ declare namespace sap {
9654
9687
  * Any other call signature will lead to a runtime error. If the id is omitted in the second variant, an
9655
9688
  * id will be created automatically.
9656
9689
  *
9657
- * @deprecated (since 1.56) - use {@link sap.ui.core.mvc.XMLView} in combination with {@link topic:5ee619fc1370463ea674ee04b65ed83b XML Templating }
9690
+ * @deprecated As of version 1.56. use {@link sap.ui.core.mvc.XMLView} in combination with {@link topic:5ee619fc1370463ea674ee04b65ed83b XML Templating }
9658
9691
  * instead
9659
9692
  *
9660
9693
  * @returns the created TemplateView instance in the creation case, otherwise undefined
@@ -9684,7 +9717,7 @@ declare namespace sap {
9684
9717
  * Any other call signature will lead to a runtime error. If the id is omitted in the second variant, an
9685
9718
  * id will be created automatically.
9686
9719
  *
9687
- * @deprecated (since 1.56) - use {@link sap.ui.core.mvc.XMLView} in combination with {@link topic:5ee619fc1370463ea674ee04b65ed83b XML Templating }
9720
+ * @deprecated As of version 1.56. use {@link sap.ui.core.mvc.XMLView} in combination with {@link topic:5ee619fc1370463ea674ee04b65ed83b XML Templating }
9688
9721
  * instead
9689
9722
  *
9690
9723
  * @returns the created TemplateView instance in the creation case, otherwise undefined
@@ -9698,8 +9731,8 @@ declare namespace sap {
9698
9731
  /**
9699
9732
  * Creates a view of the given type, name and with the given ID.
9700
9733
  *
9701
- * @deprecated (since 1.56) - Use {@link sap.ui.core.mvc.View.extend View.extend} to define the view class
9702
- * and {@link sap.ui.core.mvc.View.create View.create} to create view instances
9734
+ * @deprecated As of version 1.56. Use {@link sap.ui.core.mvc.View.extend View.extend} to define the view
9735
+ * class and {@link sap.ui.core.mvc.View.create View.create} to create view instances
9703
9736
  *
9704
9737
  * @returns the created View instance
9705
9738
  */
@@ -9770,7 +9803,7 @@ declare namespace sap {
9770
9803
  * In addition to an `id`, the `oFragmentConfig` object can have either a `fragmentName` or a `fragmentContent`
9771
9804
  * property, but not both.
9772
9805
  *
9773
- * @deprecated (since 1.58) - Refer to {@link topic:04129b2798c447368f4c8922c3c33cd7 Instantiation of Fragments}.
9806
+ * @deprecated As of version 1.58. Refer to {@link topic:04129b2798c447368f4c8922c3c33cd7 Instantiation of Fragments}.
9774
9807
  *
9775
9808
  * @returns the instantiated root control(s) from the fragment content
9776
9809
  */
@@ -9830,7 +9863,7 @@ declare namespace sap {
9830
9863
  * In addition to an `id`, the `oFragmentConfig` object can have either a `fragmentName` or a `fragmentContent`
9831
9864
  * property, but not both.
9832
9865
  *
9833
- * @deprecated (since 1.58) - Refer to {@link topic:04129b2798c447368f4c8922c3c33cd7 Instantiation of Fragments}.
9866
+ * @deprecated As of version 1.58. Refer to {@link topic:04129b2798c447368f4c8922c3c33cd7 Instantiation of Fragments}.
9834
9867
  *
9835
9868
  * @returns the instantiated root control(s) from the fragment content
9836
9869
  */
@@ -9882,7 +9915,8 @@ declare namespace sap {
9882
9915
  *
9883
9916
  * Like with any other control, `sId` is optional and an ID will be created automatically.
9884
9917
  *
9885
- * @deprecated (since 1.56) - Use {@link sap.ui.core.mvc.XMLView.create XMLView.create} to create view instances
9918
+ * @deprecated As of version 1.56. Use {@link sap.ui.core.mvc.XMLView.create XMLView.create} to create view
9919
+ * instances
9886
9920
  *
9887
9921
  * @returns the created XMLView instance
9888
9922
  */
@@ -9962,7 +9996,8 @@ declare namespace sap {
9962
9996
  *
9963
9997
  * Like with any other control, `sId` is optional and an ID will be created automatically.
9964
9998
  *
9965
- * @deprecated (since 1.56) - Use {@link sap.ui.core.mvc.XMLView.create XMLView.create} to create view instances
9999
+ * @deprecated As of version 1.56. Use {@link sap.ui.core.mvc.XMLView.create XMLView.create} to create view
10000
+ * instances
9966
10001
  *
9967
10002
  * @returns the created XMLView instance
9968
10003
  */
@@ -10008,16 +10043,17 @@ declare namespace sap {
10008
10043
  /**
10009
10044
  * Provides a specialization of `sap.ui.core.Component` which represents a central application.
10010
10045
  *
10011
- * @deprecated (since 1.15.1) - use a {@link sap.ui.core.Component} instead.
10012
- * @experimental (since 1.11.1) - The Application concept is still under construction, so some implementation
10046
+ * @deprecated As of version 1.15.1. use a {@link sap.ui.core.Component} instead.
10047
+ * @experimental As of version 1.11.1. The Application concept is still under construction, so some implementation
10013
10048
  * details can be changed in future.
10014
10049
  */
10015
10050
  namespace app {
10016
10051
  /**
10017
10052
  * Describes the settings that can be provided to the Application constructor.
10018
10053
  *
10019
- * @deprecated (since 1.15.1) - The Component class is enhanced to take care about the Application code.
10020
- * @experimental (since 1.11.1) - The Application class is still under construction, so some implementation
10054
+ * @deprecated As of version 1.15.1. The Component class is enhanced to take care about the Application
10055
+ * code.
10056
+ * @experimental As of version 1.11.1. The Application class is still under construction, so some implementation
10021
10057
  * details can be changed in future.
10022
10058
  */
10023
10059
  interface $ApplicationSettings extends sap.ui.core.$ComponentSettings {
@@ -10034,9 +10070,9 @@ declare namespace sap {
10034
10070
  /**
10035
10071
  * Describes the settings that can be provided to the MockServer constructor.
10036
10072
  *
10037
- * @deprecated (since 1.15.1) - The mock server code has been moved to sap.ui.core.util - see {@link sap.ui.core.util.MockServer}
10038
- * @experimental (since 1.13.0) - The mock server is still under construction, so some implementation details
10039
- * can be changed in future.
10073
+ * @deprecated As of version 1.15.1. The mock server code has been moved to sap.ui.core.util - see {@link sap.ui.core.util.MockServer}
10074
+ * @experimental As of version 1.13.0. The mock server is still under construction, so some implementation
10075
+ * details can be changed in future.
10040
10076
  */
10041
10077
  interface $MockServerSettings
10042
10078
  extends sap.ui.base.$ManagedObjectSettings {}
@@ -10044,8 +10080,9 @@ declare namespace sap {
10044
10080
  /**
10045
10081
  * Abstract application class. Extend this class to create a central application class.
10046
10082
  *
10047
- * @deprecated (since 1.15.1) - The Component class is enhanced to take care about the Application code.
10048
- * @experimental (since 1.11.1) - The Application class is still under construction, so some implementation
10083
+ * @deprecated As of version 1.15.1. The Component class is enhanced to take care about the Application
10084
+ * code.
10085
+ * @experimental As of version 1.11.1. The Application class is still under construction, so some implementation
10049
10086
  * details can be changed in future.
10050
10087
  */
10051
10088
  abstract class Application extends sap.ui.core.Component {
@@ -10155,7 +10192,7 @@ declare namespace sap {
10155
10192
  * Returns the application root component.
10156
10193
  *
10157
10194
  * @since 1.13.1
10158
- * @deprecated (since 1.14)
10195
+ * @deprecated As of version 1.14.
10159
10196
  *
10160
10197
  * @returns The root component
10161
10198
  */
@@ -10237,9 +10274,9 @@ declare namespace sap {
10237
10274
  /**
10238
10275
  * Class to mock a server.
10239
10276
  *
10240
- * @deprecated (since 1.15.1) - The mock server code has been moved to sap.ui.core.util - see {@link sap.ui.core.util.MockServer}
10241
- * @experimental (since 1.13.0) - The mock server is still under construction, so some implementation details
10242
- * can be changed in future.
10277
+ * @deprecated As of version 1.15.1. The mock server code has been moved to sap.ui.core.util - see {@link sap.ui.core.util.MockServer}
10278
+ * @experimental As of version 1.13.0. The mock server is still under construction, so some implementation
10279
+ * details can be changed in future.
10243
10280
  */
10244
10281
  abstract class MockServer extends sap.ui.base.ManagedObject {
10245
10282
  /**
@@ -12780,7 +12817,7 @@ declare namespace sap {
12780
12817
  * bound properties or aggregations of the object itself and all of its children relatively to the given
12781
12818
  * path.
12782
12819
  *
12783
- * @deprecated (since 1.11.1) - please use {@link #bindObject} instead.
12820
+ * @deprecated As of version 1.11.1. please use {@link #bindObject} instead.
12784
12821
  *
12785
12822
  * @returns reference to the instance itself
12786
12823
  */
@@ -14048,7 +14085,7 @@ declare namespace sap {
14048
14085
  * Removes the defined binding context of this object, all bindings will now resolve relative to the parent
14049
14086
  * context again.
14050
14087
  *
14051
- * @deprecated (since 1.11.1) - please use {@link #unbindObject} instead.
14088
+ * @deprecated As of version 1.11.1. please use {@link #unbindObject} instead.
14052
14089
  *
14053
14090
  * @returns reference to the instance itself
14054
14091
  */
@@ -14819,12 +14856,12 @@ declare namespace sap {
14819
14856
  * Returns an array with the names of all public methods declared by the described class and all its ancestors
14820
14857
  * classes.
14821
14858
  *
14822
- * @deprecated (since 1.58) - this method should not be used for productive code. The accuracy of the returned
14823
- * information highly depends on the concrete class and is not actively monitored. There might be more public
14824
- * methods or some of the returned methods might not really be intended for public use. In general, pure
14825
- * visibility information should not be exposed in runtime metadata but be part of the documentation. Subclasses
14826
- * of `sap.ui.base.Object` might decide to provide runtime metadata describing their public API, but this
14827
- * then should not be backed by this method. See {@link sap.ui.core.mvc.ControllerMetadata#getAllMethods }
14859
+ * @deprecated As of version 1.58. this method should not be used for productive code. The accuracy of the
14860
+ * returned information highly depends on the concrete class and is not actively monitored. There might
14861
+ * be more public methods or some of the returned methods might not really be intended for public use. In
14862
+ * general, pure visibility information should not be exposed in runtime metadata but be part of the documentation.
14863
+ * Subclasses of `sap.ui.base.Object` might decide to provide runtime metadata describing their public API,
14864
+ * but this then should not be backed by this method. See {@link sap.ui.core.mvc.ControllerMetadata#getAllMethods }
14828
14865
  * for an example.
14829
14866
  *
14830
14867
  * @returns array with names of all public methods provided by the described class and its ancestors
@@ -14856,12 +14893,12 @@ declare namespace sap {
14856
14893
  * Returns an array with the names of the public methods declared by the described class, methods of ancestors
14857
14894
  * are not listed.
14858
14895
  *
14859
- * @deprecated (since 1.58) - this method should not be used for productive code. The accuracy of the returned
14860
- * information highly depends on the concrete class and is not actively monitored. There might be more public
14861
- * methods or some of the returned methods might not really be intended for public use. In general, pure
14862
- * visibility information should not be exposed in runtime metadata but be part of the documentation. Subclasses
14863
- * of `sap.ui.base.Object` might decide to provide runtime metadata describing their public API, but this
14864
- * then should not be backed by this method. See {@link sap.ui.core.mvc.ControllerMetadata#getAllMethods }
14896
+ * @deprecated As of version 1.58. this method should not be used for productive code. The accuracy of the
14897
+ * returned information highly depends on the concrete class and is not actively monitored. There might
14898
+ * be more public methods or some of the returned methods might not really be intended for public use. In
14899
+ * general, pure visibility information should not be exposed in runtime metadata but be part of the documentation.
14900
+ * Subclasses of `sap.ui.base.Object` might decide to provide runtime metadata describing their public API,
14901
+ * but this then should not be backed by this method. See {@link sap.ui.core.mvc.ControllerMetadata#getAllMethods }
14865
14902
  * for an example.
14866
14903
  *
14867
14904
  * @returns array with names of public methods declared by the described class
@@ -14946,7 +14983,7 @@ declare namespace sap {
14946
14983
  * - publicMethods: {string} an array of method names that will be visible in the interface proxy returned
14947
14984
  * by {@link #getInterface}
14948
14985
  *
14949
- * @deprecated (since 1.3.1) - Use the static `extend` method of the desired base class (e.g. {@link sap.ui.base.Object.extend})
14986
+ * @deprecated As of version 1.3.1. Use the static `extend` method of the desired base class (e.g. {@link sap.ui.base.Object.extend})
14950
14987
  *
14951
14988
  * @returns the created metadata object
14952
14989
  */
@@ -15038,7 +15075,7 @@ declare namespace sap {
15038
15075
  * Please see the API documentation of {@link sap.ui.base.Object#isA} for more details.
15039
15076
  *
15040
15077
  * @since 1.56
15041
- * @deprecated (since 1.120) - please use {@link sap.ui.base.Object.isObjectA}.
15078
+ * @deprecated As of version 1.120. please use {@link sap.ui.base.Object.isObjectA}.
15042
15079
  *
15043
15080
  * @returns Whether the given object is an instance of the given type or of any of the given types
15044
15081
  */
@@ -15854,7 +15891,7 @@ declare namespace sap {
15854
15891
  * Setter for property `bounce`.
15855
15892
  *
15856
15893
  * @since 1.17
15857
- * @deprecated (since 1.42) - without replacement.
15894
+ * @deprecated As of version 1.42. without replacement.
15858
15895
  * @ui5-protected Do not call from applications (only from related classes in the framework)
15859
15896
  */
15860
15897
  setBounce(
@@ -17946,7 +17983,7 @@ declare namespace sap {
17946
17983
  * since 1.108.0 specifies the calendar week numbering. If specified, this overwrites `oFormatOptions.firstDayOfWeek`
17947
17984
  * and `oFormatOptions.minimalDaysInFirstWeek`.
17948
17985
  */
17949
- calendarWeekNumbering?: sap.ui.core.date.CalendarWeekNumbering;
17986
+ calendarWeekNumbering?: import("sap/base/i18n/date/CalendarWeekNumbering").default;
17950
17987
  /**
17951
17988
  * since 1.105.0 specifies the first day of the week starting with `0` (which is Sunday); if not defined,
17952
17989
  * the value taken from the locale is used
@@ -18025,7 +18062,7 @@ declare namespace sap {
18025
18062
  * The calender type which is used to format and parse the date. This value is by default either set in
18026
18063
  * configuration or calculated based on current locale.
18027
18064
  */
18028
- calendarType?: sap.ui.core.CalendarType;
18065
+ calendarType?: import("sap/base/i18n/date/CalendarType").default;
18029
18066
  },
18030
18067
  /**
18031
18068
  * Locale to ask for locale specific texts/settings
@@ -18059,7 +18096,7 @@ declare namespace sap {
18059
18096
  * since 1.108.0 specifies the calendar week numbering. If specified, this overwrites `oFormatOptions.firstDayOfWeek`
18060
18097
  * and `oFormatOptions.minimalDaysInFirstWeek`.
18061
18098
  */
18062
- calendarWeekNumbering?: sap.ui.core.date.CalendarWeekNumbering;
18099
+ calendarWeekNumbering?: import("sap/base/i18n/date/CalendarWeekNumbering").default;
18063
18100
  /**
18064
18101
  * since 1.105.0 specifies the first day of the week starting with `0` (which is Sunday); if not defined,
18065
18102
  * the value taken from the locale is used
@@ -18141,7 +18178,7 @@ declare namespace sap {
18141
18178
  * The calender type which is used to format and parse the date. This value is by default either set in
18142
18179
  * configuration or calculated based on current locale.
18143
18180
  */
18144
- calendarType?: sap.ui.core.CalendarType;
18181
+ calendarType?: import("sap/base/i18n/date/CalendarType").default;
18145
18182
  },
18146
18183
  /**
18147
18184
  * Locale to ask for locale specific texts/settings
@@ -18176,7 +18213,7 @@ declare namespace sap {
18176
18213
  * since 1.108.0 specifies the calendar week numbering. If specified, this overwrites `oFormatOptions.firstDayOfWeek`
18177
18214
  * and `oFormatOptions.minimalDaysInFirstWeek`.
18178
18215
  */
18179
- calendarWeekNumbering?: sap.ui.core.date.CalendarWeekNumbering;
18216
+ calendarWeekNumbering?: import("sap/base/i18n/date/CalendarWeekNumbering").default;
18180
18217
  /**
18181
18218
  * since 1.105.0 specifies the first day of the week starting with `0` (which is Sunday); if not defined,
18182
18219
  * the value taken from the locale is used
@@ -18249,7 +18286,7 @@ declare namespace sap {
18249
18286
  * The calendar type which is used to format and parse the date. This value is by default either set in
18250
18287
  * the configuration or calculated based on the current locale.
18251
18288
  */
18252
- calendarType?: sap.ui.core.CalendarType;
18289
+ calendarType?: import("sap/base/i18n/date/CalendarType").default;
18253
18290
  },
18254
18291
  /**
18255
18292
  * Locale to ask for locale-specific texts/settings
@@ -18284,7 +18321,7 @@ declare namespace sap {
18284
18321
  * since 1.108.0 specifies the calendar week numbering. If specified, this overwrites `oFormatOptions.firstDayOfWeek`
18285
18322
  * and `oFormatOptions.minimalDaysInFirstWeek`.
18286
18323
  */
18287
- calendarWeekNumbering?: sap.ui.core.date.CalendarWeekNumbering;
18324
+ calendarWeekNumbering?: import("sap/base/i18n/date/CalendarWeekNumbering").default;
18288
18325
  /**
18289
18326
  * since 1.105.0 specifies the first day of the week starting with `0` (which is Sunday); if not defined,
18290
18327
  * the value taken from the locale is used
@@ -18363,7 +18400,7 @@ declare namespace sap {
18363
18400
  * The calender type which is used to format and parse the date. This value is by default either set in
18364
18401
  * configuration or calculated based on current locale.
18365
18402
  */
18366
- calendarType?: sap.ui.core.CalendarType;
18403
+ calendarType?: import("sap/base/i18n/date/CalendarType").default;
18367
18404
  },
18368
18405
  /**
18369
18406
  * Locale to ask for locale specific texts/settings
@@ -19603,7 +19640,7 @@ declare namespace sap {
19603
19640
  * Configuration options for the `showTimezone` format option of `DateFormat#getDateTimeWithTimezoneInstance`.
19604
19641
  *
19605
19642
  * @since 1.99.0
19606
- * @deprecated (since 1.101) - replaced by `DateFormat#getDateTimeWithTimezoneInstance` with the `showDate`,
19643
+ * @deprecated As of version 1.101. replaced by `DateFormat#getDateTimeWithTimezoneInstance` with the `showDate`,
19607
19644
  * `showTime` and `showTimezone` format options.
19608
19645
  */
19609
19646
  enum DateFormatTimezoneDisplay {
@@ -19895,7 +19932,7 @@ declare namespace sap {
19895
19932
  /**
19896
19933
  * Returns the message target or the first target if the message has multiple targets.
19897
19934
  *
19898
- * @deprecated (since 1.79.0) - As a message may have multiple targets, use {@link #getTargets} instead
19935
+ * @deprecated As of version 1.79.0. As a message may have multiple targets, use {@link #getTargets} instead
19899
19936
  *
19900
19937
  * @returns The message target
19901
19938
  */
@@ -20006,7 +20043,7 @@ declare namespace sap {
20006
20043
  * Sets the message target; in case the message has multiple targets, sets the first target of the message.
20007
20044
  * The syntax is MessageProcessor dependent. See the documentation of the respective MessageProcessor.
20008
20045
  *
20009
- * @deprecated (since 1.79.0) - As a message may have multiple targets, use {@link #setTargets} instead
20046
+ * @deprecated As of version 1.79.0. As a message may have multiple targets, use {@link #setTargets} instead
20010
20047
  */
20011
20048
  setTarget(
20012
20049
  /**
@@ -20054,7 +20091,7 @@ declare namespace sap {
20054
20091
  ): void;
20055
20092
  }
20056
20093
  /**
20057
- * @deprecated (since 1.118) - Please use {@link module:sap/ui/core/Messaging Messaging} instead.
20094
+ * @deprecated As of version 1.118. Please use {@link module:sap/ui/core/Messaging Messaging} instead.
20058
20095
  */
20059
20096
  class MessageManager extends sap.ui.base.Object {
20060
20097
  /**
@@ -20373,7 +20410,7 @@ declare namespace sap {
20373
20410
  /**
20374
20411
  * Fires event {@link #event:messageChange messageChange} to attached listeners.
20375
20412
  *
20376
- * @deprecated (since 1.115) - Use {@link module:sap/ui/core/Messaging.updateMessages} instead
20413
+ * @deprecated As of version 1.115. Use {@link module:sap/ui/core/Messaging.updateMessages} instead
20377
20414
  * @ui5-protected Do not call from applications (only from related classes in the framework)
20378
20415
  *
20379
20416
  * @returns Reference to `this` in order to allow method chaining
@@ -20548,8 +20585,8 @@ declare namespace sap {
20548
20585
  /**
20549
20586
  * Describes the settings that can be provided to the HTMLView constructor.
20550
20587
  *
20551
- * @deprecated (since 1.108) - as there are no more known usages of `HTMLViews`, and as the use of HTML
20552
- * as syntax does not bring any advantages over XML. The HTML necessary for the `HTMLView` is not re-used
20588
+ * @deprecated As of version 1.108. as there are no more known usages of `HTMLViews`, and as the use of
20589
+ * HTML as syntax does not bring any advantages over XML. The HTML necessary for the `HTMLView` is not re-used
20553
20590
  * for the HTML of the controls, but is fully replaced.
20554
20591
  *
20555
20592
  * Consider using {@link sap.ui.core.mvc.XMLView XMLViews} or "typed views" (view classes written in JavaScript)
@@ -20560,7 +20597,7 @@ declare namespace sap {
20560
20597
  /**
20561
20598
  * Describes the settings that can be provided to the JSONView constructor.
20562
20599
  *
20563
- * @deprecated (since 1.120) - please consider using {@link sap.ui.core.mvc.XMLView XMLViews} or "typed
20600
+ * @deprecated As of version 1.120. please consider using {@link sap.ui.core.mvc.XMLView XMLViews} or "typed
20564
20601
  * views" (view classes written in JavaScript) instead. For more information, see the documentation on {@link topic:91f27e3e6f4d1014b6dd926db0e91070 View types}.
20565
20602
  */
20566
20603
  interface $JSONViewSettings extends sap.ui.core.mvc.$ViewSettings {}
@@ -20568,16 +20605,16 @@ declare namespace sap {
20568
20605
  /**
20569
20606
  * Describes the settings that can be provided to the JSView constructor.
20570
20607
  *
20571
- * @deprecated (since 1.90) - Instead use {@link topic:e6bb33d076dc4f23be50c082c271b9f0 Typed Views} by
20572
- * defining the view class with {@link sap.ui.core.mvc.View.extend View.extend} and creating the view instances
20573
- * with {@link sap.ui.core.mvc.View.create View.create}.
20608
+ * @deprecated As of version 1.90. Instead use {@link topic:e6bb33d076dc4f23be50c082c271b9f0 Typed Views }
20609
+ * by defining the view class with {@link sap.ui.core.mvc.View.extend View.extend} and creating the view
20610
+ * instances with {@link sap.ui.core.mvc.View.create View.create}.
20574
20611
  */
20575
20612
  interface $JSViewSettings extends sap.ui.core.mvc.$ViewSettings {}
20576
20613
 
20577
20614
  /**
20578
20615
  * Describes the settings that can be provided to the TemplateView constructor.
20579
20616
  *
20580
- * @deprecated (since 1.56.0) - use {@link sap.ui.core.mvc.XMLView} in combination with {@link topic:5ee619fc1370463ea674ee04b65ed83b XML Templating }
20617
+ * @deprecated As of version 1.56.0. use {@link sap.ui.core.mvc.XMLView} in combination with {@link topic:5ee619fc1370463ea674ee04b65ed83b XML Templating }
20581
20618
  * instead.
20582
20619
  */
20583
20620
  interface $TemplateViewSettings extends sap.ui.core.mvc.$ViewSettings {}
@@ -21239,8 +21276,8 @@ declare namespace sap {
21239
21276
  * A view defined/constructed by declarative HTML.
21240
21277
  *
21241
21278
  * @since 1.9.2
21242
- * @deprecated (since 1.108) - as there are no more known usages of `HTMLViews`, and as the use of HTML
21243
- * as syntax does not bring any advantages over XML. The HTML necessary for the `HTMLView` is not re-used
21279
+ * @deprecated As of version 1.108. as there are no more known usages of `HTMLViews`, and as the use of
21280
+ * HTML as syntax does not bring any advantages over XML. The HTML necessary for the `HTMLView` is not re-used
21244
21281
  * for the HTML of the controls, but is fully replaced.
21245
21282
  *
21246
21283
  * Consider using {@link sap.ui.core.mvc.XMLView XMLViews} or "typed views" (view classes written in JavaScript)
@@ -21366,7 +21403,7 @@ declare namespace sap {
21366
21403
  /**
21367
21404
  * A View defined using JSON.
21368
21405
  *
21369
- * @deprecated (since 1.120) - please consider using {@link sap.ui.core.mvc.XMLView XMLViews} or "typed
21406
+ * @deprecated As of version 1.120. please consider using {@link sap.ui.core.mvc.XMLView XMLViews} or "typed
21370
21407
  * views" (view classes written in JavaScript) instead. For more information, see the documentation on {@link topic:91f27e3e6f4d1014b6dd926db0e91070 View types}.
21371
21408
  */
21372
21409
  class JSONView extends sap.ui.core.mvc.View {
@@ -21490,9 +21527,9 @@ declare namespace sap {
21490
21527
  /**
21491
21528
  * A View defined/constructed by JavaScript code.
21492
21529
  *
21493
- * @deprecated (since 1.90) - Instead use {@link topic:e6bb33d076dc4f23be50c082c271b9f0 Typed Views} by
21494
- * defining the view class with {@link sap.ui.core.mvc.View.extend View.extend} and creating the view instances
21495
- * with {@link sap.ui.core.mvc.View.create View.create}.
21530
+ * @deprecated As of version 1.90. Instead use {@link topic:e6bb33d076dc4f23be50c082c271b9f0 Typed Views }
21531
+ * by defining the view class with {@link sap.ui.core.mvc.View.extend View.extend} and creating the view
21532
+ * instances with {@link sap.ui.core.mvc.View.create View.create}.
21496
21533
  */
21497
21534
  class JSView extends sap.ui.core.mvc.View {
21498
21535
  /**
@@ -21542,7 +21579,7 @@ declare namespace sap {
21542
21579
  * Creates an instance of the view with the given name (and id).
21543
21580
  *
21544
21581
  * @since 1.56.0
21545
- * @deprecated (since 1.90) - Use {@link sap.ui.core.mvc.View.create View.create} to create view instances
21582
+ * @deprecated As of version 1.90. Use {@link sap.ui.core.mvc.View.create View.create} to create view instances
21546
21583
  *
21547
21584
  * @returns A promise that resolves with the view instance
21548
21585
  */
@@ -21613,7 +21650,7 @@ declare namespace sap {
21613
21650
  /**
21614
21651
  * A view defined in a template.
21615
21652
  *
21616
- * @deprecated (since 1.56.0) - use {@link sap.ui.core.mvc.XMLView} in combination with {@link topic:5ee619fc1370463ea674ee04b65ed83b XML Templating }
21653
+ * @deprecated As of version 1.56.0. use {@link sap.ui.core.mvc.XMLView} in combination with {@link topic:5ee619fc1370463ea674ee04b65ed83b XML Templating }
21617
21654
  * instead.
21618
21655
  */
21619
21656
  class TemplateView extends sap.ui.core.mvc.View {
@@ -22202,7 +22239,7 @@ declare namespace sap {
22202
22239
  * For more details see the {@link https://ui5.sap.com/#/topic/a575619e25c2487f904bae71764e2350 View Cloning }
22203
22240
  * section in the documentation.
22204
22241
  *
22205
- * @deprecated (since 1.120) - please call the corresponding View factory instead, e.g. {@link sap.ui.core.mvc.XMLView.create}
22242
+ * @deprecated As of version 1.120. please call the corresponding View factory instead, e.g. {@link sap.ui.core.mvc.XMLView.create}
22206
22243
  *
22207
22244
  * @returns Reference to the newly created clone
22208
22245
  */
@@ -22985,27 +23022,27 @@ declare namespace sap {
22985
23022
  /**
22986
23023
  * HTML view
22987
23024
  *
22988
- * @deprecated (since 1.108) - Consider using {@link sap.ui.core.mvx.XMLView XMLViews} or "typed views"
23025
+ * @deprecated As of version 1.108. Consider using {@link sap.ui.core.mvx.XMLView XMLViews} or "typed views"
22989
23026
  * (view classes written in JavaScript) instead.
22990
23027
  */
22991
23028
  HTML = "HTML",
22992
23029
  /**
22993
23030
  * JS View
22994
23031
  *
22995
- * @deprecated (since 1.90)
23032
+ * @deprecated As of version 1.90.
22996
23033
  */
22997
23034
  JS = "JS",
22998
23035
  /**
22999
23036
  * JSON View
23000
23037
  *
23001
- * @deprecated (since 1.120) - please consider using {@link sap.ui.core.mvc.XMLView XMLViews} or "typed
23038
+ * @deprecated As of version 1.120. please consider using {@link sap.ui.core.mvc.XMLView XMLViews} or "typed
23002
23039
  * views" (view classes written in JavaScript) instead.
23003
23040
  */
23004
23041
  JSON = "JSON",
23005
23042
  /**
23006
23043
  * Template View
23007
23044
  *
23008
- * @deprecated (since 1.56)
23045
+ * @deprecated As of version 1.56.
23009
23046
  */
23010
23047
  Template = "Template",
23011
23048
  /**
@@ -23088,7 +23125,7 @@ declare namespace sap {
23088
23125
  * Registry of all `Component`s that currently exist.
23089
23126
  *
23090
23127
  * @since 1.67
23091
- * @deprecated (since 1.120) - Use {@link module:sap/ui/core/ComponentRegistry} instead.
23128
+ * @deprecated As of version 1.120. Use {@link module:sap/ui/core/ComponentRegistry} instead.
23092
23129
  */
23093
23130
  interface registry {
23094
23131
  /**
@@ -23226,7 +23263,7 @@ declare namespace sap {
23226
23263
  * objects created after that point in time will honor the modifications. To be on the safe side, applications
23227
23264
  * should do any modifications early in their lifecycle or recreate any model/UI that is locale dependent.
23228
23265
  *
23229
- * @deprecated (since 1.120) - Please use {@link module:sap/base/i18n/Formatting Formatting} instead.
23266
+ * @deprecated As of version 1.120. Please use {@link module:sap/base/i18n/Formatting Formatting} instead.
23230
23267
  */
23231
23268
  class FormatSettings extends sap.ui.base.Object {
23232
23269
  constructor();
@@ -23350,7 +23387,7 @@ declare namespace sap {
23350
23387
  * been specified, then a special private use subtag is added to the locale, indicating to the framework
23351
23388
  * that these user preferences should be applied.
23352
23389
  *
23353
- * @deprecated (since 1.120) - Please use {@link module:sap/base/i18n/Formatting.getLanguageTag Formatting.getLanguageTag }
23390
+ * @deprecated As of version 1.120. Please use {@link module:sap/base/i18n/Formatting.getLanguageTag Formatting.getLanguageTag }
23354
23391
  * instead.
23355
23392
  *
23356
23393
  * @returns the format locale
@@ -23494,7 +23531,7 @@ declare namespace sap {
23494
23531
  * UI. See the documentation of {@link sap.ui.core.Configuration.setLanguage Configuration.setLanguage }
23495
23532
  * for details and restrictions.
23496
23533
  *
23497
- * @deprecated (since 1.113) - Use {@link sap.ui.core.Configuration.FormatSettings#setCalendarWeekNumbering FormatSettings#setCalendarWeekNumbering }
23534
+ * @deprecated As of version 1.113. Use {@link sap.ui.core.Configuration.FormatSettings#setCalendarWeekNumbering FormatSettings#setCalendarWeekNumbering }
23498
23535
  * instead.
23499
23536
  *
23500
23537
  * @returns Returns `this` to allow method chaining
@@ -23679,7 +23716,7 @@ declare namespace sap {
23679
23716
  * 'AnimationMode'.
23680
23717
  *
23681
23718
  * @since 1.50.0
23682
- * @deprecated (since 1.120) - Please use module {@link module:sap/ui/core/AnimationMode AnimationMode }
23719
+ * @deprecated As of version 1.120. Please use module {@link module:sap/ui/core/AnimationMode AnimationMode }
23683
23720
  * instead.
23684
23721
  */
23685
23722
  enum AnimationMode {
@@ -23709,7 +23746,7 @@ declare namespace sap {
23709
23746
  * - the first week of the year.
23710
23747
  *
23711
23748
  * @since 1.108.0
23712
- * @deprecated (since 1.120) - Please use {@link module:sap/base/i18n/date/CalendarWeekNumbering} instead.
23749
+ * @deprecated As of version 1.120. Please use {@link module:sap/base/i18n/date/CalendarWeekNumbering} instead.
23713
23750
  */
23714
23751
  enum CalendarWeekNumbering {
23715
23752
  /**
@@ -23760,7 +23797,7 @@ declare namespace sap {
23760
23797
  * Registry of all `sap.ui.core.Element`s that currently exist.
23761
23798
  *
23762
23799
  * @since 1.67
23763
- * @deprecated (since 1.120) - Use {@link module:sap/ui/core/ElementRegistry} instead.
23800
+ * @deprecated As of version 1.120. Use {@link module:sap/ui/core/ElementRegistry} instead.
23764
23801
  */
23765
23802
  interface registry {
23766
23803
  /**
@@ -25747,7 +25784,7 @@ declare namespace sap {
25747
25784
  * When called, the context of the event handler (its `this`) will be bound to `oListener` if specified,
25748
25785
  * otherwise it will be bound to this `sap.ui.core.routing.Router` itself.
25749
25786
  *
25750
- * @deprecated (since 1.28) - use {@link #getViews} instead.
25787
+ * @deprecated As of version 1.28. use {@link #getViews} instead.
25751
25788
  *
25752
25789
  * @returns Reference to `this` in order to allow method chaining
25753
25790
  */
@@ -25772,7 +25809,7 @@ declare namespace sap {
25772
25809
  * When called, the context of the event handler (its `this`) will be bound to `oListener` if specified,
25773
25810
  * otherwise it will be bound to this `sap.ui.core.routing.Router` itself.
25774
25811
  *
25775
- * @deprecated (since 1.28) - use {@link #getViews} instead.
25812
+ * @deprecated As of version 1.28. use {@link #getViews} instead.
25776
25813
  *
25777
25814
  * @returns Reference to `this` in order to allow method chaining
25778
25815
  */
@@ -25897,7 +25934,7 @@ declare namespace sap {
25897
25934
  *
25898
25935
  * The passed function and listener object must match the ones used for event registration.
25899
25936
  *
25900
- * @deprecated (since 1.28) - use {@link #getViews} instead.
25937
+ * @deprecated As of version 1.28. use {@link #getViews} instead.
25901
25938
  *
25902
25939
  * @returns Reference to `this` in order to allow method chaining
25903
25940
  */
@@ -25971,7 +26008,7 @@ declare namespace sap {
25971
26008
  /**
25972
26009
  * Fires event {@link #event:viewCreated viewCreated} to attached listeners.
25973
26010
  *
25974
- * @deprecated (since 1.28) - use {@link #getViews} instead.
26011
+ * @deprecated As of version 1.28. use {@link #getViews} instead.
25975
26012
  * @ui5-protected Do not call from applications (only from related classes in the framework)
25976
26013
  *
25977
26014
  * @returns Reference to `this` in order to allow method chaining
@@ -26087,7 +26124,7 @@ declare namespace sap {
26087
26124
  /**
26088
26125
  * Returns a cached view for a given name or creates it if it does not exist yet.
26089
26126
  *
26090
- * @deprecated (since 1.28.1) - use {@link #getViews} instead.
26127
+ * @deprecated As of version 1.28.1. use {@link #getViews} instead.
26091
26128
  *
26092
26129
  * @returns The view instance
26093
26130
  */
@@ -26318,7 +26355,7 @@ declare namespace sap {
26318
26355
  * and the "undefined" key.
26319
26356
  *
26320
26357
  * @since 1.22
26321
- * @deprecated (since 1.28) - use {@link #getViews} instead.
26358
+ * @deprecated As of version 1.28. use {@link #getViews} instead.
26322
26359
  *
26323
26360
  * @returns Since 1.28, the `this` pointer for chaining
26324
26361
  */
@@ -27742,7 +27779,7 @@ declare namespace sap {
27742
27779
  /**
27743
27780
  * Describes the settings that can be provided to the OpenSearchProvider constructor.
27744
27781
  *
27745
- * @deprecated (since 1.120) - There is no API replacement.
27782
+ * @deprecated As of version 1.120. There is no API replacement.
27746
27783
  */
27747
27784
  interface $OpenSearchProviderSettings
27748
27785
  extends sap.ui.core.search.$SearchProviderSettings {
@@ -27764,7 +27801,7 @@ declare namespace sap {
27764
27801
  /**
27765
27802
  * Describes the settings that can be provided to the SearchProvider constructor.
27766
27803
  *
27767
- * @deprecated (since 1.120) - There is no API replacement.
27804
+ * @deprecated As of version 1.120. There is no API replacement.
27768
27805
  */
27769
27806
  interface $SearchProviderSettings extends sap.ui.core.$ElementSettings {
27770
27807
  /**
@@ -27776,7 +27813,7 @@ declare namespace sap {
27776
27813
  /**
27777
27814
  * A SearchProvider which uses the OpenSearch protocol (either JSON or XML).
27778
27815
  *
27779
- * @deprecated (since 1.120) - There is no API replacement.
27816
+ * @deprecated As of version 1.120. There is no API replacement.
27780
27817
  */
27781
27818
  class OpenSearchProvider extends sap.ui.core.search.SearchProvider {
27782
27819
  /**
@@ -27921,7 +27958,7 @@ declare namespace sap {
27921
27958
  *
27922
27959
  * Do not create instances of this class, but use a concrete subclass instead.
27923
27960
  *
27924
- * @deprecated (since 1.120) - There is no API replacement.
27961
+ * @deprecated As of version 1.120. There is no API replacement.
27925
27962
  */
27926
27963
  abstract class SearchProvider extends sap.ui.core.Element {
27927
27964
  /**
@@ -28296,8 +28333,8 @@ declare namespace sap {
28296
28333
  * Resets the CSS parameters which finally will reload the parameters the next time they are queried via
28297
28334
  * the method `get`.
28298
28335
  *
28299
- * @deprecated (since 1.92) - without a replacement. Application code should not be able to interfere with
28300
- * the automated determination of theme parameters. Resetting the parameters unnecessarily could impact
28336
+ * @deprecated As of version 1.92. without a replacement. Application code should not be able to interfere
28337
+ * with the automated determination of theme parameters. Resetting the parameters unnecessarily could impact
28301
28338
  * performance. Please use the (potentially async) API to get parameter values and rely on the framework
28302
28339
  * to update parameter values when the theme changes.
28303
28340
  */
@@ -28309,7 +28346,7 @@ declare namespace sap {
28309
28346
  /**
28310
28347
  * Describes the settings that can be provided to the DOMAttribute constructor.
28311
28348
  *
28312
- * @deprecated (since 1.56) - Use an {@link sap.ui.core.mvc.XMLView XMLView} or a {@link topic:e6bb33d076dc4f23be50c082c271b9f0 Typed View }
28349
+ * @deprecated As of version 1.56. Use an {@link sap.ui.core.mvc.XMLView XMLView} or a {@link topic:e6bb33d076dc4f23be50c082c271b9f0 Typed View }
28313
28350
  * instead.
28314
28351
  */
28315
28352
  interface $DOMAttributeSettings extends sap.ui.core.$ElementSettings {
@@ -28327,7 +28364,7 @@ declare namespace sap {
28327
28364
  /**
28328
28365
  * Describes the settings that can be provided to the DOMElement constructor.
28329
28366
  *
28330
- * @deprecated (since 1.56) - Use an {@link sap.ui.core.mvc.XMLView XMLView} or a {@link topic:e6bb33d076dc4f23be50c082c271b9f0 Typed View }
28367
+ * @deprecated As of version 1.56. Use an {@link sap.ui.core.mvc.XMLView XMLView} or a {@link topic:e6bb33d076dc4f23be50c082c271b9f0 Typed View }
28331
28368
  * instead.
28332
28369
  */
28333
28370
  interface $DOMElementSettings extends sap.ui.core.$ControlSettings {
@@ -28363,7 +28400,7 @@ declare namespace sap {
28363
28400
  /**
28364
28401
  * Describes the settings that can be provided to the HandlebarsTemplate constructor.
28365
28402
  *
28366
- * @deprecated (since 1.56) - Use an {@link sap.ui.core.mvc.XMLView XMLView} or a {@link topic:e6bb33d076dc4f23be50c082c271b9f0 Typed View }
28403
+ * @deprecated As of version 1.56. Use an {@link sap.ui.core.mvc.XMLView XMLView} or a {@link topic:e6bb33d076dc4f23be50c082c271b9f0 Typed View }
28367
28404
  * instead.
28368
28405
  */
28369
28406
  interface $HandlebarsTemplateSettings
@@ -28372,7 +28409,7 @@ declare namespace sap {
28372
28409
  /**
28373
28410
  * Describes the settings that can be provided to the Template constructor.
28374
28411
  *
28375
- * @deprecated (since 1.56) - use an {@link sap.ui.core.mvc.XMLView XMLView} or a {@link topic:e6bb33d076dc4f23be50c082c271b9f0 Typed View }
28412
+ * @deprecated As of version 1.56. use an {@link sap.ui.core.mvc.XMLView XMLView} or a {@link topic:e6bb33d076dc4f23be50c082c271b9f0 Typed View }
28376
28413
  * instead.
28377
28414
  */
28378
28415
  interface $TemplateSettings extends sap.ui.base.$ManagedObjectSettings {
@@ -28385,7 +28422,7 @@ declare namespace sap {
28385
28422
  /**
28386
28423
  * Describes the settings that can be provided to the TemplateControl constructor.
28387
28424
  *
28388
- * @deprecated (since 1.56) - Use an {@link sap.ui.core.mvc.XMLView XMLView} or a {@link topic:e6bb33d076dc4f23be50c082c271b9f0 Typed View }
28425
+ * @deprecated As of version 1.56. Use an {@link sap.ui.core.mvc.XMLView XMLView} or a {@link topic:e6bb33d076dc4f23be50c082c271b9f0 Typed View }
28389
28426
  * instead.
28390
28427
  */
28391
28428
  interface $TemplateControlSettings
@@ -28430,7 +28467,7 @@ declare namespace sap {
28430
28467
  * Represents a DOM attribute of a DOM element.
28431
28468
  *
28432
28469
  * @since 1.15
28433
- * @deprecated (since 1.56) - Use an {@link sap.ui.core.mvc.XMLView XMLView} or a {@link topic:e6bb33d076dc4f23be50c082c271b9f0 Typed View }
28470
+ * @deprecated As of version 1.56. Use an {@link sap.ui.core.mvc.XMLView XMLView} or a {@link topic:e6bb33d076dc4f23be50c082c271b9f0 Typed View }
28434
28471
  * instead.
28435
28472
  */
28436
28473
  class DOMAttribute extends sap.ui.core.Element {
@@ -28551,7 +28588,7 @@ declare namespace sap {
28551
28588
  * Represents a DOM element. It allows to use databinding for the properties and nested DOM attributes.
28552
28589
  *
28553
28590
  * @since 1.15
28554
- * @deprecated (since 1.56) - Use an {@link sap.ui.core.mvc.XMLView XMLView} or a {@link topic:e6bb33d076dc4f23be50c082c271b9f0 Typed View }
28591
+ * @deprecated As of version 1.56. Use an {@link sap.ui.core.mvc.XMLView XMLView} or a {@link topic:e6bb33d076dc4f23be50c082c271b9f0 Typed View }
28555
28592
  * instead.
28556
28593
  */
28557
28594
  class DOMElement extends sap.ui.core.Control {
@@ -28860,7 +28897,7 @@ declare namespace sap {
28860
28897
  * The class for Handlebars Templates.
28861
28898
  *
28862
28899
  * @since 1.15
28863
- * @deprecated (since 1.56) - Use an {@link sap.ui.core.mvc.XMLView XMLView} or a {@link topic:e6bb33d076dc4f23be50c082c271b9f0 Typed View }
28900
+ * @deprecated As of version 1.56. Use an {@link sap.ui.core.mvc.XMLView XMLView} or a {@link topic:e6bb33d076dc4f23be50c082c271b9f0 Typed View }
28864
28901
  * instead.
28865
28902
  */
28866
28903
  abstract class HandlebarsTemplate extends sap.ui.core.tmpl.Template {
@@ -28944,7 +28981,7 @@ declare namespace sap {
28944
28981
  * Base Class for Template.
28945
28982
  *
28946
28983
  * @since 1.15
28947
- * @deprecated (since 1.56) - use an {@link sap.ui.core.mvc.XMLView XMLView} or a {@link topic:e6bb33d076dc4f23be50c082c271b9f0 Typed View }
28984
+ * @deprecated As of version 1.56. use an {@link sap.ui.core.mvc.XMLView XMLView} or a {@link topic:e6bb33d076dc4f23be50c082c271b9f0 Typed View }
28948
28985
  * instead.
28949
28986
  */
28950
28987
  abstract class Template extends sap.ui.base.ManagedObject {
@@ -29200,7 +29237,7 @@ declare namespace sap {
29200
29237
  * This is the base class for all template controls. Template controls are declared based on templates.
29201
29238
  *
29202
29239
  * @since 1.15
29203
- * @deprecated (since 1.56) - Use an {@link sap.ui.core.mvc.XMLView XMLView} or a {@link topic:e6bb33d076dc4f23be50c082c271b9f0 Typed View }
29240
+ * @deprecated As of version 1.56. Use an {@link sap.ui.core.mvc.XMLView XMLView} or a {@link topic:e6bb33d076dc4f23be50c082c271b9f0 Typed View }
29204
29241
  * instead.
29205
29242
  */
29206
29243
  class TemplateControl extends sap.ui.core.Control {
@@ -29652,16 +29689,16 @@ declare namespace sap {
29652
29689
  * Registry of all `sap.ui.core.UIArea`s that currently exist.
29653
29690
  *
29654
29691
  * @since 1.107
29655
- * @deprecated (since 1.120) - without a replacement. Applications should not be interested in the set of
29656
- * `UIArea`s. They should only assign controls to them, by using {@link sap.ui.core.Control.prototype.placeAt Control.prototype.placeAt }
29692
+ * @deprecated As of version 1.120. without a replacement. Applications should not be interested in the
29693
+ * set of `UIArea`s. They should only assign controls to them, by using {@link sap.ui.core.Control.prototype.placeAt Control.prototype.placeAt }
29657
29694
  * or use the API of a `UIArea` as reachable via {@link sap.ui.core.Control.prototype.getUIArea Control.prototype.getUIArea}.
29658
29695
  */
29659
29696
  interface registry {
29660
29697
  /**
29661
29698
  * Number of existing UIAreas.
29662
29699
  *
29663
- * @deprecated (since 1.120) - without a replacement. Applications should not be interested in the set of
29664
- * `UIArea`s. They should only assign controls to them, by using {@link sap.ui.core.Control.prototype.placeAt Control.prototype.placeAt }
29700
+ * @deprecated As of version 1.120. without a replacement. Applications should not be interested in the
29701
+ * set of `UIArea`s. They should only assign controls to them, by using {@link sap.ui.core.Control.prototype.placeAt Control.prototype.placeAt }
29665
29702
  * or use the API of a `UIArea` as reachable via {@link sap.ui.core.Control.prototype.getUIArea Control.prototype.getUIArea}.
29666
29703
  */
29667
29704
  size: int;
@@ -29676,8 +29713,8 @@ declare namespace sap {
29676
29713
  * **Note**: The returned object is created by a call to `Object.create(null)`, and therefore lacks all
29677
29714
  * methods of `Object.prototype`, e.g. `toString` etc.
29678
29715
  *
29679
- * @deprecated (since 1.120) - without a replacement. Applications should not be interested in the set of
29680
- * all `UIArea`s. They should only assign controls to them, by using {@link sap.ui.core.Control.prototype.placeAt Control.prototype.placeAt }
29716
+ * @deprecated As of version 1.120. without a replacement. Applications should not be interested in the
29717
+ * set of all `UIArea`s. They should only assign controls to them, by using {@link sap.ui.core.Control.prototype.placeAt Control.prototype.placeAt }
29681
29718
  * or use the API of a `UIArea` as reachable via {@link sap.ui.core.Control.prototype.getUIArea Control.prototype.getUIArea}.
29682
29719
  *
29683
29720
  * @returns Object with all UIAreas, keyed by their ID
@@ -29706,8 +29743,8 @@ declare namespace sap {
29706
29743
  * in the array is not specified and might change between calls (over time and across different versions
29707
29744
  * of UI5).
29708
29745
  *
29709
- * @deprecated (since 1.120) - without a replacement. Applications should not be interested in the set of
29710
- * all `UIArea`s. They should only assign controls to them, by using {@link sap.ui.core.Control.prototype.placeAt Control.prototype.placeAt }
29746
+ * @deprecated As of version 1.120. without a replacement. Applications should not be interested in the
29747
+ * set of all `UIArea`s. They should only assign controls to them, by using {@link sap.ui.core.Control.prototype.placeAt Control.prototype.placeAt }
29711
29748
  * or use the API of a `UIArea` as reachable via {@link sap.ui.core.Control.prototype.getUIArea Control.prototype.getUIArea}.
29712
29749
  *
29713
29750
  * @returns Array of UIAreas matching the predicate; order is undefined and might change in newer versions
@@ -29745,8 +29782,8 @@ declare namespace sap {
29745
29782
  * that the implementation of `callback` sees, depends on the usual resolution mechanism. E.g. when `callback`
29746
29783
  * was bound to some context object, that object wins over the given `thisArg`.
29747
29784
  *
29748
- * @deprecated (since 1.120) - without a replacement. Applications should not be interested in the set of
29749
- * all `UIArea`s. They should only assign controls to them, by using {@link sap.ui.core.Control.prototype.placeAt Control.prototype.placeAt }
29785
+ * @deprecated As of version 1.120. without a replacement. Applications should not be interested in the
29786
+ * set of all `UIArea`s. They should only assign controls to them, by using {@link sap.ui.core.Control.prototype.placeAt Control.prototype.placeAt }
29750
29787
  * or use the API of a `UIArea` as reachable via {@link sap.ui.core.Control.prototype.getUIArea Control.prototype.getUIArea}.
29751
29788
  */
29752
29789
  forEach(
@@ -29765,7 +29802,7 @@ declare namespace sap {
29765
29802
  * When the ID is `null` or `undefined` or when there's no UIArea with the given ID, then `undefined` is
29766
29803
  * returned.
29767
29804
  *
29768
- * @deprecated (since 1.120) - without a replacement. Applications should not be interested in a certain
29805
+ * @deprecated As of version 1.120. without a replacement. Applications should not be interested in a certain
29769
29806
  * `UIArea`. They should only assign controls to them, by using {@link sap.ui.core.Control.prototype.placeAt Control.prototype.placeAt }
29770
29807
  * or use the API of a `UIArea` as reachable via {@link sap.ui.core.Control.prototype.getUIArea Control.prototype.getUIArea}.
29771
29808
  *
@@ -30062,11 +30099,14 @@ declare namespace sap {
30062
30099
  /**
30063
30100
  * A response handler function that will be called when an incoming request matches `method` and `path`.
30064
30101
  * The first parameter of the handler will be a `Response` object which can be used to respond on the request.
30102
+ * A truthy return value indicates that the request handler has processed the request, meaning that no further
30103
+ * request handlers are called. A falsy return value means that further request handlers with a matching
30104
+ * path are called.
30065
30105
  */
30066
30106
  response: (
30067
30107
  p1: sap.ui.core.util.MockServer.Response,
30068
30108
  p2: any
30069
- ) => void;
30109
+ ) => boolean;
30070
30110
  };
30071
30111
  }
30072
30112
 
@@ -30242,7 +30282,7 @@ declare namespace sap {
30242
30282
  /**
30243
30283
  * Describes the settings that can be provided to the Export constructor.
30244
30284
  *
30245
- * @deprecated (since 1.73) - replaced by the export functionality of the `sap.ui.export` library.
30285
+ * @deprecated As of version 1.73. replaced by the export functionality of the `sap.ui.export` library.
30246
30286
  */
30247
30287
  interface $ExportSettings extends sap.ui.core.$ControlSettings {
30248
30288
  /**
@@ -30272,7 +30312,7 @@ declare namespace sap {
30272
30312
  /**
30273
30313
  * Describes the settings that can be provided to the ExportCell constructor.
30274
30314
  *
30275
- * @deprecated (since 1.73) - replaced by the export functionality of the `sap.ui.export` library.
30315
+ * @deprecated As of version 1.73. replaced by the export functionality of the `sap.ui.export` library.
30276
30316
  */
30277
30317
  interface $ExportCellSettings extends sap.ui.core.$ElementSettings {
30278
30318
  /**
@@ -30284,7 +30324,7 @@ declare namespace sap {
30284
30324
  /**
30285
30325
  * Describes the settings that can be provided to the ExportColumn constructor.
30286
30326
  *
30287
- * @deprecated (since 1.73) - replaced by the export functionality of the `sap.ui.export` library.
30327
+ * @deprecated As of version 1.73. replaced by the export functionality of the `sap.ui.export` library.
30288
30328
  */
30289
30329
  interface $ExportColumnSettings
30290
30330
  extends sap.ui.base.$ManagedObjectSettings {
@@ -30302,7 +30342,7 @@ declare namespace sap {
30302
30342
  /**
30303
30343
  * Describes the settings that can be provided to the ExportRow constructor.
30304
30344
  *
30305
- * @deprecated (since 1.73) - replaced by the export functionality of the `sap.ui.export` library.
30345
+ * @deprecated As of version 1.73. replaced by the export functionality of the `sap.ui.export` library.
30306
30346
  */
30307
30347
  interface $ExportRowSettings
30308
30348
  extends sap.ui.base.$ManagedObjectSettings {
@@ -30319,7 +30359,7 @@ declare namespace sap {
30319
30359
  /**
30320
30360
  * Describes the settings that can be provided to the ExportType constructor.
30321
30361
  *
30322
- * @deprecated (since 1.73) - replaced by the export functionality of the `sap.ui.export` library.
30362
+ * @deprecated As of version 1.73. replaced by the export functionality of the `sap.ui.export` library.
30323
30363
  */
30324
30364
  interface $ExportTypeSettings
30325
30365
  extends sap.ui.base.$ManagedObjectSettings {
@@ -30352,7 +30392,7 @@ declare namespace sap {
30352
30392
  /**
30353
30393
  * Describes the settings that can be provided to the ExportTypeCSV constructor.
30354
30394
  *
30355
- * @deprecated (since 1.73) - replaced by the export functionality of the `sap.ui.export` library.
30395
+ * @deprecated As of version 1.73. replaced by the export functionality of the `sap.ui.export` library.
30356
30396
  */
30357
30397
  interface $ExportTypeCSVSettings
30358
30398
  extends sap.ui.core.util.$ExportTypeSettings {
@@ -30450,7 +30490,7 @@ declare namespace sap {
30450
30490
  * it in other programs / applications.
30451
30491
  *
30452
30492
  * @since 1.22.0
30453
- * @deprecated (since 1.73) - replaced by the export functionality of the `sap.ui.export` library.
30493
+ * @deprecated As of version 1.73. replaced by the export functionality of the `sap.ui.export` library.
30454
30494
  */
30455
30495
  class Export extends sap.ui.core.Control {
30456
30496
  /**
@@ -30775,7 +30815,7 @@ declare namespace sap {
30775
30815
  * / {@link sap.ui.core.util.Export Export}.
30776
30816
  *
30777
30817
  * @since 1.22.0
30778
- * @deprecated (since 1.73) - replaced by the export functionality of the `sap.ui.export` library.
30818
+ * @deprecated As of version 1.73. replaced by the export functionality of the `sap.ui.export` library.
30779
30819
  */
30780
30820
  class ExportCell extends sap.ui.core.Element {
30781
30821
  /**
@@ -30870,7 +30910,7 @@ declare namespace sap {
30870
30910
  * Can have a name and a cell template.
30871
30911
  *
30872
30912
  * @since 1.22.0
30873
- * @deprecated (since 1.73) - replaced by the export functionality of the `sap.ui.export` library.
30913
+ * @deprecated As of version 1.73. replaced by the export functionality of the `sap.ui.export` library.
30874
30914
  */
30875
30915
  class ExportColumn extends sap.ui.base.ManagedObject {
30876
30916
  /**
@@ -30990,7 +31030,7 @@ declare namespace sap {
30990
31030
  * Internally used in {@link sap.ui.core.util.Export Export}.
30991
31031
  *
30992
31032
  * @since 1.22.0
30993
- * @deprecated (since 1.73) - replaced by the export functionality of the `sap.ui.export` library.
31033
+ * @deprecated As of version 1.73. replaced by the export functionality of the `sap.ui.export` library.
30994
31034
  */
30995
31035
  class ExportRow extends sap.ui.base.ManagedObject {
30996
31036
  /**
@@ -31137,7 +31177,7 @@ declare namespace sap {
31137
31177
  * Base export type. Subclasses can be used for {@link sap.ui.core.util.Export Export}.
31138
31178
  *
31139
31179
  * @since 1.22.0
31140
- * @deprecated (since 1.73) - replaced by the export functionality of the `sap.ui.export` library.
31180
+ * @deprecated As of version 1.73. replaced by the export functionality of the `sap.ui.export` library.
31141
31181
  */
31142
31182
  class ExportType extends sap.ui.base.ManagedObject {
31143
31183
  /**
@@ -31386,7 +31426,7 @@ declare namespace sap {
31386
31426
  * be cut off.
31387
31427
  *
31388
31428
  * @since 1.22.0
31389
- * @deprecated (since 1.73) - replaced by the export functionality of the `sap.ui.export` library.
31429
+ * @deprecated As of version 1.73. replaced by the export functionality of the `sap.ui.export` library.
31390
31430
  */
31391
31431
  class ExportTypeCSV extends sap.ui.core.util.ExportType {
31392
31432
  /**
@@ -31993,7 +32033,7 @@ declare namespace sap {
31993
32033
  /**
31994
32034
  * Describes the settings that can be provided to the WebComponent constructor.
31995
32035
  *
31996
- * @experimental (since 1.118.0) - The API might change. It is not intended for productive usage yet!
32036
+ * @experimental As of version 1.118.0. The API might change. It is not intended for productive usage yet!
31997
32037
  */
31998
32038
  interface $WebComponentSettings extends sap.ui.core.$ControlSettings {}
31999
32039
 
@@ -32004,7 +32044,7 @@ declare namespace sap {
32004
32044
  * controls in the dedicated slots of the Web Component.
32005
32045
  *
32006
32046
  * @since 1.118.0
32007
- * @experimental (since 1.118.0) - The API might change. It is not intended for productive usage yet!
32047
+ * @experimental As of version 1.118.0. The API might change. It is not intended for productive usage yet!
32008
32048
  */
32009
32049
  class WebComponent extends sap.ui.core.Control {
32010
32050
  /**
@@ -32106,7 +32146,7 @@ declare namespace sap {
32106
32146
  }
32107
32147
  /**
32108
32148
  * @since 1.118.0
32109
- * @experimental (since 1.118.0) - The API might change. It is not intended for productive usage yet!
32149
+ * @experimental As of version 1.118.0. The API might change. It is not intended for productive usage yet!
32110
32150
  */
32111
32151
  class WebComponentMetadata extends sap.ui.core.ElementMetadata {
32112
32152
  /**
@@ -32766,7 +32806,7 @@ declare namespace sap {
32766
32806
  * Implementing this interface allows a control to be accessible via access keys.
32767
32807
  *
32768
32808
  * @since 1.104
32769
- * @experimental (since 1.104)
32809
+ * @experimental As of version 1.104.
32770
32810
  */
32771
32811
  interface IAccessKeySupport {
32772
32812
  __implements__sap_ui_core_IAccessKeySupport: boolean;
@@ -32776,21 +32816,21 @@ declare namespace sap {
32776
32816
  * method is used.
32777
32817
  *
32778
32818
  * @since 1.104
32779
- * @experimental (since 1.104)
32819
+ * @experimental As of version 1.104.
32780
32820
  */
32781
32821
  getAccessKeysFocusTarget?(): void;
32782
32822
  /**
32783
32823
  * If implemented called when access keys feature is enabled and highlighting is over
32784
32824
  *
32785
32825
  * @since 1.104
32786
- * @experimental (since 1.104)
32826
+ * @experimental As of version 1.104.
32787
32827
  */
32788
32828
  onAccKeysHighlightEnd?(): void;
32789
32829
  /**
32790
32830
  * If implemented called when access keys feature is enabled and highlighting is ongoing
32791
32831
  *
32792
32832
  * @since 1.104
32793
- * @experimental (since 1.104)
32833
+ * @experimental As of version 1.104.
32794
32834
  */
32795
32835
  onAccKeysHighlightStart?(): void;
32796
32836
  }
@@ -33299,8 +33339,8 @@ declare namespace sap {
33299
33339
  /**
33300
33340
  * Whether the control is currently in blocked state.
33301
33341
  *
33302
- * @deprecated (since 1.69) - The blocked property is deprecated. There is no accessibility support for
33303
- * this property. Blocked controls should not be used inside Controls, which rely on keyboard navigation,
33342
+ * @deprecated As of version 1.69. The blocked property is deprecated. There is no accessibility support
33343
+ * for this property. Blocked controls should not be used inside Controls, which rely on keyboard navigation,
33304
33344
  * e.g. List controls.
33305
33345
  */
33306
33346
  blocked?:
@@ -33816,7 +33856,7 @@ declare namespace sap {
33816
33856
  /**
33817
33857
  * Describes the settings that can be provided to the LocalBusyIndicator constructor.
33818
33858
  *
33819
- * @deprecated (since 1.14.2) - The LocalBusyIndicator Control is not needed anymore by the new implementation
33859
+ * @deprecated As of version 1.14.2. The LocalBusyIndicator Control is not needed anymore by the new implementation
33820
33860
  * of the LBI. Hence, it is not used anymore.
33821
33861
  */
33822
33862
  interface $LocalBusyIndicatorSettings
@@ -33843,7 +33883,7 @@ declare namespace sap {
33843
33883
  /**
33844
33884
  * Describes the settings that can be provided to the Message constructor.
33845
33885
  *
33846
- * @deprecated (since 1.120) - Please use {@link sap.ui.core.message.Message} instead.
33886
+ * @deprecated As of version 1.120. Please use {@link sap.ui.core.message.Message} instead.
33847
33887
  */
33848
33888
  interface $MessageSettings extends sap.ui.core.$ElementSettings {
33849
33889
  /**
@@ -33897,7 +33937,7 @@ declare namespace sap {
33897
33937
  /**
33898
33938
  * Describes the settings that can be provided to the ScrollBar constructor.
33899
33939
  *
33900
- * @deprecated (since 1.56) - the concept has been discarded.
33940
+ * @deprecated As of version 1.56. the concept has been discarded.
33901
33941
  */
33902
33942
  interface $ScrollBarSettings extends sap.ui.core.$ControlSettings {
33903
33943
  /**
@@ -34115,8 +34155,8 @@ declare namespace sap {
34115
34155
  /**
34116
34156
  * Describes the settings that can be provided to the XMLComposite constructor.
34117
34157
  *
34118
- * @deprecated (since 1.88) - use {@link topic:c1512f6ce1454ff1913e3857bad56392 Standard Composite Controls}
34119
- * @experimental (since 1.56.0)
34158
+ * @deprecated As of version 1.88. use {@link topic:c1512f6ce1454ff1913e3857bad56392 Standard Composite Controls}
34159
+ * @experimental As of version 1.56.0.
34120
34160
  */
34121
34161
  interface $XMLCompositeSettings extends sap.ui.core.$ControlSettings {
34122
34162
  /**
@@ -34426,10 +34466,10 @@ declare namespace sap {
34426
34466
  *
34427
34467
  * Values of boolean parameters are case insensitive where "true" and "x" are interpreted as true.
34428
34468
  *
34429
- * @deprecated (since 1.120) - There's no single replacement for this class. Instead, several facades have
34430
- * been created for different topics, e.g. {@link module:sap/base/i18n/Localization Localization} for settings
34431
- * related to localization, {@link module:sap/base/i18n/Formatting Formatting} for settings related to data
34432
- * formatting, {@link module:sap/ui/core/Theming Theming} for theming related settings, {@link module:sap/ui/core/ControlBehavior ControlBehavior }
34469
+ * @deprecated As of version 1.120. There's no single replacement for this class. Instead, several facades
34470
+ * have been created for different topics, e.g. {@link module:sap/base/i18n/Localization Localization} for
34471
+ * settings related to localization, {@link module:sap/base/i18n/Formatting Formatting} for settings related
34472
+ * to data formatting, {@link module:sap/ui/core/Theming Theming} for theming related settings, {@link module:sap/ui/core/ControlBehavior ControlBehavior }
34433
34473
  * for settings that are typically required when implementing the behavior of a control, {@link module:sap/ui/security/Security Security }
34434
34474
  * for settings around security.
34435
34475
  *
@@ -34449,7 +34489,7 @@ declare namespace sap {
34449
34489
  * API can be provided in a nested object with name `formatSettings`.
34450
34490
  *
34451
34491
  * @since 1.38.6
34452
- * @deprecated (since 1.120) - without a replacement. As the different settings have been spread across
34492
+ * @deprecated As of version 1.120. without a replacement. As the different settings have been spread across
34453
34493
  * multiple new APIs (see {@link sap.ui.core.Configuration the deprecation hint for this class}), a common
34454
34494
  * API for changing multiple settings no longer made sense.
34455
34495
  *
@@ -34492,7 +34532,7 @@ declare namespace sap {
34492
34532
  * Returns whether the accessibility mode is enabled or not.
34493
34533
  *
34494
34534
  * @since 1.20
34495
- * @deprecated (since 1.120) - Please use {@link module:sap/ui/core/ControlBehavior.isAccessibilityEnabled ControlBehavior.isAccessibilityEnabled }
34535
+ * @deprecated As of version 1.120. Please use {@link module:sap/ui/core/ControlBehavior.isAccessibilityEnabled ControlBehavior.isAccessibilityEnabled }
34496
34536
  * instead.
34497
34537
  *
34498
34538
  * @returns whether the accessibility mode is enabled or not
@@ -34502,7 +34542,7 @@ declare namespace sap {
34502
34542
  * Returns the list of active terminologies defined via the Configuration.
34503
34543
  *
34504
34544
  * @since 1.77.0
34505
- * @deprecated (since 1.118) - Please use {@link module:sap/base/i18n/Localization.getActiveTerminologies Localization.getActiveTerminologies }
34545
+ * @deprecated As of version 1.118. Please use {@link module:sap/base/i18n/Localization.getActiveTerminologies Localization.getActiveTerminologies }
34506
34546
  * instead.
34507
34547
  *
34508
34548
  * @returns if no active terminologies are set, the default value `undefined` is returned.
@@ -34511,7 +34551,7 @@ declare namespace sap {
34511
34551
  /**
34512
34552
  * URL of the allowlist service.
34513
34553
  *
34514
- * @deprecated (since 1.120) - Please use {@link module:sap/ui/security/Security.getAllowlistService Security.getAllowlistService }
34554
+ * @deprecated As of version 1.120. Please use {@link module:sap/ui/security/Security.getAllowlistService Security.getAllowlistService }
34515
34555
  * instead.
34516
34556
  *
34517
34557
  * @returns allowlist service URL
@@ -34520,7 +34560,7 @@ declare namespace sap {
34520
34560
  /**
34521
34561
  * Returns whether the animations are globally used.
34522
34562
  *
34523
- * @deprecated (since 1.50) - Since 1.20, please use {@link module:sap/ui/core/ControlBehavior.getAnimationMode ControlBehavior.getAnimationMode }
34563
+ * @deprecated As of version 1.50. Since 1.20, please use {@link module:sap/ui/core/ControlBehavior.getAnimationMode ControlBehavior.getAnimationMode }
34524
34564
  * instead.
34525
34565
  *
34526
34566
  * @returns whether the animations are globally used
@@ -34530,7 +34570,7 @@ declare namespace sap {
34530
34570
  * Returns the current animation mode.
34531
34571
  *
34532
34572
  * @since 1.50.0
34533
- * @deprecated (since 1.120) - Please use {@link module:sap/ui/core/ControlBehavior.getAnimationMode ControlBehavior.getAnimationMode }
34573
+ * @deprecated As of version 1.120. Please use {@link module:sap/ui/core/ControlBehavior.getAnimationMode ControlBehavior.getAnimationMode }
34534
34574
  * instead.
34535
34575
  *
34536
34576
  * @returns The current animationMode
@@ -34539,7 +34579,8 @@ declare namespace sap {
34539
34579
  /**
34540
34580
  * Base URLs to AppCacheBuster ETag-Index files.
34541
34581
  *
34542
- * @deprecated (since 1.120) - without a replacement. Was only used within the implementation of the `AppCacheBuster`.
34582
+ * @deprecated As of version 1.120. without a replacement. Was only used within the implementation of the
34583
+ * `AppCacheBuster`.
34543
34584
  *
34544
34585
  * @returns array of base URLs
34545
34586
  */
@@ -34547,7 +34588,8 @@ declare namespace sap {
34547
34588
  /**
34548
34589
  * The loading mode (sync|async|batch) of the AppCacheBuster (sync is default)
34549
34590
  *
34550
- * @deprecated (since 1.120) - without a replacement. Was only used within the implementation of the `AppCacheBuster`.
34591
+ * @deprecated As of version 1.120. without a replacement. Was only used within the implementation of the
34592
+ * `AppCacheBuster`.
34551
34593
  *
34552
34594
  * @returns "sync" | "async" | "batch"
34553
34595
  */
@@ -34555,7 +34597,7 @@ declare namespace sap {
34555
34597
  /**
34556
34598
  * The name of the application to start or empty.
34557
34599
  *
34558
- * @deprecated (since 1.15.1) - Please use {@link module:sap/ui/core/ComponentSupport ComponentSupport }
34600
+ * @deprecated As of version 1.15.1. Please use {@link module:sap/ui/core/ComponentSupport ComponentSupport }
34559
34601
  * instead. See also {@link topic:82a0fcecc3cb427c91469bc537ebdddf Declarative API for Initial Components}.
34560
34602
  *
34561
34603
  * @returns name of the application
@@ -34565,7 +34607,7 @@ declare namespace sap {
34565
34607
  * Returns whether the framework automatically adds the ARIA role 'application' to the HTML body or not.
34566
34608
  *
34567
34609
  * @since 1.27.0
34568
- * @deprecated (since 1.120) - without a replacement. Was only used in the implementation of the framework
34610
+ * @deprecated As of version 1.120. without a replacement. Was only used in the implementation of the framework
34569
34611
  * itself.
34570
34612
  *
34571
34613
  * @returns Wether the ARIA role 'application' should be added to the HTML body or not
@@ -34578,7 +34620,7 @@ declare namespace sap {
34578
34620
  * calendar type is determined by checking the format settings and current locale.
34579
34621
  *
34580
34622
  * @since 1.28.6
34581
- * @deprecated (since 1.120) - Please use {@link module:sap/base/i18n/Formatting.getCalendarType Formatting.getCalendarType }
34623
+ * @deprecated As of version 1.120. Please use {@link module:sap/base/i18n/Formatting.getCalendarType Formatting.getCalendarType }
34582
34624
  * instead.
34583
34625
  *
34584
34626
  * @returns the current calendar type, e.g. `Gregorian`
@@ -34589,7 +34631,7 @@ declare namespace sap {
34589
34631
  * calendar week of the year, see {@link sap.ui.core.date.CalendarWeekNumbering}.
34590
34632
  *
34591
34633
  * @since 1.113.0
34592
- * @deprecated (since 1.120) - Please use {@link module:sap/base/i18n/Formatting.getCalendarWeekNumbering Formatting.getCalendarWeekNumbering }
34634
+ * @deprecated As of version 1.120. Please use {@link module:sap/base/i18n/Formatting.getCalendarWeekNumbering Formatting.getCalendarWeekNumbering }
34593
34635
  * instead.
34594
34636
  *
34595
34637
  * @returns The calendar week numbering algorithm
@@ -34598,7 +34640,7 @@ declare namespace sap {
34598
34640
  /**
34599
34641
  * Returns the used compatibility version for the given feature.
34600
34642
  *
34601
- * @deprecated (since 1.119) - without a replacement. All features that have been controlled by a compatibility
34643
+ * @deprecated As of version 1.119. without a replacement. All features that have been controlled by a compatibility
34602
34644
  * version in UI5 1.x will abandon their legacy behavior, starting with the next major version. In other
34603
34645
  * words, they will behave as if compatibility version "edge" was configured. Due to this, no more access
34604
34646
  * to the compatibility version will be required starting with the next major version.
@@ -34614,7 +34656,7 @@ declare namespace sap {
34614
34656
  /**
34615
34657
  * Returns whether the page runs in full debug mode.
34616
34658
  *
34617
- * @deprecated (since 1.120) - without a replacement. All debug mode functionality is implemented within
34659
+ * @deprecated As of version 1.120. without a replacement. All debug mode functionality is implemented within
34618
34660
  * the framework and should be transparent for application code. There's no need for a public accessor method.
34619
34661
  *
34620
34662
  * @returns Whether the page runs in full debug mode
@@ -34628,7 +34670,7 @@ declare namespace sap {
34628
34670
  * The contract of the module is not defined by the configuration API.
34629
34671
  *
34630
34672
  * @since 1.102
34631
- * @deprecated (since 1.120) - without a replacement. The configuration is only relevant for the `sap.ui.export`
34673
+ * @deprecated As of version 1.120. without a replacement. The configuration is only relevant for the `sap.ui.export`
34632
34674
  * library.
34633
34675
  *
34634
34676
  * @returns Module name (ID) of a file share support module
@@ -34637,8 +34679,8 @@ declare namespace sap {
34637
34679
  /**
34638
34680
  * Returns whether the Fiori2Adaptation is on.
34639
34681
  *
34640
- * @deprecated (since 1.120) - without a replacement. All the Fiori 2.0 adaptation logic is handled by the
34641
- * framework, there should be no need for apps to know about it.
34682
+ * @deprecated As of version 1.120. without a replacement. All the Fiori 2.0 adaptation logic is handled
34683
+ * by the framework, there should be no need for apps to know about it.
34642
34684
  *
34643
34685
  * @returns false - no adaptation, true - full adaptation, comma-separated list - partial adaptation Possible
34644
34686
  * values: style, collapse, title, back, hierarchy
@@ -34649,8 +34691,8 @@ declare namespace sap {
34649
34691
  * are not called.
34650
34692
  *
34651
34693
  * @since 1.60.0
34652
- * @deprecated (since 1.120) - without a replacement. Was only used by the Flexibility feature which now
34653
- * resolves this on its own.
34694
+ * @deprecated As of version 1.120. without a replacement. Was only used by the Flexibility feature which
34695
+ * now resolves this on its own.
34654
34696
  *
34655
34697
  * @returns Flexibility services configuration
34656
34698
  */
@@ -34659,7 +34701,7 @@ declare namespace sap {
34659
34701
  * Returns the format locale string with language and region code. Falls back to language configuration,
34660
34702
  * in case it has not been explicitly defined.
34661
34703
  *
34662
- * @deprecated (since 1.120) - Please use {@link module:sap/base/i18n/Formatting.getLanguageTag Formatting.getLanguageTag }
34704
+ * @deprecated As of version 1.120. Please use {@link module:sap/base/i18n/Formatting.getLanguageTag Formatting.getLanguageTag }
34663
34705
  * instead.
34664
34706
  *
34665
34707
  * @returns the format locale string with language and country code
@@ -34668,7 +34710,7 @@ declare namespace sap {
34668
34710
  /**
34669
34711
  * Returns a configuration object that bundles the format settings of UI5.
34670
34712
  *
34671
- * @deprecated (since 1.120) - Please use {@link module:sap/base/i18n/Formatting Formatting} instead.
34713
+ * @deprecated As of version 1.120. Please use {@link module:sap/base/i18n/Formatting Formatting} instead.
34672
34714
  *
34673
34715
  * @returns A FormatSettings object.
34674
34716
  */
@@ -34676,7 +34718,7 @@ declare namespace sap {
34676
34718
  /**
34677
34719
  * frameOptions mode (allow/deny/trusted).
34678
34720
  *
34679
- * @deprecated (since 1.120) - Please use {@link module:sap/ui/security/Security.getFrameOptions Security.getFrameOptions }
34721
+ * @deprecated As of version 1.120. Please use {@link module:sap/ui/security/Security.getFrameOptions Security.getFrameOptions }
34680
34722
  * instead.
34681
34723
  *
34682
34724
  * @returns frameOptions mode
@@ -34687,10 +34729,10 @@ declare namespace sap {
34687
34729
  *
34688
34730
  * Has only an effect when the sap-ui-debug module has been loaded.
34689
34731
  *
34690
- * @deprecated (since 1.120) - without a replacement. The inspect option is related to the very old sap-ui-debug
34691
- * module. As there are now much better development tools (e.g. the UI5 Inpsector browser extension), this
34692
- * option has been deprecated and the sap-ui-debug feature might be removed in future major versions of
34693
- * UI5.
34732
+ * @deprecated As of version 1.120. without a replacement. The inspect option is related to the very old
34733
+ * sap-ui-debug module. As there are now much better development tools (e.g. the UI5 Inpsector browser extension),
34734
+ * this option has been deprecated and the sap-ui-debug feature might be removed in future major versions
34735
+ * of UI5.
34694
34736
  *
34695
34737
  * @returns whether the UI5 control inspector is displayed
34696
34738
  */
@@ -34725,7 +34767,7 @@ declare namespace sap {
34725
34767
  * For a normalized BCP47 tag, call {@link #.getLanguageTag Configuration.getLanguageTag} or call {@link #.getLocale Configuration.getLocale }
34726
34768
  * to get a {@link sap.ui.core.Locale Locale} object matching the language.
34727
34769
  *
34728
- * @deprecated (since 1.119) - Please use {@link module:sap/base/i18n/Localization.getLanguage Localization.getLanguage }
34770
+ * @deprecated As of version 1.119. Please use {@link module:sap/base/i18n/Localization.getLanguage Localization.getLanguage }
34729
34771
  * instead.
34730
34772
  *
34731
34773
  * @returns Language string as configured
@@ -34738,7 +34780,7 @@ declare namespace sap {
34738
34780
  *
34739
34781
  * Retrieves the modern locale, e.g. sr-Latn (Serbian (Latin)), he (Hebrew), yi (Yiddish)
34740
34782
  *
34741
- * @deprecated (since 1.119) - Please use {@link module:sap/base/i18n/Localization.getLanguageTag Localization.getLanguageTag }
34783
+ * @deprecated As of version 1.119. Please use {@link module:sap/base/i18n/Localization.getLanguageTag Localization.getLanguageTag }
34742
34784
  * instead.
34743
34785
  *
34744
34786
  * @returns The language tag for the current language, conforming to BCP47
@@ -34749,7 +34791,7 @@ declare namespace sap {
34749
34791
  *
34750
34792
  * The Locale is derived from the {@link #.getLanguage language} property.
34751
34793
  *
34752
- * @deprecated (since 1.119) - Please use {@link module:sap/base/i18n/Localization.getLanguageTag Localization.getLanguageTag }
34794
+ * @deprecated As of version 1.119. Please use {@link module:sap/base/i18n/Localization.getLanguageTag Localization.getLanguageTag }
34753
34795
  * instead.
34754
34796
  *
34755
34797
  * @returns The locale
@@ -34759,7 +34801,7 @@ declare namespace sap {
34759
34801
  * Flag whether a Component should load the manifest first.
34760
34802
  *
34761
34803
  * @since 1.33.0
34762
- * @deprecated (since 1.120) - 'manifest-first' is the default for the {@link sap.ui.core.Component.create Component.create }
34804
+ * @deprecated As of version 1.120. 'manifest-first' is the default for the {@link sap.ui.core.Component.create Component.create }
34763
34805
  * factory.
34764
34806
  *
34765
34807
  * @returns true if a Component should load the manifest first
@@ -34775,8 +34817,8 @@ declare namespace sap {
34775
34817
  /**
34776
34818
  * Returns whether there should be an exception on any duplicate element IDs.
34777
34819
  *
34778
- * @deprecated (since 1.120) - without a replacement. Future major versions of UI5 will always report duplicate
34779
- * IDs as an error as the framework heavily relies on their uniqueness.
34820
+ * @deprecated As of version 1.120. without a replacement. Future major versions of UI5 will always report
34821
+ * duplicate IDs as an error as the framework heavily relies on their uniqueness.
34780
34822
  *
34781
34823
  * @returns whether there should be an exception on any duplicate element IDs
34782
34824
  */
@@ -34784,8 +34826,8 @@ declare namespace sap {
34784
34826
  /**
34785
34827
  * Returns whether the text origin information is collected.
34786
34828
  *
34787
- * @deprecated (since 1.120) - The origin info was intended as a mean to track down translation issues to
34788
- * the origin of a translated text. Meanwhile, with the pseudo logon language 3Q, a similar, more lightweight
34829
+ * @deprecated As of version 1.120. The origin info was intended as a mean to track down translation issues
34830
+ * to the origin of a translated text. Meanwhile, with the pseudo logon language 3Q, a similar, more lightweight
34789
34831
  * feature exists for use with OpenUI5 or SAPUI5 libraries.
34790
34832
  *
34791
34833
  * @returns whether the text info is collected
@@ -34794,8 +34836,8 @@ declare namespace sap {
34794
34836
  /**
34795
34837
  * The name of the root component to start or empty.
34796
34838
  *
34797
- * @deprecated (since 1.95) - Please use {@link module:sap/ui/core/ComponentSupport ComponentSupport} instead.
34798
- * See also {@link topic:82a0fcecc3cb427c91469bc537ebdddf Declarative API for Initial Components}.
34839
+ * @deprecated As of version 1.95. Please use {@link module:sap/ui/core/ComponentSupport ComponentSupport }
34840
+ * instead. See also {@link topic:82a0fcecc3cb427c91469bc537ebdddf Declarative API for Initial Components}.
34799
34841
  *
34800
34842
  * @returns name of the root component
34801
34843
  */
@@ -34806,7 +34848,7 @@ declare namespace sap {
34806
34848
  * If no mode has been explicitly set (neither `true` nor `false`), the mode is derived from the current
34807
34849
  * language setting.
34808
34850
  *
34809
- * @deprecated (since 1.119) - Please use {@link module:sap/base/i18n/Localization.getRTL Localization.getRTL }
34851
+ * @deprecated As of version 1.119. Please use {@link module:sap/base/i18n/Localization.getRTL Localization.getRTL }
34810
34852
  * instead.
34811
34853
  *
34812
34854
  * @returns whether the page uses the RTL text direction
@@ -34817,7 +34859,7 @@ declare namespace sap {
34817
34859
  *
34818
34860
  * It will be returned in uppercase. e.g. "EN", "DE"
34819
34861
  *
34820
- * @deprecated (since 1.119) - Please use {@link module:sap/base/i18n/Localization.getSAPLogonLanguage Localization.getSAPLogonLanguage }
34862
+ * @deprecated As of version 1.119. Please use {@link module:sap/base/i18n/Localization.getSAPLogonLanguage Localization.getSAPLogonLanguage }
34821
34863
  * instead.
34822
34864
  *
34823
34865
  * @returns The SAP logon language code for the current language
@@ -34828,7 +34870,7 @@ declare namespace sap {
34828
34870
  * See:
34829
34871
  * {@link #.setSecurityTokenHandlers}
34830
34872
  *
34831
- * @deprecated (since 1.120) - Please use {@link module:sap/ui/security/Security.getSecurityTokenHandlers Security.getSecurityTokenHandlers }
34873
+ * @deprecated As of version 1.120. Please use {@link module:sap/ui/security/Security.getSecurityTokenHandlers Security.getSecurityTokenHandlers }
34832
34874
  * instead.
34833
34875
  *
34834
34876
  * @returns the security token handlers (an empty array if there are none)
@@ -34843,7 +34885,8 @@ declare namespace sap {
34843
34885
  * via TechnicalInfo.
34844
34886
  *
34845
34887
  * @since 1.106.0
34846
- * @deprecated (since 1.120) - without a replacment. The configuration is only relevant within the framework.
34888
+ * @deprecated As of version 1.120. without a replacment. The configuration is only relevant within the
34889
+ * framework.
34847
34890
  *
34848
34891
  * @returns Whether statistics are enabled
34849
34892
  */
@@ -34851,7 +34894,8 @@ declare namespace sap {
34851
34894
  /**
34852
34895
  * Returns the theme name
34853
34896
  *
34854
- * @deprecated (since 1.119) - Please use {@link module:sap/ui/core/Theming.getTheme Theming.getTheme} instead.
34897
+ * @deprecated As of version 1.119. Please use {@link module:sap/ui/core/Theming.getTheme Theming.getTheme }
34898
+ * instead.
34855
34899
  *
34856
34900
  * @returns the theme name
34857
34901
  */
@@ -34859,7 +34903,7 @@ declare namespace sap {
34859
34903
  /**
34860
34904
  * Retrieves the configured IANA timezone ID.
34861
34905
  *
34862
- * @deprecated (since 1.119) - Please use {@link module:sap/base/i18n/Localization.getTimezone Localization.getTimezone }
34906
+ * @deprecated As of version 1.119. Please use {@link module:sap/base/i18n/Localization.getTimezone Localization.getTimezone }
34863
34907
  * instead.
34864
34908
  *
34865
34909
  * @returns The configured IANA timezone ID, e.g. "America/New_York"
@@ -34868,7 +34912,7 @@ declare namespace sap {
34868
34912
  /**
34869
34913
  * Prefix to be used for automatically generated control IDs. Default is a double underscore "__".
34870
34914
  *
34871
- * @deprecated (since 1.119) - Please use {@link sap.ui.base.ManagedObjectMetadata.getUIDPrefix ManagedObjectMetadata.getUIDPrefix }
34915
+ * @deprecated As of version 1.119. Please use {@link sap.ui.base.ManagedObjectMetadata.getUIDPrefix ManagedObjectMetadata.getUIDPrefix }
34872
34916
  * instead.
34873
34917
  *
34874
34918
  * @returns the prefix to be used
@@ -34879,7 +34923,7 @@ declare namespace sap {
34879
34923
  *
34880
34924
  * Similar to `sap.ui.version`.
34881
34925
  *
34882
- * @deprecated (since 1.120) - Please use the async {@link module:sap/ui/VersionInfo.load VersionInfo.load }
34926
+ * @deprecated As of version 1.120. Please use the async {@link module:sap/ui/VersionInfo.load VersionInfo.load }
34883
34927
  * instead.
34884
34928
  *
34885
34929
  * @returns the version
@@ -34888,7 +34932,7 @@ declare namespace sap {
34888
34932
  /**
34889
34933
  * URL of the whitelist service.
34890
34934
  *
34891
- * @deprecated (since 1.85) - Use {@link module:sap/ui/security/Security.getAllowlistService Security.getAllowlistService }
34935
+ * @deprecated As of version 1.85. Use {@link module:sap/ui/security/Security.getAllowlistService Security.getAllowlistService }
34892
34936
  * instead. SAP strives to replace insensitive terms with inclusive language. Since APIs cannot be renamed
34893
34937
  * or immediately removed for compatibility reasons, this API has been deprecated.
34894
34938
  *
@@ -34904,7 +34948,7 @@ declare namespace sap {
34904
34948
  * the old `animation` property is set to `false`, otherwise it is set to `true`.
34905
34949
  *
34906
34950
  * @since 1.50.0
34907
- * @deprecated (since 1.120) - Please use {@link module:sap/ui/core/ControlBehavior.setAnimationMode ControlBehavior.setAnimationMode }
34951
+ * @deprecated As of version 1.120. Please use {@link module:sap/ui/core/ControlBehavior.setAnimationMode ControlBehavior.setAnimationMode }
34908
34952
  * instead.
34909
34953
  */
34910
34954
  setAnimationMode(
@@ -34918,7 +34962,7 @@ declare namespace sap {
34918
34962
  * translation texts, etc.).
34919
34963
  *
34920
34964
  * @since 1.28.6
34921
- * @deprecated (since 1.120) - Please use {@link module:sap/base/i18n/Formatting.setCalendarType Formatting.setCalendarType }
34965
+ * @deprecated As of version 1.120. Please use {@link module:sap/base/i18n/Formatting.setCalendarType Formatting.setCalendarType }
34922
34966
  * instead.
34923
34967
  *
34924
34968
  * @returns `this` to allow method chaining
@@ -34935,7 +34979,7 @@ declare namespace sap {
34935
34979
  * first calendar week of the year, see {@link sap.ui.core.date.CalendarWeekNumbering}.
34936
34980
  *
34937
34981
  * @since 1.113.0
34938
- * @deprecated (since 1.120) - Please use {@link module:sap/base/i18n/Formatting.setCalendarWeekNumbering Formatting.setCalendarWeekNumbering }
34982
+ * @deprecated As of version 1.120. Please use {@link module:sap/base/i18n/Formatting.setCalendarWeekNumbering Formatting.setCalendarWeekNumbering }
34939
34983
  * instead.
34940
34984
  *
34941
34985
  * @returns `this` to allow method chaining
@@ -34961,7 +35005,7 @@ declare namespace sap {
34961
35005
  *
34962
35006
  * **Note**: See documentation of {@link #.setLanguage} for restrictions.
34963
35007
  *
34964
- * @deprecated (since 1.120) - Please use {@link module:sap/base/i18n/Formatting.setLanguageTag Formatting.setLanguageTag }
35008
+ * @deprecated As of version 1.120. Please use {@link module:sap/base/i18n/Formatting.setLanguageTag Formatting.setLanguageTag }
34965
35009
  * instead.
34966
35010
  *
34967
35011
  * @returns `this` to allow method chaining
@@ -35018,7 +35062,7 @@ declare namespace sap {
35018
35062
  * See:
35019
35063
  * http://scn.sap.com/docs/DOC-14377
35020
35064
  *
35021
- * @deprecated (since 1.119) - Please use {@link module:sap/base/i18n/Localization.setLanguage Localization.setLanguage }
35065
+ * @deprecated As of version 1.119. Please use {@link module:sap/base/i18n/Localization.setLanguage Localization.setLanguage }
35022
35066
  * instead.
35023
35067
  *
35024
35068
  * @returns `this` to allow method chaining
@@ -35048,7 +35092,7 @@ declare namespace sap {
35048
35092
  *
35049
35093
  * **Note**: See documentation of {@link #.setLanguage} for restrictions.
35050
35094
  *
35051
- * @deprecated (since 1.119) - Please use {@link module:sap/base/i18n/Localization.setRTL Localization.setRTL }
35095
+ * @deprecated As of version 1.119. Please use {@link module:sap/base/i18n/Localization.setRTL Localization.setRTL }
35052
35096
  * instead.
35053
35097
  *
35054
35098
  * @returns `this` to allow method chaining
@@ -35064,7 +35108,7 @@ declare namespace sap {
35064
35108
  * See:
35065
35109
  * {@link #.getSecurityTokenHandlers}
35066
35110
  *
35067
- * @deprecated (since 1.120) - Please use {@link module:sap/ui/security/Security.setSecurityTokenHandlers Security.setSecurityTokenHandlers }
35111
+ * @deprecated As of version 1.120. Please use {@link module:sap/ui/security/Security.setSecurityTokenHandlers Security.setSecurityTokenHandlers }
35068
35112
  * instead.
35069
35113
  */
35070
35114
  setSecurityTokenHandlers(
@@ -35076,7 +35120,8 @@ declare namespace sap {
35076
35120
  /**
35077
35121
  * Allows setting the theme name
35078
35122
  *
35079
- * @deprecated (since 1.119) - Please use {@link module:sap/ui/core/Theming.setTheme Theming.setTheme} instead.
35123
+ * @deprecated As of version 1.119. Please use {@link module:sap/ui/core/Theming.setTheme Theming.setTheme }
35124
+ * instead.
35080
35125
  *
35081
35126
  * @returns `this` to allow method chaining
35082
35127
  */
@@ -35099,7 +35144,7 @@ declare namespace sap {
35099
35144
  * event.
35100
35145
  *
35101
35146
  * @since 1.99.0
35102
- * @deprecated (since 1.119) - Please use {@link module:sap/base/i18n/Localization.setTimezone Localization.setTimezone }
35147
+ * @deprecated As of version 1.119. Please use {@link module:sap/base/i18n/Localization.setTimezone Localization.setTimezone }
35103
35148
  * instead.
35104
35149
  *
35105
35150
  * @returns `this` to allow method chaining
@@ -35146,8 +35191,8 @@ declare namespace sap {
35146
35191
  *
35147
35192
  * `oClassInfo` might contain the same kind of information as described in {@link sap.ui.base.ManagedObject.extend}.
35148
35193
  *
35149
- * @deprecated (since 1.119) - without replacement. In future major versions, the Core no longer has a class
35150
- * nature and therefore can't be extended.
35194
+ * @deprecated As of version 1.119. without replacement. In future major versions, the Core no longer has
35195
+ * a class nature and therefore can't be extended.
35151
35196
  *
35152
35197
  * @returns The created class / constructor function
35153
35198
  */
@@ -35170,8 +35215,8 @@ declare namespace sap {
35170
35215
  /**
35171
35216
  * Returns the metadata for class `sap.ui.core.Core`.
35172
35217
  *
35173
- * @deprecated (since 1.119) - without replacement. In future major versions, the Core no longer has a class
35174
- * nature and no longer inherits from sap.ui.base.Object and therefore no longer has metadata.
35218
+ * @deprecated As of version 1.119. without replacement. In future major versions, the Core no longer has
35219
+ * a class nature and no longer inherits from sap.ui.base.Object and therefore no longer has metadata.
35175
35220
  *
35176
35221
  * @returns Metadata object describing this class
35177
35222
  */
@@ -35182,8 +35227,8 @@ declare namespace sap {
35182
35227
  * In general, applications and Controls should avoid calling this method and instead let the framework
35183
35228
  * manage any necessary rendering.
35184
35229
  *
35185
- * @deprecated (since 1.118) - without replacement. In the next major version, synchronously rendering UI
35186
- * updates is no longer supported as it can lead to unnecessary intermediate DOM updates or layout shifting
35230
+ * @deprecated As of version 1.118. without replacement. In the next major version, synchronously rendering
35231
+ * UI updates is no longer supported as it can lead to unnecessary intermediate DOM updates or layout shifting
35187
35232
  * etc. Controls should rather use invalidation and apps should not trigger rendering at all but rather
35188
35233
  * rely on the framework's automatic update mechanisms. Test code can use the test module `sap/ui/test/utils/nextUIUpdate`
35189
35234
  * as a convenient way to wait for the next asynchronous rendering.
@@ -35207,7 +35252,8 @@ declare namespace sap {
35207
35252
  * If the theme resources are not all either below this base location or with their respective libraries,
35208
35253
  * then setThemePath must be used to configure individual locations.
35209
35254
  *
35210
- * @deprecated (since 1.119) - Please use {@link module:sap/ui/core/Theming.setTheme Theming.setTheme} instead.
35255
+ * @deprecated As of version 1.119. Please use {@link module:sap/ui/core/Theming.setTheme Theming.setTheme }
35256
+ * instead.
35211
35257
  */
35212
35258
  applyTheme(
35213
35259
  /**
@@ -35225,7 +35271,7 @@ declare namespace sap {
35225
35271
  * When called, the context of the listener (its `this`) will be bound to `oListener` if specified, otherwise
35226
35272
  * it will be bound to a dummy event provider object.
35227
35273
  *
35228
- * @deprecated (since 1.119) - without a replacement. Applications should not have the need to intercept
35274
+ * @deprecated As of version 1.119. without a replacement. Applications should not have the need to intercept
35229
35275
  * all control events.
35230
35276
  */
35231
35277
  attachControlEvent(
@@ -35246,7 +35292,7 @@ declare namespace sap {
35246
35292
  *
35247
35293
  * Please note that this event is a bubbling event and may already be canceled before reaching the core.
35248
35294
  *
35249
- * @deprecated (since 1.118) - Please use {@link sap.ui.base.ManagedObject#attachFormatError ManagedObject#attachFormatError }
35295
+ * @deprecated As of version 1.118. Please use {@link sap.ui.base.ManagedObject#attachFormatError ManagedObject#attachFormatError }
35250
35296
  * instead.
35251
35297
  *
35252
35298
  * @returns Reference to `this` in order to allow method chaining
@@ -35273,7 +35319,7 @@ declare namespace sap {
35273
35319
  *
35274
35320
  * Please note that this event is a bubbling event and may already be canceled before reaching the core.
35275
35321
  *
35276
- * @deprecated (since 1.118) - Please use {@link sap.ui.base.ManagedObject#attachFormatError ManagedObject#attachFormatError }
35322
+ * @deprecated As of version 1.118. Please use {@link sap.ui.base.ManagedObject#attachFormatError ManagedObject#attachFormatError }
35277
35323
  * instead.
35278
35324
  *
35279
35325
  * @returns Reference to `this` in order to allow method chaining
@@ -35298,7 +35344,7 @@ declare namespace sap {
35298
35344
  * topic "{@link https://ui5.sap.com/#/topic/91f2c9076f4d1014b6dd926db0e91070 Initialization Process}".
35299
35345
  *
35300
35346
  * @since 1.13.2
35301
- * @deprecated (since 1.118) - Please use {@link sap.ui.core.Core.ready Core.ready} instead.
35347
+ * @deprecated As of version 1.118. Please use {@link sap.ui.core.Core.ready Core.ready} instead.
35302
35348
  */
35303
35349
  attachInit(
35304
35350
  /**
@@ -35314,7 +35360,7 @@ declare namespace sap {
35314
35360
  * instead. This guarantees that the given function is executed exactly once, independent of the state of
35315
35361
  * the framework.
35316
35362
  *
35317
- * @deprecated (since 1.13.2) - Register with the more convenient {@link #attachInit} function instead
35363
+ * @deprecated As of version 1.13.2. Register with the more convenient {@link #attachInit} function instead
35318
35364
  */
35319
35365
  attachInitEvent(
35320
35366
  /**
@@ -35329,7 +35375,8 @@ declare namespace sap {
35329
35375
  * it will be bound to the interval timer instance.
35330
35376
  *
35331
35377
  * @since 1.16.0
35332
- * @deprecated (since 1.61) - Use `IntervalTrigger.addListener()` from "sap/ui/core/IntervalTrigger" module.
35378
+ * @deprecated As of version 1.61. Use `IntervalTrigger.addListener()` from "sap/ui/core/IntervalTrigger"
35379
+ * module.
35333
35380
  */
35334
35381
  attachIntervalTimer(
35335
35382
  /**
@@ -35347,7 +35394,7 @@ declare namespace sap {
35347
35394
  * When called, the context of the listener (its `this`) will be bound to `oListener` if specified, otherwise
35348
35395
  * it will be bound to a dummy event provider object.
35349
35396
  *
35350
- * @deprecated (since 1.118) - Please use {@link module:sap/base/i18n/Localization.attachChange Localization.attachChange }
35397
+ * @deprecated As of version 1.118. Please use {@link module:sap/base/i18n/Localization.attachChange Localization.attachChange }
35351
35398
  * instead.
35352
35399
  */
35353
35400
  attachLocalizationChanged(
@@ -35368,7 +35415,7 @@ declare namespace sap {
35368
35415
  *
35369
35416
  * Please note that this event is a bubbling event and may already be canceled before reaching the core.
35370
35417
  *
35371
- * @deprecated (since 1.118) - Please use {@link sap.ui.base.ManagedObject#attachParseError ManagedObject#attachParseError }
35418
+ * @deprecated As of version 1.118. Please use {@link sap.ui.base.ManagedObject#attachParseError ManagedObject#attachParseError }
35372
35419
  * instead.
35373
35420
  *
35374
35421
  * @returns Reference to `this` in order to allow method chaining
@@ -35396,7 +35443,7 @@ declare namespace sap {
35396
35443
  *
35397
35444
  * Please note that this event is a bubbling event and may already be canceled before reaching the core.
35398
35445
  *
35399
- * @deprecated (since 1.118) - Please use {@link sap.ui.base.ManagedObject#attachParseError ManagedObject#attachParseError }
35446
+ * @deprecated As of version 1.118. Please use {@link sap.ui.base.ManagedObject#attachParseError ManagedObject#attachParseError }
35400
35447
  * instead.
35401
35448
  *
35402
35449
  * @returns Reference to `this` in order to allow method chaining
@@ -35417,7 +35464,7 @@ declare namespace sap {
35417
35464
  * When called, the context of the event handler (its `this`) will be bound to `oListener` if specified,
35418
35465
  * otherwise it will be bound to a dummy event provider object.
35419
35466
  *
35420
- * @deprecated (since 1.118) - See {@link module:sap/ui/core/Theming.attachApplied Theming.attachApplied }
35467
+ * @deprecated As of version 1.118. See {@link module:sap/ui/core/Theming.attachApplied Theming.attachApplied }
35421
35468
  * instead.
35422
35469
  */
35423
35470
  attachThemeChanged(
@@ -35438,7 +35485,7 @@ declare namespace sap {
35438
35485
  *
35439
35486
  * Please note that this event is a bubbling event and may already be canceled before reaching the core.
35440
35487
  *
35441
- * @deprecated (since 1.118) - Please use {@link sap.ui.base.ManagedObject#attachValidationError ManagedObject#attachValidationError }
35488
+ * @deprecated As of version 1.118. Please use {@link sap.ui.base.ManagedObject#attachValidationError ManagedObject#attachValidationError }
35442
35489
  * instead.
35443
35490
  *
35444
35491
  * @returns Reference to `this` in order to allow method chaining
@@ -35466,7 +35513,7 @@ declare namespace sap {
35466
35513
  *
35467
35514
  * Please note that this event is a bubbling event and may already be canceled before reaching the core.
35468
35515
  *
35469
- * @deprecated (since 1.118) - Please use {@link sap.ui.base.ManagedObject#attachValidationError ManagedObject#attachValidationError }
35516
+ * @deprecated As of version 1.118. Please use {@link sap.ui.base.ManagedObject#attachValidationError ManagedObject#attachValidationError }
35470
35517
  * instead.
35471
35518
  *
35472
35519
  * @returns Reference to `this` in order to allow method chaining
@@ -35490,7 +35537,7 @@ declare namespace sap {
35490
35537
  *
35491
35538
  * Please note that this event is a bubbling event and may already be canceled before reaching the core.
35492
35539
  *
35493
- * @deprecated (since 1.118) - Please use {@link sap.ui.base.ManagedObject#attachValidationSuccess ManagedObject#attachValidationSuccess }
35540
+ * @deprecated As of version 1.118. Please use {@link sap.ui.base.ManagedObject#attachValidationSuccess ManagedObject#attachValidationSuccess }
35494
35541
  * instead.
35495
35542
  *
35496
35543
  * @returns Reference to `this` in order to allow method chaining
@@ -35518,7 +35565,7 @@ declare namespace sap {
35518
35565
  *
35519
35566
  * Please note that this event is a bubbling event and may already be canceled before reaching the core.
35520
35567
  *
35521
- * @deprecated (since 1.118) - Please use {@link sap.ui.base.ManagedObject#attachValidationSuccess ManagedObject#attachValidationSuccess }
35568
+ * @deprecated As of version 1.118. Please use {@link sap.ui.base.ManagedObject#attachValidationSuccess ManagedObject#attachValidationSuccess }
35522
35569
  * instead.
35523
35570
  *
35524
35571
  * @returns Reference to `this` in order to allow method chaining
@@ -35537,7 +35584,7 @@ declare namespace sap {
35537
35584
  * Returns a list of all controls with a field group ID. See {@link sap.ui.core.Control#checkFieldGroupIds Control.prototype.checkFieldGroupIds }
35538
35585
  * for a description of the `vFieldGroupIds` parameter.
35539
35586
  *
35540
- * @deprecated (since 1.118) - use {@link sap.ui.core.Control.getControlsByFieldGroupId Control.getControlsByFieldGroupId }
35587
+ * @deprecated As of version 1.118. use {@link sap.ui.core.Control.getControlsByFieldGroupId Control.getControlsByFieldGroupId }
35541
35588
  * instead.
35542
35589
  *
35543
35590
  * @returns The list of controls with matching field group IDs
@@ -35558,7 +35605,7 @@ declare namespace sap {
35558
35605
  * can only be executed on the corresponding scope (e.g. on an XMLView instance), by using the {@link sap.ui.core.mvc.View#byId View#byId }
35559
35606
  * method of that scope.
35560
35607
  *
35561
- * @deprecated (since 1.119) - Please use {@link sap.ui.core.Element.getElementById Element.getElementById }
35608
+ * @deprecated As of version 1.119. Please use {@link sap.ui.core.Element.getElementById Element.getElementById }
35562
35609
  * instead.
35563
35610
  *
35564
35611
  * @returns Element with the given ID or `undefined`
@@ -35584,7 +35631,7 @@ declare namespace sap {
35584
35631
  * ```
35585
35632
  *
35586
35633
  *
35587
- * @deprecated (since 1.95) - Please use {@link sap.ui.core.Component.create Component.create} instead.
35634
+ * @deprecated As of version 1.95. Please use {@link sap.ui.core.Component.create Component.create} instead.
35588
35635
  *
35589
35636
  * @returns The created component instance or a promise on it in the async use case
35590
35637
  */
@@ -35635,8 +35682,8 @@ declare namespace sap {
35635
35682
  * The caller must take care to destroy the render manager when it is no longer needed. Calling this method
35636
35683
  * before the Core has been {@link #isInitialized initialized}, is not recommended.
35637
35684
  *
35638
- * @deprecated (since 1.119) - without replacement. In the next major version, synchronously rendering UI
35639
- * updates is no longer supported as it can lead to unnecessary intermediate DOM updates or layout shifting
35685
+ * @deprecated As of version 1.119. without replacement. In the next major version, synchronously rendering
35686
+ * UI updates is no longer supported as it can lead to unnecessary intermediate DOM updates or layout shifting
35640
35687
  * etc. Controls should rather use invalidation.
35641
35688
  *
35642
35689
  * @returns New instance of the RenderManager
@@ -35645,7 +35692,7 @@ declare namespace sap {
35645
35692
  /**
35646
35693
  * Creates a new {@link sap.ui.core.UIArea UIArea}.
35647
35694
  *
35648
- * @deprecated (since 1.1) - use {@link sap.ui.core.Control#placeAt Control#placeAt} instead!
35695
+ * @deprecated As of version 1.1. use {@link sap.ui.core.Control#placeAt Control#placeAt} instead!
35649
35696
  *
35650
35697
  * @returns a new UIArea
35651
35698
  */
@@ -35660,7 +35707,7 @@ declare namespace sap {
35660
35707
  *
35661
35708
  * The passed function and listener object must match the ones used for event registration.
35662
35709
  *
35663
- * @deprecated (since 1.119) - without a replacement. Applications should not have the need to intercept
35710
+ * @deprecated As of version 1.119. without a replacement. Applications should not have the need to intercept
35664
35711
  * all control events.
35665
35712
  */
35666
35713
  detachControlEvent(
@@ -35678,7 +35725,7 @@ declare namespace sap {
35678
35725
  *
35679
35726
  * The passed function and listener object must match the ones used for event registration.
35680
35727
  *
35681
- * @deprecated (since 1.118) - Please use {@link sap.ui.base.ManagedObject#detachFormatError ManagedObject#detachFormatError }
35728
+ * @deprecated As of version 1.118. Please use {@link sap.ui.base.ManagedObject#detachFormatError ManagedObject#detachFormatError }
35682
35729
  * instead.
35683
35730
  *
35684
35731
  * @returns Reference to `this` in order to allow method chaining
@@ -35700,7 +35747,7 @@ declare namespace sap {
35700
35747
  * call.
35701
35748
  *
35702
35749
  * @since 1.16.0
35703
- * @deprecated (since 1.61) - Use `IntervalTrigger.removeListener()` from "sap/ui/core/IntervalTrigger"
35750
+ * @deprecated As of version 1.61. Use `IntervalTrigger.removeListener()` from "sap/ui/core/IntervalTrigger"
35704
35751
  * module.
35705
35752
  */
35706
35753
  detachIntervalTimer(
@@ -35719,7 +35766,7 @@ declare namespace sap {
35719
35766
  * The listener will only be unregistered if the same function/context combination is given as in the call
35720
35767
  * to `attachLocalizationListener`.
35721
35768
  *
35722
- * @deprecated (since 1.118) - Please use {@link module:sap/base/i18n/Localization.detachChange Localization.detachChange }
35769
+ * @deprecated As of version 1.118. Please use {@link module:sap/base/i18n/Localization.detachChange Localization.detachChange }
35723
35770
  * instead.
35724
35771
  */
35725
35772
  detachLocalizationChanged(
@@ -35737,7 +35784,7 @@ declare namespace sap {
35737
35784
  *
35738
35785
  * The passed function and listener object must match the ones used for event registration.
35739
35786
  *
35740
- * @deprecated (since 1.118) - Please use {@link sap.ui.base.ManagedObject#detachParseError ManagedObject#detachParseError }
35787
+ * @deprecated As of version 1.118. Please use {@link sap.ui.base.ManagedObject#detachParseError ManagedObject#detachParseError }
35741
35788
  * instead.
35742
35789
  *
35743
35790
  * @returns Reference to `this` in order to allow method chaining
@@ -35757,7 +35804,7 @@ declare namespace sap {
35757
35804
  *
35758
35805
  * The passed function and listener object must match the ones used for event registration.
35759
35806
  *
35760
- * @deprecated (since 1.118) - See {@link module:sap/ui/core/Theming.detachApplied Theming#detachApplied }
35807
+ * @deprecated As of version 1.118. See {@link module:sap/ui/core/Theming.detachApplied Theming#detachApplied }
35761
35808
  * instead.
35762
35809
  */
35763
35810
  detachThemeChanged(
@@ -35776,7 +35823,7 @@ declare namespace sap {
35776
35823
  *
35777
35824
  * The passed function and listener object must match the ones used for event registration.
35778
35825
  *
35779
- * @deprecated (since 1.118) - Please use {@link sap.ui.base.ManagedObject#detachValidationError ManagedObject#detachValidationError }
35826
+ * @deprecated As of version 1.118. Please use {@link sap.ui.base.ManagedObject#detachValidationError ManagedObject#detachValidationError }
35780
35827
  * instead.
35781
35828
  *
35782
35829
  * @returns Reference to `this` in order to allow method chaining
@@ -35797,7 +35844,7 @@ declare namespace sap {
35797
35844
  *
35798
35845
  * The passed function and listener object must match the ones used for event registration.
35799
35846
  *
35800
- * @deprecated (since 1.118) - Please use {@link sap.ui.base.ManagedObject#detachValidationSuccess ManagedObject#detachValidationSuccess }
35847
+ * @deprecated As of version 1.118. Please use {@link sap.ui.base.ManagedObject#detachValidationSuccess ManagedObject#detachValidationSuccess }
35801
35848
  * instead.
35802
35849
  *
35803
35850
  * @returns Reference to `this` in order to allow method chaining
@@ -35815,7 +35862,7 @@ declare namespace sap {
35815
35862
  /**
35816
35863
  * Fires event {@link #event:formatError formatError} to attached listeners.
35817
35864
  *
35818
- * @deprecated (since 1.118) - Please use {@link sap.ui.base.ManagedObject#fireFormatError ManagedObject#fireFormatError }
35865
+ * @deprecated As of version 1.118. Please use {@link sap.ui.base.ManagedObject#fireFormatError ManagedObject#fireFormatError }
35819
35866
  * instead.
35820
35867
  * @ui5-protected Do not call from applications (only from related classes in the framework)
35821
35868
  *
@@ -35855,7 +35902,7 @@ declare namespace sap {
35855
35902
  /**
35856
35903
  * Fires event {@link #event:parseError parseError} to attached listeners.
35857
35904
  *
35858
- * @deprecated (since 1.118) - Please use {@link sap.ui.base.ManagedObject#fireParseError ManagedObject#fireParseError }
35905
+ * @deprecated As of version 1.118. Please use {@link sap.ui.base.ManagedObject#fireParseError ManagedObject#fireParseError }
35859
35906
  * instead.
35860
35907
  * @ui5-protected Do not call from applications (only from related classes in the framework)
35861
35908
  *
@@ -35895,7 +35942,7 @@ declare namespace sap {
35895
35942
  /**
35896
35943
  * Fires event {@link #event:validationError validationError} to attached listeners.
35897
35944
  *
35898
- * @deprecated (since 1.118) - Please use {@link sap.ui.base.ManagedObject#fireValidationError ManagedObject.fireValidationError }
35945
+ * @deprecated As of version 1.118. Please use {@link sap.ui.base.ManagedObject#fireValidationError ManagedObject.fireValidationError }
35899
35946
  * instead.
35900
35947
  * @ui5-protected Do not call from applications (only from related classes in the framework)
35901
35948
  *
@@ -35942,7 +35989,7 @@ declare namespace sap {
35942
35989
  * - 'newValue' of type `object`
35943
35990
  * - 'oldValue' of type `object`
35944
35991
  *
35945
- * @deprecated (since 1.118) - Please use {@link sap.ui.base.ManagedObject#fireValidationSuccess ManagedObject#fireValidationSuccess }
35992
+ * @deprecated As of version 1.118. Please use {@link sap.ui.base.ManagedObject#fireValidationSuccess ManagedObject#fireValidationSuccess }
35946
35993
  * instead.
35947
35994
  * @ui5-protected Do not call from applications (only from related classes in the framework)
35948
35995
  *
@@ -35957,7 +36004,8 @@ declare namespace sap {
35957
36004
  /**
35958
36005
  * Returns the instance of the application (if exists).
35959
36006
  *
35960
- * @deprecated (since 1.15.1) - The Component class is enhanced to take care about the Application code.
36007
+ * @deprecated As of version 1.15.1. The Component class is enhanced to take care about the Application
36008
+ * code.
35961
36009
  *
35962
36010
  * @returns instance of the current application
35963
36011
  */
@@ -35965,7 +36013,7 @@ declare namespace sap {
35965
36013
  /**
35966
36014
  * Returns the registered component for the given id, if any.
35967
36015
  *
35968
- * @deprecated (since 1.95) - Please use {@link sap.ui.core.Component.get Component.get} instead.
36016
+ * @deprecated As of version 1.95. Please use {@link sap.ui.core.Component.get Component.get} instead.
35969
36017
  *
35970
36018
  * @returns the component for the given id
35971
36019
  */
@@ -35973,7 +36021,7 @@ declare namespace sap {
35973
36021
  /**
35974
36022
  * Returns the Configuration of the Core.
35975
36023
  *
35976
- * @deprecated (since 1.120) - Please see {@link sap.ui.core.Configuration Configuration} for the corresponding
36024
+ * @deprecated As of version 1.120. Please see {@link sap.ui.core.Configuration Configuration} for the corresponding
35977
36025
  * replacements.
35978
36026
  *
35979
36027
  * @returns the Configuration of the current Core.
@@ -35982,7 +36030,7 @@ declare namespace sap {
35982
36030
  /**
35983
36031
  * Returns the registered element for the given ID, if any.
35984
36032
  *
35985
- * @deprecated (since 1.1) - use `sap.ui.core.Core.byId` instead!
36033
+ * @deprecated As of version 1.1. use `sap.ui.core.Core.byId` instead!
35986
36034
  *
35987
36035
  * @returns Element for the given ID or `undefined`
35988
36036
  */
@@ -35995,7 +36043,7 @@ declare namespace sap {
35995
36043
  /**
35996
36044
  * Returns the ID of the control/element currently in focus.
35997
36045
  *
35998
- * @deprecated (since 1.119) - Please use {@link sap.ui.core.Element.getActiveElement Element.getActiveElement }
36046
+ * @deprecated As of version 1.119. Please use {@link sap.ui.core.Element.getActiveElement Element.getActiveElement }
35999
36047
  * to get the currently focused element. You can then retrieve the ID of that element with {@link sap.ui.core.Element#getId Element#getId}.
36000
36048
  * Please be aware, {@link sap.ui.core.Element.getActiveElement Element.getActiveElement} can return 'undefined'.
36001
36049
  *
@@ -36005,7 +36053,7 @@ declare namespace sap {
36005
36053
  /**
36006
36054
  * Returns the registered element for the given ID, if any.
36007
36055
  *
36008
- * @deprecated (since 1.1) - use `sap.ui.core.Core.byId` instead!
36056
+ * @deprecated As of version 1.1. use `sap.ui.core.Core.byId` instead!
36009
36057
  *
36010
36058
  * @returns Element for the given ID or `undefined`
36011
36059
  */
@@ -36019,7 +36067,7 @@ declare namespace sap {
36019
36067
  * Returns the event bus.
36020
36068
  *
36021
36069
  * @since 1.8.0
36022
- * @deprecated (since 1.119.0) - Please use {@link sap.ui.core.EventBus.getInstance EventBus.getInstance }
36070
+ * @deprecated As of version 1.119.0. Please use {@link sap.ui.core.EventBus.getInstance EventBus.getInstance }
36023
36071
  * for global usage instead. Creating an own local instance is the preferred usage.
36024
36072
  *
36025
36073
  * @returns the event bus
@@ -36055,7 +36103,7 @@ declare namespace sap {
36055
36103
  * code. Only when the bundle is needed at module execution time (by top level code in a control module),
36056
36104
  * then the asynchronous variant of this method should be preferred.
36057
36105
  *
36058
- * @deprecated (since 1.119) - Please use {@link sap.ui.core.Lib.getResourceBundleFor Lib.getResourceBundleFor }
36106
+ * @deprecated As of version 1.119. Please use {@link sap.ui.core.Lib.getResourceBundleFor Lib.getResourceBundleFor }
36059
36107
  * instead.
36060
36108
  *
36061
36109
  * @returns The best matching resource bundle for the given parameters or `undefined`; in asynchronous case
@@ -36108,7 +36156,7 @@ declare namespace sap {
36108
36156
  * code. Only when the bundle is needed at module execution time (by top level code in a control module),
36109
36157
  * then the asynchronous variant of this method should be preferred.
36110
36158
  *
36111
- * @deprecated (since 1.119) - Please use {@link sap.ui.core.Lib.getResourceBundleFor Lib.getResourceBundleFor }
36159
+ * @deprecated As of version 1.119. Please use {@link sap.ui.core.Lib.getResourceBundleFor Lib.getResourceBundleFor }
36112
36160
  * instead.
36113
36161
  *
36114
36162
  * @returns The best matching resource bundle for the given parameters or `undefined`; in asynchronous case
@@ -36138,8 +36186,8 @@ declare namespace sap {
36138
36186
  * **Note:** The returned info objects must not be modified. They might be a living copy of the internal
36139
36187
  * data (for efficiency reasons) and the framework is not prepared to handle modifications to these objects.
36140
36188
  *
36141
- * @deprecated (since 1.119) - without a 1:1 replacement. Callers that used `getLoadedLibraries` to check
36142
- * whether a certain library is loaded, should rather use {@link sap.ui.core.Lib#isLoaded Library#isLoaded}.
36189
+ * @deprecated As of version 1.119. without a 1:1 replacement. Callers that used `getLoadedLibraries` to
36190
+ * check whether a certain library is loaded, should rather use {@link sap.ui.core.Lib#isLoaded Library#isLoaded}.
36143
36191
  *
36144
36192
  * @returns Map of library info objects keyed by the library names.
36145
36193
  */
@@ -36148,7 +36196,7 @@ declare namespace sap {
36148
36196
  * Returns the `Messaging` module.
36149
36197
  *
36150
36198
  * @since 1.33.0
36151
- * @deprecated (since 1.118) - Please use {@link module:sap/ui/core/Messaging Messaging} instead.
36199
+ * @deprecated As of version 1.118. Please use {@link module:sap/ui/core/Messaging Messaging} instead.
36152
36200
  */
36153
36201
  getMessageManager(): import("sap/ui/core/Messaging").default;
36154
36202
  /**
@@ -36159,7 +36207,7 @@ declare namespace sap {
36159
36207
  * Note: to be compatible with future versions of this API, applications must not use the value `null`,
36160
36208
  * the empty string `""` or the string literals `"null"` or `"undefined"` as model name.
36161
36209
  *
36162
- * @deprecated (since 1.118) - Please use {@link sap.ui.base.ManagedObject#getModel ManagedObject#getModel }
36210
+ * @deprecated As of version 1.118. Please use {@link sap.ui.base.ManagedObject#getModel ManagedObject#getModel }
36163
36211
  * instead.
36164
36212
  *
36165
36213
  * @returns oModel
@@ -36173,7 +36221,7 @@ declare namespace sap {
36173
36221
  /**
36174
36222
  * Creates a new `RenderManager` instance for use by the caller.
36175
36223
  *
36176
- * @deprecated (since 0.15.0) - Replaced by `createRenderManager()`
36224
+ * @deprecated As of version 0.15.0. Replaced by `createRenderManager()`
36177
36225
  *
36178
36226
  * @returns A newly created RenderManager
36179
36227
  */
@@ -36181,7 +36229,8 @@ declare namespace sap {
36181
36229
  /**
36182
36230
  * Returns the instance of the root component (if exists).
36183
36231
  *
36184
- * @deprecated (since 1.95) - Please use {@link module:sap/ui/core/ComponentSupport} instead. See also {@link topic:82a0fcecc3cb427c91469bc537ebdddf Declarative API for Initial Components}.
36232
+ * @deprecated As of version 1.95. Please use {@link module:sap/ui/core/ComponentSupport} instead. See also
36233
+ * {@link topic:82a0fcecc3cb427c91469bc537ebdddf Declarative API for Initial Components}.
36185
36234
  *
36186
36235
  * @returns instance of the current root component
36187
36236
  */
@@ -36193,7 +36242,7 @@ declare namespace sap {
36193
36242
  *
36194
36243
  * If it is not yet available, a DIV is created and appended to the body.
36195
36244
  *
36196
- * @deprecated (since 1.119.0) - Please use {@link module:sap/ui/core/StaticArea.getDomRef StaticArea.getDomRef }
36245
+ * @deprecated As of version 1.119.0. Please use {@link module:sap/ui/core/StaticArea.getDomRef StaticArea.getDomRef }
36197
36246
  * instead.
36198
36247
  *
36199
36248
  * @returns the static, hidden area DOM element belonging to this core instance.
@@ -36202,7 +36251,7 @@ declare namespace sap {
36202
36251
  /**
36203
36252
  * Returns the registered template for the given id, if any.
36204
36253
  *
36205
- * @deprecated (since 1.29.1) - Require 'sap/ui/core/tmpl/Template' and use {@link sap.ui.core.tmpl.Template.byId Template.byId }
36254
+ * @deprecated As of version 1.29.1. Require 'sap/ui/core/tmpl/Template' and use {@link sap.ui.core.tmpl.Template.byId Template.byId }
36206
36255
  * instead.
36207
36256
  *
36208
36257
  * @returns the template for the given id
@@ -36211,7 +36260,7 @@ declare namespace sap {
36211
36260
  /**
36212
36261
  * Returns the {@link sap.ui.core.UIArea UIArea} with the given ID or that belongs to the given DOM element.
36213
36262
  *
36214
- * @deprecated (since 1.107) - For access to the static UIArea, please use the {@link module:sap/ui/core/StaticArea StaticArea }
36263
+ * @deprecated As of version 1.107. For access to the static UIArea, please use the {@link module:sap/ui/core/StaticArea StaticArea }
36215
36264
  * instead.
36216
36265
  *
36217
36266
  * @returns UIArea with the given ID or DOM element or `null` or `undefined`.
@@ -36226,8 +36275,8 @@ declare namespace sap {
36226
36275
  * Returns `true` if there are any pending rendering tasks or when such rendering tasks are currently being
36227
36276
  * executed.
36228
36277
  *
36229
- * @deprecated (since 1.118) - without replacement. The known use cases in testing environments are covered
36230
- * by other APIs or features, e.g. OPA's waitFor mechanism.
36278
+ * @deprecated As of version 1.118. without replacement. The known use cases in testing environments are
36279
+ * covered by other APIs or features, e.g. OPA's waitFor mechanism.
36231
36280
  *
36232
36281
  * @returns true if there are pending (or executing) rendering tasks.
36233
36282
  */
@@ -36235,7 +36284,7 @@ declare namespace sap {
36235
36284
  /**
36236
36285
  * Check if a Model is set to the core
36237
36286
  *
36238
- * @deprecated (since 1.118) - Please use {@link sap.ui.base.ManagedObject#hasModel ManagedObject#hasModel }
36287
+ * @deprecated As of version 1.118. Please use {@link sap.ui.base.ManagedObject#hasModel ManagedObject#hasModel }
36239
36288
  * instead.
36240
36289
  *
36241
36290
  * @returns true or false
@@ -36245,8 +36294,8 @@ declare namespace sap {
36245
36294
  * Includes a library theme into the current page (if a variant is specified it will include the variant
36246
36295
  * library theme)
36247
36296
  *
36248
- * @deprecated (since 1.119) - without replacement. There's no known use case that would require a public
36249
- * API.
36297
+ * @deprecated As of version 1.119. without replacement. There's no known use case that would require a
36298
+ * public API.
36250
36299
  */
36251
36300
  includeLibraryTheme(
36252
36301
  /**
@@ -36320,7 +36369,7 @@ declare namespace sap {
36320
36369
  * When the `manifest.json` is generated from the `.library` file (which is the default for UI5 libraries
36321
36370
  * built with Maven), then the content of the `.library` and `library.js` files must be kept in sync.
36322
36371
  *
36323
- * @deprecated (since 1.119) - Please use {@link sap.ui.core.Lib.init Lib.init} instead.
36372
+ * @deprecated As of version 1.119. Please use {@link sap.ui.core.Lib.init Lib.init} instead.
36324
36373
  *
36325
36374
  * @returns As of version 1.101; returns the library namespace, based on the given library name. Returns
36326
36375
  * 'undefined' if no library name is provided.
@@ -36335,7 +36384,7 @@ declare namespace sap {
36335
36384
  * Returns true if the Core has already been initialized. This means that instances of RenderManager etc.
36336
36385
  * do already exist and the init event has already been fired (and will not be fired again).
36337
36386
  *
36338
- * @deprecated (since 1.118) - Please use {@link sap.ui.core.Core.ready Core.ready} instead.
36387
+ * @deprecated As of version 1.118. Please use {@link sap.ui.core.Core.ready Core.ready} instead.
36339
36388
  *
36340
36389
  * @returns whether the Core has already been initialized
36341
36390
  */
@@ -36343,8 +36392,9 @@ declare namespace sap {
36343
36392
  /**
36344
36393
  * Returns the locked state of the `sap.ui.core.Core`.
36345
36394
  *
36346
- * @deprecated (since 1.118) - without a replacement. The ability to prevent the re-rendering of all `UIArea`s
36347
- * wasn't really used in the past and did not provide a meaningful feature. It therefore has been abandoned.
36395
+ * @deprecated As of version 1.118. without a replacement. The ability to prevent the re-rendering of all
36396
+ * `UIArea`s wasn't really used in the past and did not provide a meaningful feature. It therefore has been
36397
+ * abandoned.
36348
36398
  *
36349
36399
  * @returns locked state
36350
36400
  */
@@ -36352,7 +36402,7 @@ declare namespace sap {
36352
36402
  /**
36353
36403
  * Check if the script is running on mobile
36354
36404
  *
36355
- * @deprecated (since 1.118) - use {@link sap.ui.Device.browser.mobile Device.browser.mobile} instead.
36405
+ * @deprecated As of version 1.118. use {@link sap.ui.Device.browser.mobile Device.browser.mobile} instead.
36356
36406
  *
36357
36407
  * @returns true or false
36358
36408
  */
@@ -36360,7 +36410,7 @@ declare namespace sap {
36360
36410
  /**
36361
36411
  * Checks whether the given DOM element is the root of the static area.
36362
36412
  *
36363
- * @deprecated (since 1.119.0) - Please use {@link module:sap/ui/core/StaticArea.contains StaticArea.contains }
36413
+ * @deprecated As of version 1.119.0. Please use {@link module:sap/ui/core/StaticArea.contains StaticArea.contains }
36364
36414
  * instead.
36365
36415
  * @ui5-protected Do not call from applications (only from related classes in the framework)
36366
36416
  *
@@ -36378,7 +36428,7 @@ declare namespace sap {
36378
36428
  * This function must not be used before the init event of the Core. If the styles are not yet applied a
36379
36429
  * theme changed event will follow when the styles will be applied.
36380
36430
  *
36381
- * @deprecated (since 1.119) - Please use {@link module:sap/ui/core/Theming.attachApplied Theming.attachApplied }
36431
+ * @deprecated As of version 1.119. Please use {@link module:sap/ui/core/Theming.attachApplied Theming.attachApplied }
36382
36432
  * instead.
36383
36433
  *
36384
36434
  * @returns whether the styles of the current theme are already applied
@@ -36451,7 +36501,7 @@ declare namespace sap {
36451
36501
  * ```
36452
36502
  *
36453
36503
  *
36454
- * @deprecated (since 1.119) - Please use {@link sap.ui.core.Lib.load Lib.load} instead.
36504
+ * @deprecated As of version 1.119. Please use {@link sap.ui.core.Lib.load Lib.load} instead.
36455
36505
  *
36456
36506
  * @returns An info object for the library (sync) or a Promise on it (async).
36457
36507
  */
@@ -36483,8 +36533,9 @@ declare namespace sap {
36483
36533
  * Lock should be called before and after the DOM is modified for rendering, roundtrips... Exceptions might
36484
36534
  * be the case for asynchronous UI behavior
36485
36535
  *
36486
- * @deprecated (since 1.118) - without a replacement. The ability to prevent the re-rendering of all `UIArea`s
36487
- * wasn't really used in the past and did not provide a meaningful feature. It therefore has been abandoned.
36536
+ * @deprecated As of version 1.118. without a replacement. The ability to prevent the re-rendering of all
36537
+ * `UIArea`s wasn't really used in the past and did not provide a meaningful feature. It therefore has been
36538
+ * abandoned.
36488
36539
  */
36489
36540
  lock(): void;
36490
36541
  /**
@@ -36497,7 +36548,7 @@ declare namespace sap {
36497
36548
  * only a few controls it might not be necessary to trigger the realignment of all controls placed in the
36498
36549
  * DOM, for example changing the cozy/compact CSS class at a single control
36499
36550
  *
36500
- * @deprecated (since 1.119) - Please use {@link module:sap/ui/core/Theming.notifyContentDensityChanged Theming.notifyContentDensityChanged }
36551
+ * @deprecated As of version 1.119. Please use {@link module:sap/ui/core/Theming.notifyContentDensityChanged Theming.notifyContentDensityChanged }
36501
36552
  * instead.
36502
36553
  */
36503
36554
  notifyContentDensityChanged(): void;
@@ -36523,8 +36574,8 @@ declare namespace sap {
36523
36574
  * the Core will be provided
36524
36575
  * - `stopPlugin()`: will be invoked, when the Plugin should stop
36525
36576
  *
36526
- * @deprecated (since 1.73) - Plugins never have been meant as a public offering, but were intended for
36527
- * internal usage only. They unfortunately allow access to all internals of the Core and therefore break
36577
+ * @deprecated As of version 1.73. Plugins never have been meant as a public offering, but were intended
36578
+ * for internal usage only. They unfortunately allow access to all internals of the Core and therefore break
36528
36579
  * encapsulation and hinder evolution of the Core. The most common use case of accessing the set of all
36529
36580
  * controls/elements or all components can now be addressed by using the APIs {@link sap.ui.core.Element.registry }
36530
36581
  * or {@link sap.ui.core.Component.registry}, respectively. Future refactoring of the Core will only take
@@ -36550,7 +36601,7 @@ declare namespace sap {
36550
36601
  * Note: to be compatible with future versions of this API, applications must not use the value `null`,
36551
36602
  * the empty string `""` or the string literals `"null"` or `"undefined"` as model name.
36552
36603
  *
36553
- * @deprecated (since 1.118) - Please use {@link sap.ui.base.ManagedObject#setModel ManagedObject#setModel }
36604
+ * @deprecated As of version 1.118. Please use {@link sap.ui.base.ManagedObject#setModel ManagedObject#setModel }
36554
36605
  * instead.
36555
36606
  *
36556
36607
  * @returns Reference to `this` in order to allow method chaining
@@ -36569,7 +36620,8 @@ declare namespace sap {
36569
36620
  * Implicitly creates a new `UIArea` (or reuses an exiting one) for the given DOM reference and adds the
36570
36621
  * given control reference to the UIAreas content (existing content will be removed).
36571
36622
  *
36572
- * @deprecated (since 1.1) - use {@link sap.ui.core.Control#placeAt oControl.placeAt(oDomRef, "only")} instead.
36623
+ * @deprecated As of version 1.1. use {@link sap.ui.core.Control#placeAt oControl.placeAt(oDomRef, "only") }
36624
+ * instead.
36573
36625
  */
36574
36626
  setRoot(
36575
36627
  /**
@@ -36629,8 +36681,8 @@ declare namespace sap {
36629
36681
  * in order to configure the theme location early enough.
36630
36682
  *
36631
36683
  * @since 1.10
36632
- * @deprecated (since 1.119) - without replacement. The need to define the location for a theme should be
36633
- * fully covered with the capabilities of the {@link sap/base/config base configuration}.
36684
+ * @deprecated As of version 1.119. without replacement. The need to define the location for a theme should
36685
+ * be fully covered with the capabilities of the {@link sap/base/config base configuration}.
36634
36686
  *
36635
36687
  * @returns the Core, to allow method chaining
36636
36688
  */
@@ -36700,8 +36752,8 @@ declare namespace sap {
36700
36752
  * in order to configure the theme location early enough.
36701
36753
  *
36702
36754
  * @since 1.10
36703
- * @deprecated (since 1.119) - without replacement. The need to define the location for a theme should be
36704
- * fully covered with the capabilities of the {@link sap/base/config base configuration}.
36755
+ * @deprecated As of version 1.119. without replacement. The need to define the location for a theme should
36756
+ * be fully covered with the capabilities of the {@link sap/base/config base configuration}.
36705
36757
  *
36706
36758
  * @returns the Core, to allow method chaining
36707
36759
  */
@@ -36724,15 +36776,16 @@ declare namespace sap {
36724
36776
  *
36725
36777
  * Browser events are dispatched to the controls again after this method is called.
36726
36778
  *
36727
- * @deprecated (since 1.118) - without a replacement. The ability to prevent the re-rendering of all `UIArea`s
36728
- * wasn't really used in the past and did not provide a meaningful feature. It therefore has been abandoned.
36779
+ * @deprecated As of version 1.118. without a replacement. The ability to prevent the re-rendering of all
36780
+ * `UIArea`s wasn't really used in the past and did not provide a meaningful feature. It therefore has been
36781
+ * abandoned.
36729
36782
  */
36730
36783
  unlock(): void;
36731
36784
  /**
36732
36785
  * Unregisters a Plugin out of the `sap.ui.core.Core`
36733
36786
  *
36734
- * @deprecated (since 1.73) - Plugins never have been meant as a public offering, but were intended for
36735
- * internal usage only. They unfortunately allow access to all internals of the Core and therefore break
36787
+ * @deprecated As of version 1.73. Plugins never have been meant as a public offering, but were intended
36788
+ * for internal usage only. They unfortunately allow access to all internals of the Core and therefore break
36736
36789
  * encapsulation and hinder evolution of the Core. The most common use case of accessing the set of all
36737
36790
  * controls/elements or all components can now be addressed by using the APIs {@link sap.ui.core.Element.registry }
36738
36791
  * or {@link sap.ui.core.Component.registry}, respectively. Future refactoring of the Core will only take
@@ -37808,7 +37861,7 @@ declare namespace sap {
37808
37861
  * Returns an existing component instance, identified by its ID.
37809
37862
  *
37810
37863
  * @since 1.56.0
37811
- * @deprecated (since 1.120) - please use the static {@link sap.ui.core.Component.getComponentById getComponentById }
37864
+ * @deprecated As of version 1.120. please use the static {@link sap.ui.core.Component.getComponentById getComponentById }
37812
37865
  * instead.
37813
37866
  *
37814
37867
  * @returns Component instance or `undefined` when no component with the given ID exists.
@@ -38296,8 +38349,8 @@ declare namespace sap {
38296
38349
  * cleanup before the real unload or to prompt a question to the user, if the component should be exited.
38297
38350
  *
38298
38351
  * @since 1.15.1
38299
- * @deprecated (since 1.119) - recommended to use the browser-native page lifecycle API, providing events
38300
- * such as 'pageshow' and 'pagehide'
38352
+ * @deprecated As of version 1.119. recommended to use the browser-native page lifecycle API, providing
38353
+ * events such as 'pageshow' and 'pagehide'
38301
38354
  *
38302
38355
  * @returns a string if a prompt should be displayed to the user confirming closing the Component (e.g.
38303
38356
  * when the Component is not yet saved), or `undefined` if no prompt should be shown.
@@ -38308,7 +38361,7 @@ declare namespace sap {
38308
38361
  * errors.
38309
38362
  *
38310
38363
  * @since 1.15.1
38311
- * @deprecated (since 1.119) - recommended to use the browser-native API to listen for errors: window.addEventListener("error",
38364
+ * @deprecated As of version 1.119. recommended to use the browser-native API to listen for errors: window.addEventListener("error",
38312
38365
  * function() { ... })
38313
38366
  */
38314
38367
  onWindowError(
@@ -38330,9 +38383,9 @@ declare namespace sap {
38330
38383
  * of the component once the window will be unloaded (e.g. closed).
38331
38384
  *
38332
38385
  * @since 1.15.1
38333
- * @deprecated (since 1.119) - Newer browser versions deprecate the browser-native 'unload' event. Therefore,
38334
- * the former API won't reliably work anymore. Please have a look at the browser-native page lifecycle API,
38335
- * e.g. its events 'pageshow' and 'pagehide'.
38386
+ * @deprecated As of version 1.119. Newer browser versions deprecate the browser-native 'unload' event.
38387
+ * Therefore, the former API won't reliably work anymore. Please have a look at the browser-native page
38388
+ * lifecycle API, e.g. its events 'pageshow' and 'pagehide'.
38336
38389
  */
38337
38390
  onWindowUnload(): void;
38338
38391
  /**
@@ -39055,7 +39108,7 @@ declare namespace sap {
39055
39108
  * ignores the entries of the manifest file! It returns only the entries which have been defined in the
39056
39109
  * Component metadata or in the proper Component manifest.
39057
39110
  *
39058
- * @deprecated (since 1.27.1) - Please use {@link sap.ui.core.Component#getManifestEntry}("/sap.ui5/dependencies/components")
39111
+ * @deprecated As of version 1.27.1. Please use {@link sap.ui.core.Component#getManifestEntry}("/sap.ui5/dependencies/components")
39059
39112
  *
39060
39113
  * @returns Required Components.
39061
39114
  */
@@ -39065,7 +39118,7 @@ declare namespace sap {
39065
39118
  * the complete configuration property
39066
39119
  *
39067
39120
  * @since 1.15.1
39068
- * @deprecated (since 1.27.1) - Please use {@link sap.ui.core.Component#getManifestEntry}("/sap.ui5/config")
39121
+ * @deprecated As of version 1.27.1. Please use {@link sap.ui.core.Component#getManifestEntry}("/sap.ui5/config")
39069
39122
  *
39070
39123
  * @returns the value of the configuration property
39071
39124
  */
@@ -39088,7 +39141,7 @@ declare namespace sap {
39088
39141
  *
39089
39142
  * The configuration above can be accessed via `sample.Component.getMetadata().getCustomEntry("my.custom.config")`.
39090
39143
  *
39091
- * @deprecated (since 1.27.1) - Please use the sap.ui.core.ComponentMetadata#getManifestEntry
39144
+ * @deprecated As of version 1.27.1. Please use the sap.ui.core.ComponentMetadata#getManifestEntry
39092
39145
  *
39093
39146
  * @returns custom Component configuration with the specified key.
39094
39147
  */
@@ -39109,7 +39162,7 @@ declare namespace sap {
39109
39162
  * ignores the entries of the manifest file! It returns only the entries which have been defined in the
39110
39163
  * Component metadata or in the proper Component manifest.
39111
39164
  *
39112
- * @deprecated (since 1.27.1) - Please use {@link sap.ui.core.Component#getManifestEntry}("/sap.ui5/dependencies")
39165
+ * @deprecated As of version 1.27.1. Please use {@link sap.ui.core.Component#getManifestEntry}("/sap.ui5/dependencies")
39113
39166
  *
39114
39167
  * @returns Component dependencies.
39115
39168
  */
@@ -39121,7 +39174,7 @@ declare namespace sap {
39121
39174
  * ignores the entries of the manifest file! It returns only the entries which have been defined in the
39122
39175
  * Component metadata or in the proper Component manifest.
39123
39176
  *
39124
- * @deprecated (since 1.27.1) - For CSS, please use {@link sap.ui.core.Component#getManifestEntry}("/sap.ui5/resources/css").
39177
+ * @deprecated As of version 1.27.1. For CSS, please use {@link sap.ui.core.Component#getManifestEntry}("/sap.ui5/resources/css").
39125
39178
  *
39126
39179
  * @returns Included files.
39127
39180
  */
@@ -39134,7 +39187,7 @@ declare namespace sap {
39134
39187
  * ignores the entries of the manifest file! It returns only the entries which have been defined in the
39135
39188
  * Component metadata or in the proper Component manifest.
39136
39189
  *
39137
- * @deprecated (since 1.27.1) - Please use {@link sap.ui.core.Component#getManifestEntry}("/sap.ui5/dependencies/libs")
39190
+ * @deprecated As of version 1.27.1. Please use {@link sap.ui.core.Component#getManifestEntry}("/sap.ui5/dependencies/libs")
39138
39191
  *
39139
39192
  * @returns Required libraries.
39140
39193
  */
@@ -39144,7 +39197,7 @@ declare namespace sap {
39144
39197
  * null.
39145
39198
  *
39146
39199
  * @since 1.27.1
39147
- * @deprecated (since 1.33.0) - Please use the sap.ui.core.Component#getManifest
39200
+ * @deprecated As of version 1.33.0. Please use the sap.ui.core.Component#getManifest
39148
39201
  *
39149
39202
  * @returns manifest.
39150
39203
  */
@@ -39165,7 +39218,7 @@ declare namespace sap {
39165
39218
  * a slash (/).
39166
39219
  *
39167
39220
  * @since 1.27.1
39168
- * @deprecated (since 1.33.0) - Please use the sap.ui.core.Component#getManifest
39221
+ * @deprecated As of version 1.33.0. Please use the sap.ui.core.Component#getManifest
39169
39222
  *
39170
39223
  * @returns Value of the manifest section or the key (could be any kind of value)
39171
39224
  */
@@ -39202,7 +39255,7 @@ declare namespace sap {
39202
39255
  * is null.
39203
39256
  *
39204
39257
  * @since 1.29.0
39205
- * @deprecated (since 1.33.0) - Please use the sap.ui.core.Component#getManifest
39258
+ * @deprecated As of version 1.33.0. Please use the sap.ui.core.Component#getManifest
39206
39259
  *
39207
39260
  * @returns manifest
39208
39261
  */
@@ -39214,7 +39267,7 @@ declare namespace sap {
39214
39267
  * ignores the entries of the manifest file! It returns only the entries which have been defined in the
39215
39268
  * Component metadata or in the proper Component manifest.
39216
39269
  *
39217
- * @deprecated (since 1.27.1) - Please use {@link sap.ui.core.Component#getManifestEntry}("/sap.ui5/dependencies/minUI5Version")
39270
+ * @deprecated As of version 1.27.1. Please use {@link sap.ui.core.Component#getManifestEntry}("/sap.ui5/dependencies/minUI5Version")
39218
39271
  *
39219
39272
  * @returns Required version of UI5 or if not specified then `null`.
39220
39273
  */
@@ -39225,7 +39278,7 @@ declare namespace sap {
39225
39278
  * ignores the entries of the manifest file! It returns only the entries which have been defined in the
39226
39279
  * Component metadata or in the proper Component manifest.
39227
39280
  *
39228
- * @deprecated (since 1.34.2) - Please use {@link sap.ui.core.Component#getManifestEntry}("/sap.app/applicationVersion/version")
39281
+ * @deprecated As of version 1.34.2. Please use {@link sap.ui.core.Component#getManifestEntry}("/sap.app/applicationVersion/version")
39229
39282
  *
39230
39283
  * @returns The version of the component.
39231
39284
  */
@@ -39678,8 +39731,8 @@ declare namespace sap {
39678
39731
  /**
39679
39732
  * Gets current value of property blocked.
39680
39733
  *
39681
- * @deprecated (since 1.69) - the blocked property is deprecated. There is no accessibility support for
39682
- * this property. Blocked controls should not be used inside Controls, which rely on keyboard navigation,
39734
+ * @deprecated As of version 1.69. the blocked property is deprecated. There is no accessibility support
39735
+ * for this property. Blocked controls should not be used inside Controls, which rely on keyboard navigation,
39683
39736
  * e.g. List controls.
39684
39737
  *
39685
39738
  * @returns Whether the control is currently in blocked state. Default is 'false'.
@@ -39818,7 +39871,7 @@ declare namespace sap {
39818
39871
  /**
39819
39872
  * Check if the control is currently in busy state.
39820
39873
  *
39821
- * @deprecated (since 1.15) - use {@link #getBusy} instead
39874
+ * @deprecated As of version 1.15. use {@link #getBusy} instead
39822
39875
  */
39823
39876
  isBusy(): boolean;
39824
39877
  /**
@@ -39916,8 +39969,8 @@ declare namespace sap {
39916
39969
  * Note that this method can only be called when the control already has a DOM representation (it has been
39917
39970
  * rendered before) and when the control still is assigned to a UIArea.
39918
39971
  *
39919
- * @deprecated (since 1.70) - using this method is no longer recommended, but calling it still causes a
39920
- * re-rendering of the control. Synchronous DOM updates via this method have several drawbacks: they only
39972
+ * @deprecated As of version 1.70. using this method is no longer recommended, but calling it still causes
39973
+ * a re-rendering of the control. Synchronous DOM updates via this method have several drawbacks: they only
39921
39974
  * work when the control has been rendered before (no initial rendering possible), multiple state changes
39922
39975
  * won't be combined automatically into a single re-rendering, they might cause additional layout thrashing,
39923
39976
  * standard invalidation might cause another async re-rendering.
@@ -40252,7 +40305,7 @@ declare namespace sap {
40252
40305
  * Static class for enabling declarative UI support.
40253
40306
  *
40254
40307
  * @since 1.7.0
40255
- * @deprecated (since 1.120) - Please consider using {@link sap.ui.core.mvc.XMLView XMLViews} or {@link topic:e6bb33d076dc4f23be50c082c271b9f0 Typed Views }
40308
+ * @deprecated As of version 1.120. Please consider using {@link sap.ui.core.mvc.XMLView XMLViews} or {@link topic:e6bb33d076dc4f23be50c082c271b9f0 Typed Views }
40256
40309
  * instead. For more information, see the documentation on {@link topic:91f27e3e6f4d1014b6dd926db0e91070 View types}.
40257
40310
  */
40258
40311
  class DeclarativeSupport {
@@ -40453,7 +40506,7 @@ declare namespace sap {
40453
40506
  /**
40454
40507
  * Creates metadata for a UI Element by extending the Object Metadata.
40455
40508
  *
40456
- * @deprecated (since 1.3.1) - Use the static `extend` method of the desired base class (e.g. {@link sap.ui.core.Element.extend})
40509
+ * @deprecated As of version 1.3.1. Use the static `extend` method of the desired base class (e.g. {@link sap.ui.core.Element.extend})
40457
40510
  *
40458
40511
  * @returns the created metadata
40459
40512
  */
@@ -41308,7 +41361,7 @@ declare namespace sap {
41308
41361
  * This function either calls set[sPropertyName] or get[sPropertyName] with the specified property name
41309
41362
  * depending if an `oValue` is provided or not.
41310
41363
  *
41311
- * @deprecated (since 1.28.0) - The contract of this method is not fully defined and its write capabilities
41364
+ * @deprecated As of version 1.28.0. The contract of this method is not fully defined and its write capabilities
41312
41365
  * overlap with applySettings
41313
41366
  *
41314
41367
  * @returns Returns `this` to allow method chaining in case of setter and the property value in case of
@@ -41453,8 +41506,8 @@ declare namespace sap {
41453
41506
  /**
41454
41507
  * This triggers immediate rerendering of its parent and thus of itself and its children.
41455
41508
  *
41456
- * @deprecated (since 1.70) - using this method is no longer recommended, but calling it still causes a
41457
- * re-rendering of the element. Synchronous DOM updates via this method have several drawbacks: they only
41509
+ * @deprecated As of version 1.70. using this method is no longer recommended, but calling it still causes
41510
+ * a re-rendering of the element. Synchronous DOM updates via this method have several drawbacks: they only
41458
41511
  * work when the control has been rendered before (no initial rendering possible), multiple state changes
41459
41512
  * won't be combined automatically into a single re-rendering, they might cause additional layout thrashing,
41460
41513
  * standard invalidation might cause another async re-rendering.
@@ -43505,19 +43558,19 @@ declare namespace sap {
43505
43558
  */
43506
43559
  getText(): string;
43507
43560
  /**
43508
- * @deprecated (since 1.27) - local BusyIndicator is not supported by control.
43561
+ * @deprecated As of version 1.27. local BusyIndicator is not supported by control.
43509
43562
  *
43510
43563
  * @returns Returns `this` to allow method chaining
43511
43564
  */
43512
43565
  setBusy(): this;
43513
43566
  /**
43514
- * @deprecated (since 1.27) - local BusyIndicator is not supported by control.
43567
+ * @deprecated As of version 1.27. local BusyIndicator is not supported by control.
43515
43568
  *
43516
43569
  * @returns Returns `this` to allow method chaining
43517
43570
  */
43518
43571
  setBusyIndicatorDelay(): this;
43519
43572
  /**
43520
- * @deprecated (since 1.54) - local BusyIndicator is not supported by control.
43573
+ * @deprecated As of version 1.54. local BusyIndicator is not supported by control.
43521
43574
  *
43522
43575
  * @returns Returns `this` to allow method chaining
43523
43576
  */
@@ -43541,13 +43594,13 @@ declare namespace sap {
43541
43594
  sText?: string
43542
43595
  ): this;
43543
43596
  /**
43544
- * @deprecated (since 1.27) - tooltip is not supported by control.
43597
+ * @deprecated As of version 1.27. tooltip is not supported by control.
43545
43598
  *
43546
43599
  * @returns Returns `this` to allow method chaining
43547
43600
  */
43548
43601
  setTooltip(): this;
43549
43602
  /**
43550
- * @deprecated (since 1.27) - property `visible` is not supported by control.
43603
+ * @deprecated As of version 1.27. property `visible` is not supported by control.
43551
43604
  *
43552
43605
  * @returns Returns `this` to allow method chaining
43553
43606
  */
@@ -44232,7 +44285,7 @@ declare namespace sap {
44232
44285
  * to the ListBox control (see the init-function of the ListBox).
44233
44286
  *
44234
44287
  * @since 1.11.0
44235
- * @deprecated (since 1.14.2) - The LocalBusyIndicator Control is not needed anymore by the new implementation
44288
+ * @deprecated As of version 1.14.2. The LocalBusyIndicator Control is not needed anymore by the new implementation
44236
44289
  * of the LBI. Hence, it is not used anymore.
44237
44290
  */
44238
44291
  class LocalBusyIndicator extends sap.ui.core.Control {
@@ -44482,7 +44535,7 @@ declare namespace sap {
44482
44535
  * of SAP languages. This method has no knowledge about the concrete languages of any given backend system.
44483
44536
  *
44484
44537
  * @since 1.17.0
44485
- * @deprecated (since 1.44) - use {@link module:sap/base/i18n/Localization.getSAPLogonLanguage} instead
44538
+ * @deprecated As of version 1.44. use {@link module:sap/base/i18n/Localization.getSAPLogonLanguage} instead
44486
44539
  * as that class allows to configure an SAP Logon language.
44487
44540
  *
44488
44541
  * @returns a language code that should
@@ -44646,6 +44699,56 @@ declare namespace sap {
44646
44699
  */
44647
44700
  sCalendarType?: import("sap/base/i18n/date/CalendarType").default
44648
44701
  ): string;
44702
+ /**
44703
+ * Returns the compact currency format pattern (like "¤000K" or "¤0M") for the given power of ten in the
44704
+ * given style, plural category, and in an optional alternative format if desired, see {@link https://ui5.sap.com/#/topic/91f2f2866f4d1014b6dd926db0e91070 Number Format - Compact Format}.
44705
+ *
44706
+ * @since 1.133.0
44707
+ *
44708
+ * @returns The compact currency format pattern, or `undefined` if no currency format pattern for the given
44709
+ * parameters is found
44710
+ */
44711
+ getCompactCurrencyPattern(
44712
+ /**
44713
+ * The style; "sap-" prefix is used for the trailing currency code variant
44714
+ */
44715
+ sStyle: "short" | "sap-short" | "short-indian" | "sap-short-indian",
44716
+ /**
44717
+ * The power of ten, for example "1000" or "10000"
44718
+ */
44719
+ sPowerOfTen: string,
44720
+ /**
44721
+ * The plural category; defaults to "other" if the given plural category does not exist for this locale
44722
+ */
44723
+ sPlural?: "few" | "many" | "one" | "other" | "two" | "zero",
44724
+ /**
44725
+ * The alternate currency format
44726
+ */
44727
+ sAlternative?: "alphaNextToNumber" | "noCurrency"
44728
+ ): string | undefined;
44729
+ /**
44730
+ * Returns the compact decimal format pattern (like "000K" or "0M") for the given power of ten in the given
44731
+ * style and plural category, see {@link https://ui5.sap.com/#/topic/91f2f2866f4d1014b6dd926db0e91070 Number Format - Compact Format}.
44732
+ *
44733
+ * @since 1.133.0
44734
+ *
44735
+ * @returns The compact decimal format pattern, or `undefined` if no decimal format for the given parameters
44736
+ * is found
44737
+ */
44738
+ getCompactDecimalPattern(
44739
+ /**
44740
+ * The style
44741
+ */
44742
+ sStyle: "long" | "short" | "short-indian",
44743
+ /**
44744
+ * The power of ten, for example "1000" or "10000"
44745
+ */
44746
+ sPowerOfTen: string,
44747
+ /**
44748
+ * The plural category; defaults to "other" if the given plural category does not exist for this locale
44749
+ */
44750
+ sPlural?: "few" | "many" | "one" | "other" | "two" | "zero"
44751
+ ): string | undefined;
44649
44752
  /**
44650
44753
  * Returns the currency code which is corresponded with the given currency symbol.
44651
44754
  *
@@ -44674,43 +44777,57 @@ declare namespace sap {
44674
44777
  sCurrency: string
44675
44778
  ): int;
44676
44779
  /**
44677
- * Returns the short currency format (like 1K USD, 1M USD....) of the given number in the given style and
44678
- * plural category.
44780
+ * Replaced by {@link #getCompactCurrencyPattern}.
44679
44781
  *
44680
44782
  * @since 1.51.0
44783
+ * @deprecated As of version 1.133.0. use {@link #getCompactCurrencyPattern} instead
44681
44784
  *
44682
- * @returns the short currency format
44785
+ * @returns See {@link #getCompactCurrencyPattern}
44683
44786
  */
44684
44787
  getCurrencyFormat(
44685
44788
  /**
44686
- * the style
44789
+ * See {@link #getCompactCurrencyPattern}; "short-indian" and "sap-short-indian" are only available since
44790
+ * 1.133.0 for the "en-IN" locale
44687
44791
  */
44688
- sStyle: "short",
44792
+ sStyle: "short" | "sap-short" | "short-indian" | "sap-short-indian",
44689
44793
  /**
44690
- * the number in string representation as power of ten, for example "1000" or "10000"
44794
+ * See {@link #getCompactCurrencyPattern}
44691
44795
  */
44692
- sNumber: string,
44796
+ sPowerOfTen: string,
44693
44797
  /**
44694
- * the plural category; defaults to "other" if the given plural category does not exist for this locale
44798
+ * See {@link #getCompactCurrencyPattern}
44695
44799
  */
44696
- sPlural?: "few" | "many" | "one" | "other" | "two" | "zero"
44697
- ): string;
44800
+ sPlural?: "few" | "many" | "one" | "other" | "two" | "zero",
44801
+ /**
44802
+ * See {@link #getCompactCurrencyPattern}; since 1.133.0
44803
+ */
44804
+ sAlternative?: "alphaNextToNumber" | "noCurrency"
44805
+ ): string | undefined;
44698
44806
  /**
44699
- * Get currency format pattern for the given context.
44807
+ * Gets the currency format pattern for the given context or selects an alternative pattern if desired.
44700
44808
  *
44701
44809
  * CLDR format pattern:
44702
44810
  * See:
44703
44811
  * https://cldr.unicode.org/translation/numbers-currency/number-patterns
44704
44812
  *
44705
44813
  *
44706
- * @returns The pattern
44814
+ * @returns The currency format pattern for the given parameters; `undefined` if no corresponding pattern
44815
+ * is found
44707
44816
  */
44708
44817
  getCurrencyPattern(
44709
44818
  /**
44710
- * the context of the currency pattern
44819
+ * The context of the currency pattern; "sap-" prefix is used for the trailing currency code variant
44711
44820
  */
44712
- sContext: "accounting" | "standard"
44713
- ): string;
44821
+ sContext:
44822
+ | "accounting"
44823
+ | "sap-accounting"
44824
+ | "sap-standard"
44825
+ | "standard",
44826
+ /**
44827
+ * The alternate currency pattern; since 1.133.0
44828
+ */
44829
+ sAlternative?: "alphaNextToNumber" | "noCurrency"
44830
+ ): string | undefined;
44714
44831
  /**
44715
44832
  * Returns the currency symbol for the specified currency, if no symbol is found the ISO 4217 currency code
44716
44833
  * is returned.
@@ -44896,27 +45013,28 @@ declare namespace sap {
44896
45013
  sCalendarType?: import("sap/base/i18n/date/CalendarType").default
44897
45014
  ): string[];
44898
45015
  /**
44899
- * Returns the short decimal format (like 1K, 1M....) of the given number in the given style and plural
44900
- * category.
45016
+ * Replaced by {@link #getCompactDecimalPattern}.
44901
45017
  *
44902
45018
  * @since 1.25.0
45019
+ * @deprecated As of version 1.133.0. use {@link #getCompactDecimalPattern} instead
44903
45020
  *
44904
- * @returns the short decimal format
45021
+ * @returns See {@link #getCompactDecimalPattern}
44905
45022
  */
44906
45023
  getDecimalFormat(
44907
45024
  /**
44908
- * the style
45025
+ * See {@link #getCompactDecimalPattern}; "short-indian" is only available since 1.133.0 for the "en-IN"
45026
+ * locale
44909
45027
  */
44910
- sStyle: "long" | "short",
45028
+ sStyle: "long" | "short" | "short-indian",
44911
45029
  /**
44912
- * the number in string representation as power of ten, for example "1000" or "10000"
45030
+ * See {@link #getCompactDecimalPattern}
44913
45031
  */
44914
- sNumber: string,
45032
+ sPowerOfTen: string,
44915
45033
  /**
44916
- * the plural category; defaults to "other" if the given plural category does not exist for this locale
45034
+ * See {@link #getCompactDecimalPattern}
44917
45035
  */
44918
- sPlural?: "one" | "other"
44919
- ): string;
45036
+ sPlural?: "few" | "many" | "one" | "other" | "two" | "zero"
45037
+ ): string | undefined;
44920
45038
  /**
44921
45039
  * Get decimal format pattern.
44922
45040
  *
@@ -45758,7 +45876,7 @@ declare namespace sap {
45758
45876
  *
45759
45877
  * Rendering must be done within the control that uses this kind of element. Its default level is none.
45760
45878
  *
45761
- * @deprecated (since 1.120) - Please use {@link sap.ui.core.message.Message} instead.
45879
+ * @deprecated As of version 1.120. Please use {@link sap.ui.core.message.Message} instead.
45762
45880
  */
45763
45881
  class Message extends sap.ui.core.Element {
45764
45882
  /**
@@ -46671,7 +46789,7 @@ declare namespace sap {
46671
46789
  bAutoClose: boolean
46672
46790
  ): this;
46673
46791
  /**
46674
- * @deprecated (since 1.75) - please use {@link #setExtraContent} instead.
46792
+ * @deprecated As of version 1.75. please use {@link #setExtraContent} instead.
46675
46793
  */
46676
46794
  setAutoCloseAreas(): void;
46677
46795
  /**
@@ -47211,7 +47329,7 @@ declare namespace sap {
47211
47329
  * Adds a class to the class collection if the name is not empty or null. The class collection is flushed
47212
47330
  * if it is written to the buffer using {@link #writeClasses}
47213
47331
  *
47214
- * @deprecated (since 1.92) - Instead use {@link sap.ui.core.RenderManager#class} of the {@link sap.ui.core.RenderManager Semantic Rendering API}.
47332
+ * @deprecated As of version 1.92. Instead use {@link sap.ui.core.RenderManager#class} of the {@link sap.ui.core.RenderManager Semantic Rendering API}.
47215
47333
  *
47216
47334
  * @returns Reference to `this` in order to allow method chaining
47217
47335
  */
@@ -47225,7 +47343,7 @@ declare namespace sap {
47225
47343
  * Adds a style property to the style collection if the value is not empty or null The style collection
47226
47344
  * is flushed if it is written to the buffer using {@link #writeStyle}
47227
47345
  *
47228
- * @deprecated (since 1.92) - Instead use {@link sap.ui.core.RenderManager#style} of the {@link sap.ui.core.RenderManager Semantic Rendering API}.
47346
+ * @deprecated As of version 1.92. Instead use {@link sap.ui.core.RenderManager#style} of the {@link sap.ui.core.RenderManager Semantic Rendering API}.
47229
47347
  *
47230
47348
  * @returns Reference to `this` in order to allow method chaining
47231
47349
  */
@@ -47409,7 +47527,7 @@ declare namespace sap {
47409
47527
  /**
47410
47528
  * Returns the configuration object Shortcut for `sap.ui.getCore().getConfiguration()`
47411
47529
  *
47412
- * @deprecated (since 1.92) - Instead, use the {@link sap.ui.core.Core#getConfiguration} API.
47530
+ * @deprecated As of version 1.92. Instead, use the {@link sap.ui.core.Core#getConfiguration} API.
47413
47531
  *
47414
47532
  * @returns the configuration object
47415
47533
  */
@@ -47418,7 +47536,7 @@ declare namespace sap {
47418
47536
  * Renders the given {@link sap.ui.core.Control} and finally returns the content of the rendering buffer.
47419
47537
  * Ensures the buffer is restored to the state before calling this method.
47420
47538
  *
47421
- * @deprecated (since 0.15.0) - Use `flush()` instead render content outside the rendering phase.
47539
+ * @deprecated As of version 0.15.0. Use `flush()` instead render content outside the rendering phase.
47422
47540
  *
47423
47541
  * @returns the resulting HTML of the provided control
47424
47542
  */
@@ -47579,7 +47697,7 @@ declare namespace sap {
47579
47697
  sText: string
47580
47698
  ): this;
47581
47699
  /**
47582
- * @deprecated (since 1.1) - never has been implemented - DO NOT USE
47700
+ * @deprecated As of version 1.1. never has been implemented - DO NOT USE
47583
47701
  */
47584
47702
  translate(
47585
47703
  /**
@@ -47637,7 +47755,7 @@ declare namespace sap {
47637
47755
  /**
47638
47756
  * Write the given texts to the buffer.
47639
47757
  *
47640
- * @deprecated (since 1.92) - Instead, use the {@link sap.ui.core.RenderManager Semantic Rendering API}.
47758
+ * @deprecated As of version 1.92. Instead, use the {@link sap.ui.core.RenderManager Semantic Rendering API}.
47641
47759
  * There is no 1:1 replacement for `write`. Typically, `write` is used to create a longer sequence of HTML
47642
47760
  * markup (e.g. an element with attributes and children) in a single call. Such a markup sequence has to
47643
47761
  * be split into the individual calls of the Semantic Rendering API.
@@ -47665,7 +47783,7 @@ declare namespace sap {
47665
47783
  sText: string | number
47666
47784
  ): this;
47667
47785
  /**
47668
- * @deprecated (since 1.1) - never has been implemented - DO NOT USE
47786
+ * @deprecated As of version 1.1. never has been implemented - DO NOT USE
47669
47787
  *
47670
47788
  * @returns Reference to `this` in order to allow method chaining
47671
47789
  */
@@ -47728,7 +47846,8 @@ declare namespace sap {
47728
47846
  * ```
47729
47847
  * (assuming that "ida idb" is the auto-generated part based on the association `ariaDescribedBy`).
47730
47848
  *
47731
- * @deprecated (since 1.92) - Instead use {@link sap.ui.core.RenderManager#accessibilityState} of the {@link sap.ui.core.RenderManager Semantic Rendering API}.
47849
+ * @deprecated As of version 1.92. Instead use {@link sap.ui.core.RenderManager#accessibilityState} of the
47850
+ * {@link sap.ui.core.RenderManager Semantic Rendering API}.
47732
47851
  *
47733
47852
  * @returns Reference to `this` in order to allow method chaining
47734
47853
  */
@@ -47747,7 +47866,7 @@ declare namespace sap {
47747
47866
  *
47748
47867
  * For details about the escaping refer to {@link sap/base/security/encodeXML}.
47749
47868
  *
47750
- * @deprecated (since 1.92) - Instead use {@link sap.ui.core.RenderManager#attr} of the {@link sap.ui.core.RenderManager Semantic Rendering API}.
47869
+ * @deprecated As of version 1.92. Instead use {@link sap.ui.core.RenderManager#attr} of the {@link sap.ui.core.RenderManager Semantic Rendering API}.
47751
47870
  *
47752
47871
  * @returns Reference to `this` in order to allow method chaining
47753
47872
  */
@@ -47766,7 +47885,7 @@ declare namespace sap {
47766
47885
  *
47767
47886
  * The value is properly encoded to avoid XSS attacks.
47768
47887
  *
47769
- * @deprecated (since 1.92) - Instead use {@link sap.ui.core.RenderManager#attr} of the {@link sap.ui.core.RenderManager Semantic Rendering API}.
47888
+ * @deprecated As of version 1.92. Instead use {@link sap.ui.core.RenderManager#attr} of the {@link sap.ui.core.RenderManager Semantic Rendering API}.
47770
47889
  *
47771
47890
  * @returns Reference to `this` in order to allow method chaining
47772
47891
  */
@@ -47786,7 +47905,7 @@ declare namespace sap {
47786
47905
  * are added by default from the currently rendered control. If an oElement is given, this Element's custom
47787
47906
  * style classes are added instead. If oElement === false, no custom style classes are added.
47788
47907
  *
47789
- * @deprecated (since 1.92) - Not longer needed, when using the {@link sap.ui.core.RenderManager Semantic Rendering API }
47908
+ * @deprecated As of version 1.92. Not longer needed, when using the {@link sap.ui.core.RenderManager Semantic Rendering API }
47790
47909
  * the actual writing of classes happens when {@link sap.ui.core.RenderManager#openEnd} or {@link sap.ui.core.RenderManager#voidEnd }
47791
47910
  * are used.
47792
47911
  *
@@ -47801,7 +47920,7 @@ declare namespace sap {
47801
47920
  /**
47802
47921
  * Writes the controls data into the HTML. Control Data consists at least of the id of a control
47803
47922
  *
47804
- * @deprecated (since 1.92) - Instead use {@link sap.ui.core.RenderManager#openStart} or {@link sap.ui.core.RenderManager#voidStart }
47923
+ * @deprecated As of version 1.92. Instead use {@link sap.ui.core.RenderManager#openStart} or {@link sap.ui.core.RenderManager#voidStart }
47805
47924
  * of the {@link sap.ui.core.RenderManager Semantic Rendering API} and pass the desired control data as
47806
47925
  * the second parameter to the new API.
47807
47926
  *
@@ -47816,7 +47935,7 @@ declare namespace sap {
47816
47935
  /**
47817
47936
  * Writes the elements data into the HTML. Element Data consists at least of the id of an element
47818
47937
  *
47819
- * @deprecated (since 1.92) - Instead use {@link sap.ui.core.RenderManager#openStart} or {@link sap.ui.core.RenderManager#voidStart }
47938
+ * @deprecated As of version 1.92. Instead use {@link sap.ui.core.RenderManager#openStart} or {@link sap.ui.core.RenderManager#voidStart }
47820
47939
  * of the {@link sap.ui.core.RenderManager Semantic Rendering API} and pass the desired element data as
47821
47940
  * the second parameter to the new API.
47822
47941
  *
@@ -47833,7 +47952,7 @@ declare namespace sap {
47833
47952
  *
47834
47953
  * For details about the escaping refer to {@link sap/base/security/encodeXML}.
47835
47954
  *
47836
- * @deprecated (since 1.92) - Instead use {@link sap.ui.core.RenderManager#text} of the {@link sap.ui.core.RenderManager Semantic Rendering API}.
47955
+ * @deprecated As of version 1.92. Instead use {@link sap.ui.core.RenderManager#text} of the {@link sap.ui.core.RenderManager Semantic Rendering API}.
47837
47956
  *
47838
47957
  * @returns Reference to `this` in order to allow method chaining
47839
47958
  */
@@ -47859,7 +47978,7 @@ declare namespace sap {
47859
47978
  * with corresponding values in the `mAttributes` parameter:
47860
47979
  * - `role: "presentation"` `alt: ""`
47861
47980
  *
47862
- * @deprecated (since 1.92) - Instead use {@link sap.ui.core.RenderManager#icon} of the {@link sap.ui.core.RenderManager Semantic Rendering API}.
47981
+ * @deprecated As of version 1.92. Instead use {@link sap.ui.core.RenderManager#icon} of the {@link sap.ui.core.RenderManager Semantic Rendering API}.
47863
47982
  *
47864
47983
  * @returns Reference to `this` in order to allow method chaining
47865
47984
  */
@@ -47880,7 +47999,7 @@ declare namespace sap {
47880
47999
  /**
47881
48000
  * Writes and flushes the style collection
47882
48001
  *
47883
- * @deprecated (since 1.92) - Not longer needed, when using the {@link sap.ui.core.RenderManager Semantic Rendering API }
48002
+ * @deprecated As of version 1.92. Not longer needed, when using the {@link sap.ui.core.RenderManager Semantic Rendering API }
47884
48003
  * the actual writing of styles happens when {@link sap.ui.core.RenderManager#openEnd} or {@link sap.ui.core.RenderManager#voidEnd }
47885
48004
  * are used.
47886
48005
  *
@@ -47915,8 +48034,8 @@ declare namespace sap {
47915
48034
  /**
47916
48035
  * Creates a new subclass of class `sap.ui.core.ResizeHandler`.
47917
48036
  *
47918
- * @deprecated (since 1.110) - As the class nature of ResizeHandler is deprecated since 1.103, the `extend`
47919
- * method shouldn't be called either
48037
+ * @deprecated As of version 1.110. As the class nature of ResizeHandler is deprecated since 1.103, the
48038
+ * `extend` method shouldn't be called either
47920
48039
  *
47921
48040
  * @returns Created class / constructor function
47922
48041
  */
@@ -47938,8 +48057,8 @@ declare namespace sap {
47938
48057
  /**
47939
48058
  * Returns a metadata object for class `sap.ui.core.ResizeHandler`.
47940
48059
  *
47941
- * @deprecated (since 1.110) - As the class nature of ResizeHandler is deprecated since 1.103, the `getMetadata`
47942
- * method shouldn't be called either
48060
+ * @deprecated As of version 1.110. As the class nature of ResizeHandler is deprecated since 1.103, the
48061
+ * `getMetadata` method shouldn't be called either
47943
48062
  *
47944
48063
  * @returns Metadata object describing this class
47945
48064
  */
@@ -47999,7 +48118,7 @@ declare namespace sap {
47999
48118
  * the respective part only. E.g. a Table control can take care of only rendering the currently visible
48000
48119
  * rows and use this ScrollBar control to make the user think he actually scrolls through a long list.
48001
48120
  *
48002
- * @deprecated (since 1.56) - the concept has been discarded.
48121
+ * @deprecated As of version 1.56. the concept has been discarded.
48003
48122
  */
48004
48123
  class ScrollBar extends sap.ui.core.Control {
48005
48124
  /**
@@ -49133,7 +49252,7 @@ declare namespace sap {
49133
49252
  * Returns the content control of this `UIArea` at the specified index. If no index is given the first content
49134
49253
  * control is returned.
49135
49254
  *
49136
- * @deprecated (since 1.1) - use function {@link #getContent} instead
49255
+ * @deprecated As of version 1.1. use function {@link #getContent} instead
49137
49256
  *
49138
49257
  * @returns the content control of this `UIArea` at the specified index.
49139
49258
  */
@@ -49299,7 +49418,7 @@ declare namespace sap {
49299
49418
  * to this UIArea will be cut off). Then the parent relationship for the new content control (if not empty)
49300
49419
  * will be set to this UIArea and finally, the UIArea will be marked for re-rendering.
49301
49420
  *
49302
- * @deprecated (since 1.1) - use {@link #removeAllContent} and {@link #addContent} instead
49421
+ * @deprecated As of version 1.1. use {@link #removeAllContent} and {@link #addContent} instead
49303
49422
  */
49304
49423
  setRootControl(
49305
49424
  /**
@@ -49312,7 +49431,7 @@ declare namespace sap {
49312
49431
  *
49313
49432
  * The node must have an ID that will be used as ID for this instance of `UIArea`.
49314
49433
  *
49315
- * @deprecated (since 1.107) - without a replacement. Applications should not create or modify `UIArea`s
49434
+ * @deprecated As of version 1.107. without a replacement. Applications should not create or modify `UIArea`s
49316
49435
  * programmatically. They should only assign controls to them, by using {@link sap.ui.core.Control.prototype.placeAt Control.prototype.placeAt }
49317
49436
  * or use the API of a `UIArea` as reachable via {@link sap.ui.core.Control.prototype.getUIArea Control.prototype.getUIArea}.
49318
49437
  */
@@ -49817,8 +49936,8 @@ declare namespace sap {
49817
49936
  * Base Class for XMLComposite controls.
49818
49937
  *
49819
49938
  * @since 1.56.0
49820
- * @deprecated (since 1.88) - use {@link topic:c1512f6ce1454ff1913e3857bad56392 Standard Composite Controls}
49821
- * @experimental (since 1.56.0)
49939
+ * @deprecated As of version 1.88. use {@link topic:c1512f6ce1454ff1913e3857bad56392 Standard Composite Controls}
49940
+ * @experimental As of version 1.56.0.
49822
49941
  */
49823
49942
  abstract class XMLComposite extends sap.ui.core.Control {
49824
49943
  /**
@@ -50477,7 +50596,7 @@ declare namespace sap {
50477
50596
  /**
50478
50597
  * The types of `Calendar`.
50479
50598
  *
50480
- * @deprecated (since 1.120) - Please use {@link module:sap/base/i18n/date/CalendarType} instead.
50599
+ * @deprecated As of version 1.120. Please use {@link module:sap/base/i18n/date/CalendarType} instead.
50481
50600
  */
50482
50601
  enum CalendarType {
50483
50602
  /**
@@ -50808,7 +50927,7 @@ declare namespace sap {
50808
50927
  *
50809
50928
  * This enum is part of the 'sap/ui/core/library' module export and must be accessed by the property 'MessageType'.
50810
50929
  *
50811
- * @deprecated (since 1.120) - Please use {@link module:sap/ui/core/message/MessageType} instead.
50930
+ * @deprecated As of version 1.120. Please use {@link module:sap/ui/core/message/MessageType} instead.
50812
50931
  */
50813
50932
  enum MessageType {
50814
50933
  /**
@@ -51533,7 +51652,7 @@ declare namespace sap {
51533
51652
  /**
51534
51653
  * If called on an instance of an (v1/v2) ODataModel it will enrich it with analytics capabilities.
51535
51654
  *
51536
- * @experimental - This module is only for experimental use!
51655
+ * @experimental This module is only for experimental use!
51537
51656
  * @ui5-protected Do not call from applications (only from related classes in the framework)
51538
51657
  */
51539
51658
  function ODataModelAdapter(): void;
@@ -51557,7 +51676,7 @@ declare namespace sap {
51557
51676
  /**
51558
51677
  * Handle to an OData model by the URI pointing to it.
51559
51678
  *
51560
- * @deprecated (since 1.94) - use {@link sap.ui.model.analytics.odata4analytics.Model.ReferenceByModel }
51679
+ * @deprecated As of version 1.94. use {@link sap.ui.model.analytics.odata4analytics.Model.ReferenceByModel }
51561
51680
  * instead
51562
51681
  */
51563
51682
  class ReferenceByURI {
@@ -53456,7 +53575,7 @@ declare namespace sap {
53456
53575
  *
53457
53576
  * Lazy initialization of attributes will cause unexpected values when you access object attributes directly.
53458
53577
  *
53459
- * @experimental - This module is only for experimental use!
53578
+ * @experimental This module is only for experimental use!
53460
53579
  * @ui5-protected DO NOT USE IN APPLICATIONS (only for related classes in the framework)
53461
53580
  */
53462
53581
  interface odata4analytics {
@@ -53487,7 +53606,7 @@ declare namespace sap {
53487
53606
  * to OData requests. If a binding count mode is set to `Request` or `Both`, a warning is logged to remind
53488
53607
  * the application that the OData requests generated by the AnalyticalBinding include a $inlinecount.
53489
53608
  *
53490
- * @experimental - This module is only for experimental use!
53609
+ * @experimental This module is only for experimental use!
53491
53610
  * @ui5-protected DO NOT USE IN APPLICATIONS (only for related classes in the framework)
53492
53611
  */
53493
53612
  class AnalyticalBinding extends sap.ui.model.TreeBinding {
@@ -53926,7 +54045,7 @@ declare namespace sap {
53926
54045
  /**
53927
54046
  * Gets the total number of leaves or `-1` if this is unknown.
53928
54047
  *
53929
- * @deprecated (since 1.92) - use {@link #getCount} instead
54048
+ * @deprecated As of version 1.92. use {@link #getCount} instead
53930
54049
  *
53931
54050
  * @returns The total number of leaves, or `-1` if the number is not yet known or if the binding parameter
53932
54051
  * `provideTotalResultSize` is set to `false`
@@ -54649,7 +54768,7 @@ declare namespace sap {
54649
54768
  * controls. Only usable with the sap.ui.table.TreeTable control. The functions defined here are only available
54650
54769
  * when you are using a TreeTable and an ODataModel.
54651
54770
  *
54652
- * @experimental - This module is only for experimental and internal use!
54771
+ * @experimental This module is only for experimental and internal use!
54653
54772
  */
54654
54773
  function ODataTreeBindingAdapter(): void;
54655
54774
  /**
@@ -58264,7 +58383,7 @@ declare namespace sap {
58264
58383
  /**
58265
58384
  * Returns the parsed and merged annotation data object.
58266
58385
  *
58267
- * @deprecated (since 1.37.0) - only kept for compatibility with V1 API, use {@link #getData} instead.
58386
+ * @deprecated As of version 1.37.0. only kept for compatibility with V1 API, use {@link #getData} instead.
58268
58387
  */
58269
58388
  getAnnotationsData: undefined;
58270
58389
 
@@ -60041,8 +60160,7 @@ declare namespace sap {
60041
60160
  * support the operation modes `Client` and `Auto`. **Note:** {@link sap.ui.model.odata.OperationMode.Auto }
60042
60161
  * is deprecated since 1.102.0.
60043
60162
  * See:
60044
- * {@link http://www.sap.com/protocols/SAPData
60045
- * "SAP Annotations for OData Version 2.0" Specification}
60163
+ * {@link http://www.sap.com/protocols/SAPData "SAP Annotations for OData Version 2.0" Specification}
60046
60164
  *
60047
60165
  *
60048
60166
  * @returns The new tree binding
@@ -60585,7 +60703,7 @@ declare namespace sap {
60585
60703
  * **Note:** Controls are not updated. Use {@link #resetChanges} instead to update also the controls, for
60586
60704
  * example: `oModel.resetChanges([oContext.getPath()], undefined, true);`
60587
60705
  *
60588
- * @deprecated (since 1.95.0) - use {@link #resetChanges} instead
60706
+ * @deprecated As of version 1.95.0. use {@link #resetChanges} instead
60589
60707
  */
60590
60708
  deleteCreatedEntry(
60591
60709
  /**
@@ -60832,7 +60950,7 @@ declare namespace sap {
60832
60950
  /**
60833
60951
  * Returns the definition of batch groups per entity type for two-way binding changes.
60834
60952
  *
60835
- * @deprecated (since 1.36) - use {@link #getChangeGroups} instead
60953
+ * @deprecated As of version 1.36. use {@link #getChangeGroups} instead
60836
60954
  *
60837
60955
  * @returns Definition of batch groups for two-way binding changes, keyed by entity names.
60838
60956
  */
@@ -60853,7 +60971,7 @@ declare namespace sap {
60853
60971
  /**
60854
60972
  * Return requested data as object if the data has already been loaded and stored in the model.
60855
60973
  *
60856
- * @deprecated (since 1.24) - please use {@link #getProperty} instead
60974
+ * @deprecated As of version 1.24. please use {@link #getProperty} instead
60857
60975
  *
60858
60976
  * @returns Object containing the requested data if the path is valid.
60859
60977
  */
@@ -60887,7 +61005,7 @@ declare namespace sap {
60887
61005
  /**
60888
61006
  * Returns the array of batch group IDs that are set as deferred
60889
61007
  *
60890
- * @deprecated (since 1.32) - use {@link #getDeferredGroups} instead
61008
+ * @deprecated As of version 1.32. use {@link #getDeferredGroups} instead
60891
61009
  *
60892
61010
  * @returns aGroupIds The array of deferred batch group IDs
60893
61011
  */
@@ -61150,7 +61268,7 @@ declare namespace sap {
61150
61268
  * Returns the current security token if available; triggers a request to fetch the security token if it
61151
61269
  * is not available.
61152
61270
  *
61153
- * @deprecated (since 1.119.0) - use {@link #securityTokenAvailable} instead
61271
+ * @deprecated As of version 1.119.0. use {@link #securityTokenAvailable} instead
61154
61272
  *
61155
61273
  * @returns The security token; `undefined` if it is not available
61156
61274
  */
@@ -61409,7 +61527,7 @@ declare namespace sap {
61409
61527
  * Refreshes the metadata for this model, for example when the request for metadata has failed. Returns
61410
61528
  * a new promise which can be resolved or rejected depending on the metadata loading state.
61411
61529
  *
61412
- * @deprecated (since 1.42) - this API may cause data inconsistencies and should not be used.
61530
+ * @deprecated As of version 1.42. this API may cause data inconsistencies and should not be used.
61413
61531
  *
61414
61532
  * @returns A promise on metadata loaded state or `undefined` if metadata is not initialized or currently
61415
61533
  * refreshed
@@ -61544,7 +61662,7 @@ declare namespace sap {
61544
61662
  /**
61545
61663
  * Definition of batch groups per entity type for two-way binding changes.
61546
61664
  *
61547
- * @deprecated (since 1.32) - Use {@link #setChangeGroups} instead
61665
+ * @deprecated As of version 1.32. Use {@link #setChangeGroups} instead
61548
61666
  */
61549
61667
  setChangeBatchGroups(
61550
61668
  /**
@@ -61597,7 +61715,7 @@ declare namespace sap {
61597
61715
  *
61598
61716
  * Requests that belong to a deferred batch group have to be sent by explicitly calling {@link #submitChanges}.
61599
61717
  *
61600
- * @deprecated (since 1.32) - use {@link #setDeferredGroups} instead
61718
+ * @deprecated As of version 1.32. use {@link #setDeferredGroups} instead
61601
61719
  */
61602
61720
  setDeferredBatchGroups(
61603
61721
  /**
@@ -61711,8 +61829,8 @@ declare namespace sap {
61711
61829
  * Submits the collected changes which were collected by the {@link #setProperty} method and other deferred
61712
61830
  * requests.
61713
61831
  *
61714
- * The update method is defined by the global `defaultUpdateMethod` parameter which is `sap.ui.model.odata.UpdateMethod.Merge`
61715
- * by default. In case of a `sap.ui.model.odata.UpdateMethod.Merge` request only the changed properties
61832
+ * The update method is defined by the global `defaultUpdateMethod` parameter which is `sap.ui.model.odata.UpdateMethod.MERGE`
61833
+ * by default. In case of a `sap.ui.model.odata.UpdateMethod.MERGE` request only the changed properties
61716
61834
  * will be updated. If a URI with a `$expand` query option was used then the expand entries will be removed
61717
61835
  * from the collected changes. Changes to this entries should be done on the entry itself. So no deep updates
61718
61836
  * are supported.
@@ -61757,8 +61875,8 @@ declare namespace sap {
61757
61875
  batchGroupId?: string;
61758
61876
  /**
61759
61877
  * **Deprecated** since 1.38.0; use the `defaultUpdateMethod` constructor parameter instead. If unset, the
61760
- * update method is determined from the `defaultUpdateMethod` constructor parameter. If `true`, `sap.ui.model.odata.UpdateMethod.Merge`
61761
- * is used for update operations; if set to `false`, `sap.ui.model.odata.UpdateMethod.Put` is used.
61878
+ * update method is determined from the `defaultUpdateMethod` constructor parameter. If `true`, `sap.ui.model.odata.UpdateMethod.MERGE`
61879
+ * is used for update operations; if set to `false`, `sap.ui.model.odata.UpdateMethod.PUT` is used.
61762
61880
  */
61763
61881
  merge?: boolean;
61764
61882
  }
@@ -61766,7 +61884,7 @@ declare namespace sap {
61766
61884
  /**
61767
61885
  * Trigger a `PUT/MERGE` request to the OData service that was specified in the model constructor.
61768
61886
  *
61769
- * The update method used is defined by the global `defaultUpdateMethod` parameter which is `sap.ui.model.odata.UpdateMethod.Merge`
61887
+ * The update method used is defined by the global `defaultUpdateMethod` parameter which is `sap.ui.model.odata.UpdateMethod.MERGE`
61770
61888
  * by default. Please note that deep updates are not supported and may not work. These should be done separately
61771
61889
  * and directly on the corresponding entry.
61772
61890
  *
@@ -62109,9 +62227,9 @@ declare namespace sap {
62109
62227
  /**
62110
62228
  * Different modes for retrieving the count of collections.
62111
62229
  *
62112
- * @deprecated (since 1.74.0) - Use {@link sap.ui.model.odata.CountMode} to specify how the count of collections
62113
- * is retrieved. Use the `useBatch` parameter of the {@link sap.ui.model.odata.v2.ODataModel} constructor
62114
- * to specify whether requests are sent in $batch.
62230
+ * @deprecated As of version 1.74.0. Use {@link sap.ui.model.odata.CountMode} to specify how the count of
62231
+ * collections is retrieved. Use the `useBatch` parameter of the {@link sap.ui.model.odata.v2.ODataModel }
62232
+ * constructor to specify whether requests are sent in $batch.
62115
62233
  */
62116
62234
  enum BatchMode {
62117
62235
  /**
@@ -62394,7 +62512,7 @@ declare namespace sap {
62394
62512
  /**
62395
62513
  * Parameters of the ODataListBinding#separateReceived event.
62396
62514
  *
62397
- * @experimental (since 1.131.0)
62515
+ * @experimental As of version 1.131.0.
62398
62516
  */
62399
62517
  interface ODataListBinding$SeparateReceivedEventParameters {
62400
62518
  /**
@@ -64216,7 +64334,7 @@ declare namespace sap {
64216
64334
  * Invokes the OData operation that corresponds to this operation binding.
64217
64335
  *
64218
64336
  * @since 1.37.0
64219
- * @deprecated (since 1.123.0) - use {@link #invoke} instead
64337
+ * @deprecated As of version 1.123.0. use {@link #invoke} instead
64220
64338
  *
64221
64339
  * @returns A promise that is resolved without data or with a return value context when the operation call
64222
64340
  * succeeded, or rejected with an `Error` instance `oError` in case of failure.
@@ -65461,12 +65579,6 @@ declare namespace sap {
65461
65579
  * An object holding the information needed for data aggregation; see also OData
65462
65580
  * Extension for Data Aggregation Version 4.0. Since 1.76.0, `undefined` can be used to remove the data
65463
65581
  * aggregation object, which allows to set `$apply` explicitly afterwards. `null` is not supported.
65464
- * Since 1.89.0, the **deprecated** property `"grandTotal like 1.84" : true` can be used to turn on the
65465
- * handling of grand totals like in 1.84.0, using aggregates of aggregates and thus allowing to filter by
65466
- * aggregated properties while grand totals are needed. Beware that methods like "average" or "countdistinct"
65467
- * are not compatible with this approach, and it cannot be combined with group levels. Since 1.129.0, this
65468
- * property is not needed anymore and filtering by aggregated properties is supported even while grand totals
65469
- * or subtotals are needed.
65470
65582
  * Since 1.117.0, either a read-only recursive hierarchy or pure data aggregation is supported, but no
65471
65583
  * mix; `hierarchyQualifier` is the leading property that decides between those two use cases. Since 1.125.0,
65472
65584
  * maintenance of a recursive hierarchy is supported.
@@ -65549,6 +65661,15 @@ declare namespace sap {
65549
65661
  * for top and bottom, the default is top only (that is, as part of the group level node)
65550
65662
  */
65551
65663
  subtotalsAtBottomOnly?: boolean;
65664
+ /**
65665
+ * Since 1.89.0, the **deprecated** property `"grandTotal like 1.84" : true` can be used to turn on the
65666
+ * handling of grand totals like in 1.84.0, using aggregates of aggregates and thus allowing to filter by
65667
+ * aggregated properties while grand totals are needed. Beware that methods like "average" or "countdistinct"
65668
+ * are not compatible with this approach, and it cannot be combined with group levels. Since 1.129.0, this
65669
+ * property is not needed anymore and filtering by aggregated properties is supported even while grand totals
65670
+ * or subtotals are needed.
65671
+ */
65672
+ "grandTotal like 1.84"?: boolean;
65552
65673
  }
65553
65674
  ): void;
65554
65675
  /**
@@ -65895,8 +66016,8 @@ declare namespace sap {
65895
66016
  * Returns the maximum value of all "Last-Modified" response headers seen so far.
65896
66017
  *
65897
66018
  * @since 1.47.0
65898
- * @deprecated (since 1.51.0) - use {@link #getETags} instead because modifications to old files may be
65899
- * shadowed by a new file in certain scenarios.
66019
+ * @deprecated As of version 1.51.0. use {@link #getETags} instead because modifications to old files may
66020
+ * be shadowed by a new file in certain scenarios.
65900
66021
  *
65901
66022
  * @returns The maximum value of all "Last-Modified" (or, as a fallback, "Date") response headers seen so
65902
66023
  * far when loading $metadata or annotation files. It is `new Date(0)` initially as long as no such files
@@ -67210,7 +67331,7 @@ declare namespace sap {
67210
67331
  /**
67211
67332
  * Returns a map of HTTP headers used for data and metadata requests. While the "X-CSRF-Token" header is
67212
67333
  * not used for metadata requests, it is still included here if available. The "SAP-ContextId" header is
67213
- * only included if requested explicitly (@since 1.86.0).
67334
+ * only included if requested explicitly (since 1.86.0).
67214
67335
  * See:
67215
67336
  * #changeHttpHeaders
67216
67337
  *
@@ -67220,7 +67341,7 @@ declare namespace sap {
67220
67341
  */
67221
67342
  getHttpHeaders(
67222
67343
  /**
67223
- * Whether to include the "SAP-ContextId" header (@since 1.86.0)
67344
+ * Whether to include the "SAP-ContextId" header (since 1.86.0)
67224
67345
  */
67225
67346
  bIncludeContextId?: boolean
67226
67347
  ): Record<string, string>;
@@ -67420,7 +67541,7 @@ declare namespace sap {
67420
67541
  * an element binding.
67421
67542
  *
67422
67543
  * @since 1.37.0
67423
- * @deprecated (since 1.39.0) - Use {@link sap.ui.model.odata.v4.Context#requestCanonicalPath} instead.
67544
+ * @deprecated As of version 1.39.0. Use {@link sap.ui.model.odata.v4.Context#requestCanonicalPath} instead.
67424
67545
  *
67425
67546
  * @returns A promise which is resolved with the canonical path (e.g. "/SalesOrderList('0500000000')") in
67426
67547
  * case of success, or rejected with an instance of `Error` in case of failure, e.g. when the given context
@@ -68018,7 +68139,7 @@ declare namespace sap {
68018
68139
  /**
68019
68140
  * Event object of the ODataListBinding#separateReceived event.
68020
68141
  *
68021
- * @experimental (since 1.131.0)
68142
+ * @experimental As of version 1.131.0.
68022
68143
  */
68023
68144
  type ODataListBinding$SeparateReceivedEvent = sap.ui.base.Event<
68024
68145
  ODataListBinding$SeparateReceivedEventParameters,
@@ -68972,7 +69093,7 @@ declare namespace sap {
68972
69093
  *
68973
69094
  *
68974
69095
  * @since 1.31.0
68975
- * @deprecated (since 1.121) - the concept has been discarded.
69096
+ * @deprecated As of version 1.121. the concept has been discarded.
68976
69097
  *
68977
69098
  * @returns constant value or binding info object for a property as expected by {@link sap.ui.base.ManagedObject#applySettings applySettings}
68978
69099
  */
@@ -69399,7 +69520,7 @@ declare namespace sap {
69399
69520
  /**
69400
69521
  * Filter for the list binding
69401
69522
  *
69402
- * @deprecated (since 1.22) - Please use the {@link sap.ui.model.Filter} instead.
69523
+ * @deprecated As of version 1.22. Please use the {@link sap.ui.model.Filter} instead.
69403
69524
  */
69404
69525
  class Filter extends sap.ui.base.Object {
69405
69526
  /**
@@ -69462,7 +69583,7 @@ declare namespace sap {
69462
69583
  /**
69463
69584
  * Implementation to access OData Annotations
69464
69585
  *
69465
- * @deprecated (since 1.66) - please use {@link sap.ui.model.odata.v2.ODataAnnotations} instead.
69586
+ * @deprecated As of version 1.66. please use {@link sap.ui.model.odata.v2.ODataAnnotations} instead.
69466
69587
  */
69467
69588
  class ODataAnnotations extends sap.ui.base.EventProvider {
69468
69589
  constructor(
@@ -69751,7 +69872,7 @@ declare namespace sap {
69751
69872
  /**
69752
69873
  * The ContextBinding is a specific binding for a setting context for the model
69753
69874
  *
69754
- * @deprecated (since 1.66) - please use {@link sap.ui.model.odata.v2.ODataContextBinding} instead.
69875
+ * @deprecated As of version 1.66. please use {@link sap.ui.model.odata.v2.ODataContextBinding} instead.
69755
69876
  */
69756
69877
  abstract class ODataContextBinding extends sap.ui.model.ContextBinding {
69757
69878
  /**
@@ -69805,7 +69926,7 @@ declare namespace sap {
69805
69926
  /**
69806
69927
  * List binding implementation for OData format.
69807
69928
  *
69808
- * @deprecated (since 1.66) - please use {@link sap.ui.model.odata.v2.ODataListBinding} instead.
69929
+ * @deprecated As of version 1.66. please use {@link sap.ui.model.odata.v2.ODataListBinding} instead.
69809
69930
  */
69810
69931
  class ODataListBinding extends sap.ui.model.ListBinding {
69811
69932
  constructor(
@@ -70914,7 +71035,7 @@ declare namespace sap {
70914
71035
  /**
70915
71036
  * Model implementation for OData format
70916
71037
  *
70917
- * @deprecated (since 1.48) - please use {@link sap.ui.model.odata.v2.ODataModel} instead.
71038
+ * @deprecated As of version 1.48. please use {@link sap.ui.model.odata.v2.ODataModel} instead.
70918
71039
  */
70919
71040
  class ODataModel extends sap.ui.model.Model {
70920
71041
  /**
@@ -71681,8 +71802,8 @@ declare namespace sap {
71681
71802
  /**
71682
71803
  * Force no caching
71683
71804
  *
71684
- * @deprecated (since 1.13) - the caching should be controlled by the backend by setting the correct cache
71685
- * control header
71805
+ * @deprecated As of version 1.13. the caching should be controlled by the backend by setting the correct
71806
+ * cache control header
71686
71807
  */
71687
71808
  forceNoCache(
71688
71809
  /**
@@ -71693,7 +71814,7 @@ declare namespace sap {
71693
71814
  /**
71694
71815
  * Return requested data as object if the data has already been loaded and stored in the model.
71695
71816
  *
71696
- * @deprecated (since 1.6.0) - please use {@link #getProperty} instead
71817
+ * @deprecated As of version 1.6.0. please use {@link #getProperty} instead
71697
71818
  *
71698
71819
  * @returns oData Object containing the requested data if the path is valid.
71699
71820
  */
@@ -71825,7 +71946,7 @@ declare namespace sap {
71825
71946
  /**
71826
71947
  * Returns whether this model supports `$count` on its collections.
71827
71948
  *
71828
- * @deprecated (since 1.20) - please use {@link #getDefaultCountMode} instead.
71949
+ * @deprecated As of version 1.20. please use {@link #getDefaultCountMode} instead.
71829
71950
  *
71830
71951
  * @returns Whether this model supports `$count` on its collections
71831
71952
  */
@@ -71989,7 +72110,7 @@ declare namespace sap {
71989
72110
  /**
71990
72111
  * Sets whether this OData service supports `$count` on its collections.
71991
72112
  *
71992
- * @deprecated (since 1.20) - please use {@link #setDefaultCountMode} instead.
72113
+ * @deprecated As of version 1.20. please use {@link #setDefaultCountMode} instead.
71993
72114
  */
71994
72115
  setCountSupported(
71995
72116
  /**
@@ -72323,7 +72444,7 @@ declare namespace sap {
72323
72444
  * before the introduction of the `CountMode`. For compatibility reasons, it is the default for the `ODataModel`
72324
72445
  * (v1) and shouldn't be used otherwise.
72325
72446
  *
72326
- * @deprecated (since 1.43) - this shouldn't be used any longer, decide for one of the other modes.
72447
+ * @deprecated As of version 1.43. this shouldn't be used any longer, decide for one of the other modes.
72327
72448
  */
72328
72449
  Both = "Both",
72329
72450
  /**
@@ -72396,7 +72517,7 @@ declare namespace sap {
72396
72517
  * there is much more data than expected.
72397
72518
  * - Count mode `None` is not supported together with operation mode `Auto`
72398
72519
  *
72399
- * @deprecated (since 1.102.0) - because filtering and sorting may lead to different results when executed
72520
+ * @deprecated As of version 1.102.0. because filtering and sorting may lead to different results when executed
72400
72521
  * on the client and on the server, and thus to inconsistent behavior. If it is certain that the collection
72401
72522
  * is completely loaded on the client, use {@link sap.ui.model.odata.OperationMode.Client}; otherwise, use
72402
72523
  * {@link sap.ui.model.odata.OperationMode.Default} or {@link sap.ui.model.odata.OperationMode.Server}.
@@ -72426,10 +72547,22 @@ declare namespace sap {
72426
72547
  /**
72427
72548
  * Update requests will be send with HTTP method `MERGE`.
72428
72549
  */
72550
+ MERGE = "MERGE",
72551
+ /**
72552
+ * Deprecated to avoid different spellings, use {@link sap.ui.model.odata.UpdateMethod.MERGE} instead.
72553
+ *
72554
+ * @deprecated As of version 1.133.0. use {@link sap.ui.model.odata.UpdateMethod.MERGE} instead
72555
+ */
72429
72556
  Merge = "MERGE",
72430
72557
  /**
72431
72558
  * Update requests will be send with HTTP method `PUT`.
72432
72559
  */
72560
+ PUT = "PUT",
72561
+ /**
72562
+ * Deprecated to avoid different spellings, use {@link sap.ui.model.odata.UpdateMethod.PUT} instead.
72563
+ *
72564
+ * @deprecated As of version 1.133.0. use {@link sap.ui.model.odata.UpdateMethod.PUT} instead
72565
+ */
72433
72566
  Put = "PUT",
72434
72567
  }
72435
72568
  /**
@@ -73004,106 +73137,6 @@ declare namespace sap {
73004
73137
  }
73005
73138
  }
73006
73139
 
73007
- namespace base {
73008
- /**
73009
- * The ManagedObjectModel class can be used for data binding of properties and aggregations for managed
73010
- * objects.
73011
- *
73012
- * Provides model access to a given {@link sap.ui.base.ManagedObject}. Such access allows to bind to properties
73013
- * and aggregations of this object.
73014
- *
73015
- * @experimental (since 1.58)
73016
- */
73017
- class ManagedObjectModel extends sap.ui.model.json.JSONModel {
73018
- /**
73019
- * The ManagedObjectModel class allows you to bind to properties and aggregations of managed objects.
73020
- */
73021
- constructor(
73022
- /**
73023
- * the managed object models root object
73024
- */
73025
- oObject: sap.ui.base.ManagedObject,
73026
- /**
73027
- * an object for custom data
73028
- */
73029
- oData?: object
73030
- );
73031
-
73032
- /**
73033
- * Creates a new subclass of class sap.ui.model.base.ManagedObjectModel with name `sClassName` and enriches
73034
- * it with the information contained in `oClassInfo`.
73035
- *
73036
- * `oClassInfo` might contain the same kind of information as described in {@link sap.ui.model.json.JSONModel.extend}.
73037
- *
73038
- *
73039
- * @returns Created class / constructor function
73040
- */
73041
- static extend<T extends Record<string, unknown>>(
73042
- /**
73043
- * Name of the class being created
73044
- */
73045
- sClassName: string,
73046
- /**
73047
- * Object literal with information about the class
73048
- */
73049
- oClassInfo?: sap.ClassInfo<T, sap.ui.model.base.ManagedObjectModel>,
73050
- /**
73051
- * Constructor function for the metadata object; if not given, it defaults to the metadata implementation
73052
- * used by this class
73053
- */
73054
- FNMetaImpl?: Function
73055
- ): Function;
73056
- /**
73057
- * Returns a metadata object for class sap.ui.model.base.ManagedObjectModel.
73058
- *
73059
- *
73060
- * @returns Metadata object describing this class
73061
- */
73062
- static getMetadata(): sap.ui.base.Metadata;
73063
- /**
73064
- * Private method iterating the registered bindings of this model instance and initiating their check for
73065
- * update
73066
- *
73067
- * @ui5-protected Do not call from applications (only from related classes in the framework)
73068
- */
73069
- checkUpdate(
73070
- bForceUpdate: boolean,
73071
-
73072
- bAsync: boolean,
73073
- /**
73074
- * an optional test function to filter the binding
73075
- */
73076
- fnFilter: Function
73077
- ): void;
73078
- /**
73079
- * Private method iterating the registered bindings of this model instance and initiating their check for
73080
- * update
73081
- *
73082
- * @ui5-protected Do not call from applications (only from related classes in the framework)
73083
- */
73084
- checkUpdate(
73085
- bAsync: boolean,
73086
- /**
73087
- * an optional test function to filter the binding
73088
- */
73089
- fnFilter: Function
73090
- ): void;
73091
- /**
73092
- * Inserts the user-defined custom data into the model.
73093
- */
73094
- setData(
73095
- /**
73096
- * The data as JSON object to be set on the model
73097
- */
73098
- oData: object,
73099
- /**
73100
- * If set to `true`, the data is merged instead of replaced
73101
- */
73102
- bMerge?: boolean
73103
- ): void;
73104
- }
73105
- }
73106
-
73107
73140
  namespace type {
73108
73141
  /**
73109
73142
  * This class represents boolean simple types.
@@ -74375,7 +74408,7 @@ declare namespace sap {
74375
74408
  /**
74376
74409
  * Parameters of the ListBinding#filter event.
74377
74410
  *
74378
- * @deprecated (since 1.11) - use the `change` event. It now contains a parameter `(reason : "filter")`
74411
+ * @deprecated As of version 1.11. use the `change` event. It now contains a parameter `(reason : "filter")`
74379
74412
  * when a filter event is fired.
74380
74413
  */
74381
74414
  interface ListBinding$FilterEventParameters {}
@@ -74383,8 +74416,8 @@ declare namespace sap {
74383
74416
  /**
74384
74417
  * Parameters of the ListBinding#sort event.
74385
74418
  *
74386
- * @deprecated (since 1.11) - use the `change` event. It now contains a parameter `(reason : "sort")` when
74387
- * a sorter event is fired.
74419
+ * @deprecated As of version 1.11. use the `change` event. It now contains a parameter `(reason : "sort")`
74420
+ * when a sorter event is fired.
74388
74421
  */
74389
74422
  interface ListBinding$SortEventParameters {}
74390
74423
 
@@ -77040,7 +77073,7 @@ declare namespace sap {
77040
77073
  * When called, the context of the event handler (its `this`) will be bound to `oListener` if specified,
77041
77074
  * otherwise it will be bound to this `sap.ui.model.ListBinding` itself.
77042
77075
  *
77043
- * @deprecated (since 1.11) - use the `change` event. It now contains a parameter `(reason : "filter")`
77076
+ * @deprecated As of version 1.11. use the `change` event. It now contains a parameter `(reason : "filter")`
77044
77077
  * when a filter event is fired.
77045
77078
  * @ui5-protected Do not call from applications (only from related classes in the framework)
77046
77079
  */
@@ -77060,8 +77093,8 @@ declare namespace sap {
77060
77093
  * When called, the context of the event handler (its `this`) will be bound to `oListener` if specified,
77061
77094
  * otherwise it will be bound to this `sap.ui.model.ListBinding` itself.
77062
77095
  *
77063
- * @deprecated (since 1.11) - use the `change` event. It now contains a parameter `(reason : "sort")` when
77064
- * a sorter event is fired.
77096
+ * @deprecated As of version 1.11. use the `change` event. It now contains a parameter `(reason : "sort")`
77097
+ * when a sorter event is fired.
77065
77098
  * @ui5-protected Do not call from applications (only from related classes in the framework)
77066
77099
  */
77067
77100
  attachSort(
@@ -77077,7 +77110,7 @@ declare namespace sap {
77077
77110
  /**
77078
77111
  * Detaches event handler `fnFunction` from the {@link #event:filter filter} event of this `sap.ui.model.ListBinding`.
77079
77112
  *
77080
- * @deprecated (since 1.11) - use the `change` event.
77113
+ * @deprecated As of version 1.11. use the `change` event.
77081
77114
  * @ui5-protected Do not call from applications (only from related classes in the framework)
77082
77115
  */
77083
77116
  detachFilter(
@@ -77093,7 +77126,7 @@ declare namespace sap {
77093
77126
  /**
77094
77127
  * Detaches event handler `fnFunction` from the {@link #event:sort sort} event of this `sap.ui.model.ListBinding`.
77095
77128
  *
77096
- * @deprecated (since 1.11) - use the `change` event.
77129
+ * @deprecated As of version 1.11. use the `change` event.
77097
77130
  * @ui5-protected Do not call from applications (only from related classes in the framework)
77098
77131
  */
77099
77132
  detachSort(
@@ -78122,7 +78155,7 @@ declare namespace sap {
78122
78155
  /**
78123
78156
  * Returns whether legacy path syntax is used.
78124
78157
  *
78125
- * @deprecated (since 1.88.0) - legacy path syntax is not supported by most model implementations.
78158
+ * @deprecated As of version 1.88.0. legacy path syntax is not supported by most model implementations.
78126
78159
  *
78127
78160
  * @returns Whether legacy path syntax is used
78128
78161
  */
@@ -78161,7 +78194,7 @@ declare namespace sap {
78161
78194
  * to earlier releases which means they are resolved relative to the root element or handled strict and
78162
78195
  * stay unresolved until a binding context is set.
78163
78196
  *
78164
- * @deprecated (since 1.88.0) - legacy path syntax is not supported by most model implementations.
78197
+ * @deprecated As of version 1.88.0. legacy path syntax is not supported by most model implementations.
78165
78198
  */
78166
78199
  setLegacySyntax(
78167
78200
  /**
@@ -79133,7 +79166,7 @@ declare namespace sap {
79133
79166
  * When called, the context of the event handler (its `this`) will be bound to `oListener` if specified,
79134
79167
  * otherwise it will be bound to this `sap.ui.model.TreeBinding` itself.
79135
79168
  *
79136
- * @deprecated (since 1.11) - use the `change` event. It now contains a parameter `(reason : "filter")`
79169
+ * @deprecated As of version 1.11. use the `change` event. It now contains a parameter `(reason : "filter")`
79137
79170
  * when a filter event is fired.
79138
79171
  * @ui5-protected Do not call from applications (only from related classes in the framework)
79139
79172
  */
@@ -79152,7 +79185,7 @@ declare namespace sap {
79152
79185
  *
79153
79186
  * The passed function and listener object must match the ones used for event registration.
79154
79187
  *
79155
- * @deprecated (since 1.11) - use the `change` event.
79188
+ * @deprecated As of version 1.11. use the `change` event.
79156
79189
  * @ui5-protected Do not call from applications (only from related classes in the framework)
79157
79190
  */
79158
79191
  detachFilter(
@@ -79624,7 +79657,7 @@ declare namespace sap {
79624
79657
  /**
79625
79658
  * Event object of the ListBinding#filter event.
79626
79659
  *
79627
- * @deprecated (since 1.11) - use the `change` event. It now contains a parameter `(reason : "filter")`
79660
+ * @deprecated As of version 1.11. use the `change` event. It now contains a parameter `(reason : "filter")`
79628
79661
  * when a filter event is fired.
79629
79662
  */
79630
79663
  type ListBinding$FilterEvent = sap.ui.base.Event<
@@ -79635,8 +79668,8 @@ declare namespace sap {
79635
79668
  /**
79636
79669
  * Event object of the ListBinding#sort event.
79637
79670
  *
79638
- * @deprecated (since 1.11) - use the `change` event. It now contains a parameter `(reason : "sort")` when
79639
- * a sorter event is fired.
79671
+ * @deprecated As of version 1.11. use the `change` event. It now contains a parameter `(reason : "sort")`
79672
+ * when a sorter event is fired.
79640
79673
  */
79641
79674
  type ListBinding$SortEvent = sap.ui.base.Event<
79642
79675
  ListBinding$SortEventParameters,
@@ -79731,7 +79764,7 @@ declare namespace sap {
79731
79764
  * synchronous.
79732
79765
  *
79733
79766
  * @since 1.16.3
79734
- * @deprecated (since 1.56) - use {@link sap.ui.core.Component.load}
79767
+ * @deprecated As of version 1.56. use {@link sap.ui.core.Component.load}
79735
79768
  *
79736
79769
  * @returns Constructor of the component class or a Promise that will be fulfilled with the same
79737
79770
  */
@@ -79866,7 +79899,7 @@ declare namespace sap {
79866
79899
  * have the possibility to customize the user agent, and to explicitly add this information.
79867
79900
  *
79868
79901
  * @since 1.31.0
79869
- * @deprecated (since 1.98)
79902
+ * @deprecated As of version 1.98.
79870
79903
  */
79871
79904
  export const webview: boolean;
79872
79905