@openui5/types 1.120.10 → 1.121.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -280,7 +280,7 @@ declare namespace sap {
280
280
  }
281
281
  }
282
282
 
283
- // For Library Version: 1.120.10
283
+ // For Library Version: 1.121.1
284
284
 
285
285
  declare module "sap/base/assert" {
286
286
  /**
@@ -1128,7 +1128,7 @@ declare module "sap/base/i18n/Localization" {
1128
1128
  * ```
1129
1129
  *
1130
1130
  *
1131
- * Call {@link moduel:sap/base/i18n/Localization.getLanguageTag getLanguageTag} to get a {@link module:sap/base/i18n/LanguageTag LanguageTag }
1131
+ * Call {@link module:sap/base/i18n/Localization.getLanguageTag getLanguageTag} to get a {@link module:sap/base/i18n/LanguageTag LanguageTag }
1132
1132
  * object matching the language. For a normalized BCP47 tag, call {@link module:sap/base/i18n/LanguageTag.toString toString() }
1133
1133
  * on the returned `LanguageTag`
1134
1134
  *
@@ -1140,7 +1140,7 @@ declare module "sap/base/i18n/Localization" {
1140
1140
  /**
1141
1141
  * Returns a LanguageTag object for the current language.
1142
1142
  *
1143
- * The LanguageTag is derived from {@link modue:sap/base/i18n/Localization.getLanguage Localization.getLanguage}.
1143
+ * The LanguageTag is derived from {@link module:sap/base/i18n/Localization.getLanguage Localization.getLanguage}.
1144
1144
  *
1145
1145
  * @since 1.120.0
1146
1146
  *
@@ -1346,7 +1346,10 @@ declare module "sap/base/i18n/ResourceBundle" {
1346
1346
  * @since 1.58
1347
1347
  */
1348
1348
  export default class ResourceBundle {
1349
- constructor();
1349
+ /**
1350
+ * @ui5-protected Do not call from applications (only from related classes in the framework)
1351
+ */
1352
+ protected constructor();
1350
1353
 
1351
1354
  /**
1352
1355
  * Creates and returns a new instance of {@link module:sap/base/i18n/ResourceBundle} using the given URL
@@ -1626,6 +1629,8 @@ declare module "sap/base/Log" {
1626
1629
  *
1627
1630
  * Only if the current LogLevel is higher than the level {@link module:sap/base/Log.Level} of the currently
1628
1631
  * added log entry, then this very entry is permanently added to the log. Otherwise it is ignored.
1632
+ *
1633
+ * This enum is part of the 'sap/base/Log' module export and must be accessed by the property 'Level'.
1629
1634
  */
1630
1635
  Level: typeof Level;
1631
1636
 
@@ -1931,6 +1936,8 @@ declare module "sap/base/Log" {
1931
1936
  *
1932
1937
  * Only if the current LogLevel is higher than the level {@link module:sap/base/Log.Level} of the currently
1933
1938
  * added log entry, then this very entry is permanently added to the log. Otherwise it is ignored.
1939
+ *
1940
+ * This enum is part of the 'sap/base/Log' module export and must be accessed by the property 'Level'.
1934
1941
  */
1935
1942
  enum Level {
1936
1943
  /**
@@ -3026,15 +3033,14 @@ declare module "sap/base/util/merge" {
3026
3033
 
3027
3034
  declare module "sap/base/util/now" {
3028
3035
  /**
3029
- * Returns a high resolution timestamp in microseconds if supported by the environment, otherwise in milliseconds.
3030
- * The timestamp is based on 01/01/1970 00:00:00 (UNIX epoch) as float with microsecond precision or with
3031
- * millisecond precision, if high resolution timestamps are not available. The fractional part of the timestamp
3032
- * represents fractions of a millisecond. Converting to a `Date` is possible by using `require(["sap/base/util/now"],
3033
- * function(now){new Date(now());}`
3036
+ * Returns a high resolution timestamp in microseconds. The timestamp is based on 01/01/1970 00:00:00 (UNIX
3037
+ * epoch) as float with microsecond precision. The fractional part of the timestamp represents fractions
3038
+ * of a millisecond. Converting to a `Date` is possible by using `require(["sap/base/util/now"], function(now){new
3039
+ * Date(now());}`
3034
3040
  *
3035
3041
  * @since 1.58
3036
3042
  *
3037
- * @returns timestamp in microseconds if supported by the environment otherwise in milliseconds
3043
+ * @returns timestamp in microseconds
3038
3044
  */
3039
3045
  export default function now(): float;
3040
3046
  }
@@ -3129,7 +3135,10 @@ declare module "sap/base/util/Properties" {
3129
3135
  * @since 1.58
3130
3136
  */
3131
3137
  export default class Properties {
3132
- constructor();
3138
+ /**
3139
+ * @ui5-protected Do not call from applications (only from related classes in the framework)
3140
+ */
3141
+ protected constructor();
3133
3142
 
3134
3143
  /**
3135
3144
  * Creates and returns a new instance of {@link module:sap/base/util/Properties}.
@@ -3793,6 +3802,15 @@ declare module "sap/ui/core/ComponentSupport" {
3793
3802
  * on the respective HTML tags. Each data attribute will be interpreted as a setting and parsed considering
3794
3803
  * the data type of the matching property in the `ComponentContainer`.
3795
3804
  *
3805
+ * **NOTE:** The following `data` attributes for registering event handlers have been deprecated since UI5
3806
+ * version 1.120 and won't work in the next major version because of the removal of accessing the global
3807
+ * namespace:
3808
+ * - `data-component-created`
3809
+ * - `data-component-failed`
3810
+ *
3811
+ * Alternatively, you can provide your own module in the bootstrap via `oninit`, in which you create an
3812
+ * instance of the {@link sap.ui.core.ComponentContainer ComponentContainer} in the JavaScript code.
3813
+ *
3796
3814
  * As HTML is case-insensitive, in order to define a property with upper-case characters, you have to "escape"
3797
3815
  * them with a dash character, similar to CSS attributes. The following code gives an example:
3798
3816
  *
@@ -3903,14 +3921,14 @@ declare module "sap/ui/core/date/CalendarUtils" {
3903
3921
  */
3904
3922
  getWeekConfigurationValues(
3905
3923
  /**
3906
- * The calendar week numbering; if omitted, the calendar week numbering of the Configuration is used; see
3907
- * {@link sap.ui.core.Configuration#getCalendarWeekNumbering}. If this value is `Default` the returned calendar
3908
- * week configuration is derived from the given `oLocale`.
3924
+ * The calendar week numbering; if omitted, the calendar week numbering of the configuration is used; see
3925
+ * {@link module:sap/base/i18n/Formatting.getCalendarWeekNumbering Formatting.getCalendarWeekNumbering}.
3926
+ * If this value is `Default` the returned calendar week configuration is derived from the given `oLocale`.
3909
3927
  */
3910
3928
  sCalendarWeekNumbering?: CalendarWeekNumbering,
3911
3929
  /**
3912
- * The locale to use; if not provided, this falls back to the format locale from the Configuration; see
3913
- * {@link sap.ui.core.Configuration.FormatSettings#getFormatLocale}. Is only used when `sCalendarWeekNumbering`
3930
+ * The locale to use; if no locale is given, a locale for the currently configured language is used; see
3931
+ * {@link module:sap/base/i18n/Formatting.getLanguageTag Formatting.getLanguageTag}. Is only used when `sCalendarWeekNumbering`
3914
3932
  * is set to `Default`.
3915
3933
  */
3916
3934
  oLocale?: Locale
@@ -3930,19 +3948,22 @@ declare module "sap/ui/core/date/UI5Date" {
3930
3948
  /**
3931
3949
  * A date implementation considering the configured time zone
3932
3950
  *
3933
- * A subclass of JavaScript `Date` that considers the configured time zone, see {@link sap.ui.core.Configuration#getTimezone}.
3951
+ * A subclass of JavaScript `Date` that considers the configured time zone, see {@link module:sap/base/i18n/Localization.getTimezone Localization.getTimezone}.
3934
3952
  * All JavaScript `Date` functions that use the local browser time zone, like `getDate`, `setDate`, and
3935
3953
  * `toString`, are overwritten and use the configured time zone to compute the values.
3936
3954
  *
3937
3955
  * Use {@link module:sap/ui/core/date/UI5Date.getInstance} to create new date instances.
3938
3956
  *
3939
3957
  * **Note:** Adjusting the time zone in a running application can lead to unexpected data inconsistencies.
3940
- * For more information, see {@link sap.ui.core.Configuration#setTimezone}.
3958
+ * For more information, see {@link module:sap/base/i18n/Localization.setTimezone Localization.setTimezone}.
3941
3959
  *
3942
3960
  * @since 1.111.0
3943
3961
  */
3944
3962
  export default class UI5Date extends Date {
3945
- constructor();
3963
+ /**
3964
+ * @ui5-protected Do not call from applications (only from related classes in the framework)
3965
+ */
3966
+ protected constructor();
3946
3967
 
3947
3968
  /**
3948
3969
  * Creates a date instance (either JavaScript Date or `UI5Date`) which considers the configured time zone
@@ -3950,9 +3971,9 @@ declare module "sap/ui/core/date/UI5Date" {
3950
3971
  * The supported parameters are the same as the ones supported by the JavaScript Date constructor.
3951
3972
  *
3952
3973
  * **Note:** Adjusting the time zone in a running application can lead to unexpected data inconsistencies.
3953
- * For more information, see {@link sap.ui.core.Configuration#setTimezone}.
3974
+ * For more information, see {@link module:sap/base/i18n/Localization.setTimezone Localization.setTimezone}.
3954
3975
  * See:
3955
- * sap.ui.core.Configuration#getTimezone
3976
+ * module:sap/base/i18n/Localization.getTimezone
3956
3977
  *
3957
3978
  *
3958
3979
  * @returns The date instance that considers the configured time zone in all local getters and setters.
@@ -4464,7 +4485,7 @@ declare module "sap/ui/core/date/UI5Date" {
4464
4485
  */
4465
4486
  toLocaleDateString(
4466
4487
  /**
4467
- * The locale used for formatting; the configured locale by default
4488
+ * The locale used for formatting; by default, the string representation of {@link module:sap/base/i18n/Localization.getLanguageTag Localization.getLanguageTag}
4468
4489
  */
4469
4490
  sLocale?: string,
4470
4491
  /**
@@ -4473,7 +4494,7 @@ declare module "sap/ui/core/date/UI5Date" {
4473
4494
  */
4474
4495
  oOptions?: {
4475
4496
  /**
4476
- * The IANA time zone ID; the configured time zone by default
4497
+ * The IANA time zone ID; by default {@link module:sap/base/i18n/Localization.getTimezone Localization.getTimezone}
4477
4498
  */
4478
4499
  timeZone?: string;
4479
4500
  }
@@ -4487,7 +4508,7 @@ declare module "sap/ui/core/date/UI5Date" {
4487
4508
  */
4488
4509
  toLocaleString(
4489
4510
  /**
4490
- * The locale used for formatting; the configured locale by default
4511
+ * The locale used for formatting; by default, the string representation of {@link module:sap/base/i18n/Localization.getLanguageTag Localization.getLanguageTag}
4491
4512
  */
4492
4513
  sLocale?: string,
4493
4514
  /**
@@ -4496,7 +4517,7 @@ declare module "sap/ui/core/date/UI5Date" {
4496
4517
  */
4497
4518
  oOptions?: {
4498
4519
  /**
4499
- * The IANA time zone ID; the configured time zone by default
4520
+ * The IANA time zone ID; by default {@link module:sap/base/i18n/Localization.getTimezone Localization.getTimezone}
4500
4521
  */
4501
4522
  timeZone?: string;
4502
4523
  }
@@ -4510,7 +4531,7 @@ declare module "sap/ui/core/date/UI5Date" {
4510
4531
  */
4511
4532
  toLocaleTimeString(
4512
4533
  /**
4513
- * The locale used for formatting; the configured locale by default
4534
+ * The locale used for formatting; by default, the string representation of {@link module:sap/base/i18n/Localization.getLanguageTag Localization.getLanguageTag}
4514
4535
  */
4515
4536
  sLocale?: string,
4516
4537
  /**
@@ -4519,7 +4540,7 @@ declare module "sap/ui/core/date/UI5Date" {
4519
4540
  */
4520
4541
  oOptions?: {
4521
4542
  /**
4522
- * The IANA time zone ID; the configured time zone by default
4543
+ * The IANA time zone ID; by default {@link module:sap/base/i18n/Localization.getTimezone Localization.getTimezone}
4523
4544
  */
4524
4545
  timeZone?: string;
4525
4546
  }
@@ -5048,7 +5069,7 @@ declare module "sap/ui/core/Theming" {
5048
5069
  */
5049
5070
  export type Theming$AppliedEvent = {
5050
5071
  /**
5051
- * The newly set language.
5072
+ * The newly set theme.
5052
5073
  */
5053
5074
  theme: string;
5054
5075
  };
@@ -6527,6 +6548,8 @@ declare module "sap/ui/util/Storage" {
6527
6548
  );
6528
6549
  /**
6529
6550
  * Enumeration of the storage types supported by {@link module:sap/ui/util/Storage}.
6551
+ *
6552
+ * This enum is part of the 'sap/ui/util/Storage' module export and must be accessed by the property 'Type'.
6530
6553
  */
6531
6554
  static Type: typeof Type;
6532
6555
 
@@ -6697,6 +6720,8 @@ declare module "sap/ui/util/Storage" {
6697
6720
  }
6698
6721
  /**
6699
6722
  * Enumeration of the storage types supported by {@link module:sap/ui/util/Storage}.
6723
+ *
6724
+ * This enum is part of the 'sap/ui/util/Storage' module export and must be accessed by the property 'Type'.
6700
6725
  */
6701
6726
  enum Type {
6702
6727
  /**
@@ -7032,7 +7057,10 @@ declare module "sap/ui/base/DataType" {
7032
7057
  * @since 0.9.0
7033
7058
  */
7034
7059
  export default class DataType {
7035
- constructor();
7060
+ /**
7061
+ * @ui5-protected Do not call from applications (only from related classes in the framework)
7062
+ */
7063
+ protected constructor();
7036
7064
 
7037
7065
  /**
7038
7066
  * Derives a new type from a given base type.
@@ -10135,7 +10163,7 @@ declare module "sap/ui/base/ManagedObject" {
10135
10163
  * calls {@link #indexOfAggregation}
10136
10164
  * - removeItem(v) - removes an object from the aggregation 'items'. Internally calls {@link #removeAggregation }
10137
10165
  *
10138
- * - removeItems() - removes all objects from the aggregation 'items'. Internally calls {@link #removeAllAggregation }
10166
+ * - removeAllItems() - removes all objects from the aggregation 'items'. Internally calls {@link #removeAllAggregation }
10139
10167
  *
10140
10168
  * - destroyItems() - destroy all currently aggregated objects in aggregation 'items' and clears the aggregation.
10141
10169
  * Internally calls {@link #destroyAggregation}
@@ -10349,7 +10377,7 @@ declare module "sap/ui/base/ManagedObject" {
10349
10377
  /**
10350
10378
  * Unique ID of this instance. If not given, a so called autoID will be generated by the framework. AutoIDs
10351
10379
  * use a unique prefix that must not be used for Ids that the application (or other code) creates. It can
10352
- * be configured option 'autoIDPrefix', see {@link sap.ui.core.Configuration}.
10380
+ * be configured option 'autoIDPrefix', see {@link https://ui5.sap.com/#/topic/91f2d03b6f4d1014b6dd926db0e91070 Configuration Options and URL Parameters}.
10353
10381
  */
10354
10382
  id?: ID;
10355
10383
 
@@ -12097,6 +12125,8 @@ declare module "sap/ui/core/library" {
12097
12125
  * Defines the accessible landmark roles for ARIA support. This enumeration is used with the AccessibleRole
12098
12126
  * control property. For more information, go to "Roles for Accessible Rich Internet Applications (WAI-ARIA
12099
12127
  * Roles)" at the www.w3.org homepage.
12128
+ *
12129
+ * This enum is part of the 'sap/ui/core/library' module export and must be accessed by the property 'AccessibleLandmarkRole'.
12100
12130
  */
12101
12131
  export enum AccessibleLandmarkRole {
12102
12132
  /**
@@ -12162,6 +12192,8 @@ declare module "sap/ui/core/library" {
12162
12192
  * Defines the accessible roles for ARIA support. This enumeration is used with the AccessibleRole control
12163
12193
  * property. For more information, goto "Roles for Accessible Rich Internet Applications (WAI-ARIA Roles)"
12164
12194
  * at the www.w3.org homepage.
12195
+ *
12196
+ * This enum is part of the 'sap/ui/core/library' module export and must be accessed by the property 'AccessibleRole'.
12165
12197
  */
12166
12198
  export enum AccessibleRole {
12167
12199
  /**
@@ -12413,6 +12445,8 @@ declare module "sap/ui/core/library" {
12413
12445
  }
12414
12446
  /**
12415
12447
  * Configuration options for the colors of a progress bar.
12448
+ *
12449
+ * This enum is part of the 'sap/ui/core/library' module export and must be accessed by the property 'BarColor'.
12416
12450
  */
12417
12451
  export enum BarColor {
12418
12452
  /**
@@ -12434,6 +12468,8 @@ declare module "sap/ui/core/library" {
12434
12468
  }
12435
12469
  /**
12436
12470
  * Configuration options for the `BusyIndicator` size.
12471
+ *
12472
+ * This enum is part of the 'sap/ui/core/library' module export and must be accessed by the property 'BusyIndicatorSize'.
12437
12473
  */
12438
12474
  export enum BusyIndicatorSize {
12439
12475
  /**
@@ -12470,6 +12506,8 @@ declare module "sap/ui/core/library" {
12470
12506
 
12471
12507
  /**
12472
12508
  * Enumeration for different lifecycle behaviors of components created by the `ComponentContainer`.
12509
+ *
12510
+ * This enum is part of the 'sap/ui/core/library' module export and must be accessed by the property 'ComponentLifecycle'.
12473
12511
  */
12474
12512
  export enum ComponentLifecycle {
12475
12513
  /**
@@ -12551,6 +12589,8 @@ declare module "sap/ui/core/library" {
12551
12589
 
12552
12590
  /**
12553
12591
  * Font design for texts.
12592
+ *
12593
+ * This enum is part of the 'sap/ui/core/library' module export and must be accessed by the property 'Design'.
12554
12594
  */
12555
12595
  export enum Design {
12556
12596
  /**
@@ -12614,6 +12654,8 @@ declare module "sap/ui/core/library" {
12614
12654
 
12615
12655
  /**
12616
12656
  * Configuration options for horizontal alignments of controls.
12657
+ *
12658
+ * This enum is part of the 'sap/ui/core/library' module export and must be accessed by the property 'HorizontalAlign'.
12617
12659
  */
12618
12660
  export enum HorizontalAlign {
12619
12661
  /**
@@ -12732,6 +12774,8 @@ declare module "sap/ui/core/library" {
12732
12774
 
12733
12775
  /**
12734
12776
  * Semantic Colors of an icon.
12777
+ *
12778
+ * This enum is part of the 'sap/ui/core/library' module export and must be accessed by the property 'IconColor'.
12735
12779
  */
12736
12780
  export enum IconColor {
12737
12781
  /**
@@ -12849,6 +12893,8 @@ declare module "sap/ui/core/library" {
12849
12893
  * State of the Input Method Editor (IME) for the control.
12850
12894
  *
12851
12895
  * Depending on its value, it allows users to enter and edit for example Chinese characters.
12896
+ *
12897
+ * This enum is part of the 'sap/ui/core/library' module export and must be accessed by the property 'ImeMode'.
12852
12898
  */
12853
12899
  export enum ImeMode {
12854
12900
  /**
@@ -12872,6 +12918,8 @@ declare module "sap/ui/core/library" {
12872
12918
  * Colors to highlight certain UI elements.
12873
12919
  *
12874
12920
  * In contrast to the `ValueState`, the semantic meaning must be defined by the application.
12921
+ *
12922
+ * This enum is part of the 'sap/ui/core/library' module export and must be accessed by the property 'IndicationColor'.
12875
12923
  * See:
12876
12924
  * {@link fiori:/how-to-use-semantic-colors/ Semantic Colors}
12877
12925
  *
@@ -12992,8 +13040,9 @@ declare module "sap/ui/core/library" {
12992
13040
  /**
12993
13041
  * Enumeration for different mode behaviors of the `InvisibleMessage`.
12994
13042
  *
13043
+ * This enum is part of the 'sap/ui/core/library' module export and must be accessed by the property 'InvisibleMessageMode'.
13044
+ *
12995
13045
  * @since 1.78
12996
- * @experimental (since 1.73)
12997
13046
  */
12998
13047
  export enum InvisibleMessageMode {
12999
13048
  /**
@@ -13134,6 +13183,8 @@ declare module "sap/ui/core/library" {
13134
13183
  /**
13135
13184
  * Specifies possible message types.
13136
13185
  *
13186
+ * This enum is part of the 'sap/ui/core/library' module export and must be accessed by the property 'MessageType'.
13187
+ *
13137
13188
  * @deprecated (since 1.120) - Please use {@link sap.ui.core.message.MessageType} instead.
13138
13189
  */
13139
13190
  export enum MessageType {
@@ -13161,6 +13212,8 @@ declare module "sap/ui/core/library" {
13161
13212
  /**
13162
13213
  * Defines the different possible states of an element that can be open or closed and does not only toggle
13163
13214
  * between these states, but also spends some time in between (e.g. because of an animation).
13215
+ *
13216
+ * This enum is part of the 'sap/ui/core/library' module export and must be accessed by the property 'OpenState'.
13164
13217
  */
13165
13218
  export enum OpenState {
13166
13219
  /**
@@ -13183,6 +13236,8 @@ declare module "sap/ui/core/library" {
13183
13236
  /**
13184
13237
  * Orientation of a UI element.
13185
13238
  *
13239
+ * This enum is part of the 'sap/ui/core/library' module export and must be accessed by the property 'Orientation'.
13240
+ *
13186
13241
  * @since 1.22
13187
13242
  */
13188
13243
  export enum Orientation {
@@ -13213,6 +13268,8 @@ declare module "sap/ui/core/library" {
13213
13268
 
13214
13269
  /**
13215
13270
  * Priorities for general use.
13271
+ *
13272
+ * This enum is part of the 'sap/ui/core/library' module export and must be accessed by the property 'Priority'.
13216
13273
  */
13217
13274
  export enum Priority {
13218
13275
  /**
@@ -13234,6 +13291,8 @@ declare module "sap/ui/core/library" {
13234
13291
  }
13235
13292
  /**
13236
13293
  * Actions are: Click on track, button, drag of thumb, or mouse wheel click.
13294
+ *
13295
+ * This enum is part of the 'sap/ui/core/library' module export and must be accessed by the property 'ScrollBarAction'.
13237
13296
  */
13238
13297
  export enum ScrollBarAction {
13239
13298
  /**
@@ -13255,6 +13314,8 @@ declare module "sap/ui/core/library" {
13255
13314
  }
13256
13315
  /**
13257
13316
  * Defines the possible values for horizontal and vertical scrolling behavior.
13317
+ *
13318
+ * This enum is part of the 'sap/ui/core/library' module export and must be accessed by the property 'Scrolling'.
13258
13319
  */
13259
13320
  export enum Scrolling {
13260
13321
  /**
@@ -13277,6 +13338,8 @@ declare module "sap/ui/core/library" {
13277
13338
  /**
13278
13339
  * Sort order of a column.
13279
13340
  *
13341
+ * This enum is part of the 'sap/ui/core/library' module export and must be accessed by the property 'SortOrder'.
13342
+ *
13280
13343
  * @since 1.61.0
13281
13344
  */
13282
13345
  export enum SortOrder {
@@ -13295,6 +13358,8 @@ declare module "sap/ui/core/library" {
13295
13358
  }
13296
13359
  /**
13297
13360
  * Configuration options for text alignments.
13361
+ *
13362
+ * This enum is part of the 'sap/ui/core/library' module export and must be accessed by the property 'TextAlign'.
13298
13363
  */
13299
13364
  export enum TextAlign {
13300
13365
  /**
@@ -13326,6 +13391,8 @@ declare module "sap/ui/core/library" {
13326
13391
  }
13327
13392
  /**
13328
13393
  * Configuration options for the direction of texts.
13394
+ *
13395
+ * This enum is part of the 'sap/ui/core/library' module export and must be accessed by the property 'TextDirection'.
13329
13396
  */
13330
13397
  export enum TextDirection {
13331
13398
  /**
@@ -13344,6 +13411,8 @@ declare module "sap/ui/core/library" {
13344
13411
  /**
13345
13412
  * Level of a title.
13346
13413
  *
13414
+ * This enum is part of the 'sap/ui/core/library' module export and must be accessed by the property 'TitleLevel'.
13415
+ *
13347
13416
  * @since 1.9.1
13348
13417
  */
13349
13418
  export enum TitleLevel {
@@ -13392,6 +13461,8 @@ declare module "sap/ui/core/library" {
13392
13461
 
13393
13462
  /**
13394
13463
  * Marker for the correctness of the current value.
13464
+ *
13465
+ * This enum is part of the 'sap/ui/core/library' module export and must be accessed by the property 'ValueState'.
13395
13466
  * See:
13396
13467
  * {@link fiori:/how-to-use-semantic-colors/ Semantic Colors}
13397
13468
  *
@@ -13423,6 +13494,8 @@ declare module "sap/ui/core/library" {
13423
13494
  }
13424
13495
  /**
13425
13496
  * Configuration options for vertical alignments, for example of a layout cell content within the borders.
13497
+ *
13498
+ * This enum is part of the 'sap/ui/core/library' module export and must be accessed by the property 'VerticalAlign'.
13426
13499
  */
13427
13500
  export enum VerticalAlign {
13428
13501
  /**
@@ -13444,6 +13517,8 @@ declare module "sap/ui/core/library" {
13444
13517
  }
13445
13518
  /**
13446
13519
  * Configuration options for text wrapping.
13520
+ *
13521
+ * This enum is part of the 'sap/ui/core/library' module export and must be accessed by the property 'Wrapping'.
13447
13522
  */
13448
13523
  export enum Wrapping {
13449
13524
  /**
@@ -13469,6 +13544,8 @@ declare module "sap/ui/core/library" {
13469
13544
  * Types of popups to set as aria-haspopup attribute. Most of the values (except "None") of the enumeration
13470
13545
  * are taken from the ARIA specification: https://www.w3.org/TR/wai-aria/#aria-haspopup
13471
13546
  *
13547
+ * This enum is part of the 'sap/ui/core/library' module export and must be accessed by the property 'aria.HasPopup'.
13548
+ *
13472
13549
  * @since 1.84
13473
13550
  */
13474
13551
  enum HasPopup {
@@ -13521,6 +13598,8 @@ declare module "sap/ui/core/library" {
13521
13598
  /**
13522
13599
  * Configuration options for visual drop effects that are given during a drag and drop operation.
13523
13600
  *
13601
+ * This enum is part of the 'sap/ui/core/library' module export and must be accessed by the property 'dnd.DropEffect'.
13602
+ *
13524
13603
  * @since 1.52.0
13525
13604
  */
13526
13605
  enum DropEffect {
@@ -13544,6 +13623,8 @@ declare module "sap/ui/core/library" {
13544
13623
  /**
13545
13624
  * Configuration options for the layout of the droppable controls.
13546
13625
  *
13626
+ * This enum is part of the 'sap/ui/core/library' module export and must be accessed by the property 'dnd.DropLayout'.
13627
+ *
13547
13628
  * @since 1.52.0
13548
13629
  */
13549
13630
  enum DropLayout {
@@ -13563,6 +13644,8 @@ declare module "sap/ui/core/library" {
13563
13644
  /**
13564
13645
  * Configuration options for drop positions.
13565
13646
  *
13647
+ * This enum is part of the 'sap/ui/core/library' module export and must be accessed by the property 'dnd.DropPosition'.
13648
+ *
13566
13649
  * @since 1.52.0
13567
13650
  */
13568
13651
  enum DropPosition {
@@ -13582,6 +13665,8 @@ declare module "sap/ui/core/library" {
13582
13665
  /**
13583
13666
  * Drop positions relative to a dropped element.
13584
13667
  *
13668
+ * This enum is part of the 'sap/ui/core/library' module export and must be accessed by the property 'dnd.RelativeDropPosition'.
13669
+ *
13585
13670
  * @since 1.100.0
13586
13671
  */
13587
13672
  enum RelativeDropPosition {
@@ -13614,6 +13699,8 @@ declare module "sap/ui/core/library" {
13614
13699
  export namespace routing {
13615
13700
  /**
13616
13701
  * Enumeration for different HistoryDirections.
13702
+ *
13703
+ * This enum is part of the 'sap/ui/core/library' module export and must be accessed by the property 'routing.HistoryDirection'.
13617
13704
  */
13618
13705
  enum HistoryDirection {
13619
13706
  /**
@@ -15355,7 +15442,7 @@ declare module "sap/ui/core/ComponentContainer" {
15355
15442
  * ID of the element which is the current target of the association {@link #getComponent component}, or
15356
15443
  * `null`.
15357
15444
  */
15358
- getComponent(): ID;
15445
+ getComponent(): ID | null;
15359
15446
  /**
15360
15447
  * Gets current value of property {@link #getHandleValidation handleValidation}.
15361
15448
  *
@@ -15527,7 +15614,7 @@ declare module "sap/ui/core/ComponentContainer" {
15527
15614
  * ID of an element which becomes the new target of this component association. Alternatively, an element
15528
15615
  * instance may be given.
15529
15616
  */
15530
- vComponent: string | UIComponent
15617
+ vComponent: ID | UIComponent
15531
15618
  ): this;
15532
15619
  /**
15533
15620
  * Sets a new value for property {@link #getHandleValidation handleValidation}.
@@ -16135,6 +16222,9 @@ declare module "sap/ui/core/Configuration" {
16135
16222
  * scenarios or levels. The implementation of the Control (JavaScript or CSS) has to be done differently
16136
16223
  * for each animation mode.
16137
16224
  *
16225
+ * This enum is part of the 'sap/ui/core/Configuration' module export and must be accessed by the property
16226
+ * 'AnimationMode'.
16227
+ *
16138
16228
  * @since 1.50.0
16139
16229
  * @deprecated (since 1.120) - Please use module {@link module:sap/ui/core/AnimationMode AnimationMode }
16140
16230
  * instead.
@@ -16805,6 +16895,9 @@ declare module "sap/ui/core/Configuration" {
16805
16895
  * scenarios or levels. The implementation of the Control (JavaScript or CSS) has to be done differently
16806
16896
  * for each animation mode.
16807
16897
  *
16898
+ * This enum is part of the 'sap/ui/core/Configuration' module export and must be accessed by the property
16899
+ * 'AnimationMode'.
16900
+ *
16808
16901
  * @since 1.50.0
16809
16902
  * @deprecated (since 1.120) - Please use module {@link module:sap/ui/core/AnimationMode AnimationMode }
16810
16903
  * instead.
@@ -17668,17 +17761,13 @@ declare module "sap/ui/core/Control" {
17668
17761
  */
17669
17762
  getAccessibilityInfo(): AccessibilityInfo;
17670
17763
  /**
17671
- * Gets current value of property {@link #getBlocked blocked}.
17672
- *
17673
- * Whether the control is currently in blocked state.
17764
+ * Gets current value of property blocked.
17674
17765
  *
17675
- * Default value is `false`.
17676
- *
17677
- * @deprecated (since 1.69) - The blocked property is deprecated. There is no accessibility support for
17766
+ * @deprecated (since 1.69) - the blocked property is deprecated. There is no accessibility support for
17678
17767
  * this property. Blocked controls should not be used inside Controls, which rely on keyboard navigation,
17679
17768
  * e.g. List controls.
17680
17769
  *
17681
- * @returns Value of property `blocked`
17770
+ * @returns Whether the control is currently in blocked state. Default is 'false'.
17682
17771
  */
17683
17772
  getBlocked(): boolean;
17684
17773
  /**
@@ -19141,8 +19230,8 @@ declare module "sap/ui/core/Core" {
19141
19230
  * Retrieves a resource bundle for the given library and locale.
19142
19231
  *
19143
19232
  * If only one argument is given, it is assumed to be the libraryName. The locale then falls back to the
19144
- * current {@link sap.ui.core.Configuration#getLanguage session locale}. If no argument is given, the library
19145
- * also falls back to a default: "sap.ui.core".
19233
+ * current {@link module:sap/base/i18n/Localization.getLanguage session locale}. If no argument is given,
19234
+ * the library also falls back to a default: "sap.ui.core".
19146
19235
  *
19147
19236
  * Configuration via App Descriptor: When the App Descriptor for the library is available without further
19148
19237
  * request (manifest.json has been preloaded) and when the App Descriptor is at least of version 1.9.0 or
@@ -19191,8 +19280,8 @@ declare module "sap/ui/core/Core" {
19191
19280
  * Retrieves a resource bundle for the given library and locale.
19192
19281
  *
19193
19282
  * If only one argument is given, it is assumed to be the libraryName. The locale then falls back to the
19194
- * current {@link sap.ui.core.Configuration#getLanguage session locale}. If no argument is given, the library
19195
- * also falls back to a default: "sap.ui.core".
19283
+ * current {@link module:sap/base/i18n/Localization.getLanguage session locale}. If no argument is given,
19284
+ * the library also falls back to a default: "sap.ui.core".
19196
19285
  *
19197
19286
  * Configuration via App Descriptor: When the App Descriptor for the library is available without further
19198
19287
  * request (manifest.json has been preloaded) and when the App Descriptor is at least of version 1.9.0 or
@@ -19394,7 +19483,7 @@ declare module "sap/ui/core/Core" {
19394
19483
  *
19395
19484
  * - With the `noLibraryCSS` property, the library can be marked as 'theming-free'. Otherwise, the framework
19396
19485
  * will add a <link> tag to the page's head, pointing to the library's theme-specific stylesheet.
19397
- * The creation of such a <link> tag can be suppressed with the {@link sap.ui.core.Configuration global configuration option }
19486
+ * The creation of such a <link> tag can be suppressed with the {@link https://ui5.sap.com/#/topic/91f2d03b6f4d1014b6dd926db0e91070 global configuration option }
19398
19487
  * `preloadLibCss`. It can contain a list of library names for which no stylesheet should be included. This
19399
19488
  * is e.g. useful when an application merges the CSS for multiple libraries and already loaded the resulting
19400
19489
  * stylesheet.
@@ -21251,7 +21340,7 @@ declare module "sap/ui/core/dnd/DragDropInfo" {
21251
21340
  * ID of the element which is the current target of the association {@link #getTargetElement targetElement},
21252
21341
  * or `null`.
21253
21342
  */
21254
- getTargetElement(): ID;
21343
+ getTargetElement(): ID | null;
21255
21344
  /**
21256
21345
  * Sets a new value for property {@link #getSourceAggregation sourceAggregation}.
21257
21346
  *
@@ -24133,7 +24222,7 @@ declare module "sap/ui/core/format/DateFormat" {
24133
24222
  * The DateFormat is a static class for formatting and parsing single date and time values or date and time
24134
24223
  * intervals according to a set of format options.
24135
24224
  *
24136
- * Important: Every Date is converted with the timezone taken from {@link sap.ui.core.Configuration#getTimezone}.
24225
+ * Important: Every Date is converted with the timezone taken from {@link module:sap/base/i18n/Localization.getTimezone Localization.getTimezone}.
24137
24226
  * The timezone falls back to the browser's local timezone.
24138
24227
  *
24139
24228
  * Supported format options are pattern based on Unicode LDML Date Format notation. Please note that only
@@ -24145,7 +24234,10 @@ declare module "sap/ui/core/format/DateFormat" {
24145
24234
  * - {@link http://unicode.org/reports/tr35/tr35-dates.html#Date_Field_Symbol_Table}
24146
24235
  */
24147
24236
  export default class DateFormat {
24148
- constructor();
24237
+ /**
24238
+ * @ui5-protected Do not call from applications (only from related classes in the framework)
24239
+ */
24240
+ protected constructor();
24149
24241
 
24150
24242
  /**
24151
24243
  * Get a date instance of the DateFormat, which can be used for formatting.
@@ -24601,8 +24693,8 @@ declare module "sap/ui/core/format/DateFormat" {
24601
24693
  /**
24602
24694
  * Format a date according to the given format options.
24603
24695
  *
24604
- * Uses the timezone from {@link sap.ui.core.Configuration#getTimezone}, which falls back to the browser's
24605
- * local timezone to convert the given date.
24696
+ * Uses the timezone from {@link module:sap/base/i18n/Localization.getTimezone Localization.getTimezone},
24697
+ * which falls back to the browser's local timezone to convert the given date.
24606
24698
  *
24607
24699
  * When using instances from getDateTimeWithTimezoneInstance, please see the corresponding documentation:
24608
24700
  * {@link sap.ui.core.format.DateFormat.DateTimeWithTimezone#format}.
@@ -24623,8 +24715,8 @@ declare module "sap/ui/core/format/DateFormat" {
24623
24715
  /**
24624
24716
  * Parse a string which is formatted according to the given format options.
24625
24717
  *
24626
- * Uses the timezone from {@link sap.ui.core.Configuration#getTimezone}, which falls back to the browser's
24627
- * local timezone to convert the given date.
24718
+ * Uses the timezone from {@link module:sap/base/i18n/Localization.getTimezone Localization.getTimezone},
24719
+ * which falls back to the browser's local timezone to convert the given date.
24628
24720
  *
24629
24721
  * When using instances from getDateTimeWithTimezoneInstance, please see the corresponding documentation:
24630
24722
  * {@link sap.ui.core.format.DateFormat.DateTimeWithTimezone#parse}.
@@ -24673,8 +24765,8 @@ declare module "sap/ui/core/format/DateFormat" {
24673
24765
  oJSDate: Date,
24674
24766
  /**
24675
24767
  * The IANA timezone ID in which the date will be calculated and formatted e.g. "America/New_York". If the
24676
- * parameter is omitted, `null` or an empty string, the timezone will be taken from {@link sap.ui.core.Configuration#getTimezone}.
24677
- * For an invalid IANA timezone ID, an empty string will be returned.
24768
+ * parameter is omitted, `null` or an empty string, the timezone will be taken from {@link module:sap/base/i18n/Localization.getTimezone Localization.getTimezone}.
24769
+ * For an invalid IANA time zone ID, an empty string will be returned.
24678
24770
  */
24679
24771
  sTimezone?: string
24680
24772
  ): string;
@@ -24699,7 +24791,7 @@ declare module "sap/ui/core/format/DateFormat" {
24699
24791
  sValue: string,
24700
24792
  /**
24701
24793
  * The IANA timezone ID which should be used to convert the date e.g. "America/New_York". If the parameter
24702
- * is omitted, `null` or an empty string, the timezone will be taken from {@link sap.ui.core.Configuration#getTimezone}.
24794
+ * is omitted, `null` or an empty string, the timezone will be taken from {@link module:sap/base/i18n/Localization.getTimezone Localization.getTimezone}.
24703
24795
  * For an invalid IANA timezone ID, `null` will be returned.
24704
24796
  */
24705
24797
  sTimezone?: string,
@@ -24763,7 +24855,10 @@ declare module "sap/ui/core/format/FileSizeFormat" {
24763
24855
  * 1 Kilobyte = 1000 Byte
24764
24856
  */
24765
24857
  export default class FileSizeFormat extends BaseObject {
24766
- constructor();
24858
+ /**
24859
+ * @ui5-protected Do not call from applications (only from related classes in the framework)
24860
+ */
24861
+ protected constructor();
24767
24862
 
24768
24863
  /**
24769
24864
  * Creates a new subclass of class sap.ui.core.format.FileSizeFormat with name `sClassName` and enriches
@@ -24792,9 +24887,6 @@ declare module "sap/ui/core/format/FileSizeFormat" {
24792
24887
  /**
24793
24888
  * Get an instance of the FileSizeFormat, which can be used for formatting.
24794
24889
  *
24795
- * If no locale is given, the currently configured {@link sap.ui.core.Configuration.FormatSettings#getFormatLocale formatLocale }
24796
- * will be used.
24797
- *
24798
24890
  *
24799
24891
  * @returns instance of the FileSizeFormat
24800
24892
  */
@@ -24809,22 +24901,21 @@ declare module "sap/ui/core/format/FileSizeFormat" {
24809
24901
  binaryFilesize?: boolean;
24810
24902
  },
24811
24903
  /**
24812
- * The locale to get the formatter for
24904
+ * The locale to get the formatter for; if no locale is given, a locale for the currently configured language
24905
+ * is used; see {@link module:sap/base/i18n/Formatting.getLanguageTag Formatting.getLanguageTag}
24813
24906
  */
24814
24907
  oLocale?: Locale
24815
24908
  ): FileSizeFormat;
24816
24909
  /**
24817
24910
  * Get an instance of the FileSizeFormat, which can be used for formatting.
24818
24911
  *
24819
- * If no locale is given, the currently configured {@link sap.ui.core.Configuration.FormatSettings#getFormatLocale formatLocale }
24820
- * will be used.
24821
- *
24822
24912
  *
24823
24913
  * @returns instance of the FileSizeFormat
24824
24914
  */
24825
24915
  static getInstance(
24826
24916
  /**
24827
- * The locale to get the formatter for
24917
+ * The locale to get the formatter for; if no locale is given, a locale for the currently configured language
24918
+ * is used; see {@link module:sap/base/i18n/Formatting.getLanguageTag Formatting.getLanguageTag}
24828
24919
  */
24829
24920
  oLocale?: Locale
24830
24921
  ): FileSizeFormat;
@@ -24870,7 +24961,10 @@ declare module "sap/ui/core/format/ListFormat" {
24870
24961
  * manner according to a set of format options.
24871
24962
  */
24872
24963
  export default class ListFormat {
24873
- constructor();
24964
+ /**
24965
+ * @ui5-protected Do not call from applications (only from related classes in the framework)
24966
+ */
24967
+ protected constructor();
24874
24968
 
24875
24969
  /**
24876
24970
  * Get an instance of the ListFormat which can be used for formatting.
@@ -24939,10 +25033,16 @@ declare module "sap/ui/core/format/NumberFormat" {
24939
25033
  * options.
24940
25034
  */
24941
25035
  export default class NumberFormat extends BaseObject {
24942
- constructor();
25036
+ /**
25037
+ * @ui5-protected Do not call from applications (only from related classes in the framework)
25038
+ */
25039
+ protected constructor();
24943
25040
  /**
24944
25041
  * Specifies a rounding behavior for numerical operations capable of discarding precision. Each rounding
24945
25042
  * mode in this object indicates how the least significant returned digits of rounded result is to be calculated.
25043
+ *
25044
+ * This enum is part of the 'sap/ui/core/format/NumberFormat' module export and must be accessed by the
25045
+ * property 'RoundingMode'.
24946
25046
  */
24947
25047
  static RoundingMode: typeof RoundingMode;
24948
25048
 
@@ -24973,9 +25073,6 @@ declare module "sap/ui/core/format/NumberFormat" {
24973
25073
  /**
24974
25074
  * Get a currency instance of the NumberFormat, which can be used for formatting.
24975
25075
  *
24976
- * If no locale is given, the currently configured {@link sap.ui.core.Configuration.FormatSettings#getFormatLocale formatLocale }
24977
- * will be used.
24978
- *
24979
25076
  * This instance has HALF_AWAY_FROM_ZERO set as default rounding mode. Please set the roundingMode property
24980
25077
  * in oFormatOptions to change the default value.
24981
25078
  *
@@ -24999,8 +25096,8 @@ declare module "sap/ui/core/format/NumberFormat" {
24999
25096
  *
25000
25097
  * As an alternative to using a fixed `symbol` for your custom currencies, you can also provide an ISO-Code.
25001
25098
  * The provided ISO-Code will be used to look up the currency symbol in the global configuration, either
25002
- * defined in the CLDR or custom defined on the Format Settings (see {@link sap.ui.core.Configuration.FormatSettings#setCustomCurrencies},
25003
- * {@link sap.ui.core.Configuration.FormatSettings#addCustomCurrencies}).
25099
+ * defined in the CLDR or custom defined on the Format Settings (see {@link module:sap/base/i18n/Formatting.setCustomCurrencies Formatting.setCustomCurrencies},
25100
+ * {@link module:sap/base/i18n/Formatting.addCustomCurrencies Formatting.addCustomCurrencies}).
25004
25101
  *
25005
25102
  * If no symbol is given at all, the custom currency key is used for formatting.
25006
25103
  *
@@ -25051,8 +25148,8 @@ declare module "sap/ui/core/format/NumberFormat" {
25051
25148
  * defines a set of custom currencies exclusive to this NumberFormat instance. Custom currencies must not
25052
25149
  * only consist of digits. If custom currencies are defined on the instance, no other currencies can be
25053
25150
  * formatted and parsed by this instance. Globally available custom currencies can be added via the global
25054
- * configuration. See the above examples. See also {@link sap.ui.core.Configuration.FormatSettings#setCustomCurrencies }
25055
- * and {@link sap.ui.core.Configuration.FormatSettings#addCustomCurrencies}.
25151
+ * configuration. See the above examples. See also {@link module:sap/base/i18n/Formatting.setCustomCurrencies Formatting.setCustomCurrencies }
25152
+ * and {@link module:sap/base/i18n/Formatting.addCustomCurrencies Formatting.addCustomCurrencies}.
25056
25153
  */
25057
25154
  customCurrencies?: Record<string, object>;
25058
25155
  /**
@@ -25130,12 +25227,12 @@ declare module "sap/ui/core/format/NumberFormat" {
25130
25227
  */
25131
25228
  preserveDecimals?: boolean;
25132
25229
  /**
25133
- * specifies the rounding behavior for discarding the digits after the maximum fraction digits defined by
25134
- * maxFractionDigits. Rounding will only be applied if the passed value is of type `number`. This can be
25135
- * assigned
25230
+ * Specifies the rounding behavior for discarding the digits after the maximum fraction digits defined by
25231
+ * `maxFractionDigits`. This can be assigned
25136
25232
  * - by value in {@link sap.ui.core.format.NumberFormat.RoundingMode RoundingMode},
25137
25233
  * - via a function that is used for rounding the number and takes two parameters: the number itself,
25138
- * and the number of decimal digits that should be reserved.
25234
+ * and the number of decimal digits that should be reserved. **Using a function is deprecated since 1.121.0**;
25235
+ * string based numbers are not rounded via this custom function.
25139
25236
  */
25140
25237
  roundingMode?: RoundingMode | keyof typeof RoundingMode;
25141
25238
  /**
@@ -25183,23 +25280,21 @@ declare module "sap/ui/core/format/NumberFormat" {
25183
25280
  */
25184
25281
  style?: string;
25185
25282
  /**
25186
- * overrides the global configuration value {@link sap.ui.core.Configuration.FormatSettings#getTrailingCurrencyCode},
25283
+ * overrides the global configuration value {@link module:sap/base/i18n/Formatting.getTrailingCurrencyCode Formatting.getTrailingCurrencyCode},
25187
25284
  * which has a default value of `true</>. This is ignored if oFormatOptions.currencyCode` is set to
25188
25285
  * `false`, or if `oFormatOptions.pattern` is supplied.
25189
25286
  */
25190
25287
  trailingCurrencyCode?: boolean;
25191
25288
  },
25192
25289
  /**
25193
- * Locale to get the formatter for
25290
+ * The locale to get the formatter for; if no locale is given, a locale for the currently configured language
25291
+ * is used; see {@link module:sap/base/i18n/Formatting.getLanguageTag Formatting.getLanguageTag}
25194
25292
  */
25195
25293
  oLocale?: Locale
25196
25294
  ): NumberFormat;
25197
25295
  /**
25198
25296
  * Get a float instance of the NumberFormat, which can be used for formatting.
25199
25297
  *
25200
- * If no locale is given, the currently configured {@link sap.ui.core.Configuration.FormatSettings#getFormatLocale formatLocale }
25201
- * will be used.
25202
- *
25203
25298
  * This instance has HALF_AWAY_FROM_ZERO set as default rounding mode. Please set the roundingMode property
25204
25299
  * in oFormatOptions to change the default value.
25205
25300
  *
@@ -25305,12 +25400,12 @@ declare module "sap/ui/core/format/NumberFormat" {
25305
25400
  */
25306
25401
  preserveDecimals?: boolean;
25307
25402
  /**
25308
- * specifies the rounding behavior for discarding the digits after the maximum fraction digits defined by
25309
- * maxFractionDigits. Rounding will only be applied if the passed value is of type `number`. This can be
25310
- * assigned
25403
+ * Specifies the rounding behavior for discarding the digits after the maximum fraction digits defined by
25404
+ * `maxFractionDigits`. This can be assigned
25311
25405
  * - by value in {@link sap.ui.core.format.NumberFormat.RoundingMode RoundingMode},
25312
25406
  * - via a function that is used for rounding the number and takes two parameters: the number itself,
25313
- * and the number of decimal digits that should be reserved.
25407
+ * and the number of decimal digits that should be reserved. **Using a function is deprecated since 1.121.0**;
25408
+ * string based numbers are not rounded via this custom function.
25314
25409
  */
25315
25410
  roundingMode?: RoundingMode | keyof typeof RoundingMode;
25316
25411
  /**
@@ -25348,16 +25443,14 @@ declare module "sap/ui/core/format/NumberFormat" {
25348
25443
  style?: string;
25349
25444
  },
25350
25445
  /**
25351
- * Locale to get the formatter for
25446
+ * The locale to get the formatter for; if no locale is given, a locale for the currently configured language
25447
+ * is used; see {@link module:sap/base/i18n/Formatting.getLanguageTag Formatting.getLanguageTag}
25352
25448
  */
25353
25449
  oLocale?: Locale
25354
25450
  ): NumberFormat;
25355
25451
  /**
25356
25452
  * Get an integer instance of the NumberFormat, which can be used for formatting.
25357
25453
  *
25358
- * If no locale is given, the currently configured {@link sap.ui.core.Configuration.FormatSettings#getFormatLocale formatLocale }
25359
- * will be used.
25360
- *
25361
25454
  * This instance has TOWARDS_ZERO set as default rounding mode. Please set the roundingMode property
25362
25455
  * in oFormatOptions to change the default value.
25363
25456
  *
@@ -25462,12 +25555,12 @@ declare module "sap/ui/core/format/NumberFormat" {
25462
25555
  */
25463
25556
  preserveDecimals?: boolean;
25464
25557
  /**
25465
- * specifies the rounding behavior for discarding the digits after the maximum fraction digits defined by
25466
- * maxFractionDigits. Rounding will only be applied if the passed value is of type `number`. This can be
25467
- * assigned
25558
+ * Specifies the rounding behavior for discarding the digits after the maximum fraction digits defined by
25559
+ * `maxFractionDigits`. This can be assigned
25468
25560
  * - by value in {@link sap.ui.core.format.NumberFormat.RoundingMode RoundingMode},
25469
25561
  * - via a function that is used for rounding the number and takes two parameters: the number itself,
25470
- * and the number of decimal digits that should be reserved.
25562
+ * and the number of decimal digits that should be reserved. **Using a function is deprecated since 1.121.0**;
25563
+ * string based numbers are not rounded via this custom function.
25471
25564
  */
25472
25565
  roundingMode?: RoundingMode | keyof typeof RoundingMode;
25473
25566
  /**
@@ -25505,7 +25598,8 @@ declare module "sap/ui/core/format/NumberFormat" {
25505
25598
  style?: string;
25506
25599
  },
25507
25600
  /**
25508
- * Locale to get the formatter for
25601
+ * The locale to get the formatter for; if no locale is given, a locale for the currently configured language
25602
+ * is used; see {@link module:sap/base/i18n/Formatting.getLanguageTag Formatting.getLanguageTag}
25509
25603
  */
25510
25604
  oLocale?: Locale
25511
25605
  ): NumberFormat;
@@ -25519,9 +25613,6 @@ declare module "sap/ui/core/format/NumberFormat" {
25519
25613
  /**
25520
25614
  * Get a percent instance of the NumberFormat, which can be used for formatting.
25521
25615
  *
25522
- * If no locale is given, the currently configured {@link sap.ui.core.Configuration.FormatSettings#getFormatLocale formatLocale }
25523
- * will be used.
25524
- *
25525
25616
  * This instance has HALF_AWAY_FROM_ZERO set as default rounding mode. Please set the roundingMode property
25526
25617
  * in oFormatOptions to change the default value.
25527
25618
  *
@@ -25617,12 +25708,12 @@ declare module "sap/ui/core/format/NumberFormat" {
25617
25708
  */
25618
25709
  preserveDecimals?: boolean;
25619
25710
  /**
25620
- * specifies the rounding behavior for discarding the digits after the maximum fraction digits defined by
25621
- * maxFractionDigits. Rounding will only be applied if the passed value is of type `number`. This can be
25622
- * assigned
25711
+ * Specifies the rounding behavior for discarding the digits after the maximum fraction digits defined by
25712
+ * `maxFractionDigits`. This can be assigned
25623
25713
  * - by value in {@link sap.ui.core.format.NumberFormat.RoundingMode RoundingMode},
25624
25714
  * - via a function that is used for rounding the number and takes two parameters: the number itself,
25625
- * and the number of decimal digits that should be reserved.
25715
+ * and the number of decimal digits that should be reserved. **Using a function is deprecated since 1.121.0**;
25716
+ * string based numbers are not rounded via this custom function.
25626
25717
  */
25627
25718
  roundingMode?: RoundingMode | keyof typeof RoundingMode;
25628
25719
  /**
@@ -25660,16 +25751,14 @@ declare module "sap/ui/core/format/NumberFormat" {
25660
25751
  style?: string;
25661
25752
  },
25662
25753
  /**
25663
- * Locale to get the formatter for
25754
+ * The locale to get the formatter for; if no locale is given, a locale for the currently configured language
25755
+ * is used; see {@link module:sap/base/i18n/Formatting.getLanguageTag Formatting.getLanguageTag}
25664
25756
  */
25665
25757
  oLocale?: Locale
25666
25758
  ): NumberFormat;
25667
25759
  /**
25668
25760
  * Get a unit instance of the NumberFormat, which can be used for formatting units.
25669
25761
  *
25670
- * If no locale is given, the currently configured {@link sap.ui.core.Configuration.FormatSettings#getFormatLocale formatLocale }
25671
- * will be used.
25672
- *
25673
25762
  * This instance has HALF_AWAY_FROM_ZERO set as default rounding mode. Please set the roundingMode property
25674
25763
  * in oFormatOptions to change the default value.
25675
25764
  *
@@ -25771,12 +25860,12 @@ declare module "sap/ui/core/format/NumberFormat" {
25771
25860
  */
25772
25861
  preserveDecimals?: boolean;
25773
25862
  /**
25774
- * specifies the rounding behavior for discarding the digits after the maximum fraction digits defined by
25775
- * maxFractionDigits. Rounding will only be applied if the passed value is of type `number`. This can be
25776
- * assigned
25863
+ * Specifies the rounding behavior for discarding the digits after the maximum fraction digits defined by
25864
+ * `maxFractionDigits`. This can be assigned
25777
25865
  * - by value in {@link sap.ui.core.format.NumberFormat.RoundingMode RoundingMode},
25778
25866
  * - via a function that is used for rounding the number and takes two parameters: the number itself,
25779
- * and the number of decimal digits that should be reserved.
25867
+ * and the number of decimal digits that should be reserved. **Using a function is deprecated since 1.121.0**;
25868
+ * string based numbers are not rounded via this custom function.
25780
25869
  */
25781
25870
  roundingMode?: RoundingMode | keyof typeof RoundingMode;
25782
25871
  /**
@@ -25827,7 +25916,8 @@ declare module "sap/ui/core/format/NumberFormat" {
25827
25916
  style?: string;
25828
25917
  },
25829
25918
  /**
25830
- * Locale to get the formatter for
25919
+ * The locale to get the formatter for; if no locale is given, a locale for the currently configured language
25920
+ * is used; see {@link module:sap/base/i18n/Formatting.getLanguageTag Formatting.getLanguageTag}
25831
25921
  */
25832
25922
  oLocale?: Locale
25833
25923
  ): NumberFormat;
@@ -25885,6 +25975,9 @@ declare module "sap/ui/core/format/NumberFormat" {
25885
25975
  /**
25886
25976
  * Specifies a rounding behavior for numerical operations capable of discarding precision. Each rounding
25887
25977
  * mode in this object indicates how the least significant returned digits of rounded result is to be calculated.
25978
+ *
25979
+ * This enum is part of the 'sap/ui/core/format/NumberFormat' module export and must be accessed by the
25980
+ * property 'RoundingMode'.
25888
25981
  */
25889
25982
  enum RoundingMode {
25890
25983
  /**
@@ -25953,11 +26046,53 @@ declare module "sap/ui/core/Fragment" {
25953
26046
  * no representation in HTML. By default, in contrast to declarative Views, they do not do anything to guarantee
25954
26047
  * ID uniqueness.
25955
26048
  *
25956
- * But like Views they can be defined in several Formats (XML, declarative HTML, JavaScript; support for
25957
- * other types can be plugged in), the declaration syntax is the same as in declarative Views and the name
25958
- * and location of the Fragment files is similar to Views. Controller methods can also be referenced in
25959
- * the declarations, but as Fragments do not have their own controllers, this requires the Fragments to
25960
- * be used within a View which does have a controller. That controller is used, then.
26049
+ * But like Views they can be defined in several Formats (XML and JavaScript; support for other types can
26050
+ * be plugged in), the declaration syntax is the same as in declarative Views and the name and location
26051
+ * of the Fragment files is similar to Views. Controller methods can also be referenced in the declarations,
26052
+ * but as Fragments do not have their own controllers, this requires the Fragments to be used within a View
26053
+ * which does have a controller. That controller is used, then.
26054
+ *
26055
+ * A JS Fragment can be defined in a dedicated module named "*.fragment.js". This module must return an
26056
+ * object with a `createContent` method which has to return a control. JS Fragments are also capable of
26057
+ * asynchronously creating content. To do so, the `createContent` function must return a Promise resolving
26058
+ * with the content controls.
26059
+ *
26060
+ * **Example:** Defining a JS Fragment
26061
+ * ```javascript
26062
+ *
26063
+ * // e.g. module "my/sample/Button.fragment.js"
26064
+ * sap.ui.define(["sap/m/Button"], function(Button) {
26065
+ * return {
26066
+ * createContent: (oController) => {
26067
+ * const oButton = new Button({
26068
+ * text: "Hello World" ,
26069
+ * press: oController.doSomething
26070
+ * });
26071
+ * return oButton;
26072
+ * }
26073
+ * };
26074
+ * });
26075
+ * ```
26076
+ *
26077
+ *
26078
+ * **Example:** Defining a JS Fragment with a async 'createContent' method
26079
+ * ```javascript
26080
+ *
26081
+ * // e.g. module "my/sample/AsyncButton.fragment.js"
26082
+ * sap.ui.define(["sap/m/Button", "sap/base/i18n/ResourceBundle"], function(Button, ResourceBundle) {
26083
+ * return {
26084
+ * createContent: async (oController) => {
26085
+ * // loading a resource bundle async to retrieve button text
26086
+ * const myBundle = await ResourceBundle.create({ bundleName: "...", async: true });
26087
+ * return new Button({ text: myBundle.getText("...") });
26088
+ * }
26089
+ * };
26090
+ * });
26091
+ * ```
26092
+ *
26093
+ *
26094
+ * Fragments can be instantiated with {@link sap.ui.core.Fragment.load Fragment.load} or the {@link sap.ui.core.mvc.Controller.loadFragment loadFragment }
26095
+ * function from a controller.
25961
26096
  *
25962
26097
  * Do not call the Fragment constructor directly!
25963
26098
  *
@@ -26041,8 +26176,8 @@ declare module "sap/ui/core/Fragment" {
26041
26176
  *
26042
26177
  * The Fragment object itself is not an entity with significance beyond this factory.
26043
26178
  *
26044
- * The Fragment types "XML", "JS" and "HTML" are available by default; additional Fragment types can be
26045
- * added using the sap.ui.core.Fragment.registerType() function.
26179
+ * The Fragment types "XML", "JS" and "HTML" (type "HTML" is deprecated) are available by default; additional
26180
+ * Fragment types can be added using the sap.ui.core.Fragment.registerType() function.
26046
26181
  *
26047
26182
  * Further properties may be supported by future or custom Fragment types. Any given properties will be
26048
26183
  * forwarded to the Fragment implementation.
@@ -26068,7 +26203,7 @@ declare module "sap/ui/core/Fragment" {
26068
26203
  */
26069
26204
  name?: string;
26070
26205
  /**
26071
- * the Fragment type, e.g. "XML", "JS", or "HTML" (see above). Default is "XML"
26206
+ * the Fragment type, e.g. "XML", "JS", or "HTML" (type "HTML" is deprecated). Default is "XML"
26072
26207
  */
26073
26208
  type?: string;
26074
26209
  /**
@@ -26401,6 +26536,9 @@ declare module "sap/ui/core/HTML" {
26401
26536
  * - the content must be enclosed in tags, pure text is not supported.
26402
26537
  * - if the content contains script tags, they will be executed but they will not appear in the resulting
26403
26538
  * DOM tree. When the contained code tries to find the corresponding script tag, it will fail.
26539
+ * - if the control is used in an {@link sap/ui/core/mvc/XMLView XMLView}, ensure proper escaping as described
26540
+ * in {@link https://ui5.sap.com/#/topic/5ee3be4727864bb08b991414e0428e38 Control Properties and Associations in XML Views }
26541
+ *
26404
26542
  *
26405
26543
  * Please consider to consult the jQuery documentation as well.
26406
26544
  *
@@ -26484,6 +26622,9 @@ declare module "sap/ui/core/HTML" {
26484
26622
  * - the content must be enclosed in tags, pure text is not supported.
26485
26623
  * - if the content contains script tags, they will be executed but they will not appear in the resulting
26486
26624
  * DOM tree. When the contained code tries to find the corresponding script tag, it will fail.
26625
+ * - if the control is used in an {@link sap/ui/core/mvc/XMLView XMLView}, ensure proper escaping as described
26626
+ * in {@link https://ui5.sap.com/#/topic/5ee3be4727864bb08b991414e0428e38 Control Properties and Associations in XML Views }
26627
+ *
26487
26628
  *
26488
26629
  * Please consider to consult the jQuery documentation as well.
26489
26630
  *
@@ -26599,6 +26740,9 @@ declare module "sap/ui/core/HTML" {
26599
26740
  * - the content must be enclosed in tags, pure text is not supported.
26600
26741
  * - if the content contains script tags, they will be executed but they will not appear in the resulting
26601
26742
  * DOM tree. When the contained code tries to find the corresponding script tag, it will fail.
26743
+ * - if the control is used in an {@link sap/ui/core/mvc/XMLView XMLView}, ensure proper escaping as described
26744
+ * in {@link https://ui5.sap.com/#/topic/5ee3be4727864bb08b991414e0428e38 Control Properties and Associations in XML Views }
26745
+ *
26602
26746
  *
26603
26747
  * Please consider to consult the jQuery documentation as well.
26604
26748
  *
@@ -26716,7 +26860,10 @@ declare module "sap/ui/core/hyphenation/Hyphenation" {
26716
26860
  * @since 1.60
26717
26861
  */
26718
26862
  export default class Hyphenation extends ManagedObject {
26719
- constructor();
26863
+ /**
26864
+ * @ui5-protected Do not call from applications (only from related classes in the framework)
26865
+ */
26866
+ protected constructor();
26720
26867
 
26721
26868
  /**
26722
26869
  * Creates a new subclass of class sap.ui.core.hyphenation.Hyphenation with name `sClassName` and enriches
@@ -28185,16 +28332,22 @@ declare module "sap/ui/core/InvisibleMessage" {
28185
28332
  *
28186
28333
  * Overview: This class is a singleton. The class instance can be retrieved via the static method {@link sap.ui.core.InvisibleMessage.getInstance}.
28187
28334
  *
28188
- * **Note:** Keep in mind that, according to the ARIA standard, the live regions should be presented and
28189
- * should be empty. Thus, we recommend to instantiate `InvisibleMessage` via `sap.ui.core.InvisibleMessage.getInstance()`
28190
- * as early as possible in the application logic, e.g. with the Component initialization, with the main
28191
- * Controller initialization, after Core initialization, etc. Then, you should specify the text that has
28192
- * to be announced by the screen reader and the live region’s mode using the `announce` method.
28335
+ * **Note:** According to the ARIA standard, live regions should be presented and should be empty. To enhance
28336
+ * accessibility, it is recommended to instantiate `InvisibleMessage` via `sap.ui.core.InvisibleMessage.getInstance()`
28337
+ * as early as possible in the application logic. For example, during Component initialization, main Controller
28338
+ * initialization, after Core initialization, etc. Once instantiated, use the `announce` method to specify
28339
+ * the text that has to be announced by the screen reader and set the live region’s mode.
28340
+ *
28341
+ * **Note:** Ensure that the `announce` method is called after the DOM is ready, to guarantee its intended
28342
+ * effect. Calling it before the DOM is ready may result in no announcement being made.
28193
28343
  *
28194
28344
  * @since 1.78
28195
28345
  */
28196
28346
  export default class InvisibleMessage extends ManagedObject {
28197
- constructor();
28347
+ /**
28348
+ * @ui5-protected Do not call from applications (only from related classes in the framework)
28349
+ */
28350
+ protected constructor();
28198
28351
 
28199
28352
  /**
28200
28353
  * Creates a new subclass of class sap.ui.core.InvisibleMessage with name `sClassName` and enriches it with
@@ -28852,7 +29005,10 @@ declare module "sap/ui/core/Lib" {
28852
29005
  * @since 1.118
28853
29006
  */
28854
29007
  export default class Lib extends BaseObject {
28855
- constructor();
29008
+ /**
29009
+ * @ui5-protected Do not call from applications (only from related classes in the framework)
29010
+ */
29011
+ protected constructor();
28856
29012
 
28857
29013
  /**
28858
29014
  * Creates a new subclass of class sap.ui.core.Lib with name `sClassName` and enriches it with the information
@@ -28892,7 +29048,7 @@ declare module "sap/ui/core/Lib" {
28892
29048
  * loaded yet, synchronous request will be used to load the resource bundle.
28893
29049
  *
28894
29050
  * If only one argument is given, it is assumed to be the library name. The locale then falls back to the
28895
- * current {@link sap.ui.core.Configuration#getLanguage session locale}.
29051
+ * current {@link module:sap/base/i18n/Localization.getLanguage session locale}.
28896
29052
  *
28897
29053
  * Configuration via App Descriptor: When the App Descriptor for the library is available without further
28898
29054
  * request (manifest.json has been preloaded) and when the App Descriptor is at least of version 1.9.0 or
@@ -28949,7 +29105,7 @@ declare module "sap/ui/core/Lib" {
28949
29105
  *
28950
29106
  * - With the `noLibraryCSS` property, the library can be marked as 'theming-free'. Otherwise, the framework
28951
29107
  * will add a <link> tag to the page's head, pointing to the library's theme-specific stylesheet.
28952
- * The creation of such a <link> tag can be suppressed with the {@link sap.ui.core.Configuration global configuration option }
29108
+ * The creation of such a <link> tag can be suppressed with the {@link https://ui5.sap.com/#/topic/91f2d03b6f4d1014b6dd926db0e91070 global configuration option }
28953
29109
  * `preloadLibCss`. It can contain a list of library names for which no stylesheet should be included. This
28954
29110
  * is e.g. useful when an application merges the CSS for multiple libraries and already loaded the resulting
28955
29111
  * stylesheet.
@@ -29560,8 +29716,8 @@ declare module "sap/ui/core/Locale" {
29560
29716
  * of SAP languages. This method has no knowledge about the concrete languages of any given backend system.
29561
29717
  *
29562
29718
  * @since 1.17.0
29563
- * @deprecated (since 1.44) - use {@link sap.ui.core.Configuration#getSAPLogonLanguage} instead as that
29564
- * class allows to configure an SAP Logon language.
29719
+ * @deprecated (since 1.44) - use {@link module:sap/base/i18n/Localization.getSAPLogonLanguage} instead
29720
+ * as that class allows to configure an SAP Logon language.
29565
29721
  *
29566
29722
  * @returns a language code that should
29567
29723
  */
@@ -32272,7 +32428,10 @@ declare module "sap/ui/core/mvc/ControllerExtension" {
32272
32428
  * in the documentation.
32273
32429
  */
32274
32430
  export default class ControllerExtension extends BaseObject {
32275
- constructor();
32431
+ /**
32432
+ * @ui5-protected Do not call from applications (only from related classes in the framework)
32433
+ */
32434
+ protected constructor();
32276
32435
 
32277
32436
  /**
32278
32437
  * Creates a new subclass of class sap.ui.core.mvc.ControllerExtension with name `sClassName` and enriches
@@ -33443,7 +33602,12 @@ declare module "sap/ui/core/mvc/View" {
33443
33602
  * @returns A control or array of controls representing the view user interface or a Promise resolving with
33444
33603
  * a control or an array of controls.
33445
33604
  */
33446
- createContent(): Control | Control[] | Promise<Control | Control[]>;
33605
+ createContent(
33606
+ /**
33607
+ * The controller of the view
33608
+ */
33609
+ oController: Controller
33610
+ ): Control | Control[] | Promise<Control | Control[]>;
33447
33611
  /**
33448
33612
  * Convert the given view local element ID to a globally unique ID by prefixing it with the view ID.
33449
33613
  *
@@ -34253,6 +34417,9 @@ declare module "sap/ui/core/mvc/XMLView" {
34253
34417
 
34254
34418
  /**
34255
34419
  * Specifies the available preprocessor types for XMLViews
34420
+ *
34421
+ * This enum is part of the 'sap/ui/core/mvc/XMLView' module export and must be accessed by the property
34422
+ * 'PreprocessorType'.
34256
34423
  * See:
34257
34424
  * sap.ui.core.mvc.XMLView
34258
34425
  * sap.ui.core.mvc.View.Preprocessor
@@ -34454,6 +34621,9 @@ declare module "sap/ui/core/mvc/XMLView" {
34454
34621
  }
34455
34622
  /**
34456
34623
  * Specifies the available preprocessor types for XMLViews
34624
+ *
34625
+ * This enum is part of the 'sap/ui/core/mvc/XMLView' module export and must be accessed by the property
34626
+ * 'PreprocessorType'.
34457
34627
  * See:
34458
34628
  * sap.ui.core.mvc.XMLView
34459
34629
  * sap.ui.core.mvc.View.Preprocessor
@@ -34573,6 +34743,8 @@ declare module "sap/ui/core/Popup" {
34573
34743
  *
34574
34744
  * "Right" and "Left" will stay the same in RTL mode, but "Begin" and "End" will flip to the other side
34575
34745
  * ("Begin" is "Right" in RTL).
34746
+ *
34747
+ * This enum is part of the 'sap/ui/core/Popup' module export and must be accessed by the property 'Dock'.
34576
34748
  */
34577
34749
  static Dock: typeof Dock;
34578
34750
 
@@ -35303,6 +35475,8 @@ declare module "sap/ui/core/Popup" {
35303
35475
  *
35304
35476
  * "Right" and "Left" will stay the same in RTL mode, but "Begin" and "End" will flip to the other side
35305
35477
  * ("Begin" is "Right" in RTL).
35478
+ *
35479
+ * This enum is part of the 'sap/ui/core/Popup' module export and must be accessed by the property 'Dock'.
35306
35480
  */
35307
35481
  enum Dock {
35308
35482
  BeginBottom = "begin bottom",
@@ -35719,7 +35893,10 @@ declare module "sap/ui/core/RenderManager" {
35719
35893
  * rendering optimization.
35720
35894
  */
35721
35895
  export default class RenderManager extends Object {
35722
- constructor();
35896
+ /**
35897
+ * @ui5-protected Do not call from applications (only from related classes in the framework)
35898
+ */
35899
+ protected constructor();
35723
35900
 
35724
35901
  /**
35725
35902
  * Creates the ID to be used for the invisible Placeholder DOM element. This method can be used to get direct
@@ -36629,7 +36806,10 @@ declare module "sap/ui/core/ResizeHandler" {
36629
36806
  * create instances, do not call inherited methods).
36630
36807
  */
36631
36808
  export default class ResizeHandler extends BaseObject {
36632
- constructor();
36809
+ /**
36810
+ * @ui5-protected Do not call from applications (only from related classes in the framework)
36811
+ */
36812
+ protected constructor();
36633
36813
 
36634
36814
  /**
36635
36815
  * Deregisters a previously registered handler for resize events with the given registration ID.
@@ -37748,10 +37928,16 @@ declare module "sap/ui/core/routing/HashChanger" {
37748
37928
 
37749
37929
  import Metadata from "sap/ui/base/Metadata";
37750
37930
 
37931
+ import { routing } from "sap/ui/core/library";
37932
+
37751
37933
  import Event from "sap/ui/base/Event";
37752
37934
 
37753
37935
  /**
37754
- * Class for manipulating and receiving changes of the browser hash with the hasher framework.
37936
+ * Class for manipulating and receiving changes of the browser hash with `hasher` framework.
37937
+ *
37938
+ * **IMPORTANT:** To set or replace the current browser hash, use {@link #setHash} or {@link #replaceHash }
37939
+ * and do NOT interact with the `hasher` framework directly in order to have the navigation direction calculated
37940
+ * as accurate as possible.
37755
37941
  *
37756
37942
  * Fires a `hashChanged` event if the browser hash changes.
37757
37943
  */
@@ -37818,7 +38004,7 @@ declare module "sap/ui/core/routing/HashChanger" {
37818
38004
  */
37819
38005
  destroy(): void;
37820
38006
  /**
37821
- * Fires the hashchanged event, may be extended to modify the hash before fireing the event
38007
+ * Fires the `hashChanged` event, may be extended to modify the hash before firing the event
37822
38008
  *
37823
38009
  * @ui5-protected Do not call from applications (only from related classes in the framework)
37824
38010
  */
@@ -37848,8 +38034,7 @@ declare module "sap/ui/core/routing/HashChanger" {
37848
38034
  */
37849
38035
  getRelevantEventsInfo(): HashChangerEventInfo[];
37850
38036
  /**
37851
- * Will start listening to hashChanges with the parseHash function. This will also fire a hashchanged event
37852
- * with the initial hash.
38037
+ * Will start listening to hash changes. This will also fire a `hashChanged` event with the initial hash.
37853
38038
  *
37854
38039
  *
37855
38040
  * @returns false if it was initialized before, true if it was initialized the first time
@@ -37858,12 +38043,23 @@ declare module "sap/ui/core/routing/HashChanger" {
37858
38043
  /**
37859
38044
  * Replaces the hash with a certain value. When using the replace function, no browser history entry is
37860
38045
  * written. If you want to have an entry in the browser history, please use the {@link #setHash} function.
38046
+ *
38047
+ * The `sDirection` parameter can be used to provide direction information on the navigation which leads
38048
+ * to this hash replacement. This is typically used when synchronizing the hashes between multiple frames
38049
+ * to provide information to the frame where the hash is replaced with the navigation direction in the other
38050
+ * frame where the navigation occurs.
37861
38051
  */
37862
38052
  replaceHash(
37863
38053
  /**
37864
38054
  * New hash
37865
38055
  */
37866
- sHash: string
38056
+ sHash: string,
38057
+ /**
38058
+ * The direction information for this hash replacement
38059
+ */
38060
+ sDirection:
38061
+ | routing.HistoryDirection
38062
+ | keyof typeof routing.HistoryDirection
37867
38063
  ): void;
37868
38064
  /**
37869
38065
  * Sets the hash to a certain value. When using this function, a browser history entry is written. If you
@@ -42713,7 +42909,7 @@ declare module "sap/ui/core/tmpl/TemplateControl" {
42713
42909
  /**
42714
42910
  * ID of the element which is the current target of the association {@link #getTemplate template}, or `null`.
42715
42911
  */
42716
- getTemplate(): ID;
42912
+ getTemplate(): ID | null;
42717
42913
  /**
42718
42914
  * Returns the instance specific renderer for an anonymous template control.
42719
42915
  *
@@ -43350,7 +43546,10 @@ declare module "sap/ui/core/UIArea" {
43350
43546
  * normal control tree, but nevertheless should receive model or binding context updates.
43351
43547
  */
43352
43548
  export default class UIArea extends ManagedObject {
43353
- constructor();
43549
+ /**
43550
+ * @ui5-protected Do not call from applications (only from related classes in the framework)
43551
+ */
43552
+ protected constructor();
43354
43553
  /**
43355
43554
  * Registry of all `sap.ui.core.Element`s that currently exist.
43356
43555
  *
@@ -45559,6 +45758,9 @@ declare module "sap/ui/core/util/MockServer" {
45559
45758
  );
45560
45759
  /**
45561
45760
  * Enum for the method.
45761
+ *
45762
+ * This enum is part of the 'sap/ui/core/util/MockServer' module export and must be accessed by the property
45763
+ * 'HTTPMETHOD'.
45562
45764
  */
45563
45765
  static HTTPMETHOD: typeof HTTPMETHOD;
45564
45766
 
@@ -45870,6 +46072,9 @@ declare module "sap/ui/core/util/MockServer" {
45870
46072
  }
45871
46073
  /**
45872
46074
  * Enum for the method.
46075
+ *
46076
+ * This enum is part of the 'sap/ui/core/util/MockServer' module export and must be accessed by the property
46077
+ * 'HTTPMETHOD'.
45873
46078
  */
45874
46079
  enum HTTPMETHOD {
45875
46080
  DELETE = "DELETE",
@@ -46840,6 +47045,9 @@ declare module "sap/ui/core/ws/SapPcpWebSocket" {
46840
47045
  *
46841
47046
  * One (or more) of these have to be selected to create an SapPcpWebSocket connection (or no protocol at
46842
47047
  * all).
47048
+ *
47049
+ * This enum is part of the 'sap/ui/core/ws/SapPcpWebSocket' module export and must be accessed by the property
47050
+ * 'SUPPORTED_PROTOCOLS'.
46843
47051
  */
46844
47052
  static SUPPORTED_PROTOCOLS: typeof SUPPORTED_PROTOCOLS;
46845
47053
 
@@ -46911,6 +47119,9 @@ declare module "sap/ui/core/ws/SapPcpWebSocket" {
46911
47119
  *
46912
47120
  * One (or more) of these have to be selected to create an SapPcpWebSocket connection (or no protocol at
46913
47121
  * all).
47122
+ *
47123
+ * This enum is part of the 'sap/ui/core/ws/SapPcpWebSocket' module export and must be accessed by the property
47124
+ * 'SUPPORTED_PROTOCOLS'.
46914
47125
  */
46915
47126
  enum SUPPORTED_PROTOCOLS {
46916
47127
  v10 = "v10.pcp.sap.com",
@@ -49279,6 +49490,9 @@ declare module "sap/ui/model/analytics/odata4analytics" {
49279
49490
  interface odata4analytics {
49280
49491
  /**
49281
49492
  * Sort order of a property.
49493
+ *
49494
+ * This enum is part of the 'sap/ui/model/analytics/odata4analytics' module export and must be accessed
49495
+ * by the property 'SortOrder'.
49282
49496
  */
49283
49497
  SortOrder: typeof SortOrder;
49284
49498
 
@@ -51127,6 +51341,9 @@ declare module "sap/ui/model/analytics/odata4analytics" {
51127
51341
  }
51128
51342
  /**
51129
51343
  * Sort order of a property.
51344
+ *
51345
+ * This enum is part of the 'sap/ui/model/analytics/odata4analytics' module export and must be accessed
51346
+ * by the property 'SortOrder'.
51130
51347
  */
51131
51348
  enum SortOrder {
51132
51349
  /**
@@ -51501,8 +51718,8 @@ declare module "sap/ui/model/Binding" {
51501
51718
  oListener?: object
51502
51719
  ): void;
51503
51720
  /**
51504
- * Removes all control messages for this binding from {@link sap.ui.core.Messaging} in addition to the standard
51505
- * clean-up tasks.
51721
+ * Removes all control messages for this binding from {@link module:sap/ui/core/Messaging} in addition to
51722
+ * the standard clean-up tasks.
51506
51723
  * See:
51507
51724
  * sap.ui.base.EventProvider#destroy
51508
51725
  */
@@ -56129,19 +56346,20 @@ declare module "sap/ui/model/odata/AnnotationHelper" {
56129
56346
  * oSupplierContext = oMetaModel.getMetaContext("/ProductSet('HT-1021')/ToSupplier");
56130
56347
  * oValueContext = oMetaModel.createBindingContext("com.sap.vocabularies.UI.v1.DataPoint/Value", oSupplierContext);
56131
56348
  *
56132
- * vPropertySetting = sap.ui.model.odata.AnnotationHelper.createPropertySetting([
56133
- * sap.ui.model.odata.AnnotationHelper.format(oValueContext),
56134
- * "{path : 'meta>Value', formatter : 'sap.ui.model.odata.AnnotationHelper.simplePath'}",
56349
+ * vPropertySetting = AnnotationHelper.createPropertySetting([
56350
+ * AnnotationHelper.format(oValueContext),
56351
+ * "{path : 'meta>Value', formatter : 'AH.simplePath'}",
56135
56352
  * "{:= 'Mr. ' + ${/FirstName} + ' ' + ${/LastName}}",
56136
56353
  * "hello, world!",
56137
56354
  * 42
56138
- * ], myRootFormatter);
56355
+ * ], myRootFormatter, {AH : AnnotationHelper});
56139
56356
  *
56140
56357
  * oControl.applySettings({"someProperty" : vPropertySetting});
56141
56358
  * ```
56142
56359
  *
56143
56360
  *
56144
56361
  * @since 1.31.0
56362
+ * @deprecated (since 1.121.0)
56145
56363
  *
56146
56364
  * @returns constant value or binding info object for a property as expected by {@link sap.ui.base.ManagedObject#applySettings applySettings}
56147
56365
  */
@@ -56154,7 +56372,12 @@ declare module "sap/ui/model/odata/AnnotationHelper" {
56154
56372
  * root formatter function; default: `Array.prototype.join(., " ")` in case of multiple parts, just like
56155
56373
  * {@link sap.ui.model.CompositeBinding#getExternalValue getExternalValue}
56156
56374
  */
56157
- fnRootFormatter?: Function
56375
+ fnRootFormatter?: Function,
56376
+ /**
56377
+ * Maps an alias to a module (like `{AH : AnnotationHelper}`) or a function (like `{format : AnnotationHelper.format}`);
56378
+ * the alias must not contain a dot. Since 1.121.0 global names are deprecated; always use this scope instead.
56379
+ */
56380
+ oScope?: Record<string, object | Function>
56158
56381
  ): any | object;
56159
56382
  /**
56160
56383
  * A formatter function to be used in a complex binding inside an XML template view in order to interpret
@@ -60522,8 +60745,9 @@ declare module "sap/ui/model/odata/type/Boolean" {
60522
60745
  bValue: boolean,
60523
60746
  /**
60524
60747
  * the target type; may be "any", "boolean", "string", or a type with one of these types as its {@link sap.ui.base.DataType#getPrimitiveType primitive type}.
60525
- * If the target type (or its primitive type) is "string", the result is "Yes" or "No" in the current {@link sap.ui.core.Configuration#getLanguage language}.
60526
- * See {@link sap.ui.model.odata.type} for more information.
60748
+ * If the target type (or its primitive type) is "string", the result is "Yes" or "No" in the current language;
60749
+ * see {@link module:sap/base/i18n/Localization.getLanguage Localization.getLanguage}. See {@link sap.ui.model.odata.type }
60750
+ * for more information.
60527
60751
  */
60528
60752
  sTargetType: string
60529
60753
  ): boolean | string;
@@ -61066,7 +61290,7 @@ declare module "sap/ui/model/odata/type/DateTime" {
61066
61290
  * which represents a timestamp in the configured time zone. Validates the resulting value against the constraints
61067
61291
  * of this type instance.
61068
61292
  * See:
61069
- * {@link sap.ui.core.Configuration#getTimezone}
61293
+ * {@link module:sap/base/i18n/Localization.getTimezone Localization.getTimezone}
61070
61294
  *
61071
61295
  * @since 1.111.0
61072
61296
  *
@@ -63712,7 +63936,10 @@ declare module "sap/ui/model/odata/v2/Context" {
63712
63936
  * @since 1.93.0
63713
63937
  */
63714
63938
  export default class Context extends Context1 {
63715
- constructor();
63939
+ /**
63940
+ * @ui5-protected Do not call from applications (only from related classes in the framework)
63941
+ */
63942
+ protected constructor();
63716
63943
 
63717
63944
  /**
63718
63945
  * Creates a new subclass of class sap.ui.model.odata.v2.Context with name `sClassName` and enriches it
@@ -65200,10 +65427,9 @@ declare module "sap/ui/model/odata/v2/ODataModel" {
65200
65427
  */
65201
65428
  headers?: Record<string, string>;
65202
65429
  /**
65203
- * **Experimental** as of version 1.112.0; may change behavior or be removed in future versions. Whether
65204
- * to ignore all annotations from service metadata, so that they are not available as V4 annotations in
65205
- * this model's metamodel; see {@link #getMetaModel}. Only annotations from annotation files are loaded;
65206
- * see the `annotationURI` parameter.
65430
+ * Whether to ignore all annotations from service metadata, so that they are not available as V4 annotations
65431
+ * in this model's metamodel; see {@link #getMetaModel}. Only annotations from annotation files are loaded;
65432
+ * see the `annotationURI` parameter. Supported since 1.121.0
65207
65433
  */
65208
65434
  ignoreAnnotationsFromMetadata?: boolean;
65209
65435
  /**
@@ -68021,7 +68247,10 @@ declare module "sap/ui/model/odata/v2/ODataTreeBinding" {
68021
68247
  * for creating an instance.
68022
68248
  */
68023
68249
  export default class ODataTreeBinding extends TreeBinding {
68024
- constructor();
68250
+ /**
68251
+ * @ui5-protected Do not call from applications (only from related classes in the framework)
68252
+ */
68253
+ protected constructor();
68025
68254
 
68026
68255
  /**
68027
68256
  * Creates a new subclass of class sap.ui.model.odata.v2.ODataTreeBinding with name `sClassName` and enriches
@@ -68861,7 +69090,10 @@ declare module "sap/ui/model/odata/v4/Context" {
68861
69090
  * @since 1.39.0
68862
69091
  */
68863
69092
  export default class Context extends Context1 {
68864
- constructor();
69093
+ /**
69094
+ * @ui5-protected Do not call from applications (only from related classes in the framework)
69095
+ */
69096
+ protected constructor();
68865
69097
 
68866
69098
  /**
68867
69099
  * Creates a new subclass of class sap.ui.model.odata.v4.Context with name `sClassName` and enriches it
@@ -68980,7 +69212,9 @@ declare module "sap/ui/model/odata/v4/Context" {
68980
69212
  * no group ID needs to be specified. Since 1.98.0, you can use `null` to prevent the DELETE request in
68981
69213
  * case of a kept-alive context that is not in the collection and of which you know that it does not exist
68982
69214
  * on the server anymore (for example, a draft after activation). Since 1.108.0 the usage of a group ID
68983
- * with {@link sap.ui.model.odata.v4.SubmitMode.API} is possible.
69215
+ * with {@link sap.ui.model.odata.v4.SubmitMode.API} is possible. Since 1.121.0, you can use the '$single'
69216
+ * group ID to send a DELETE request as fast as possible; it will be wrapped in a batch request as for a
69217
+ * '$auto' group.
68984
69218
  */
68985
69219
  sGroupId?: string,
68986
69220
  /**
@@ -69234,8 +69468,8 @@ declare module "sap/ui/model/odata/v4/Context" {
69234
69468
  * ancestor node) must happen while this move is pending! Omitting a new parent turns this node into a root
69235
69469
  * node (since 1.121.0).
69236
69470
  *
69237
- * This context's {@link #getIndex index} may change and it becomes "created persisted", with {@link #isTransient }
69238
- * returning `false` etc.
69471
+ * This context's {@link #getIndex index} may change and, in case of `oAggregation.expandTo : 1`, it becomes
69472
+ * "created persisted", with {@link #isTransient} returning `false` etc.
69239
69473
  *
69240
69474
  * @experimental (since 1.119.0)
69241
69475
  *
@@ -69313,7 +69547,13 @@ declare module "sap/ui/model/odata/v4/Context" {
69313
69547
  *
69314
69548
  * The header context of a list binding only delivers `$count` (wrapped in an object if `sPath` is "").
69315
69549
  *
69316
- * If you want {@link #requestObject} to read fresh data, call {@link #refresh} first.
69550
+ * In case of a {@link sap.ui.model.odata.v4.ODataContextBinding#getBoundContext context binding's bound context }
69551
+ * that hasn't requested its data yet, this method causes an initial back-end request using the binding's
69552
+ * $expand and $select. Once any binding has requested its data, this method does **not** cause requests
69553
+ * anymore. If you want to read fresh data, call {@link #refresh} first. In contrast to {@link #requestProperty},
69554
+ * it is **not** possible to cause additional property requests. Access is only to the data the context
69555
+ * points to (or any part thereof), as defined by the binding's $expand and $select (unless this is a header
69556
+ * context, see above).
69317
69557
  * See:
69318
69558
  * #getBinding
69319
69559
  * sap.ui.model.odata.v4.ODataContextBinding#refresh
@@ -69660,7 +69900,10 @@ declare module "sap/ui/model/odata/v4/ODataContextBinding" {
69660
69900
  * @since 1.37.0
69661
69901
  */
69662
69902
  export default class ODataContextBinding extends ContextBinding {
69663
- constructor();
69903
+ /**
69904
+ * @ui5-protected Do not call from applications (only from related classes in the framework)
69905
+ */
69906
+ protected constructor();
69664
69907
 
69665
69908
  /**
69666
69909
  * Creates a new subclass of class sap.ui.model.odata.v4.ODataContextBinding with name `sClassName` and
@@ -69859,7 +70102,9 @@ declare module "sap/ui/model/odata/v4/ODataContextBinding" {
69859
70102
  * The group ID to be used for the request; if not specified, the group ID for this binding is used, see
69860
70103
  * {@link sap.ui.model.odata.v4.ODataContextBinding#constructor} and {@link #getGroupId}. To use the update
69861
70104
  * group ID, see {@link #getUpdateGroupId}, it needs to be specified explicitly. Valid values are `undefined`,
69862
- * '$auto', '$auto.*', '$direct' or application group IDs as specified in {@link sap.ui.model.odata.v4.ODataModel}.
70105
+ * '$auto', '$auto.*', '$direct', '$single', or application group IDs as specified in {@link sap.ui.model.odata.v4.ODataModel}.
70106
+ * If '$single' is used, the request will be sent as fast as '$direct', but wrapped in a batch request like
70107
+ * '$auto' (since 1.121.0).
69863
70108
  */
69864
70109
  sGroupId?: string,
69865
70110
  /**
@@ -70211,7 +70456,10 @@ declare module "sap/ui/model/odata/v4/ODataListBinding" {
70211
70456
  * @since 1.37.0
70212
70457
  */
70213
70458
  export default class ODataListBinding extends ListBinding {
70214
- constructor();
70459
+ /**
70460
+ * @ui5-protected Do not call from applications (only from related classes in the framework)
70461
+ */
70462
+ protected constructor();
70215
70463
 
70216
70464
  /**
70217
70465
  * Creates a new subclass of class sap.ui.model.odata.v4.ODataListBinding with name `sClassName` and enriches
@@ -70603,9 +70851,10 @@ declare module "sap/ui/model/odata/v4/ODataListBinding" {
70603
70851
  */
70604
70852
  filter(
70605
70853
  /**
70606
- * The dynamic filters to be used; replaces the dynamic filters given in {@link sap.ui.model.odata.v4.ODataModel#bindList}.
70607
- * The filter executed on the list is created from the following parts, which are combined with a logical
70608
- * 'and':
70854
+ * The dynamic filters to be used; in case of type {@link sap.ui.model.FilterType.Application} this replaces
70855
+ * the dynamic filters given in {@link sap.ui.model.odata.v4.ODataModel#bindList}. A nullish or missing
70856
+ * value is treated as an empty array and thus removes all dynamic filters of the specified type. The filter
70857
+ * executed on the list is created from the following parts, which are combined with a logical 'and':
70609
70858
  * Dynamic filters of type {@link sap.ui.model.FilterType.Application} Dynamic filters of type {@link sap.ui.model.FilterType.Control }
70610
70859
  * The static filters, as defined in the '$filter' binding parameter
70611
70860
  */
@@ -71182,8 +71431,8 @@ declare module "sap/ui/model/odata/v4/ODataListBinding" {
71182
71431
  sort(
71183
71432
  /**
71184
71433
  * The dynamic sorters to be used; they replace the dynamic sorters given in {@link sap.ui.model.odata.v4.ODataModel#bindList}.
71185
- * Static sorters, as defined in the '$orderby' binding parameter, are always executed after the dynamic
71186
- * sorters.
71434
+ * A nullish or missing value is treated as an empty array and thus removes all dynamic sorters. Static
71435
+ * sorters, as defined in the '$orderby' binding parameter, are always executed after the dynamic sorters.
71187
71436
  */
71188
71437
  vSorters?: Sorter | Sorter[]
71189
71438
  ): this;
@@ -71336,7 +71585,7 @@ declare module "sap/ui/model/odata/v4/ODataListBinding" {
71336
71585
  context?: Context;
71337
71586
 
71338
71587
  /**
71339
- * Whether the POST was successfully processed; in case of an error, the error is already reported to {@link sap.ui.core.Messaging}
71588
+ * Whether the POST was successfully processed; in case of an error, the error is already reported to {@link module:sap/ui/core/Messaging}
71340
71589
  */
71341
71590
  success?: boolean;
71342
71591
  }
@@ -71458,7 +71707,10 @@ declare module "sap/ui/model/odata/v4/ODataMetaModel" {
71458
71707
  * @since 1.37.0
71459
71708
  */
71460
71709
  export default class ODataMetaModel extends MetaModel {
71461
- constructor();
71710
+ /**
71711
+ * @ui5-protected Do not call from applications (only from related classes in the framework)
71712
+ */
71713
+ protected constructor();
71462
71714
 
71463
71715
  /**
71464
71716
  * Creates a new subclass of class sap.ui.model.odata.v4.ODataMetaModel with name `sClassName` and enriches
@@ -72030,10 +72282,12 @@ declare module "sap/ui/model/odata/v4/ODataMetaModel" {
72030
72282
  */
72031
72283
  mParameters?: {
72032
72284
  /**
72033
- * Scope for lookup of aliases for computed annotations (since 1.43.0). Since 1.120.3 looking up a computed
72034
- * annotation via its global name is deprecated; always use this scope instead.
72285
+ * Scope for lookup of aliases for computed annotations (since 1.43.0) as a map from alias to a module (like
72286
+ * `{AH : AnnotationHelper}`) or function (like `{format : AnnotationHelper.format}`); the alias must not
72287
+ * contain a dot. Since 1.120.3 looking up a computed annotation via its global name is deprecated; always
72288
+ * use this scope instead.
72035
72289
  */
72036
- scope?: object;
72290
+ scope?: Record<string, object | Function>;
72037
72291
  }
72038
72292
  ): Promise<any>;
72039
72293
  /**
@@ -72306,7 +72560,7 @@ declare module "sap/ui/model/odata/v4/ODataModel" {
72306
72560
  /**
72307
72561
  * Whether to ignore all annotations from service metadata and "cross-service references"; only the value
72308
72562
  * `true` is allowed. Only annotations from annotation files (see parameter "annotationURI") are loaded.
72309
- * This parameter is not inherited by value list models. @experimental as of version 1.111.0
72563
+ * This parameter is not inherited by value list models. Supported since 1.121.0
72310
72564
  */
72311
72565
  ignoreAnnotationsFromMetadata?: boolean;
72312
72566
  /**
@@ -72350,7 +72604,7 @@ declare module "sap/ui/model/odata/v4/ODataModel" {
72350
72604
  /**
72351
72605
  * (Controls synchronization between different bindings which refer to the same data for the case data changes
72352
72606
  * in one binding. Must be set to 'None' which means bindings are not synchronized at all; all other values
72353
- * are not supported and lead to an error.) **deprecated:** As of Version 1.110.0, this parameter is optional;
72607
+ * are not supported and lead to an error.) **deprecated:** As of Version 1.110.0, this parameter is obsolete;
72354
72608
  * see also {@link https://ui5.sap.com/#/topic/648e360fa22d46248ca783dc6eb44531 Data Reuse}
72355
72609
  */
72356
72610
  synchronizationMode?: string;
@@ -72577,9 +72831,10 @@ declare module "sap/ui/model/odata/v4/ODataModel" {
72577
72831
  */
72578
72832
  vSorters?: Sorter | Sorter[],
72579
72833
  /**
72580
- * The dynamic application filters to be used initially. Call {@link sap.ui.model.odata.v4.ODataListBinding#filter }
72581
- * to replace them. Static filters, as defined in the '$filter' binding parameter, are always combined with
72582
- * the dynamic filters using a logical `AND`. Supported since 1.39.0.
72834
+ * The dynamic {@link sap.ui.model.FilterType.Application application} filters to be used initially. Call
72835
+ * {@link sap.ui.model.odata.v4.ODataListBinding#filter} to replace them. Static filters, as defined in
72836
+ * the '$filter' binding parameter, are always combined with the dynamic filters using a logical `AND`.
72837
+ * Supported since 1.39.0.
72583
72838
  */
72584
72839
  vFilters?: Filter | Filter[],
72585
72840
  /**
@@ -72778,6 +73033,11 @@ declare module "sap/ui/model/odata/v4/ODataModel" {
72778
73033
  * is allowed.
72779
73034
  */
72780
73035
  $$noPatch?: boolean;
73036
+ /**
73037
+ * The scope for {@link sap.ui.model.odata.v4.ODataMetaModel#requestObject} if it is an object; a custom
73038
+ * query option otherwise
73039
+ */
73040
+ scope?: any;
72781
73041
  }
72782
73042
  ): ODataPropertyBinding;
72783
73043
  /**
@@ -72891,7 +73151,9 @@ declare module "sap/ui/model/odata/v4/ODataModel" {
72891
73151
  vCanonicalPath: string | Context,
72892
73152
  /**
72893
73153
  * The group ID that is used for the DELETE request; if not specified, the model's {@link #getUpdateGroupId update group ID }
72894
- * is used; the resulting group ID must not have {@link sap.ui.model.odata.v4.SubmitMode.API}
73154
+ * is used; the resulting group ID must not have {@link sap.ui.model.odata.v4.SubmitMode.API}. You can use
73155
+ * the '$single' group ID to send a DELETE request as fast as possible; it will be wrapped in a batch request
73156
+ * as for a '$auto' group (since 1.121.0).
72895
73157
  */
72896
73158
  sGroupId?: string,
72897
73159
  /**
@@ -73410,7 +73672,10 @@ declare module "sap/ui/model/odata/v4/ODataPropertyBinding" {
73410
73672
  * @since 1.37.0
73411
73673
  */
73412
73674
  export default class ODataPropertyBinding extends PropertyBinding {
73413
- constructor();
73675
+ /**
73676
+ * @ui5-protected Do not call from applications (only from related classes in the framework)
73677
+ */
73678
+ protected constructor();
73414
73679
 
73415
73680
  /**
73416
73681
  * Creates a new subclass of class sap.ui.model.odata.v4.ODataPropertyBinding with name `sClassName` and
@@ -82883,6 +83148,8 @@ declare module "sap/ui/test/OpaPlugin" {
82883
83148
 
82884
83149
  import UI5Element from "sap/ui/core/Element";
82885
83150
 
83151
+ import { ID } from "sap/ui/core/library";
83152
+
82886
83153
  import Metadata from "sap/ui/base/Metadata";
82887
83154
 
82888
83155
  import View from "sap/ui/core/mvc/View";
@@ -82919,6 +83186,29 @@ declare module "sap/ui/test/OpaPlugin" {
82919
83186
  */
82920
83187
  FNMetaImpl?: Function
82921
83188
  ): Function;
83189
+ /**
83190
+ * Returns the registered element with the given ID, if any. Internally forwards to {@link sap.ui.core.Element#getElementById }
83191
+ * or the corresponsing legacy API. The legacy API is used when the tested app is loaded in an iframe that
83192
+ * uses a lower UI5 version.
83193
+ *
83194
+ * @ui5-protected Do not call from applications (only from related classes in the framework)
83195
+ *
83196
+ * @returns Element with the given ID or `undefined`
83197
+ */
83198
+ static getElementById(
83199
+ /**
83200
+ * ID of the element to search for
83201
+ */
83202
+ sId: ID | null | undefined
83203
+ ): UI5Element | undefined;
83204
+ /**
83205
+ * Retrieves a resource bundle for the given library and locale. Internally forwards to {@link sap.ui.core.Lib#getResourceBundleFor }
83206
+ * or the corresponsing legacy API. The legacy API is used when the tested app is loaded in an iframe that
83207
+ * uses a lower UI5 version.
83208
+ *
83209
+ * @ui5-protected Do not call from applications (only from related classes in the framework)
83210
+ */
83211
+ static getLibraryResourceBundle(sLibraryName: string): void;
82922
83212
  /**
82923
83213
  * Returns a metadata object for class sap.ui.test.OpaPlugin.
82924
83214
  *
@@ -82926,6 +83216,26 @@ declare module "sap/ui/test/OpaPlugin" {
82926
83216
  * @returns Metadata object describing this class
82927
83217
  */
82928
83218
  static getMetadata(): Metadata;
83219
+ /**
83220
+ * Returns the root element of the static, hidden area. Internally forwards to {@link sap.ui.core.StaticArea#getDomRef }
83221
+ * or the corresponsing legacy API. The legacy API is used when the tested app is loaded in an iframe that
83222
+ * uses a lower UI5 version.
83223
+ *
83224
+ * @ui5-protected Do not call from applications (only from related classes in the framework)
83225
+ *
83226
+ * @returns the root DOM element of the static, hidden area
83227
+ */
83228
+ static getStaticAreaDomRef(): Element;
83229
+ /**
83230
+ * Returns `true` if there are any pending rendering tasks or when such rendering tasks are currently being
83231
+ * executed. Internally forwards to {@link sap.ui.core.Rendering#isPending} or the corresponsing legacy
83232
+ * API. The legacy API is used when the tested app is loaded in an iframe that uses a lower UI5 version.
83233
+ *
83234
+ * @ui5-protected Do not call from applications (only from related classes in the framework)
83235
+ *
83236
+ * @returns true if there are pending (or executing) rendering tasks.
83237
+ */
83238
+ static isUIDirty(): boolean;
82929
83239
  /**
82930
83240
  * Gets all the controls or elements of a certain type that are currently instantiated. If the type is omitted,
82931
83241
  * all controls and elements are returned.
@@ -83172,6 +83482,9 @@ declare module "sap/ui/test/RecordReplay" {
83172
83482
  * Interaction types.
83173
83483
  *
83174
83484
  * Values correspond to OPA5 built-in actions {@link sap.ui.test.actions}.
83485
+ *
83486
+ * This enum is part of the 'sap/ui/test/RecordReplay' module export and must be accessed by the property
83487
+ * 'InteractionType'.
83175
83488
  */
83176
83489
  static InteractionType: typeof InteractionType;
83177
83490
 
@@ -83383,6 +83696,9 @@ declare module "sap/ui/test/RecordReplay" {
83383
83696
  * Interaction types.
83384
83697
  *
83385
83698
  * Values correspond to OPA5 built-in actions {@link sap.ui.test.actions}.
83699
+ *
83700
+ * This enum is part of the 'sap/ui/test/RecordReplay' module export and must be accessed by the property
83701
+ * 'InteractionType'.
83386
83702
  */
83387
83703
  enum InteractionType {
83388
83704
  EnterText = "ENTER_TEXT",
@@ -86213,8 +86529,6 @@ declare namespace sap {
86213
86529
 
86214
86530
  "sap/base/i18n/date/CalendarWeekNumbering": undefined;
86215
86531
 
86216
- "sap/base/i18n/date/TimezoneUtils": undefined;
86217
-
86218
86532
  "sap/base/i18n/Formatting": undefined;
86219
86533
 
86220
86534
  "sap/base/i18n/LanguageTag": undefined;