@openui5/types 1.115.1 → 1.116.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -280,7 +280,7 @@ declare namespace sap {
280
280
  }
281
281
  }
282
282
 
283
- // For Library Version: 1.115.1
283
+ // For Library Version: 1.116.0
284
284
 
285
285
  declare module "sap/base/assert" {
286
286
  /**
@@ -2658,9 +2658,7 @@ declare module "sap/ui/core/date/CalendarUtils" {
2658
2658
  * {@link sap.ui.core.Configuration#getCalendarWeekNumbering}. If this value is `Default` the returned calendar
2659
2659
  * week configuration is derived from the given `oLocale`.
2660
2660
  */
2661
- sCalendarWeekNumbering?:
2662
- | CalendarWeekNumbering
2663
- | keyof typeof CalendarWeekNumbering,
2661
+ sCalendarWeekNumbering?: CalendarWeekNumbering,
2664
2662
  /**
2665
2663
  * The locale to use; if not provided, this falls back to the format locale from the Configuration; see
2666
2664
  * {@link sap.ui.core.Configuration.FormatSettings#getFormatLocale}. Is only used when `sCalendarWeekNumbering`
@@ -4557,7 +4555,8 @@ declare module "sap/ui/util/Mobile" {
4557
4555
  * The "options" parameter configures what exactly should be done.
4558
4556
  *
4559
4557
  * It can have the following properties:
4560
- * - viewport: whether to set the viewport in a way that disables zooming (default: true)
4558
+ * - viewport: whether to set the viewport in a way that disables zooming (default: true). This does not
4559
+ * work in case there is already a meta tag with name 'viewport'.
4561
4560
  * - statusBar: the iOS status bar color, "default", "black" or "black-translucent" (default: "default")
4562
4561
  *
4563
4562
  * - hideBrowser: whether the browser UI should be hidden as far as possible to make the app feel more
@@ -4567,7 +4566,8 @@ declare module "sap/ui/util/Mobile" {
4567
4566
  * - preventPhoneNumberDetection: whether Safari Mobile should be prevented from transforming any numbers
4568
4567
  * that look like phone numbers into clickable links; this should be left as "true", otherwise it might
4569
4568
  * break controls because Safari actually changes the DOM. This only affects all page content which is created
4570
- * after init() is called.
4569
+ * after init() is called and only in case there is not already a meta tag with name 'format-detection'.
4570
+ *
4571
4571
  * - rootId: the ID of the root element that should be made fullscreen; only used when hideBrowser is
4572
4572
  * set (default: the document.body)
4573
4573
  * - useFullScreenHeight: a boolean that defines whether the height of the html root element should be
@@ -7500,8 +7500,8 @@ declare module "sap/ui/base/ManagedObject" {
7500
7500
  * Changing the state via the standard mutators, therefore, does not require an explicit call to `invalidate`.
7501
7501
  * The same applies to changes made via data binding, as it internally uses the standard mutators.
7502
7502
  *
7503
- * By default, a `ManagedObject` propagates any invalidation to its parent. Controls or UIAreas handle invalidation
7504
- * on their own by triggering a re-rendering.
7503
+ * By default, a `ManagedObject` propagates any invalidation to its parent, unless the invalidation is suppressed
7504
+ * on the parent. Controls or UIAreas handle invalidation on their own by triggering a re-rendering.
7505
7505
  */
7506
7506
  invalidate(): void;
7507
7507
  /**
@@ -8448,33 +8448,25 @@ declare module "sap/ui/base/ManagedObject" {
8448
8448
  * Fired after a new value for a bound property has been propagated to the model. Only fired, when the binding
8449
8449
  * uses a data type.
8450
8450
  */
8451
- validationSuccess?: (
8452
- oEvent: Event<ManagedObject$ValidationSuccessEventParameters>
8453
- ) => void;
8451
+ validationSuccess?: (oEvent: ManagedObject$ValidationSuccessEvent) => void;
8454
8452
 
8455
8453
  /**
8456
8454
  * Fired when a new value for a bound property should have been propagated to the model, but validating
8457
8455
  * the value failed with an exception.
8458
8456
  */
8459
- validationError?: (
8460
- oEvent: Event<ManagedObject$ValidationErrorEventParameters>
8461
- ) => void;
8457
+ validationError?: (oEvent: ManagedObject$ValidationErrorEvent) => void;
8462
8458
 
8463
8459
  /**
8464
8460
  * Fired when a new value for a bound property should have been propagated to the model, but parsing the
8465
8461
  * value failed with an exception.
8466
8462
  */
8467
- parseError?: (
8468
- oEvent: Event<ManagedObject$ParseErrorEventParameters>
8469
- ) => void;
8463
+ parseError?: (oEvent: ManagedObject$ParseErrorEvent) => void;
8470
8464
 
8471
8465
  /**
8472
8466
  * Fired when a new value for a bound property should have been propagated from the model, but formatting
8473
8467
  * the value failed with an exception.
8474
8468
  */
8475
- formatError?: (
8476
- oEvent: Event<ManagedObject$FormatErrorEventParameters>
8477
- ) => void;
8469
+ formatError?: (oEvent: ManagedObject$FormatErrorEvent) => void;
8478
8470
 
8479
8471
  /**
8480
8472
  * Fired when models or contexts are changed on this object (either by calling setModel/setBindingContext
@@ -8510,22 +8502,10 @@ declare module "sap/ui/base/ManagedObject" {
8510
8502
  oldValue?: any;
8511
8503
  }
8512
8504
 
8513
- /**
8514
- * @deprecated (since 1.115.1) - This name was introduced in 1.115.0, but will be 'ManagedObject$FormatErrorEventParameters'
8515
- * in 1.115.1 and any later releases.
8516
- */
8517
- export type $ManagedObjectFormatErrorEventParameters = ManagedObject$FormatErrorEventParameters;
8518
-
8519
8505
  export type ManagedObject$FormatErrorEvent = Event<ManagedObject$FormatErrorEventParameters>;
8520
8506
 
8521
8507
  export interface ManagedObject$ModelContextChangeEventParameters {}
8522
8508
 
8523
- /**
8524
- * @deprecated (since 1.115.1) - This name was introduced in 1.115.0, but will be 'ManagedObject$ModelContextChangeEventParameters'
8525
- * in 1.115.1 and any later releases.
8526
- */
8527
- export type $ManagedObjectModelContextChangeEventParameters = ManagedObject$ModelContextChangeEventParameters;
8528
-
8529
8509
  export type ManagedObject$ModelContextChangeEvent = Event<ManagedObject$ModelContextChangeEventParameters>;
8530
8510
 
8531
8511
  export interface ManagedObject$ParseErrorEventParameters {
@@ -8560,12 +8540,6 @@ declare module "sap/ui/base/ManagedObject" {
8560
8540
  message?: string;
8561
8541
  }
8562
8542
 
8563
- /**
8564
- * @deprecated (since 1.115.1) - This name was introduced in 1.115.0, but will be 'ManagedObject$ParseErrorEventParameters'
8565
- * in 1.115.1 and any later releases.
8566
- */
8567
- export type $ManagedObjectParseErrorEventParameters = ManagedObject$ParseErrorEventParameters;
8568
-
8569
8543
  export type ManagedObject$ParseErrorEvent = Event<ManagedObject$ParseErrorEventParameters>;
8570
8544
 
8571
8545
  export interface ManagedObject$ValidationErrorEventParameters {
@@ -8600,12 +8574,6 @@ declare module "sap/ui/base/ManagedObject" {
8600
8574
  message?: string;
8601
8575
  }
8602
8576
 
8603
- /**
8604
- * @deprecated (since 1.115.1) - This name was introduced in 1.115.0, but will be 'ManagedObject$ValidationErrorEventParameters'
8605
- * in 1.115.1 and any later releases.
8606
- */
8607
- export type $ManagedObjectValidationErrorEventParameters = ManagedObject$ValidationErrorEventParameters;
8608
-
8609
8577
  export type ManagedObject$ValidationErrorEvent = Event<ManagedObject$ValidationErrorEventParameters>;
8610
8578
 
8611
8579
  export interface ManagedObject$ValidationSuccessEventParameters {
@@ -8638,12 +8606,6 @@ declare module "sap/ui/base/ManagedObject" {
8638
8606
  oldValue?: any;
8639
8607
  }
8640
8608
 
8641
- /**
8642
- * @deprecated (since 1.115.1) - This name was introduced in 1.115.0, but will be 'ManagedObject$ValidationSuccessEventParameters'
8643
- * in 1.115.1 and any later releases.
8644
- */
8645
- export type $ManagedObjectValidationSuccessEventParameters = ManagedObject$ValidationSuccessEventParameters;
8646
-
8647
8609
  export type ManagedObject$ValidationSuccessEvent = Event<ManagedObject$ValidationSuccessEventParameters>;
8648
8610
 
8649
8611
  export namespace MetadataOptions {
@@ -12061,12 +12023,6 @@ declare module "sap/ui/core/CommandExecution" {
12061
12023
 
12062
12024
  export interface CommandExecution$ExecuteEventParameters {}
12063
12025
 
12064
- /**
12065
- * @deprecated (since 1.115.1) - This name was introduced in 1.115.0, but will be 'CommandExecution$ExecuteEventParameters'
12066
- * in 1.115.1 and any later releases.
12067
- */
12068
- export type $CommandExecutionExecuteEventParameters = CommandExecution$ExecuteEventParameters;
12069
-
12070
12026
  export type CommandExecution$ExecuteEvent = Event<CommandExecution$ExecuteEventParameters>;
12071
12027
  }
12072
12028
 
@@ -13660,7 +13616,7 @@ declare module "sap/ui/core/ComponentContainer" {
13660
13616
  * Fired when the component instance has been created by the ComponentContainer.
13661
13617
  */
13662
13618
  componentCreated?: (
13663
- oEvent: Event<ComponentContainer$ComponentCreatedEventParameters>
13619
+ oEvent: ComponentContainer$ComponentCreatedEvent
13664
13620
  ) => void;
13665
13621
 
13666
13622
  /**
@@ -13671,9 +13627,7 @@ declare module "sap/ui/core/ComponentContainer" {
13671
13627
  * By default, the `ComponentContainer` also logs the error that occurred. Since 1.83, this default behavior
13672
13628
  * can be prevented by calling `preventDefault()` on the event object.
13673
13629
  */
13674
- componentFailed?: (
13675
- oEvent: Event<ComponentContainer$ComponentFailedEventParameters>
13676
- ) => void;
13630
+ componentFailed?: (oEvent: ComponentContainer$ComponentFailedEvent) => void;
13677
13631
  }
13678
13632
 
13679
13633
  export interface ComponentContainer$ComponentCreatedEventParameters {
@@ -13683,12 +13637,6 @@ declare module "sap/ui/core/ComponentContainer" {
13683
13637
  component?: UIComponent;
13684
13638
  }
13685
13639
 
13686
- /**
13687
- * @deprecated (since 1.115.1) - This name was introduced in 1.115.0, but will be 'ComponentContainer$ComponentCreatedEventParameters'
13688
- * in 1.115.1 and any later releases.
13689
- */
13690
- export type $ComponentContainerComponentCreatedEventParameters = ComponentContainer$ComponentCreatedEventParameters;
13691
-
13692
13640
  export type ComponentContainer$ComponentCreatedEvent = Event<ComponentContainer$ComponentCreatedEventParameters>;
13693
13641
 
13694
13642
  export interface ComponentContainer$ComponentFailedEventParameters {
@@ -13698,12 +13646,6 @@ declare module "sap/ui/core/ComponentContainer" {
13698
13646
  reason?: object;
13699
13647
  }
13700
13648
 
13701
- /**
13702
- * @deprecated (since 1.115.1) - This name was introduced in 1.115.0, but will be 'ComponentContainer$ComponentFailedEventParameters'
13703
- * in 1.115.1 and any later releases.
13704
- */
13705
- export type $ComponentContainerComponentFailedEventParameters = ComponentContainer$ComponentFailedEventParameters;
13706
-
13707
13649
  export type ComponentContainer$ComponentFailedEvent = Event<ComponentContainer$ComponentFailedEventParameters>;
13708
13650
  }
13709
13651
 
@@ -13988,6 +13930,28 @@ declare module "sap/ui/core/Configuration" {
13988
13930
  */
13989
13931
  AnimationMode: typeof AnimationMode;
13990
13932
 
13933
+ /**
13934
+ * @since 1.38.6
13935
+ *
13936
+ * Applies multiple changes to the configuration at once.
13937
+ *
13938
+ * If the changed settings contain localization related settings like `language` or calendarType,
13939
+ * then only a single `localizationChanged` event will be fired. As the framework has to inform all existing
13940
+ * components, elements, models etc. about localization changes, using `applySettings` can significantly
13941
+ * reduce the overhead for multiple changes, esp. when they occur after the UI has been created already.
13942
+ *
13943
+ * The `mSettings` can contain any property `xyz` for which a setter method `setXYZ` exists
13944
+ * in the API of this class. Similarly, values for the {@link sap.ui.core.Configuration.FormatSettings format settings }
13945
+ * API can be provided in a nested object with name `formatSettings`.
13946
+ *
13947
+ * @returns Returns `this` to allow method chaining
13948
+ */
13949
+ applySettings(
13950
+ /**
13951
+ * Configuration options to apply
13952
+ */
13953
+ mSettings: object
13954
+ ): this;
13991
13955
  /**
13992
13956
  * Creates a new subclass of class sap.ui.core.Configuration with name `sClassName` and enriches it with
13993
13957
  * the information contained in `oClassInfo`.
@@ -14012,37 +13976,9 @@ declare module "sap/ui/core/Configuration" {
14012
13976
  FNMetaImpl?: Function
14013
13977
  ): Function;
14014
13978
  /**
14015
- * Returns a metadata object for class sap.ui.core.Configuration.
13979
+ * Returns whether the accessibility mode is enabled or not.
14016
13980
  *
14017
- * @returns Metadata object describing this class
14018
- */
14019
- getMetadata(): Metadata;
14020
- /**
14021
- * @since 1.38.6
14022
- *
14023
- * Applies multiple changes to the configuration at once.
14024
- *
14025
- * If the changed settings contain localization related settings like `language` or calendarType,
14026
- * then only a single `localizationChanged` event will be fired. As the framework has to inform all existing
14027
- * components, elements, models etc. about localization changes, using `applySettings` can significantly
14028
- * reduce the overhead for multiple changes, esp. when they occur after the UI has been created already.
14029
- *
14030
- * The `mSettings` can contain any property `xyz` for which a setter method `setXYZ` exists
14031
- * in the API of this class. Similarly, values for the {@link sap.ui.core.Configuration.FormatSettings format settings }
14032
- * API can be provided in a nested object with name `formatSettings`.
14033
- *
14034
- * @returns Returns `this` to allow method chaining
14035
- */
14036
- applySettings(
14037
- /**
14038
- * Configuration options to apply
14039
- */
14040
- mSettings: object
14041
- ): this;
14042
- /**
14043
- * Returns whether the accessibility mode is used or not.
14044
- *
14045
- * @returns whether the accessibility mode is used or not
13981
+ * @returns whether the accessibility mode is enabled or not
14046
13982
  */
14047
13983
  getAccessibility(): boolean;
14048
13984
  /**
@@ -14100,6 +14036,8 @@ declare module "sap/ui/core/Configuration" {
14100
14036
  * @since 1.27.0
14101
14037
  *
14102
14038
  * Returns whether the framework automatically adds the ARIA role 'application' to the HTML body or not.
14039
+ *
14040
+ * @returns Wether the ARIA role 'application' should be added to the HTML body or not
14103
14041
  */
14104
14042
  getAutoAriaBodyRole(): boolean;
14105
14043
  /**
@@ -14110,9 +14048,7 @@ declare module "sap/ui/core/Configuration" {
14110
14048
  *
14111
14049
  * @returns The calendar week numbering algorithm
14112
14050
  */
14113
- getCalendarWeekNumbering():
14114
- | CalendarWeekNumbering
14115
- | keyof typeof CalendarWeekNumbering;
14051
+ getCalendarWeekNumbering(): CalendarWeekNumbering;
14116
14052
  /**
14117
14053
  * Returns the used compatibility version for the given feature.
14118
14054
  *
@@ -14187,7 +14123,7 @@ declare module "sap/ui/core/Configuration" {
14187
14123
  /**
14188
14124
  * Returns a string that identifies the current language.
14189
14125
  *
14190
- * The value returned by this method in most cases corresponds to the exact value that has been configured
14126
+ * The value returned by config method in most cases corresponds to the exact value that has been configured
14191
14127
  * by the user or application or that has been determined from the user agent settings. It has not been
14192
14128
  * normalized, but has been validated against a relaxed version of {@link http://www.ietf.org/rfc/bcp/bcp47.txt BCP47},
14193
14129
  * allowing underscores ('_') instead of the suggested dashes ('-') and not taking the case of letters into
@@ -14220,7 +14156,7 @@ declare module "sap/ui/core/Configuration" {
14220
14156
  /**
14221
14157
  * Returns a BCP47-compliant language tag for the current language.
14222
14158
  *
14223
- * The return value of this method is especially useful for an HTTP `Accept-Language` header.
14159
+ * The return value of config method is especially useful for an HTTP `Accept-Language` header.
14224
14160
  *
14225
14161
  * Retrieves the modern locale, e.g. sr-Latn (Serbian (Cyrillic)), he (Hebrew), yi (Yiddish)
14226
14162
  *
@@ -14243,6 +14179,12 @@ declare module "sap/ui/core/Configuration" {
14243
14179
  * @returns true if a Component should load the manifest first
14244
14180
  */
14245
14181
  getManifestFirst(): boolean;
14182
+ /**
14183
+ * Returns a metadata object for class sap.ui.core.Configuration.
14184
+ *
14185
+ * @returns Metadata object describing this class
14186
+ */
14187
+ getMetadata(): Metadata;
14246
14188
  /**
14247
14189
  * Returns whether there should be an exception on any duplicate element IDs.
14248
14190
  *
@@ -14368,7 +14310,7 @@ declare module "sap/ui/core/Configuration" {
14368
14310
  * the new calendar type. Set it with null to clear the calendar type and the calendar type is calculated
14369
14311
  * based on the format settings and current locale.
14370
14312
  */
14371
- sCalendarType: (CalendarType | keyof typeof CalendarType) | null
14313
+ sCalendarType: CalendarType | null
14372
14314
  ): this;
14373
14315
  /**
14374
14316
  * @since 1.113.0
@@ -14382,9 +14324,7 @@ declare module "sap/ui/core/Configuration" {
14382
14324
  /**
14383
14325
  * The calendar week numbering algorithm
14384
14326
  */
14385
- sCalendarWeekNumbering:
14386
- | CalendarWeekNumbering
14387
- | keyof typeof CalendarWeekNumbering
14327
+ sCalendarWeekNumbering: CalendarWeekNumbering
14388
14328
  ): this;
14389
14329
  /**
14390
14330
  * Sets a new format locale to be used from now on for retrieving locale specific formatters. Modifying
@@ -14423,7 +14363,7 @@ declare module "sap/ui/core/Configuration" {
14423
14363
  * Restrictions:
14424
14364
  *
14425
14365
  * The framework **does not** guarantee that already created, language dependent objects will be updated
14426
- * by this call. It therefore remains best practice for applications to switch the language early, e.g.
14366
+ * by config call. It therefore remains best practice for applications to switch the language early, e.g.
14427
14367
  * before any language dependent objects are created. Applications that need to support more dynamic changes
14428
14368
  * of the language should listen to the `localizationChanged` event and adapt all language dependent objects
14429
14369
  * that they use (e.g. by rebuilding their UI).
@@ -14446,17 +14386,15 @@ declare module "sap/ui/core/Configuration" {
14446
14386
  * - the `dir` attribute of the page will be changed to reflect the new mode.
14447
14387
  * - all UIAreas will be invalidated (which results in a rendering of the whole UI5 UI)
14448
14388
  *
14449
- * This method does not accept SAP language codes for `sLanguage`. Instead, a second parameter `sSAPLogonLanguage`
14389
+ * config method does not accept SAP language codes for `sLanguage`. Instead, a second parameter `sSAPLogonLanguage`
14450
14390
  * can be provided with an SAP language code corresponding to the given language. A given value will be
14451
14391
  * returned by the {@link #getSAPLogonLanguage} method. It is up to the caller to provide a consistent pair
14452
14392
  * of BCP47 language and SAP language code. The SAP language code is only checked to be of length 2 and
14453
14393
  * must consist of letters or digits only.
14454
14394
  *
14455
- * **Note**: When using this method please take note of and respect the above mentioned restrictions.
14395
+ * **Note**: When using config method please take note of and respect the above mentioned restrictions.
14456
14396
  * See:
14457
14397
  * http://scn.sap.com/docs/DOC-14377
14458
- *
14459
- * @returns `this` to allow method chaining
14460
14398
  */
14461
14399
  setLanguage(
14462
14400
  /**
@@ -14470,7 +14408,7 @@ declare module "sap/ui/core/Configuration" {
14470
14408
  * `sLanguage` as SAP Logon language.
14471
14409
  */
14472
14410
  sSAPLogonLanguage?: string
14473
- ): this;
14411
+ ): void;
14474
14412
  /**
14475
14413
  * Sets the character orientation mode to be used from now on.
14476
14414
  *
@@ -14504,16 +14442,27 @@ declare module "sap/ui/core/Configuration" {
14504
14442
  */
14505
14443
  aSecurityTokenHandlers: Array<(p1: URI) => Promise<any>>
14506
14444
  ): void;
14445
+ /**
14446
+ * Allows setting the theme name
14447
+ *
14448
+ * @returns `this` to allow method chaining
14449
+ */
14450
+ setTheme(
14451
+ /**
14452
+ * the theme name
14453
+ */
14454
+ sTheme: string
14455
+ ): this;
14507
14456
  /**
14508
14457
  * @since 1.99.0
14509
14458
  *
14510
- * Sets the timezone such that all date and time based calculations use this timezone.
14459
+ * Sets the timezone such that all date and time based calculations use config timezone.
14511
14460
  *
14512
- * **Important:** It is strongly recommended to only use this API at the earliest point of time while initializing
14513
- * a UI5 app. A later adjustment of the time zone should be avoided. It can lead to unexpected data inconsistencies
14514
- * in a running application, because date objects could still be related to a previously configured time
14515
- * zone. Instead, the app should be completely restarted with the new time zone. For more information, see
14516
- * {@link https://ui5.sap.com/#/topic/6c9e61dc157a40c19460660ece8368bc Dates, Times, Timestamps, and Time Zones}.
14461
+ * **Important:** It is strongly recommended to only use config API at the earliest point of time while
14462
+ * initializing a UI5 app. A later adjustment of the time zone should be avoided. It can lead to unexpected
14463
+ * data inconsistencies in a running application, because date objects could still be related to a previously
14464
+ * configured time zone. Instead, the app should be completely restarted with the new time zone. For more
14465
+ * information, see {@link https://ui5.sap.com/#/topic/6c9e61dc157a40c19460660ece8368bc Dates, Times, Timestamps, and Time Zones}.
14517
14466
  *
14518
14467
  * When the timezone has changed, the Core will fire its {@link sap.ui.core.Core#event:localizationChanged localizationChanged }
14519
14468
  * event.
@@ -14601,7 +14550,7 @@ declare module "sap/ui/core/Configuration" {
14601
14550
  * Adds custom currencies to the existing entries. E.g. ` { "KWD": {"digits": 3}, "TND" : {"digits": 3 }
14602
14551
  * } `
14603
14552
  * See:
14604
- * sap.ui.core.Configuration.FormatSettings#setCustomCurrencies
14553
+ * #setCustomCurrencies
14605
14554
  *
14606
14555
  * @returns Returns `this` to allow method chaining
14607
14556
  */
@@ -14609,18 +14558,25 @@ declare module "sap/ui/core/Configuration" {
14609
14558
  /**
14610
14559
  * adds to the currency map
14611
14560
  */
14612
- mCurrencies: Record<string, object>
14561
+ mCurrencies: object
14613
14562
  ): this;
14614
14563
  /**
14615
14564
  * Retrieves the custom currencies. E.g. ` { "KWD": {"digits": 3}, "TND" : {"digits": 3} } `
14616
14565
  *
14617
14566
  * @returns the mapping between custom currencies and its digits
14618
14567
  */
14619
- getCustomCurrencies(): Record<string, object>;
14568
+ getCustomCurrencies(): object;
14620
14569
  /**
14621
14570
  * Returns the currently set date pattern or undefined if no pattern has been defined.
14571
+ *
14572
+ * @returns The resulting date pattern
14622
14573
  */
14623
- getDatePattern(): void;
14574
+ getDatePattern(
14575
+ /**
14576
+ * The date style (short, medium, long or full)
14577
+ */
14578
+ sStyle: string
14579
+ ): string;
14624
14580
  /**
14625
14581
  * Returns the locale to be used for formatting.
14626
14582
  *
@@ -14636,9 +14592,10 @@ declare module "sap/ui/core/Configuration" {
14636
14592
  /**
14637
14593
  * Returns the currently set customizing data for Islamic calendar support
14638
14594
  *
14639
- * @returns Returns an array contains the customizing data. For details, please see {@link #setLegacyDateCalendarCustomizing}
14595
+ * @returns Returns an array contains the customizing data. Each element in the array has properties: dateFormat,
14596
+ * islamicMonthStart, gregDate. For details, please see {@link #setLegacyDateCalendarCustomizing}
14640
14597
  */
14641
- getLegacyDateCalendarCustomizing(): LegacyDateCalendarCustomizing[];
14598
+ getLegacyDateCalendarCustomizing(): object[];
14642
14599
  /**
14643
14600
  * Returns the currently set legacy ABAP date format (its id) or undefined if none has been set.
14644
14601
  *
@@ -14688,8 +14645,15 @@ declare module "sap/ui/core/Configuration" {
14688
14645
  ): string;
14689
14646
  /**
14690
14647
  * Returns the currently set time pattern or undefined if no pattern has been defined.
14648
+ *
14649
+ * @returns The resulting time pattern
14691
14650
  */
14692
- getTimePattern(): void;
14651
+ getTimePattern(
14652
+ /**
14653
+ * The time style (short, medium, long or full)
14654
+ */
14655
+ sStyle: string
14656
+ ): string;
14693
14657
  /**
14694
14658
  * @since 1.75.0
14695
14659
  *
@@ -14721,7 +14685,7 @@ declare module "sap/ui/core/Configuration" {
14721
14685
  /**
14722
14686
  * currency map which is set
14723
14687
  */
14724
- mCurrencies: Record<string, object>
14688
+ mCurrencies: object
14725
14689
  ): this;
14726
14690
  /**
14727
14691
  * Defines the preferred format pattern for the given date format style.
@@ -14748,7 +14712,8 @@ declare module "sap/ui/core/Configuration" {
14748
14712
  sPattern: string
14749
14713
  ): this;
14750
14714
  /**
14751
- * @deprecated (since 1.113.0) - Use {@link sap.ui.core.Configuration#setCalendarWeekNumbering} instead.
14715
+ * @deprecated (since 1.113.0) - Use {@link sap.ui.core.Configuration.FormatSettings#setCalendarWeekNumbering }
14716
+ * instead.
14752
14717
  *
14753
14718
  * Defines the day used as the first day of the week.
14754
14719
  *
@@ -14780,7 +14745,20 @@ declare module "sap/ui/core/Configuration" {
14780
14745
  /**
14781
14746
  * contains the customizing data for the support of Islamic calendar.
14782
14747
  */
14783
- aMappings: LegacyDateCalendarCustomizing[]
14748
+ aMappings: Array<{
14749
+ /**
14750
+ * The date format
14751
+ */
14752
+ dateFormat: string;
14753
+ /**
14754
+ * The Islamic date
14755
+ */
14756
+ islamicMonthStart: string;
14757
+ /**
14758
+ * The corresponding Gregorian date
14759
+ */
14760
+ gregDate: string;
14761
+ }>
14784
14762
  ): this;
14785
14763
  /**
14786
14764
  * Allows to specify one of the legacy ABAP date formats.
@@ -14921,23 +14899,6 @@ declare module "sap/ui/core/Configuration" {
14921
14899
  bTrailingCurrencyCode: boolean
14922
14900
  ): this;
14923
14901
  }
14924
- /**
14925
- * The object that contains the information for date calendar customizing
14926
- */
14927
- export type LegacyDateCalendarCustomizing = {
14928
- /**
14929
- * The IO of the date format. It has value "A" or "B".
14930
- */
14931
- dateFormat: "A" | "B";
14932
- /**
14933
- * The Islamic date in format "yyyyMMdd".
14934
- */
14935
- islamicMonthStart: string;
14936
- /**
14937
- * The corresponding Gregorian date in format "yyyyMMdd".
14938
- */
14939
- gregDate: string;
14940
- };
14941
14902
  }
14942
14903
 
14943
14904
  declare module "sap/ui/core/Control" {
@@ -15799,9 +15760,7 @@ declare module "sap/ui/core/Control" {
15799
15760
  * Listen to this event to validate data of the controls belonging to a field group. See {@link #setFieldGroupIds},
15800
15761
  * or consult the {@link https://ui5.sap.com/#/topic/5b0775397e394b1fb973fa207554003e Field Group} documentation.
15801
15762
  */
15802
- validateFieldGroup?: (
15803
- oEvent: Event<Control$ValidateFieldGroupEventParameters>
15804
- ) => void;
15763
+ validateFieldGroup?: (oEvent: Control$ValidateFieldGroupEvent) => void;
15805
15764
  }
15806
15765
 
15807
15766
  export interface Control$ValidateFieldGroupEventParameters {
@@ -15811,12 +15770,6 @@ declare module "sap/ui/core/Control" {
15811
15770
  fieldGroupIds?: string[];
15812
15771
  }
15813
15772
 
15814
- /**
15815
- * @deprecated (since 1.115.1) - This name was introduced in 1.115.0, but will be 'Control$ValidateFieldGroupEventParameters'
15816
- * in 1.115.1 and any later releases.
15817
- */
15818
- export type $ControlValidateFieldGroupEventParameters = Control$ValidateFieldGroupEventParameters;
15819
-
15820
15773
  export type Control$ValidateFieldGroupEvent = Event<Control$ValidateFieldGroupEventParameters>;
15821
15774
  }
15822
15775
 
@@ -15965,6 +15918,26 @@ declare module "sap/ui/core/Core" {
15965
15918
  * ```
15966
15919
  */
15967
15920
  interface Core {
15921
+ /**
15922
+ * Returns true, if the styles of the current theme are already applied, false otherwise.
15923
+ *
15924
+ * This function must not be used before the init event of the Core. If the styles are not yet applied a
15925
+ * theme changed event will follow when the styles will be applied.
15926
+ */
15927
+ isThemeApplied: undefined;
15928
+
15929
+ /**
15930
+ * Triggers a realignment of controls
15931
+ *
15932
+ * This method should be called after changing the cozy/compact CSS class of a DOM element at runtime, for
15933
+ * example at the `<body>` tag. Controls can listen to the themeChanged event to realign their appearance
15934
+ * after changing the theme. Changing the cozy/compact CSS class should then also be handled as a theme
15935
+ * change. In more simple scenarios where the cozy/compact CSS class is added to a DOM element which contains
15936
+ * only a few controls it might not be necessary to trigger the realigment of all controls placed in the
15937
+ * DOM, for example changing the cozy/compact CSS class at a single control
15938
+ */
15939
+ notifyContentDensityChanged: undefined;
15940
+
15968
15941
  /**
15969
15942
  * Creates a new subclass of class sap.ui.core.Core with name `sClassName` and enriches it with the information
15970
15943
  * contained in `oClassInfo`.
@@ -17058,15 +17031,6 @@ declare module "sap/ui/core/Core" {
17058
17031
  */
17059
17032
  oDomRef: Element
17060
17033
  ): boolean;
17061
- /**
17062
- * Returns true, if the styles of the current theme are already applied, false otherwise.
17063
- *
17064
- * This function must not be used before the init event of the Core. If the styles are not yet applied a
17065
- * theme changed event will follow when the styles will be applied.
17066
- *
17067
- * @returns whether the styles of the current theme are already applied
17068
- */
17069
- isThemeApplied(): boolean;
17070
17034
  /**
17071
17035
  * Loads the given library and its dependencies and makes its content available to the application.
17072
17036
  *
@@ -17165,17 +17129,6 @@ declare module "sap/ui/core/Core" {
17165
17129
  * be the case for asynchronous UI behavior
17166
17130
  */
17167
17131
  lock(): void;
17168
- /**
17169
- * Triggers a realignment of controls
17170
- *
17171
- * This method should be called after changing the cozy/compact CSS class of a DOM element at runtime, for
17172
- * example at the `<body>` tag. Controls can listen to the themeChanged event to realign their appearance
17173
- * after changing the theme. Changing the cozy/compact CSS class should then also be handled as a theme
17174
- * change. In more simple scenarios where the cozy/compact CSS class is added to a DOM element which contains
17175
- * only a few controls it might not be necessary to trigger the realigment of all controls placed in the
17176
- * DOM, for example changing the cozy/compact CSS class at a single control
17177
- */
17178
- notifyContentDensityChanged(): void;
17179
17132
  /**
17180
17133
  * @deprecated (since 1.73) - Plugins never have been meant as a public offering, but were intended for
17181
17134
  * internal usage only. They unfortunately allow access to all internals of the Core and therefore break
@@ -18009,52 +17962,22 @@ declare module "sap/ui/core/delegate/ItemNavigation" {
18009
17962
 
18010
17963
  export interface ItemNavigation$AfterFocusEventParameters {}
18011
17964
 
18012
- /**
18013
- * @deprecated (since 1.115.1) - This name was introduced in 1.115.0, but will be 'ItemNavigation$AfterFocusEventParameters'
18014
- * in 1.115.1 and any later releases.
18015
- */
18016
- export type $ItemNavigationAfterFocusEventParameters = ItemNavigation$AfterFocusEventParameters;
18017
-
18018
17965
  export type ItemNavigation$AfterFocusEvent = Event<ItemNavigation$AfterFocusEventParameters>;
18019
17966
 
18020
17967
  export interface ItemNavigation$BeforeFocusEventParameters {}
18021
17968
 
18022
- /**
18023
- * @deprecated (since 1.115.1) - This name was introduced in 1.115.0, but will be 'ItemNavigation$BeforeFocusEventParameters'
18024
- * in 1.115.1 and any later releases.
18025
- */
18026
- export type $ItemNavigationBeforeFocusEventParameters = ItemNavigation$BeforeFocusEventParameters;
18027
-
18028
17969
  export type ItemNavigation$BeforeFocusEvent = Event<ItemNavigation$BeforeFocusEventParameters>;
18029
17970
 
18030
17971
  export interface ItemNavigation$BorderReachedEventParameters {}
18031
17972
 
18032
- /**
18033
- * @deprecated (since 1.115.1) - This name was introduced in 1.115.0, but will be 'ItemNavigation$BorderReachedEventParameters'
18034
- * in 1.115.1 and any later releases.
18035
- */
18036
- export type $ItemNavigationBorderReachedEventParameters = ItemNavigation$BorderReachedEventParameters;
18037
-
18038
17973
  export type ItemNavigation$BorderReachedEvent = Event<ItemNavigation$BorderReachedEventParameters>;
18039
17974
 
18040
17975
  export interface ItemNavigation$FocusAgainEventParameters {}
18041
17976
 
18042
- /**
18043
- * @deprecated (since 1.115.1) - This name was introduced in 1.115.0, but will be 'ItemNavigation$FocusAgainEventParameters'
18044
- * in 1.115.1 and any later releases.
18045
- */
18046
- export type $ItemNavigationFocusAgainEventParameters = ItemNavigation$FocusAgainEventParameters;
18047
-
18048
17977
  export type ItemNavigation$FocusAgainEvent = Event<ItemNavigation$FocusAgainEventParameters>;
18049
17978
 
18050
17979
  export interface ItemNavigation$FocusLeaveEventParameters {}
18051
17980
 
18052
- /**
18053
- * @deprecated (since 1.115.1) - This name was introduced in 1.115.0, but will be 'ItemNavigation$FocusLeaveEventParameters'
18054
- * in 1.115.1 and any later releases.
18055
- */
18056
- export type $ItemNavigationFocusLeaveEventParameters = ItemNavigation$FocusLeaveEventParameters;
18057
-
18058
17981
  export type ItemNavigation$FocusLeaveEvent = Event<ItemNavigation$FocusLeaveEventParameters>;
18059
17982
  }
18060
17983
 
@@ -18834,7 +18757,7 @@ declare module "sap/ui/core/dnd/DragDropInfo" {
18834
18757
  /**
18835
18758
  * This event is fired when the user starts dragging an element.
18836
18759
  */
18837
- dragStart?: (oEvent: Event<DragDropInfo$DragStartEventParameters>) => void;
18760
+ dragStart?: (oEvent: DragDropInfo$DragStartEvent) => void;
18838
18761
 
18839
18762
  /**
18840
18763
  * @since 1.56
@@ -18846,12 +18769,6 @@ declare module "sap/ui/core/dnd/DragDropInfo" {
18846
18769
 
18847
18770
  export interface DragDropInfo$DragEndEventParameters {}
18848
18771
 
18849
- /**
18850
- * @deprecated (since 1.115.1) - This name was introduced in 1.115.0, but will be 'DragDropInfo$DragEndEventParameters'
18851
- * in 1.115.1 and any later releases.
18852
- */
18853
- export type $DragDropInfoDragEndEventParameters = DragDropInfo$DragEndEventParameters;
18854
-
18855
18772
  export type DragDropInfo$DragEndEvent = Event<DragDropInfo$DragEndEventParameters>;
18856
18773
 
18857
18774
  export interface DragDropInfo$DragStartEventParameters {
@@ -18871,12 +18788,6 @@ declare module "sap/ui/core/dnd/DragDropInfo" {
18871
18788
  browserEvent?: Event;
18872
18789
  }
18873
18790
 
18874
- /**
18875
- * @deprecated (since 1.115.1) - This name was introduced in 1.115.0, but will be 'DragDropInfo$DragStartEventParameters'
18876
- * in 1.115.1 and any later releases.
18877
- */
18878
- export type $DragDropInfoDragStartEventParameters = DragDropInfo$DragStartEventParameters;
18879
-
18880
18791
  export type DragDropInfo$DragStartEvent = Event<DragDropInfo$DragStartEventParameters>;
18881
18792
  }
18882
18793
 
@@ -18892,12 +18803,12 @@ declare module "sap/ui/core/dnd/DragInfo" {
18892
18803
 
18893
18804
  import { PropertyBindingInfo } from "sap/ui/base/ManagedObject";
18894
18805
 
18895
- import Event from "sap/ui/base/Event";
18896
-
18897
18806
  import UI5Element from "sap/ui/core/Element";
18898
18807
 
18899
18808
  import { DragSession } from "sap/ui/core/dnd/DragAndDrop";
18900
18809
 
18810
+ import Event from "sap/ui/base/Event";
18811
+
18901
18812
  /**
18902
18813
  * @since 1.56
18903
18814
  *
@@ -19165,14 +19076,14 @@ declare module "sap/ui/core/dnd/DragInfo" {
19165
19076
  /**
19166
19077
  * This event is fired when the user starts dragging an element.
19167
19078
  */
19168
- dragStart?: (oEvent: Event<DragInfo$DragStartEventParameters>) => void;
19079
+ dragStart?: (oEvent: DragInfo$DragStartEvent) => void;
19169
19080
 
19170
19081
  /**
19171
19082
  * @since 1.56
19172
19083
  *
19173
19084
  * This event is fired when a drag operation is being ended.
19174
19085
  */
19175
- dragEnd?: (oEvent: Event<DragInfo$DragEndEventParameters>) => void;
19086
+ dragEnd?: (oEvent: DragInfo$DragEndEvent) => void;
19176
19087
  }
19177
19088
 
19178
19089
  export interface DragInfo$DragEndEventParameters {
@@ -19192,12 +19103,6 @@ declare module "sap/ui/core/dnd/DragInfo" {
19192
19103
  browserEvent?: Event;
19193
19104
  }
19194
19105
 
19195
- /**
19196
- * @deprecated (since 1.115.1) - This name was introduced in 1.115.0, but will be 'DragInfo$DragEndEventParameters'
19197
- * in 1.115.1 and any later releases.
19198
- */
19199
- export type $DragInfoDragEndEventParameters = DragInfo$DragEndEventParameters;
19200
-
19201
19106
  export type DragInfo$DragEndEvent = Event<DragInfo$DragEndEventParameters>;
19202
19107
 
19203
19108
  export interface DragInfo$DragStartEventParameters {
@@ -19217,12 +19122,6 @@ declare module "sap/ui/core/dnd/DragInfo" {
19217
19122
  browserEvent?: Event;
19218
19123
  }
19219
19124
 
19220
- /**
19221
- * @deprecated (since 1.115.1) - This name was introduced in 1.115.0, but will be 'DragInfo$DragStartEventParameters'
19222
- * in 1.115.1 and any later releases.
19223
- */
19224
- export type $DragInfoDragStartEventParameters = DragInfo$DragStartEventParameters;
19225
-
19226
19125
  export type DragInfo$DragStartEvent = Event<DragInfo$DragStartEventParameters>;
19227
19126
  }
19228
19127
 
@@ -19385,12 +19284,12 @@ declare module "sap/ui/core/dnd/DropInfo" {
19385
19284
 
19386
19285
  import { PropertyBindingInfo } from "sap/ui/base/ManagedObject";
19387
19286
 
19388
- import Event from "sap/ui/base/Event";
19389
-
19390
19287
  import UI5Element from "sap/ui/core/Element";
19391
19288
 
19392
19289
  import { DragSession } from "sap/ui/core/dnd/DragAndDrop";
19393
19290
 
19291
+ import Event from "sap/ui/base/Event";
19292
+
19394
19293
  /**
19395
19294
  * @since 1.56
19396
19295
  *
@@ -19841,20 +19740,20 @@ declare module "sap/ui/core/dnd/DropInfo" {
19841
19740
  /**
19842
19741
  * This event is fired when a dragged element enters a drop target.
19843
19742
  */
19844
- dragEnter?: (oEvent: Event<DropInfo$DragEnterEventParameters>) => void;
19743
+ dragEnter?: (oEvent: DropInfo$DragEnterEvent) => void;
19845
19744
 
19846
19745
  /**
19847
19746
  * @since 1.56
19848
19747
  *
19849
19748
  * This event is fired when an element is being dragged over a valid drop target.
19850
19749
  */
19851
- dragOver?: (oEvent: Event<DropInfo$DragOverEventParameters>) => void;
19750
+ dragOver?: (oEvent: DropInfo$DragOverEvent) => void;
19852
19751
 
19853
19752
  /**
19854
19753
  * This event is fired when an element is dropped on a valid drop target, as specified by the drag-and-drop
19855
19754
  * info.
19856
19755
  */
19857
- drop?: (oEvent: Event<DropInfo$DropEventParameters>) => void;
19756
+ drop?: (oEvent: DropInfo$DropEvent) => void;
19858
19757
  }
19859
19758
 
19860
19759
  export interface DropInfo$DragEnterEventParameters {
@@ -19874,12 +19773,6 @@ declare module "sap/ui/core/dnd/DropInfo" {
19874
19773
  browserEvent?: Event;
19875
19774
  }
19876
19775
 
19877
- /**
19878
- * @deprecated (since 1.115.1) - This name was introduced in 1.115.0, but will be 'DropInfo$DragEnterEventParameters'
19879
- * in 1.115.1 and any later releases.
19880
- */
19881
- export type $DropInfoDragEnterEventParameters = DropInfo$DragEnterEventParameters;
19882
-
19883
19776
  export type DropInfo$DragEnterEvent = Event<DropInfo$DragEnterEventParameters>;
19884
19777
 
19885
19778
  export interface DropInfo$DragOverEventParameters {
@@ -19906,12 +19799,6 @@ declare module "sap/ui/core/dnd/DropInfo" {
19906
19799
  browserEvent?: Event;
19907
19800
  }
19908
19801
 
19909
- /**
19910
- * @deprecated (since 1.115.1) - This name was introduced in 1.115.0, but will be 'DropInfo$DragOverEventParameters'
19911
- * in 1.115.1 and any later releases.
19912
- */
19913
- export type $DropInfoDragOverEventParameters = DropInfo$DragOverEventParameters;
19914
-
19915
19802
  export type DropInfo$DragOverEvent = Event<DropInfo$DragOverEventParameters>;
19916
19803
 
19917
19804
  export interface DropInfo$DropEventParameters {
@@ -19943,12 +19830,6 @@ declare module "sap/ui/core/dnd/DropInfo" {
19943
19830
  browserEvent?: Event;
19944
19831
  }
19945
19832
 
19946
- /**
19947
- * @deprecated (since 1.115.1) - This name was introduced in 1.115.0, but will be 'DropInfo$DropEventParameters'
19948
- * in 1.115.1 and any later releases.
19949
- */
19950
- export type $DropInfoDropEventParameters = DropInfo$DropEventParameters;
19951
-
19952
19833
  export type DropInfo$DropEvent = Event<DropInfo$DropEventParameters>;
19953
19834
  }
19954
19835
 
@@ -21611,9 +21492,7 @@ declare module "sap/ui/core/format/DateFormat" {
21611
21492
  * since 1.108.0 specifies the calendar week numbering. If specified, this overwrites `oFormatOptions.firstDayOfWeek`
21612
21493
  * and `oFormatOptions.minimalDaysInFirstWeek`.
21613
21494
  */
21614
- calendarWeekNumbering?:
21615
- | CalendarWeekNumbering
21616
- | keyof typeof CalendarWeekNumbering;
21495
+ calendarWeekNumbering?: CalendarWeekNumbering;
21617
21496
  /**
21618
21497
  * since 1.105.0 specifies the first day of the week starting with `0` (which is Sunday); if not defined,
21619
21498
  * the value taken from the locale is used
@@ -21692,7 +21571,7 @@ declare module "sap/ui/core/format/DateFormat" {
21692
21571
  * The calender type which is used to format and parse the date. This value is by default either set in
21693
21572
  * configuration or calculated based on current locale.
21694
21573
  */
21695
- calendarType?: CalendarType | keyof typeof CalendarType;
21574
+ calendarType?: CalendarType;
21696
21575
  },
21697
21576
  /**
21698
21577
  * Locale to ask for locale specific texts/settings
@@ -21724,9 +21603,7 @@ declare module "sap/ui/core/format/DateFormat" {
21724
21603
  * since 1.108.0 specifies the calendar week numbering. If specified, this overwrites `oFormatOptions.firstDayOfWeek`
21725
21604
  * and `oFormatOptions.minimalDaysInFirstWeek`.
21726
21605
  */
21727
- calendarWeekNumbering?:
21728
- | CalendarWeekNumbering
21729
- | keyof typeof CalendarWeekNumbering;
21606
+ calendarWeekNumbering?: CalendarWeekNumbering;
21730
21607
  /**
21731
21608
  * since 1.105.0 specifies the first day of the week starting with `0` (which is Sunday); if not defined,
21732
21609
  * the value taken from the locale is used
@@ -21808,7 +21685,7 @@ declare module "sap/ui/core/format/DateFormat" {
21808
21685
  * The calender type which is used to format and parse the date. This value is by default either set in
21809
21686
  * configuration or calculated based on current locale.
21810
21687
  */
21811
- calendarType?: CalendarType | keyof typeof CalendarType;
21688
+ calendarType?: CalendarType;
21812
21689
  },
21813
21690
  /**
21814
21691
  * Locale to ask for locale specific texts/settings
@@ -21842,9 +21719,7 @@ declare module "sap/ui/core/format/DateFormat" {
21842
21719
  * since 1.108.0 specifies the calendar week numbering. If specified, this overwrites `oFormatOptions.firstDayOfWeek`
21843
21720
  * and `oFormatOptions.minimalDaysInFirstWeek`.
21844
21721
  */
21845
- calendarWeekNumbering?:
21846
- | CalendarWeekNumbering
21847
- | keyof typeof CalendarWeekNumbering;
21722
+ calendarWeekNumbering?: CalendarWeekNumbering;
21848
21723
  /**
21849
21724
  * since 1.105.0 specifies the first day of the week starting with `0` (which is Sunday); if not defined,
21850
21725
  * the value taken from the locale is used
@@ -21917,7 +21792,7 @@ declare module "sap/ui/core/format/DateFormat" {
21917
21792
  * The calendar type which is used to format and parse the date. This value is by default either set in
21918
21793
  * the configuration or calculated based on the current locale.
21919
21794
  */
21920
- calendarType?: CalendarType | keyof typeof CalendarType;
21795
+ calendarType?: CalendarType;
21921
21796
  },
21922
21797
  /**
21923
21798
  * Locale to ask for locale-specific texts/settings
@@ -21951,9 +21826,7 @@ declare module "sap/ui/core/format/DateFormat" {
21951
21826
  * since 1.108.0 specifies the calendar week numbering. If specified, this overwrites `oFormatOptions.firstDayOfWeek`
21952
21827
  * and `oFormatOptions.minimalDaysInFirstWeek`.
21953
21828
  */
21954
- calendarWeekNumbering?:
21955
- | CalendarWeekNumbering
21956
- | keyof typeof CalendarWeekNumbering;
21829
+ calendarWeekNumbering?: CalendarWeekNumbering;
21957
21830
  /**
21958
21831
  * since 1.105.0 specifies the first day of the week starting with `0` (which is Sunday); if not defined,
21959
21832
  * the value taken from the locale is used
@@ -22032,7 +21905,7 @@ declare module "sap/ui/core/format/DateFormat" {
22032
21905
  * The calender type which is used to format and parse the date. This value is by default either set in
22033
21906
  * configuration or calculated based on current locale.
22034
21907
  */
22035
- calendarType?: CalendarType | keyof typeof CalendarType;
21908
+ calendarType?: CalendarType;
22036
21909
  },
22037
21910
  /**
22038
21911
  * Locale to ask for locale specific texts/settings
@@ -24053,9 +23926,7 @@ declare module "sap/ui/core/HTML" {
24053
23926
  * When the control doesn't have string content and no preserved DOM existed for this control, then this
24054
23927
  * event will fire, but there won't be a DOM node for this control.
24055
23928
  */
24056
- afterRendering?: (
24057
- oEvent: Event<HTML$AfterRenderingEventParameters>
24058
- ) => void;
23929
+ afterRendering?: (oEvent: HTML$AfterRenderingEvent) => void;
24059
23930
  }
24060
23931
 
24061
23932
  export interface HTML$AfterRenderingEventParameters {
@@ -24066,12 +23937,6 @@ declare module "sap/ui/core/HTML" {
24066
23937
  isPreservedDOM?: boolean;
24067
23938
  }
24068
23939
 
24069
- /**
24070
- * @deprecated (since 1.115.1) - This name was introduced in 1.115.0, but will be 'HTML$AfterRenderingEventParameters'
24071
- * in 1.115.1 and any later releases.
24072
- */
24073
- export type $HTMLAfterRenderingEventParameters = HTML$AfterRenderingEventParameters;
24074
-
24075
23940
  export type HTML$AfterRenderingEvent = Event<HTML$AfterRenderingEventParameters>;
24076
23941
  }
24077
23942
 
@@ -24337,7 +24202,7 @@ declare module "sap/ui/core/hyphenation/Hyphenation" {
24337
24202
  /**
24338
24203
  * Fired if an error with initialization or hyphenation occurs.
24339
24204
  */
24340
- error?: (oEvent: Event<Hyphenation$ErrorEventParameters>) => void;
24205
+ error?: (oEvent: Hyphenation$ErrorEvent) => void;
24341
24206
  }
24342
24207
 
24343
24208
  export interface Hyphenation$ErrorEventParameters {
@@ -24347,12 +24212,6 @@ declare module "sap/ui/core/hyphenation/Hyphenation" {
24347
24212
  sErrorMessage?: string;
24348
24213
  }
24349
24214
 
24350
- /**
24351
- * @deprecated (since 1.115.1) - This name was introduced in 1.115.0, but will be 'Hyphenation$ErrorEventParameters'
24352
- * in 1.115.1 and any later releases.
24353
- */
24354
- export type $HyphenationErrorEventParameters = Hyphenation$ErrorEventParameters;
24355
-
24356
24215
  export type Hyphenation$ErrorEvent = Event<Hyphenation$ErrorEventParameters>;
24357
24216
  }
24358
24217
 
@@ -25089,12 +24948,6 @@ declare module "sap/ui/core/Icon" {
25089
24948
 
25090
24949
  export interface Icon$PressEventParameters {}
25091
24950
 
25092
- /**
25093
- * @deprecated (since 1.115.1) - This name was introduced in 1.115.0, but will be 'Icon$PressEventParameters'
25094
- * in 1.115.1 and any later releases.
25095
- */
25096
- export type $IconPressEventParameters = Icon$PressEventParameters;
25097
-
25098
24951
  export type Icon$PressEvent = Event<Icon$PressEventParameters>;
25099
24952
  }
25100
24953
 
@@ -26494,7 +26347,7 @@ declare module "sap/ui/core/Locale" {
26494
26347
  /**
26495
26348
  * the locale identifier, in format en-US or en_US.
26496
26349
  */
26497
- sLocaleId: string
26350
+ sLocale: string
26498
26351
  );
26499
26352
 
26500
26353
  /**
@@ -26532,7 +26385,7 @@ declare module "sap/ui/core/Locale" {
26532
26385
  * The extension always consists of a singleton character (not 'x'), a dash '-' and one or more extension
26533
26386
  * token, each separated again with a dash.
26534
26387
  *
26535
- * Use {@link #getExtensionSubtags} to get the individual extension tokens as an array.
26388
+ * Use {@link #getExtensions} to get the individual extension tokens as an array.
26536
26389
  *
26537
26390
  * @returns the extension or `null`
26538
26391
  */
@@ -26726,7 +26579,7 @@ declare module "sap/ui/core/LocaleData" {
26726
26579
  * the type of calendar. If it's not set, it falls back to the calendar type either set in configuration
26727
26580
  * or calculated from locale.
26728
26581
  */
26729
- sCalendarType?: CalendarType | keyof typeof CalendarType
26582
+ sCalendarType?: CalendarType
26730
26583
  ): string;
26731
26584
  /**
26732
26585
  * @since 1.46
@@ -26747,7 +26600,7 @@ declare module "sap/ui/core/LocaleData" {
26747
26600
  * the type of calendar. If it's not set, it falls back to the calendar type either set in configuration
26748
26601
  * or calculated from locale.
26749
26602
  */
26750
- sCalendarType?: CalendarType | keyof typeof CalendarType
26603
+ sCalendarType?: CalendarType
26751
26604
  ): string;
26752
26605
  /**
26753
26606
  * @since 1.27.0
@@ -26859,7 +26712,7 @@ declare module "sap/ui/core/LocaleData" {
26859
26712
  * the type of calendar. If it's not set, it falls back to the calendar type either set in configuration
26860
26713
  * or calculated from locale.
26861
26714
  */
26862
- sCalendarType?: CalendarType | keyof typeof CalendarType
26715
+ sCalendarType?: CalendarType
26863
26716
  ): string;
26864
26717
  /**
26865
26718
  * @since 1.46
@@ -26892,7 +26745,7 @@ declare module "sap/ui/core/LocaleData" {
26892
26745
  * the type of calendar. If it's not set, it falls back to the calendar type either set in configuration
26893
26746
  * or calculated from locale.
26894
26747
  */
26895
- sCalendarType?: CalendarType | keyof typeof CalendarType
26748
+ sCalendarType?: CalendarType
26896
26749
  ): string | string[];
26897
26750
  /**
26898
26751
  * Get date pattern in format "short", "medium", "long" or "full".
@@ -26908,7 +26761,7 @@ declare module "sap/ui/core/LocaleData" {
26908
26761
  * the type of calendar. If it's not set, it falls back to the calendar type either set in configuration
26909
26762
  * or calculated from locale.
26910
26763
  */
26911
- sCalendarType?: CalendarType | keyof typeof CalendarType
26764
+ sCalendarType?: CalendarType
26912
26765
  ): string;
26913
26766
  /**
26914
26767
  * Get datetime pattern in style "short", "medium", "long" or "full".
@@ -26924,7 +26777,7 @@ declare module "sap/ui/core/LocaleData" {
26924
26777
  * the type of calendar. If it's not set, it falls back to the calendar type either set in configuration
26925
26778
  * or calculated from locale.
26926
26779
  */
26927
- sCalendarType?: CalendarType | keyof typeof CalendarType
26780
+ sCalendarType?: CalendarType
26928
26781
  ): string;
26929
26782
  /**
26930
26783
  * Get day periods in width "narrow", "abbreviated" or "wide".
@@ -26940,7 +26793,7 @@ declare module "sap/ui/core/LocaleData" {
26940
26793
  * the type of calendar. If it's not set, it falls back to the calendar type either set in configuration
26941
26794
  * or calculated from locale.
26942
26795
  */
26943
- sCalendarType?: CalendarType | keyof typeof CalendarType
26796
+ sCalendarType?: CalendarType
26944
26797
  ): any[];
26945
26798
  /**
26946
26799
  * Get standalone day periods in width "narrow", "abbreviated" or "wide".
@@ -26956,7 +26809,7 @@ declare module "sap/ui/core/LocaleData" {
26956
26809
  * the type of calendar. If it's not set, it falls back to the calendar type either set in configuration
26957
26810
  * or calculated from locale.
26958
26811
  */
26959
- sCalendarType?: CalendarType | keyof typeof CalendarType
26812
+ sCalendarType?: CalendarType
26960
26813
  ): any[];
26961
26814
  /**
26962
26815
  * Get day names in width "narrow", "abbreviated" or "wide".
@@ -26972,7 +26825,7 @@ declare module "sap/ui/core/LocaleData" {
26972
26825
  * the type of calendar. If it's not set, it falls back to the calendar type either set in configuration
26973
26826
  * or calculated from locale.
26974
26827
  */
26975
- sCalendarType?: CalendarType | keyof typeof CalendarType
26828
+ sCalendarType?: CalendarType
26976
26829
  ): any[];
26977
26830
  /**
26978
26831
  * Get standalone day names in width "narrow", "abbreviated" or "wide".
@@ -26988,7 +26841,7 @@ declare module "sap/ui/core/LocaleData" {
26988
26841
  * the type of calendar. If it's not set, it falls back to the calendar type either set in configuration
26989
26842
  * or calculated from locale.
26990
26843
  */
26991
- sCalendarType?: CalendarType | keyof typeof CalendarType
26844
+ sCalendarType?: CalendarType
26992
26845
  ): any[];
26993
26846
  /**
26994
26847
  * @since 1.25.0
@@ -27044,7 +26897,7 @@ declare module "sap/ui/core/LocaleData" {
27044
26897
  /**
27045
26898
  * the type of calendar
27046
26899
  */
27047
- sCalendarType?: CalendarType | keyof typeof CalendarType
26900
+ sCalendarType?: CalendarType
27048
26901
  ): any[];
27049
26902
  /**
27050
26903
  * @since 1.32.0
@@ -27061,7 +26914,7 @@ declare module "sap/ui/core/LocaleData" {
27061
26914
  /**
27062
26915
  * the type of calendar
27063
26916
  */
27064
- sCalendarType?: CalendarType | keyof typeof CalendarType
26917
+ sCalendarType?: CalendarType
27065
26918
  ): any[];
27066
26919
  /**
27067
26920
  * Returns the day that usually is regarded as the first day of a week in the current locale.
@@ -27094,7 +26947,7 @@ declare module "sap/ui/core/LocaleData" {
27094
26947
  * the type of calendar. If it's not set, it falls back to the calendar type either set in configuration
27095
26948
  * or calculated from locale.
27096
26949
  */
27097
- sCalendarType?: CalendarType | keyof typeof CalendarType
26950
+ sCalendarType?: CalendarType
27098
26951
  ): string;
27099
26952
  /**
27100
26953
  * Get locale specific language names.
@@ -27152,7 +27005,7 @@ declare module "sap/ui/core/LocaleData" {
27152
27005
  * the type of calendar. If it's not set, it falls back to the calendar type either set in configuration
27153
27006
  * or calculated from locale.
27154
27007
  */
27155
- sCalendarType?: CalendarType | keyof typeof CalendarType
27008
+ sCalendarType?: CalendarType
27156
27009
  ): any[];
27157
27010
  /**
27158
27011
  * Get standalone month names in width "narrow", "abbreviated" or "wide".
@@ -27168,7 +27021,7 @@ declare module "sap/ui/core/LocaleData" {
27168
27021
  * the type of calendar. If it's not set, it falls back to the calendar type either set in configuration
27169
27022
  * or calculated from locale.
27170
27023
  */
27171
- sCalendarType?: CalendarType | keyof typeof CalendarType
27024
+ sCalendarType?: CalendarType
27172
27025
  ): any[];
27173
27026
  /**
27174
27027
  * Get number symbol "decimal", "group", "plusSign", "minusSign", "percentSign".
@@ -27232,7 +27085,7 @@ declare module "sap/ui/core/LocaleData" {
27232
27085
  *
27233
27086
  * @returns the preferred calendar type
27234
27087
  */
27235
- getPreferredCalendarType(): CalendarType | keyof typeof CalendarType;
27088
+ getPreferredCalendarType(): CalendarType;
27236
27089
  /**
27237
27090
  * @since 1.34
27238
27091
  *
@@ -27255,7 +27108,7 @@ declare module "sap/ui/core/LocaleData" {
27255
27108
  * the type of calendar. If it's not set, it falls back to the calendar type either set in configuration
27256
27109
  * or calculated from locale.
27257
27110
  */
27258
- sCalendarType?: CalendarType | keyof typeof CalendarType
27111
+ sCalendarType?: CalendarType
27259
27112
  ): any[];
27260
27113
  /**
27261
27114
  * Get standalone quarter names in width "narrow", "abbreviated" or "wide".
@@ -27271,7 +27124,7 @@ declare module "sap/ui/core/LocaleData" {
27271
27124
  * the type of calendar. If it's not set, it falls back to the calendar type either set in configuration
27272
27125
  * or calculated from locale.
27273
27126
  */
27274
- sCalendarType?: CalendarType | keyof typeof CalendarType
27127
+ sCalendarType?: CalendarType
27275
27128
  ): any[];
27276
27129
  /**
27277
27130
  * @since 1.25.0
@@ -27507,7 +27360,7 @@ declare module "sap/ui/core/LocaleData" {
27507
27360
  * the type of calendar. If it's not set, it falls back to the calendar type either set in configuration
27508
27361
  * or calculated from locale.
27509
27362
  */
27510
- sCalendarType?: CalendarType | keyof typeof CalendarType
27363
+ sCalendarType?: CalendarType
27511
27364
  ): string;
27512
27365
  /**
27513
27366
  * @since 1.54
@@ -28862,12 +28715,6 @@ declare module "sap/ui/core/message/MessageProcessor" {
28862
28715
  newMessages?: Message;
28863
28716
  }
28864
28717
 
28865
- /**
28866
- * @deprecated (since 1.115.1) - This name was introduced in 1.115.0, but will be 'MessageProcessor$MessageChangeEventParameters'
28867
- * in 1.115.1 and any later releases.
28868
- */
28869
- export type $MessageProcessorMessageChangeEventParameters = MessageProcessor$MessageChangeEventParameters;
28870
-
28871
28718
  export type MessageProcessor$MessageChangeEvent = Event<MessageProcessor$MessageChangeEventParameters>;
28872
28719
  }
28873
28720
 
@@ -30890,42 +30737,18 @@ declare module "sap/ui/core/mvc/View" {
30890
30737
 
30891
30738
  export interface View$AfterInitEventParameters {}
30892
30739
 
30893
- /**
30894
- * @deprecated (since 1.115.1) - This name was introduced in 1.115.0, but will be 'View$AfterInitEventParameters'
30895
- * in 1.115.1 and any later releases.
30896
- */
30897
- export type $ViewAfterInitEventParameters = View$AfterInitEventParameters;
30898
-
30899
30740
  export type View$AfterInitEvent = Event<View$AfterInitEventParameters>;
30900
30741
 
30901
30742
  export interface View$AfterRenderingEventParameters {}
30902
30743
 
30903
- /**
30904
- * @deprecated (since 1.115.1) - This name was introduced in 1.115.0, but will be 'View$AfterRenderingEventParameters'
30905
- * in 1.115.1 and any later releases.
30906
- */
30907
- export type $ViewAfterRenderingEventParameters = View$AfterRenderingEventParameters;
30908
-
30909
30744
  export type View$AfterRenderingEvent = Event<View$AfterRenderingEventParameters>;
30910
30745
 
30911
30746
  export interface View$BeforeExitEventParameters {}
30912
30747
 
30913
- /**
30914
- * @deprecated (since 1.115.1) - This name was introduced in 1.115.0, but will be 'View$BeforeExitEventParameters'
30915
- * in 1.115.1 and any later releases.
30916
- */
30917
- export type $ViewBeforeExitEventParameters = View$BeforeExitEventParameters;
30918
-
30919
30748
  export type View$BeforeExitEvent = Event<View$BeforeExitEventParameters>;
30920
30749
 
30921
30750
  export interface View$BeforeRenderingEventParameters {}
30922
30751
 
30923
- /**
30924
- * @deprecated (since 1.115.1) - This name was introduced in 1.115.0, but will be 'View$BeforeRenderingEventParameters'
30925
- * in 1.115.1 and any later releases.
30926
- */
30927
- export type $ViewBeforeRenderingEventParameters = View$BeforeRenderingEventParameters;
30928
-
30929
30752
  export type View$BeforeRenderingEvent = Event<View$BeforeRenderingEventParameters>;
30930
30753
 
30931
30754
  export namespace Preprocessor {
@@ -32175,32 +31998,14 @@ declare module "sap/ui/core/Popup" {
32175
31998
  zIndex?: number;
32176
31999
  }
32177
32000
 
32178
- /**
32179
- * @deprecated (since 1.115.1) - This name was introduced in 1.115.0, but will be 'Popup$BlockLayerStateChangeEventParameters'
32180
- * in 1.115.1 and any later releases.
32181
- */
32182
- export type $PopupBlockLayerStateChangeEventParameters = Popup$BlockLayerStateChangeEventParameters;
32183
-
32184
32001
  export type Popup$BlockLayerStateChangeEvent = Event<Popup$BlockLayerStateChangeEventParameters>;
32185
32002
 
32186
32003
  export interface Popup$ClosedEventParameters {}
32187
32004
 
32188
- /**
32189
- * @deprecated (since 1.115.1) - This name was introduced in 1.115.0, but will be 'Popup$ClosedEventParameters'
32190
- * in 1.115.1 and any later releases.
32191
- */
32192
- export type $PopupClosedEventParameters = Popup$ClosedEventParameters;
32193
-
32194
32005
  export type Popup$ClosedEvent = Event<Popup$ClosedEventParameters>;
32195
32006
 
32196
32007
  export interface Popup$OpenedEventParameters {}
32197
32008
 
32198
- /**
32199
- * @deprecated (since 1.115.1) - This name was introduced in 1.115.0, but will be 'Popup$OpenedEventParameters'
32200
- * in 1.115.1 and any later releases.
32201
- */
32202
- export type $PopupOpenedEventParameters = Popup$OpenedEventParameters;
32203
-
32204
32009
  export type Popup$OpenedEvent = Event<Popup$OpenedEventParameters>;
32205
32010
  }
32206
32011
 
@@ -33984,12 +33789,6 @@ declare module "sap/ui/core/routing/Route" {
33984
33789
  nestedRoute?: Route;
33985
33790
  }
33986
33791
 
33987
- /**
33988
- * @deprecated (since 1.115.1) - This name was introduced in 1.115.0, but will be 'Route$BeforeMatchedEventParameters'
33989
- * in 1.115.1 and any later releases.
33990
- */
33991
- export type $RouteBeforeMatchedEventParameters = Route$BeforeMatchedEventParameters;
33992
-
33993
33792
  export type Route$BeforeMatchedEvent = Event<Route$BeforeMatchedEventParameters>;
33994
33793
 
33995
33794
  export interface Route$MatchedEventParameters {
@@ -34040,12 +33839,6 @@ declare module "sap/ui/core/routing/Route" {
34040
33839
  targetControls?: Control[];
34041
33840
  }
34042
33841
 
34043
- /**
34044
- * @deprecated (since 1.115.1) - This name was introduced in 1.115.0, but will be 'Route$MatchedEventParameters'
34045
- * in 1.115.1 and any later releases.
34046
- */
34047
- export type $RouteMatchedEventParameters = Route$MatchedEventParameters;
34048
-
34049
33842
  export type Route$MatchedEvent = Event<Route$MatchedEventParameters>;
34050
33843
 
34051
33844
  export interface Route$PatternMatchedEventParameters {
@@ -34088,12 +33881,6 @@ declare module "sap/ui/core/routing/Route" {
34088
33881
  targetControls?: Control[];
34089
33882
  }
34090
33883
 
34091
- /**
34092
- * @deprecated (since 1.115.1) - This name was introduced in 1.115.0, but will be 'Route$PatternMatchedEventParameters'
34093
- * in 1.115.1 and any later releases.
34094
- */
34095
- export type $RoutePatternMatchedEventParameters = Route$PatternMatchedEventParameters;
34096
-
34097
33884
  export type Route$PatternMatchedEvent = Event<Route$PatternMatchedEventParameters>;
34098
33885
 
34099
33886
  export interface Route$SwitchedEventParameters {
@@ -34114,12 +33901,6 @@ declare module "sap/ui/core/routing/Route" {
34114
33901
  config?: object;
34115
33902
  }
34116
33903
 
34117
- /**
34118
- * @deprecated (since 1.115.1) - This name was introduced in 1.115.0, but will be 'Route$SwitchedEventParameters'
34119
- * in 1.115.1 and any later releases.
34120
- */
34121
- export type $RouteSwitchedEventParameters = Route$SwitchedEventParameters;
34122
-
34123
33904
  export type Route$SwitchedEvent = Event<Route$SwitchedEventParameters>;
34124
33905
  }
34125
33906
 
@@ -34566,12 +34347,6 @@ declare module "sap/ui/core/routing/Target" {
34566
34347
  routeRelevant?: object;
34567
34348
  }
34568
34349
 
34569
- /**
34570
- * @deprecated (since 1.115.1) - This name was introduced in 1.115.0, but will be 'Target$DisplayEventParameters'
34571
- * in 1.115.1 and any later releases.
34572
- */
34573
- export type $TargetDisplayEventParameters = Target$DisplayEventParameters;
34574
-
34575
34350
  export type Target$DisplayEvent = Event<Target$DisplayEventParameters>;
34576
34351
  }
34577
34352
 
@@ -34771,12 +34546,6 @@ declare module "sap/ui/core/routing/HashChanger" {
34771
34546
  hash?: string;
34772
34547
  }
34773
34548
 
34774
- /**
34775
- * @deprecated (since 1.115.1) - This name was introduced in 1.115.0, but will be 'HashChanger$HashSetEventParameters'
34776
- * in 1.115.1 and any later releases.
34777
- */
34778
- export type $HashChangerHashSetEventParameters = HashChanger$HashSetEventParameters;
34779
-
34780
34549
  export type HashChanger$HashSetEvent = Event<HashChanger$HashSetEventParameters>;
34781
34550
  }
34782
34551
 
@@ -34889,13 +34658,6 @@ declare module "sap/ui/core/routing/HashChangerBase" {
34889
34658
  fullHash?: string;
34890
34659
  }
34891
34660
 
34892
- /**
34893
- * @deprecated (since 1.115.1) - This name was introduced in 1.115.0, but will be 'HashChangerBase$HashChangedEventParameters'
34894
- * in 1.115.1 and any later releases.
34895
- * @ui5-protected DO NOT USE IN APPLICATIONS (only for related classes in the framework)
34896
- */
34897
- export type $HashChangerBaseHashChangedEventParameters = HashChangerBase$HashChangedEventParameters;
34898
-
34899
34661
  export type HashChangerBase$HashChangedEvent = Event<HashChangerBase$HashChangedEventParameters>;
34900
34662
 
34901
34663
  export interface HashChangerBase$HashReplacedEventParameters {
@@ -34905,13 +34667,6 @@ declare module "sap/ui/core/routing/HashChangerBase" {
34905
34667
  hash?: string;
34906
34668
  }
34907
34669
 
34908
- /**
34909
- * @deprecated (since 1.115.1) - This name was introduced in 1.115.0, but will be 'HashChangerBase$HashReplacedEventParameters'
34910
- * in 1.115.1 and any later releases.
34911
- * @ui5-protected DO NOT USE IN APPLICATIONS (only for related classes in the framework)
34912
- */
34913
- export type $HashChangerBaseHashReplacedEventParameters = HashChangerBase$HashReplacedEventParameters;
34914
-
34915
34670
  export type HashChangerBase$HashReplacedEvent = Event<HashChangerBase$HashReplacedEventParameters>;
34916
34671
  }
34917
34672
 
@@ -36118,12 +35873,6 @@ declare module "sap/ui/core/routing/Router" {
36118
35873
  nestedRoute?: Route;
36119
35874
  }
36120
35875
 
36121
- /**
36122
- * @deprecated (since 1.115.1) - This name was introduced in 1.115.0, but will be 'Router$BeforeRouteMatchedEventParameters'
36123
- * in 1.115.1 and any later releases.
36124
- */
36125
- export type $RouterBeforeRouteMatchedEventParameters = Router$BeforeRouteMatchedEventParameters;
36126
-
36127
35876
  export type Router$BeforeRouteMatchedEvent = Event<Router$BeforeRouteMatchedEventParameters>;
36128
35877
 
36129
35878
  export interface Router$BypassedEventParameters {
@@ -36133,12 +35882,6 @@ declare module "sap/ui/core/routing/Router" {
36133
35882
  hash?: string;
36134
35883
  }
36135
35884
 
36136
- /**
36137
- * @deprecated (since 1.115.1) - This name was introduced in 1.115.0, but will be 'Router$BypassedEventParameters'
36138
- * in 1.115.1 and any later releases.
36139
- */
36140
- export type $RouterBypassedEventParameters = Router$BypassedEventParameters;
36141
-
36142
35885
  export type Router$BypassedEvent = Event<Router$BypassedEventParameters>;
36143
35886
 
36144
35887
  export interface Router$RouteMatchedEventParameters {
@@ -36189,12 +35932,6 @@ declare module "sap/ui/core/routing/Router" {
36189
35932
  targetControls?: Control[];
36190
35933
  }
36191
35934
 
36192
- /**
36193
- * @deprecated (since 1.115.1) - This name was introduced in 1.115.0, but will be 'Router$RouteMatchedEventParameters'
36194
- * in 1.115.1 and any later releases.
36195
- */
36196
- export type $RouterRouteMatchedEventParameters = Router$RouteMatchedEventParameters;
36197
-
36198
35935
  export type Router$RouteMatchedEvent = Event<Router$RouteMatchedEventParameters>;
36199
35936
 
36200
35937
  export interface Router$RoutePatternMatchedEventParameters {
@@ -36237,12 +35974,6 @@ declare module "sap/ui/core/routing/Router" {
36237
35974
  targetControls?: Control[];
36238
35975
  }
36239
35976
 
36240
- /**
36241
- * @deprecated (since 1.115.1) - This name was introduced in 1.115.0, but will be 'Router$RoutePatternMatchedEventParameters'
36242
- * in 1.115.1 and any later releases.
36243
- */
36244
- export type $RouterRoutePatternMatchedEventParameters = Router$RoutePatternMatchedEventParameters;
36245
-
36246
35977
  export type Router$RoutePatternMatchedEvent = Event<Router$RoutePatternMatchedEventParameters>;
36247
35978
 
36248
35979
  export interface Router$TitleChangedEventParameters {
@@ -36271,12 +36002,6 @@ declare module "sap/ui/core/routing/Router" {
36271
36002
  propagated?: boolean;
36272
36003
  }
36273
36004
 
36274
- /**
36275
- * @deprecated (since 1.115.1) - This name was introduced in 1.115.0, but will be 'Router$TitleChangedEventParameters'
36276
- * in 1.115.1 and any later releases.
36277
- */
36278
- export type $RouterTitleChangedEventParameters = Router$TitleChangedEventParameters;
36279
-
36280
36005
  export type Router$TitleChangedEvent = Event<Router$TitleChangedEventParameters>;
36281
36006
  }
36282
36007
 
@@ -36865,12 +36590,6 @@ declare module "sap/ui/core/routing/Targets" {
36865
36590
  routeRelevant?: object;
36866
36591
  }
36867
36592
 
36868
- /**
36869
- * @deprecated (since 1.115.1) - This name was introduced in 1.115.0, but will be 'Targets$DisplayEventParameters'
36870
- * in 1.115.1 and any later releases.
36871
- */
36872
- export type $TargetsDisplayEventParameters = Targets$DisplayEventParameters;
36873
-
36874
36593
  export type Targets$DisplayEvent = Event<Targets$DisplayEventParameters>;
36875
36594
 
36876
36595
  export interface Targets$TitleChangedEventParameters {
@@ -36885,12 +36604,6 @@ declare module "sap/ui/core/routing/Targets" {
36885
36604
  name?: string;
36886
36605
  }
36887
36606
 
36888
- /**
36889
- * @deprecated (since 1.115.1) - This name was introduced in 1.115.0, but will be 'Targets$TitleChangedEventParameters'
36890
- * in 1.115.1 and any later releases.
36891
- */
36892
- export type $TargetsTitleChangedEventParameters = Targets$TitleChangedEventParameters;
36893
-
36894
36607
  export type Targets$TitleChangedEvent = Event<Targets$TitleChangedEventParameters>;
36895
36608
  }
36896
36609
 
@@ -37027,12 +36740,6 @@ declare module "sap/ui/core/routing/Views" {
37027
36740
  viewOptions?: object;
37028
36741
  }
37029
36742
 
37030
- /**
37031
- * @deprecated (since 1.115.1) - This name was introduced in 1.115.0, but will be 'Views$CreatedEventParameters'
37032
- * in 1.115.1 and any later releases.
37033
- */
37034
- export type $ViewsCreatedEventParameters = Views$CreatedEventParameters;
37035
-
37036
36743
  export type Views$CreatedEvent = Event<Views$CreatedEventParameters>;
37037
36744
  }
37038
36745
 
@@ -37367,7 +37074,7 @@ declare module "sap/ui/core/ScrollBar" {
37367
37074
  /**
37368
37075
  * Scroll event.
37369
37076
  */
37370
- scroll?: (oEvent: Event<ScrollBar$ScrollEventParameters>) => void;
37077
+ scroll?: (oEvent: ScrollBar$ScrollEvent) => void;
37371
37078
  }
37372
37079
 
37373
37080
  export interface ScrollBar$ScrollEventParameters {
@@ -37392,12 +37099,6 @@ declare module "sap/ui/core/ScrollBar" {
37392
37099
  oldScrollPos?: int;
37393
37100
  }
37394
37101
 
37395
- /**
37396
- * @deprecated (since 1.115.1) - This name was introduced in 1.115.0, but will be 'ScrollBar$ScrollEventParameters'
37397
- * in 1.115.1 and any later releases.
37398
- */
37399
- export type $ScrollBarScrollEventParameters = ScrollBar$ScrollEventParameters;
37400
-
37401
37102
  export type ScrollBar$ScrollEvent = Event<ScrollBar$ScrollEventParameters>;
37402
37103
  }
37403
37104
 
@@ -39524,22 +39225,10 @@ declare module "sap/ui/core/tmpl/TemplateControl" {
39524
39225
 
39525
39226
  export interface TemplateControl$AfterRenderingEventParameters {}
39526
39227
 
39527
- /**
39528
- * @deprecated (since 1.115.1) - This name was introduced in 1.115.0, but will be 'TemplateControl$AfterRenderingEventParameters'
39529
- * in 1.115.1 and any later releases.
39530
- */
39531
- export type $TemplateControlAfterRenderingEventParameters = TemplateControl$AfterRenderingEventParameters;
39532
-
39533
39228
  export type TemplateControl$AfterRenderingEvent = Event<TemplateControl$AfterRenderingEventParameters>;
39534
39229
 
39535
39230
  export interface TemplateControl$BeforeRenderingEventParameters {}
39536
39231
 
39537
- /**
39538
- * @deprecated (since 1.115.1) - This name was introduced in 1.115.0, but will be 'TemplateControl$BeforeRenderingEventParameters'
39539
- * in 1.115.1 and any later releases.
39540
- */
39541
- export type $TemplateControlBeforeRenderingEventParameters = TemplateControl$BeforeRenderingEventParameters;
39542
-
39543
39232
  export type TemplateControl$BeforeRenderingEvent = Event<TemplateControl$BeforeRenderingEventParameters>;
39544
39233
  }
39545
39234
 
@@ -40008,12 +39697,6 @@ declare module "sap/ui/core/TooltipBase" {
40008
39697
 
40009
39698
  export interface TooltipBase$ClosedEventParameters {}
40010
39699
 
40011
- /**
40012
- * @deprecated (since 1.115.1) - This name was introduced in 1.115.0, but will be 'TooltipBase$ClosedEventParameters'
40013
- * in 1.115.1 and any later releases.
40014
- */
40015
- export type $TooltipBaseClosedEventParameters = TooltipBase$ClosedEventParameters;
40016
-
40017
39700
  export type TooltipBase$ClosedEvent = Event<TooltipBase$ClosedEventParameters>;
40018
39701
  }
40019
39702
 
@@ -43236,12 +42919,6 @@ declare module "sap/ui/core/ws/SapPcpWebSocket" {
43236
42919
  pcpFields?: string;
43237
42920
  }
43238
42921
 
43239
- /**
43240
- * @deprecated (since 1.115.1) - This name was introduced in 1.115.0, but will be 'SapPcpWebSocket$MessageEventParameters'
43241
- * in 1.115.1 and any later releases.
43242
- */
43243
- export type $SapPcpWebSocketMessageEventParameters = SapPcpWebSocket$MessageEventParameters;
43244
-
43245
42922
  export type SapPcpWebSocket$MessageEvent = Event<SapPcpWebSocket$MessageEventParameters>;
43246
42923
  }
43247
42924
 
@@ -43665,22 +43342,10 @@ declare module "sap/ui/core/ws/WebSocket" {
43665
43342
  wasClean?: string;
43666
43343
  }
43667
43344
 
43668
- /**
43669
- * @deprecated (since 1.115.1) - This name was introduced in 1.115.0, but will be 'WebSocket$CloseEventParameters'
43670
- * in 1.115.1 and any later releases.
43671
- */
43672
- export type $WebSocketCloseEventParameters = WebSocket$CloseEventParameters;
43673
-
43674
43345
  export type WebSocket$CloseEvent = Event<WebSocket$CloseEventParameters>;
43675
43346
 
43676
43347
  export interface WebSocket$ErrorEventParameters {}
43677
43348
 
43678
- /**
43679
- * @deprecated (since 1.115.1) - This name was introduced in 1.115.0, but will be 'WebSocket$ErrorEventParameters'
43680
- * in 1.115.1 and any later releases.
43681
- */
43682
- export type $WebSocketErrorEventParameters = WebSocket$ErrorEventParameters;
43683
-
43684
43349
  export type WebSocket$ErrorEvent = Event<WebSocket$ErrorEventParameters>;
43685
43350
 
43686
43351
  export interface WebSocket$MessageEventParameters {
@@ -43690,22 +43355,10 @@ declare module "sap/ui/core/ws/WebSocket" {
43690
43355
  data?: string;
43691
43356
  }
43692
43357
 
43693
- /**
43694
- * @deprecated (since 1.115.1) - This name was introduced in 1.115.0, but will be 'WebSocket$MessageEventParameters'
43695
- * in 1.115.1 and any later releases.
43696
- */
43697
- export type $WebSocketMessageEventParameters = WebSocket$MessageEventParameters;
43698
-
43699
43358
  export type WebSocket$MessageEvent = Event<WebSocket$MessageEventParameters>;
43700
43359
 
43701
43360
  export interface WebSocket$OpenEventParameters {}
43702
43361
 
43703
- /**
43704
- * @deprecated (since 1.115.1) - This name was introduced in 1.115.0, but will be 'WebSocket$OpenEventParameters'
43705
- * in 1.115.1 and any later releases.
43706
- */
43707
- export type $WebSocketOpenEventParameters = WebSocket$OpenEventParameters;
43708
-
43709
43362
  export type WebSocket$OpenEvent = Event<WebSocket$OpenEventParameters>;
43710
43363
  }
43711
43364
 
@@ -47487,7 +47140,7 @@ declare module "sap/ui/model/Binding" {
47487
47140
  /**
47488
47141
  * The context object
47489
47142
  */
47490
- oContext: Context,
47143
+ oContext?: Context,
47491
47144
  /**
47492
47145
  * Additional, implementation-specific parameters
47493
47146
  */
@@ -47778,7 +47431,7 @@ declare module "sap/ui/model/Binding" {
47778
47431
  *
47779
47432
  * @returns Context object
47780
47433
  */
47781
- getContext(): Context;
47434
+ getContext(): null | undefined | Context;
47782
47435
  /**
47783
47436
  * @since 1.82.0
47784
47437
  *
@@ -47800,7 +47453,7 @@ declare module "sap/ui/model/Binding" {
47800
47453
  *
47801
47454
  * @returns Model to which this binding belongs
47802
47455
  */
47803
- getModel(): Model;
47456
+ getModel(): null | Model;
47804
47457
  /**
47805
47458
  * Returns the model path to which this binding binds.
47806
47459
  *
@@ -47809,7 +47462,7 @@ declare module "sap/ui/model/Binding" {
47809
47462
  *
47810
47463
  * @returns Binding path
47811
47464
  */
47812
- getPath(): string;
47465
+ getPath(): null | string;
47813
47466
  /**
47814
47467
  * @since 1.88.0
47815
47468
  *
@@ -47934,12 +47587,6 @@ declare module "sap/ui/model/Binding" {
47934
47587
  dataState?: DataState;
47935
47588
  }
47936
47589
 
47937
- /**
47938
- * @deprecated (since 1.115.1) - This name was introduced in 1.115.0, but will be 'Binding$AggregatedDataStateChangeEventParameters'
47939
- * in 1.115.1 and any later releases.
47940
- */
47941
- export type $BindingAggregatedDataStateChangeEventParameters = Binding$AggregatedDataStateChangeEventParameters;
47942
-
47943
47590
  export type Binding$AggregatedDataStateChangeEvent = Event<Binding$AggregatedDataStateChangeEventParameters>;
47944
47591
 
47945
47592
  export interface Binding$ChangeEventParameters {
@@ -47950,12 +47597,6 @@ declare module "sap/ui/model/Binding" {
47950
47597
  reason?: string;
47951
47598
  }
47952
47599
 
47953
- /**
47954
- * @deprecated (since 1.115.1) - This name was introduced in 1.115.0, but will be 'Binding$ChangeEventParameters'
47955
- * in 1.115.1 and any later releases.
47956
- */
47957
- export type $BindingChangeEventParameters = Binding$ChangeEventParameters;
47958
-
47959
47600
  export type Binding$ChangeEvent = Event<Binding$ChangeEventParameters>;
47960
47601
 
47961
47602
  export interface Binding$DataReceivedEventParameters {
@@ -47965,22 +47606,10 @@ declare module "sap/ui/model/Binding" {
47965
47606
  data?: string;
47966
47607
  }
47967
47608
 
47968
- /**
47969
- * @deprecated (since 1.115.1) - This name was introduced in 1.115.0, but will be 'Binding$DataReceivedEventParameters'
47970
- * in 1.115.1 and any later releases.
47971
- */
47972
- export type $BindingDataReceivedEventParameters = Binding$DataReceivedEventParameters;
47973
-
47974
47609
  export type Binding$DataReceivedEvent = Event<Binding$DataReceivedEventParameters>;
47975
47610
 
47976
47611
  export interface Binding$DataRequestedEventParameters {}
47977
47612
 
47978
- /**
47979
- * @deprecated (since 1.115.1) - This name was introduced in 1.115.0, but will be 'Binding$DataRequestedEventParameters'
47980
- * in 1.115.1 and any later releases.
47981
- */
47982
- export type $BindingDataRequestedEventParameters = Binding$DataRequestedEventParameters;
47983
-
47984
47613
  export type Binding$DataRequestedEvent = Event<Binding$DataRequestedEventParameters>;
47985
47614
 
47986
47615
  export interface Binding$DataStateChangeEventParameters {
@@ -47990,12 +47619,6 @@ declare module "sap/ui/model/Binding" {
47990
47619
  dataState?: DataState;
47991
47620
  }
47992
47621
 
47993
- /**
47994
- * @deprecated (since 1.115.1) - This name was introduced in 1.115.0, but will be 'Binding$DataStateChangeEventParameters'
47995
- * in 1.115.1 and any later releases.
47996
- */
47997
- export type $BindingDataStateChangeEventParameters = Binding$DataStateChangeEventParameters;
47998
-
47999
47622
  export type Binding$DataStateChangeEvent = Event<Binding$DataStateChangeEventParameters>;
48000
47623
  }
48001
47624
 
@@ -48839,6 +48462,12 @@ declare module "sap/ui/model/CompositeBinding" {
48839
48462
  * @returns The property bindings in this composite binding
48840
48463
  */
48841
48464
  getBindings(): any[];
48465
+ /**
48466
+ * Returns `null` for the context of this binding instance, as a composite binding has no context.
48467
+ *
48468
+ * @returns `null`
48469
+ */
48470
+ getContext(): null;
48842
48471
  /**
48843
48472
  * Returns the current external value of the bound target which is formatted via a type or formatter function.
48844
48473
  *
@@ -48852,6 +48481,18 @@ declare module "sap/ui/model/CompositeBinding" {
48852
48481
  * @returns The current values of the nested bindings
48853
48482
  */
48854
48483
  getInternalValue(): any[];
48484
+ /**
48485
+ * Returns `null` for the model of this binding instance, as a composite binding has no model.
48486
+ *
48487
+ * @returns `null`
48488
+ */
48489
+ getModel(): null;
48490
+ /**
48491
+ * Returns `null` for the path of this binding instance, as a composite binding has no path.
48492
+ *
48493
+ * @returns `null`
48494
+ */
48495
+ getPath(): null;
48855
48496
  /**
48856
48497
  * Returns the current raw value of the bound target which is an array of the raw (model) values of nested
48857
48498
  * bindings.
@@ -48875,6 +48516,14 @@ declare module "sap/ui/model/CompositeBinding" {
48875
48516
  * @returns A reference to itself
48876
48517
  */
48877
48518
  initialize(): this;
48519
+ /**
48520
+ * @since 1.79.0
48521
+ *
48522
+ * Returns whether all binding parts are resolved.
48523
+ *
48524
+ * @returns Whether all binding parts are resolved
48525
+ */
48526
+ isResolved(): boolean;
48878
48527
  /**
48879
48528
  * Suspends the binding update. No change events will be fired.
48880
48529
  *
@@ -50824,6 +50473,23 @@ declare module "sap/ui/model/ListBinding" {
50824
50473
  */
50825
50474
  sPath: string
50826
50475
  ): any[];
50476
+ /**
50477
+ * @ui5-protected Do not call from applications (only from related classes in the framework)
50478
+ *
50479
+ * Returns the string key for the given model context, which is a unique representation of the context's
50480
+ * data. This key is used in extended change detection to compute the difference between current and previous
50481
+ * contexts retrieved via {@link sap.ui.model.ListBinding#getContexts}.
50482
+ *
50483
+ * The implementation of this method is optional for model-specific implementations of `sap.ui.model.ListBinding`.
50484
+ *
50485
+ * @returns The key for the given context
50486
+ */
50487
+ getEntryKey(
50488
+ /**
50489
+ * The context for which the key is to be computed
50490
+ */
50491
+ oContext: Context
50492
+ ): string;
50827
50493
  /**
50828
50494
  * @since 1.96.0
50829
50495
  *
@@ -50891,7 +50557,7 @@ declare module "sap/ui/model/ListBinding" {
50891
50557
  * in its constructor or in its {@link #filter} method; add filters which you want to keep with the "and"
50892
50558
  * conjunction to the resulting filter before calling {@link #filter}.
50893
50559
  *
50894
- * The implementation of this method is optional for model specific implementations of `sap.ui.model.ListBinding`.
50560
+ * The implementation of this method is optional for model-specific implementations of `sap.ui.model.ListBinding`.
50895
50561
  * Check for existence of this function before calling it.
50896
50562
  *
50897
50563
  * @returns A Promise that resolves with a {@link sap.ui.model.Filter} representing the entries with messages;
@@ -50925,26 +50591,23 @@ declare module "sap/ui/model/ListBinding" {
50925
50591
  */
50926
50592
  aSorters: Sorter | Sorter[]
50927
50593
  ): this;
50594
+ /**
50595
+ * @ui5-protected Do not call from applications (only from related classes in the framework)
50596
+ *
50597
+ * Update the list and apply sorting and filtering. Called after creation of the list binding on enabling
50598
+ * extended change detection, see {@link sap.ui.model.ListBinding#enableExtendedChangeDetection}.
50599
+ *
50600
+ * The implementation of this method is optional for model-specific implementations of `sap.ui.model.ListBinding`.
50601
+ */
50602
+ update(): void;
50928
50603
  }
50929
50604
 
50930
50605
  export interface ListBinding$FilterEventParameters {}
50931
50606
 
50932
- /**
50933
- * @deprecated (since 1.115.1) - This name was introduced in 1.115.0, but will be 'ListBinding$FilterEventParameters'
50934
- * in 1.115.1 and any later releases.
50935
- */
50936
- export type $ListBindingFilterEventParameters = ListBinding$FilterEventParameters;
50937
-
50938
50607
  export type ListBinding$FilterEvent = Event<ListBinding$FilterEventParameters>;
50939
50608
 
50940
50609
  export interface ListBinding$SortEventParameters {}
50941
50610
 
50942
- /**
50943
- * @deprecated (since 1.115.1) - This name was introduced in 1.115.0, but will be 'ListBinding$SortEventParameters'
50944
- * in 1.115.1 and any later releases.
50945
- */
50946
- export type $ListBindingSortEventParameters = ListBinding$SortEventParameters;
50947
-
50948
50611
  export type ListBinding$SortEvent = Event<ListBinding$SortEventParameters>;
50949
50612
  }
50950
50613
 
@@ -51859,12 +51522,6 @@ declare module "sap/ui/model/Model" {
51859
51522
  filepos?: int;
51860
51523
  }
51861
51524
 
51862
- /**
51863
- * @deprecated (since 1.115.1) - This name was introduced in 1.115.0, but will be 'Model$ParseErrorEventParameters'
51864
- * in 1.115.1 and any later releases.
51865
- */
51866
- export type $ModelParseErrorEventParameters = Model$ParseErrorEventParameters;
51867
-
51868
51525
  export type Model$ParseErrorEvent = Event<Model$ParseErrorEventParameters>;
51869
51526
 
51870
51527
  export interface Model$PropertyChangeEventParameters {
@@ -51889,12 +51546,6 @@ declare module "sap/ui/model/Model" {
51889
51546
  value?: any;
51890
51547
  }
51891
51548
 
51892
- /**
51893
- * @deprecated (since 1.115.1) - This name was introduced in 1.115.0, but will be 'Model$PropertyChangeEventParameters'
51894
- * in 1.115.1 and any later releases.
51895
- */
51896
- export type $ModelPropertyChangeEventParameters = Model$PropertyChangeEventParameters;
51897
-
51898
51549
  export type Model$PropertyChangeEvent = Event<Model$PropertyChangeEventParameters>;
51899
51550
 
51900
51551
  export interface Model$RequestCompletedEventParameters {
@@ -51935,12 +51586,6 @@ declare module "sap/ui/model/Model" {
51935
51586
  infoObject?: object;
51936
51587
  }
51937
51588
 
51938
- /**
51939
- * @deprecated (since 1.115.1) - This name was introduced in 1.115.0, but will be 'Model$RequestCompletedEventParameters'
51940
- * in 1.115.1 and any later releases.
51941
- */
51942
- export type $ModelRequestCompletedEventParameters = Model$RequestCompletedEventParameters;
51943
-
51944
51589
  export type Model$RequestCompletedEvent = Event<Model$RequestCompletedEventParameters>;
51945
51590
 
51946
51591
  export interface Model$RequestFailedEventParameters {
@@ -51965,12 +51610,6 @@ declare module "sap/ui/model/Model" {
51965
51610
  responseText?: string;
51966
51611
  }
51967
51612
 
51968
- /**
51969
- * @deprecated (since 1.115.1) - This name was introduced in 1.115.0, but will be 'Model$RequestFailedEventParameters'
51970
- * in 1.115.1 and any later releases.
51971
- */
51972
- export type $ModelRequestFailedEventParameters = Model$RequestFailedEventParameters;
51973
-
51974
51613
  export type Model$RequestFailedEvent = Event<Model$RequestFailedEventParameters>;
51975
51614
 
51976
51615
  export interface Model$RequestSentEventParameters {
@@ -52000,12 +51639,6 @@ declare module "sap/ui/model/Model" {
52000
51639
  infoObject?: object;
52001
51640
  }
52002
51641
 
52003
- /**
52004
- * @deprecated (since 1.115.1) - This name was introduced in 1.115.0, but will be 'Model$RequestSentEventParameters'
52005
- * in 1.115.1 and any later releases.
52006
- */
52007
- export type $ModelRequestSentEventParameters = Model$RequestSentEventParameters;
52008
-
52009
51642
  export type Model$RequestSentEvent = Event<Model$RequestSentEventParameters>;
52010
51643
  }
52011
51644
 
@@ -52808,22 +52441,10 @@ declare module "sap/ui/model/odata/ODataAnnotations" {
52808
52441
 
52809
52442
  export interface ODataAnnotations$FailedEventParameters {}
52810
52443
 
52811
- /**
52812
- * @deprecated (since 1.115.1) - This name was introduced in 1.115.0, but will be 'ODataAnnotations$FailedEventParameters'
52813
- * in 1.115.1 and any later releases.
52814
- */
52815
- export type $ODataAnnotationsFailedEventParameters = ODataAnnotations$FailedEventParameters;
52816
-
52817
52444
  export type ODataAnnotations$FailedEvent = Event<ODataAnnotations$FailedEventParameters>;
52818
52445
 
52819
52446
  export interface ODataAnnotations$LoadedEventParameters {}
52820
52447
 
52821
- /**
52822
- * @deprecated (since 1.115.1) - This name was introduced in 1.115.0, but will be 'ODataAnnotations$LoadedEventParameters'
52823
- * in 1.115.1 and any later releases.
52824
- */
52825
- export type $ODataAnnotationsLoadedEventParameters = ODataAnnotations$LoadedEventParameters;
52826
-
52827
52448
  export type ODataAnnotations$LoadedEvent = Event<ODataAnnotations$LoadedEventParameters>;
52828
52449
  }
52829
52450
 
@@ -53476,22 +53097,10 @@ declare module "sap/ui/model/odata/ODataMetadata" {
53476
53097
 
53477
53098
  export interface ODataMetadata$FailedEventParameters {}
53478
53099
 
53479
- /**
53480
- * @deprecated (since 1.115.1) - This name was introduced in 1.115.0, but will be 'ODataMetadata$FailedEventParameters'
53481
- * in 1.115.1 and any later releases.
53482
- */
53483
- export type $ODataMetadataFailedEventParameters = ODataMetadata$FailedEventParameters;
53484
-
53485
53100
  export type ODataMetadata$FailedEvent = Event<ODataMetadata$FailedEventParameters>;
53486
53101
 
53487
53102
  export interface ODataMetadata$LoadedEventParameters {}
53488
53103
 
53489
- /**
53490
- * @deprecated (since 1.115.1) - This name was introduced in 1.115.0, but will be 'ODataMetadata$LoadedEventParameters'
53491
- * in 1.115.1 and any later releases.
53492
- */
53493
- export type $ODataMetadataLoadedEventParameters = ODataMetadata$LoadedEventParameters;
53494
-
53495
53104
  export type ODataMetadata$LoadedEvent = Event<ODataMetadata$LoadedEventParameters>;
53496
53105
  }
53497
53106
 
@@ -55810,42 +55419,18 @@ declare module "sap/ui/model/odata/ODataModel" {
55810
55419
 
55811
55420
  export interface ODataModel$AnnotationsFailedEventParameters {}
55812
55421
 
55813
- /**
55814
- * @deprecated (since 1.115.1) - This name was introduced in 1.115.0, but will be 'ODataModel$AnnotationsFailedEventParameters'
55815
- * in 1.115.1 and any later releases.
55816
- */
55817
- export type $ODataModelAnnotationsFailedEventParameters = ODataModel$AnnotationsFailedEventParameters;
55818
-
55819
55422
  export type ODataModel$AnnotationsFailedEvent = Event<ODataModel$AnnotationsFailedEventParameters>;
55820
55423
 
55821
55424
  export interface ODataModel$AnnotationsLoadedEventParameters {}
55822
55425
 
55823
- /**
55824
- * @deprecated (since 1.115.1) - This name was introduced in 1.115.0, but will be 'ODataModel$AnnotationsLoadedEventParameters'
55825
- * in 1.115.1 and any later releases.
55826
- */
55827
- export type $ODataModelAnnotationsLoadedEventParameters = ODataModel$AnnotationsLoadedEventParameters;
55828
-
55829
55426
  export type ODataModel$AnnotationsLoadedEvent = Event<ODataModel$AnnotationsLoadedEventParameters>;
55830
55427
 
55831
55428
  export interface ODataModel$MetadataFailedEventParameters {}
55832
55429
 
55833
- /**
55834
- * @deprecated (since 1.115.1) - This name was introduced in 1.115.0, but will be 'ODataModel$MetadataFailedEventParameters'
55835
- * in 1.115.1 and any later releases.
55836
- */
55837
- export type $ODataModelMetadataFailedEventParameters = ODataModel$MetadataFailedEventParameters;
55838
-
55839
55430
  export type ODataModel$MetadataFailedEvent = Event<ODataModel$MetadataFailedEventParameters>;
55840
55431
 
55841
55432
  export interface ODataModel$MetadataLoadedEventParameters {}
55842
55433
 
55843
- /**
55844
- * @deprecated (since 1.115.1) - This name was introduced in 1.115.0, but will be 'ODataModel$MetadataLoadedEventParameters'
55845
- * in 1.115.1 and any later releases.
55846
- */
55847
- export type $ODataModelMetadataLoadedEventParameters = ODataModel$MetadataLoadedEventParameters;
55848
-
55849
55434
  export type ODataModel$MetadataLoadedEvent = Event<ODataModel$MetadataLoadedEventParameters>;
55850
55435
  }
55851
55436
 
@@ -59371,7 +58956,8 @@ declare module "sap/ui/model/odata/v2/Context" {
59371
58956
  * in the back end. **Note:** The context must not be used anymore after successful deletion.
59372
58957
  *
59373
58958
  * @returns A promise resolving with `undefined` in case of successful deletion or rejecting with an error
59374
- * in case the deletion failed
58959
+ * in case the deletion failed. If the `DELETE` request has been aborted, the error has an `aborted` flag
58960
+ * set to `true`.
59375
58961
  */
59376
58962
  delete(
59377
58963
  /**
@@ -60382,8 +59968,12 @@ declare module "sap/ui/model/odata/v2/ODataListBinding" {
60382
59968
  */
60383
59969
  groupId?: string;
60384
59970
  /**
60385
- * Whether the created context is inactive. An inactive context will only be sent to the server after the
60386
- * first property update. From then on it behaves like any other created context.
59971
+ * Whether the created context is inactive. An inactive context will only be sent to the server when it
59972
+ * has become active after a property update. From then on it behaves like any other created context.
59973
+ * When a property update happens on an inactive context, the {@link sap.ui.model.odata.v2.ODataListBinding#event:createActivate 'createActivate' }
59974
+ * event is fired, and the context becomes active, unless the event handler prevents this. While inactive,
59975
+ * the context does not count as a {@link sap.ui.model.odata.v2.ODataModel#hasPendingChanges pending change }
59976
+ * and does not contribute to the {@link #getCount count}.
60387
59977
  */
60388
59978
  inactive?: boolean;
60389
59979
  /**
@@ -60604,12 +60194,6 @@ declare module "sap/ui/model/odata/v2/ODataListBinding" {
60604
60194
 
60605
60195
  export interface ODataListBinding$CreateActivateEventParameters {}
60606
60196
 
60607
- /**
60608
- * @deprecated (since 1.115.1) - This name was introduced in 1.115.0, but will be 'ODataListBinding$CreateActivateEventParameters'
60609
- * in 1.115.1 and any later releases.
60610
- */
60611
- export type $ODataListBindingCreateActivateEventParameters = ODataListBinding$CreateActivateEventParameters;
60612
-
60613
60197
  export type ODataListBinding$CreateActivateEvent = Event<ODataListBinding$CreateActivateEventParameters>;
60614
60198
  }
60615
60199
 
@@ -61580,7 +61164,8 @@ declare module "sap/ui/model/odata/v2/ODataModel" {
61580
61164
  changeSetId?: string;
61581
61165
  /**
61582
61166
  * A callback function which is called when the request failed. The handler can have the parameter: `oError`
61583
- * which contains additional error information.
61167
+ * which contains additional error information. If the request has been aborted, the error has an `aborted`
61168
+ * flag set to `true`.
61584
61169
  */
61585
61170
  error?: Function;
61586
61171
  /**
@@ -61687,7 +61272,8 @@ declare module "sap/ui/model/odata/v2/ODataModel" {
61687
61272
  success?: Function;
61688
61273
  /**
61689
61274
  * A callback function which is called when the request failed. The handler can have the parameter `oError`
61690
- * which contains additional error information.
61275
+ * which contains additional error information. If the `POST` request has been aborted, the error has an
61276
+ * `aborted` flag set to `true`.
61691
61277
  */
61692
61278
  error?: Function;
61693
61279
  /**
@@ -61711,7 +61297,7 @@ declare module "sap/ui/model/odata/v2/ODataModel" {
61711
61297
  */
61712
61298
  changeSetId?: string;
61713
61299
  /**
61714
- * Since 1.46; defines whether to update all bindings after submitting this change operation. See {@link #setRefreshAfterChange }
61300
+ * Since 1.46; defines whether to update all bindings after submitting this change operation. See {@link #setRefreshAfterChange}.
61715
61301
  * If given, this overrules the model-wide `refreshAfterChange` flag for this operation only.
61716
61302
  */
61717
61303
  refreshAfterChange?: boolean;
@@ -62664,7 +62250,8 @@ declare module "sap/ui/model/odata/v2/ODataModel" {
62664
62250
  success?: Function;
62665
62251
  /**
62666
62252
  * A callback function which is called when the request failed. The handler can have the parameter: `oError`
62667
- * which contains additional error information.
62253
+ * which contains additional error information. If the `GET` request has been aborted, the error has an
62254
+ * `aborted` flag set to `true`.
62668
62255
  */
62669
62256
  error?: Function;
62670
62257
  /**
@@ -62766,7 +62353,8 @@ declare module "sap/ui/model/odata/v2/ODataModel" {
62766
62353
  success?: Function;
62767
62354
  /**
62768
62355
  * A callback function which is called when the request failed. The handler can have the parameter: `oError`
62769
- * which contains additional error information.
62356
+ * which contains additional error information. If the `DELETE` request has been aborted, the error has
62357
+ * an `aborted` flag set to `true`.
62770
62358
  */
62771
62359
  error?: Function;
62772
62360
  /**
@@ -62827,7 +62415,7 @@ declare module "sap/ui/model/odata/v2/ODataModel" {
62827
62415
  */
62828
62416
  aPath?: any[],
62829
62417
  /**
62830
- * Whether also deferred requests are taken into account
62418
+ * Whether also deferred requests are taken into account so that they are aborted
62831
62419
  */
62832
62420
  bAll?: boolean,
62833
62421
  /**
@@ -63067,7 +62655,8 @@ declare module "sap/ui/model/odata/v2/ODataModel" {
63067
62655
  success?: Function;
63068
62656
  /**
63069
62657
  * A callback function which is called when the request failed. The handler can have the parameter: `oError`
63070
- * which contains additional error information
62658
+ * which contains additional error information. If all contained requests have been aborted, the error has
62659
+ * an `aborted` flag set to `true`.
63071
62660
  */
63072
62661
  error?: Function;
63073
62662
  /**
@@ -63115,7 +62704,8 @@ declare module "sap/ui/model/odata/v2/ODataModel" {
63115
62704
  success?: Function;
63116
62705
  /**
63117
62706
  * A callback function which is called when the request failed. The handler can have the parameter `oError`
63118
- * which contains additional error information.
62707
+ * which contains additional error information. If the `PUT/MERGE` request has been aborted, the error has
62708
+ * an `aborted` flag set to `true`.
63119
62709
  */
63120
62710
  error?: Function;
63121
62711
  /**
@@ -63146,7 +62736,7 @@ declare module "sap/ui/model/odata/v2/ODataModel" {
63146
62736
  */
63147
62737
  changeSetId?: string;
63148
62738
  /**
63149
- * Since 1.46; defines whether to update all bindings after submitting this change operation. See {@link #setRefreshAfterChange }
62739
+ * Since 1.46; defines whether to update all bindings after submitting this change operation. See {@link #setRefreshAfterChange}.
63150
62740
  * If given, this overrules the model-wide `refreshAfterChange` flag for this operation only.
63151
62741
  */
63152
62742
  refreshAfterChange?: boolean;
@@ -63187,12 +62777,6 @@ declare module "sap/ui/model/odata/v2/ODataModel" {
63187
62777
  result?: Error[];
63188
62778
  }
63189
62779
 
63190
- /**
63191
- * @deprecated (since 1.115.1) - This name was introduced in 1.115.0, but will be 'ODataModel$AnnotationsFailedEventParameters'
63192
- * in 1.115.1 and any later releases.
63193
- */
63194
- export type $ODataModelAnnotationsFailedEventParameters = ODataModel$AnnotationsFailedEventParameters;
63195
-
63196
62780
  export type ODataModel$AnnotationsFailedEvent = Event<ODataModel$AnnotationsFailedEventParameters>;
63197
62781
 
63198
62782
  export interface ODataModel$AnnotationsLoadedEventParameters {
@@ -63203,12 +62787,6 @@ declare module "sap/ui/model/odata/v2/ODataModel" {
63203
62787
  result?: Source[];
63204
62788
  }
63205
62789
 
63206
- /**
63207
- * @deprecated (since 1.115.1) - This name was introduced in 1.115.0, but will be 'ODataModel$AnnotationsLoadedEventParameters'
63208
- * in 1.115.1 and any later releases.
63209
- */
63210
- export type $ODataModelAnnotationsLoadedEventParameters = ODataModel$AnnotationsLoadedEventParameters;
63211
-
63212
62790
  export type ODataModel$AnnotationsLoadedEvent = Event<ODataModel$AnnotationsLoadedEventParameters>;
63213
62791
 
63214
62792
  export interface ODataModel$BatchRequestCompletedEventParameters {
@@ -63255,12 +62833,6 @@ declare module "sap/ui/model/odata/v2/ODataModel" {
63255
62833
  response?: object;
63256
62834
  }
63257
62835
 
63258
- /**
63259
- * @deprecated (since 1.115.1) - This name was introduced in 1.115.0, but will be 'ODataModel$BatchRequestCompletedEventParameters'
63260
- * in 1.115.1 and any later releases.
63261
- */
63262
- export type $ODataModelBatchRequestCompletedEventParameters = ODataModel$BatchRequestCompletedEventParameters;
63263
-
63264
62836
  export type ODataModel$BatchRequestCompletedEvent = Event<ODataModel$BatchRequestCompletedEventParameters>;
63265
62837
 
63266
62838
  export interface ODataModel$BatchRequestFailedEventParameters {
@@ -63307,12 +62879,6 @@ declare module "sap/ui/model/odata/v2/ODataModel" {
63307
62879
  requests?: any[];
63308
62880
  }
63309
62881
 
63310
- /**
63311
- * @deprecated (since 1.115.1) - This name was introduced in 1.115.0, but will be 'ODataModel$BatchRequestFailedEventParameters'
63312
- * in 1.115.1 and any later releases.
63313
- */
63314
- export type $ODataModelBatchRequestFailedEventParameters = ODataModel$BatchRequestFailedEventParameters;
63315
-
63316
62882
  export type ODataModel$BatchRequestFailedEvent = Event<ODataModel$BatchRequestFailedEventParameters>;
63317
62883
 
63318
62884
  export interface ODataModel$BatchRequestSentEventParameters {
@@ -63338,12 +62904,6 @@ declare module "sap/ui/model/odata/v2/ODataModel" {
63338
62904
  requests?: any[];
63339
62905
  }
63340
62906
 
63341
- /**
63342
- * @deprecated (since 1.115.1) - This name was introduced in 1.115.0, but will be 'ODataModel$BatchRequestSentEventParameters'
63343
- * in 1.115.1 and any later releases.
63344
- */
63345
- export type $ODataModelBatchRequestSentEventParameters = ODataModel$BatchRequestSentEventParameters;
63346
-
63347
62907
  export type ODataModel$BatchRequestSentEvent = Event<ODataModel$BatchRequestSentEventParameters>;
63348
62908
 
63349
62909
  export interface ODataModel$MetadataFailedEventParameters {
@@ -63378,12 +62938,6 @@ declare module "sap/ui/model/odata/v2/ODataModel" {
63378
62938
  response?: object;
63379
62939
  }
63380
62940
 
63381
- /**
63382
- * @deprecated (since 1.115.1) - This name was introduced in 1.115.0, but will be 'ODataModel$MetadataFailedEventParameters'
63383
- * in 1.115.1 and any later releases.
63384
- */
63385
- export type $ODataModelMetadataFailedEventParameters = ODataModel$MetadataFailedEventParameters;
63386
-
63387
62941
  export type ODataModel$MetadataFailedEvent = Event<ODataModel$MetadataFailedEventParameters>;
63388
62942
 
63389
62943
  export interface ODataModel$MetadataLoadedEventParameters {
@@ -63393,12 +62947,6 @@ declare module "sap/ui/model/odata/v2/ODataModel" {
63393
62947
  metadata?: string;
63394
62948
  }
63395
62949
 
63396
- /**
63397
- * @deprecated (since 1.115.1) - This name was introduced in 1.115.0, but will be 'ODataModel$MetadataLoadedEventParameters'
63398
- * in 1.115.1 and any later releases.
63399
- */
63400
- export type $ODataModelMetadataLoadedEventParameters = ODataModel$MetadataLoadedEventParameters;
63401
-
63402
62950
  export type ODataModel$MetadataLoadedEvent = Event<ODataModel$MetadataLoadedEventParameters>;
63403
62951
 
63404
62952
  export interface ODataModel$RequestCompletedEventParameters
@@ -63425,12 +62973,6 @@ declare module "sap/ui/model/odata/v2/ODataModel" {
63425
62973
  response?: object;
63426
62974
  }
63427
62975
 
63428
- /**
63429
- * @deprecated (since 1.115.1) - This name was introduced in 1.115.0, but will be 'ODataModel$RequestCompletedEventParameters'
63430
- * in 1.115.1 and any later releases.
63431
- */
63432
- export type $ODataModelRequestCompletedEventParameters = ODataModel$RequestCompletedEventParameters;
63433
-
63434
62976
  export type ODataModel$RequestCompletedEvent = Event<ODataModel$RequestCompletedEventParameters>;
63435
62977
 
63436
62978
  export interface ODataModel$RequestFailedEventParameters
@@ -63472,12 +63014,6 @@ declare module "sap/ui/model/odata/v2/ODataModel" {
63472
63014
  response?: object;
63473
63015
  }
63474
63016
 
63475
- /**
63476
- * @deprecated (since 1.115.1) - This name was introduced in 1.115.0, but will be 'ODataModel$RequestFailedEventParameters'
63477
- * in 1.115.1 and any later releases.
63478
- */
63479
- export type $ODataModelRequestFailedEventParameters = ODataModel$RequestFailedEventParameters;
63480
-
63481
63017
  export type ODataModel$RequestFailedEvent = Event<ODataModel$RequestFailedEventParameters>;
63482
63018
 
63483
63019
  export interface ODataModel$RequestSentEventParameters
@@ -63498,12 +63034,6 @@ declare module "sap/ui/model/odata/v2/ODataModel" {
63498
63034
  headers?: Record<string, string>;
63499
63035
  }
63500
63036
 
63501
- /**
63502
- * @deprecated (since 1.115.1) - This name was introduced in 1.115.0, but will be 'ODataModel$RequestSentEventParameters'
63503
- * in 1.115.1 and any later releases.
63504
- */
63505
- export type $ODataModelRequestSentEventParameters = ODataModel$RequestSentEventParameters;
63506
-
63507
63037
  export type ODataModel$RequestSentEvent = Event<ODataModel$RequestSentEventParameters>;
63508
63038
  }
63509
63039
 
@@ -65526,54 +65056,24 @@ declare module "sap/ui/model/odata/v4/ODataContextBinding" {
65526
65056
  export interface ODataContextBinding$ChangeEventParameters
65527
65057
  extends Binding$ChangeEventParameters {}
65528
65058
 
65529
- /**
65530
- * @deprecated (since 1.115.1) - This name was introduced in 1.115.0, but will be 'ODataContextBinding$ChangeEventParameters'
65531
- * in 1.115.1 and any later releases.
65532
- */
65533
- export type $ODataContextBindingChangeEventParameters = ODataContextBinding$ChangeEventParameters;
65534
-
65535
65059
  export type ODataContextBinding$ChangeEvent = Event<ODataContextBinding$ChangeEventParameters>;
65536
65060
 
65537
65061
  export interface ODataContextBinding$DataReceivedEventParameters
65538
65062
  extends Binding$DataReceivedEventParameters {}
65539
65063
 
65540
- /**
65541
- * @deprecated (since 1.115.1) - This name was introduced in 1.115.0, but will be 'ODataContextBinding$DataReceivedEventParameters'
65542
- * in 1.115.1 and any later releases.
65543
- */
65544
- export type $ODataContextBindingDataReceivedEventParameters = ODataContextBinding$DataReceivedEventParameters;
65545
-
65546
65064
  export type ODataContextBinding$DataReceivedEvent = Event<ODataContextBinding$DataReceivedEventParameters>;
65547
65065
 
65548
65066
  export interface ODataContextBinding$DataRequestedEventParameters
65549
65067
  extends Binding$DataRequestedEventParameters {}
65550
65068
 
65551
- /**
65552
- * @deprecated (since 1.115.1) - This name was introduced in 1.115.0, but will be 'ODataContextBinding$DataRequestedEventParameters'
65553
- * in 1.115.1 and any later releases.
65554
- */
65555
- export type $ODataContextBindingDataRequestedEventParameters = ODataContextBinding$DataRequestedEventParameters;
65556
-
65557
65069
  export type ODataContextBinding$DataRequestedEvent = Event<ODataContextBinding$DataRequestedEventParameters>;
65558
65070
 
65559
65071
  export interface ODataContextBinding$PatchCompletedEventParameters {}
65560
65072
 
65561
- /**
65562
- * @deprecated (since 1.115.1) - This name was introduced in 1.115.0, but will be 'ODataContextBinding$PatchCompletedEventParameters'
65563
- * in 1.115.1 and any later releases.
65564
- */
65565
- export type $ODataContextBindingPatchCompletedEventParameters = ODataContextBinding$PatchCompletedEventParameters;
65566
-
65567
65073
  export type ODataContextBinding$PatchCompletedEvent = Event<ODataContextBinding$PatchCompletedEventParameters>;
65568
65074
 
65569
65075
  export interface ODataContextBinding$PatchSentEventParameters {}
65570
65076
 
65571
- /**
65572
- * @deprecated (since 1.115.1) - This name was introduced in 1.115.0, but will be 'ODataContextBinding$PatchSentEventParameters'
65573
- * in 1.115.1 and any later releases.
65574
- */
65575
- export type $ODataContextBindingPatchSentEventParameters = ODataContextBinding$PatchSentEventParameters;
65576
-
65577
65077
  export type ODataContextBinding$PatchSentEvent = Event<ODataContextBinding$PatchSentEventParameters>;
65578
65078
  }
65579
65079
 
@@ -66666,94 +66166,40 @@ declare module "sap/ui/model/odata/v4/ODataListBinding" {
66666
66166
  export interface ODataListBinding$ChangeEventParameters
66667
66167
  extends Binding$ChangeEventParameters {}
66668
66168
 
66669
- /**
66670
- * @deprecated (since 1.115.1) - This name was introduced in 1.115.0, but will be 'ODataListBinding$ChangeEventParameters'
66671
- * in 1.115.1 and any later releases.
66672
- */
66673
- export type $ODataListBindingChangeEventParameters = ODataListBinding$ChangeEventParameters;
66674
-
66675
66169
  export type ODataListBinding$ChangeEvent = Event<ODataListBinding$ChangeEventParameters>;
66676
66170
 
66677
66171
  export interface ODataListBinding$CreateActivateEventParameters {}
66678
66172
 
66679
- /**
66680
- * @deprecated (since 1.115.1) - This name was introduced in 1.115.0, but will be 'ODataListBinding$CreateActivateEventParameters'
66681
- * in 1.115.1 and any later releases.
66682
- */
66683
- export type $ODataListBindingCreateActivateEventParameters = ODataListBinding$CreateActivateEventParameters;
66684
-
66685
66173
  export type ODataListBinding$CreateActivateEvent = Event<ODataListBinding$CreateActivateEventParameters>;
66686
66174
 
66687
66175
  export interface ODataListBinding$CreateCompletedEventParameters {}
66688
66176
 
66689
- /**
66690
- * @deprecated (since 1.115.1) - This name was introduced in 1.115.0, but will be 'ODataListBinding$CreateCompletedEventParameters'
66691
- * in 1.115.1 and any later releases.
66692
- */
66693
- export type $ODataListBindingCreateCompletedEventParameters = ODataListBinding$CreateCompletedEventParameters;
66694
-
66695
66177
  export type ODataListBinding$CreateCompletedEvent = Event<ODataListBinding$CreateCompletedEventParameters>;
66696
66178
 
66697
66179
  export interface ODataListBinding$CreateSentEventParameters {}
66698
66180
 
66699
- /**
66700
- * @deprecated (since 1.115.1) - This name was introduced in 1.115.0, but will be 'ODataListBinding$CreateSentEventParameters'
66701
- * in 1.115.1 and any later releases.
66702
- */
66703
- export type $ODataListBindingCreateSentEventParameters = ODataListBinding$CreateSentEventParameters;
66704
-
66705
66181
  export type ODataListBinding$CreateSentEvent = Event<ODataListBinding$CreateSentEventParameters>;
66706
66182
 
66707
66183
  export interface ODataListBinding$DataReceivedEventParameters
66708
66184
  extends Binding$DataReceivedEventParameters {}
66709
66185
 
66710
- /**
66711
- * @deprecated (since 1.115.1) - This name was introduced in 1.115.0, but will be 'ODataListBinding$DataReceivedEventParameters'
66712
- * in 1.115.1 and any later releases.
66713
- */
66714
- export type $ODataListBindingDataReceivedEventParameters = ODataListBinding$DataReceivedEventParameters;
66715
-
66716
66186
  export type ODataListBinding$DataReceivedEvent = Event<ODataListBinding$DataReceivedEventParameters>;
66717
66187
 
66718
66188
  export interface ODataListBinding$DataRequestedEventParameters
66719
66189
  extends Binding$DataRequestedEventParameters {}
66720
66190
 
66721
- /**
66722
- * @deprecated (since 1.115.1) - This name was introduced in 1.115.0, but will be 'ODataListBinding$DataRequestedEventParameters'
66723
- * in 1.115.1 and any later releases.
66724
- */
66725
- export type $ODataListBindingDataRequestedEventParameters = ODataListBinding$DataRequestedEventParameters;
66726
-
66727
66191
  export type ODataListBinding$DataRequestedEvent = Event<ODataListBinding$DataRequestedEventParameters>;
66728
66192
 
66729
66193
  export interface ODataListBinding$PatchCompletedEventParameters {}
66730
66194
 
66731
- /**
66732
- * @deprecated (since 1.115.1) - This name was introduced in 1.115.0, but will be 'ODataListBinding$PatchCompletedEventParameters'
66733
- * in 1.115.1 and any later releases.
66734
- */
66735
- export type $ODataListBindingPatchCompletedEventParameters = ODataListBinding$PatchCompletedEventParameters;
66736
-
66737
66195
  export type ODataListBinding$PatchCompletedEvent = Event<ODataListBinding$PatchCompletedEventParameters>;
66738
66196
 
66739
66197
  export interface ODataListBinding$PatchSentEventParameters {}
66740
66198
 
66741
- /**
66742
- * @deprecated (since 1.115.1) - This name was introduced in 1.115.0, but will be 'ODataListBinding$PatchSentEventParameters'
66743
- * in 1.115.1 and any later releases.
66744
- */
66745
- export type $ODataListBindingPatchSentEventParameters = ODataListBinding$PatchSentEventParameters;
66746
-
66747
66199
  export type ODataListBinding$PatchSentEvent = Event<ODataListBinding$PatchSentEventParameters>;
66748
66200
 
66749
66201
  export interface ODataListBinding$RefreshEventParameters {}
66750
66202
 
66751
- /**
66752
- * @deprecated (since 1.115.1) - This name was introduced in 1.115.0, but will be 'ODataListBinding$RefreshEventParameters'
66753
- * in 1.115.1 and any later releases.
66754
- */
66755
- export type $ODataListBindingRefreshEventParameters = ODataListBinding$RefreshEventParameters;
66756
-
66757
66203
  export type ODataListBinding$RefreshEvent = Event<ODataListBinding$RefreshEventParameters>;
66758
66204
  }
66759
66205
 
@@ -68611,87 +68057,39 @@ declare module "sap/ui/model/odata/v4/ODataModel" {
68611
68057
 
68612
68058
  export interface ODataModel$DataReceivedEventParameters {}
68613
68059
 
68614
- /**
68615
- * @deprecated (since 1.115.1) - This name was introduced in 1.115.0, but will be 'ODataModel$DataReceivedEventParameters'
68616
- * in 1.115.1 and any later releases.
68617
- */
68618
- export type $ODataModelDataReceivedEventParameters = ODataModel$DataReceivedEventParameters;
68619
-
68620
68060
  export type ODataModel$DataReceivedEvent = Event<ODataModel$DataReceivedEventParameters>;
68621
68061
 
68622
68062
  export interface ODataModel$DataRequestedEventParameters {}
68623
68063
 
68624
- /**
68625
- * @deprecated (since 1.115.1) - This name was introduced in 1.115.0, but will be 'ODataModel$DataRequestedEventParameters'
68626
- * in 1.115.1 and any later releases.
68627
- */
68628
- export type $ODataModelDataRequestedEventParameters = ODataModel$DataRequestedEventParameters;
68629
-
68630
68064
  export type ODataModel$DataRequestedEvent = Event<ODataModel$DataRequestedEventParameters>;
68631
68065
 
68632
68066
  export interface ODataModel$ParseErrorEventParameters
68633
68067
  extends Model$ParseErrorEventParameters {}
68634
68068
 
68635
- /**
68636
- * @deprecated (since 1.115.1) - This name was introduced in 1.115.0, but will be 'ODataModel$ParseErrorEventParameters'
68637
- * in 1.115.1 and any later releases.
68638
- */
68639
- export type $ODataModelParseErrorEventParameters = ODataModel$ParseErrorEventParameters;
68640
-
68641
68069
  export type ODataModel$ParseErrorEvent = Event<ODataModel$ParseErrorEventParameters>;
68642
68070
 
68643
68071
  export interface ODataModel$PropertyChangeEventParameters
68644
68072
  extends Model$PropertyChangeEventParameters {}
68645
68073
 
68646
- /**
68647
- * @deprecated (since 1.115.1) - This name was introduced in 1.115.0, but will be 'ODataModel$PropertyChangeEventParameters'
68648
- * in 1.115.1 and any later releases.
68649
- */
68650
- export type $ODataModelPropertyChangeEventParameters = ODataModel$PropertyChangeEventParameters;
68651
-
68652
68074
  export type ODataModel$PropertyChangeEvent = Event<ODataModel$PropertyChangeEventParameters>;
68653
68075
 
68654
68076
  export interface ODataModel$RequestCompletedEventParameters
68655
68077
  extends Model$RequestCompletedEventParameters {}
68656
68078
 
68657
- /**
68658
- * @deprecated (since 1.115.1) - This name was introduced in 1.115.0, but will be 'ODataModel$RequestCompletedEventParameters'
68659
- * in 1.115.1 and any later releases.
68660
- */
68661
- export type $ODataModelRequestCompletedEventParameters = ODataModel$RequestCompletedEventParameters;
68662
-
68663
68079
  export type ODataModel$RequestCompletedEvent = Event<ODataModel$RequestCompletedEventParameters>;
68664
68080
 
68665
68081
  export interface ODataModel$RequestFailedEventParameters
68666
68082
  extends Model$RequestFailedEventParameters {}
68667
68083
 
68668
- /**
68669
- * @deprecated (since 1.115.1) - This name was introduced in 1.115.0, but will be 'ODataModel$RequestFailedEventParameters'
68670
- * in 1.115.1 and any later releases.
68671
- */
68672
- export type $ODataModelRequestFailedEventParameters = ODataModel$RequestFailedEventParameters;
68673
-
68674
68084
  export type ODataModel$RequestFailedEvent = Event<ODataModel$RequestFailedEventParameters>;
68675
68085
 
68676
68086
  export interface ODataModel$RequestSentEventParameters
68677
68087
  extends Model$RequestSentEventParameters {}
68678
68088
 
68679
- /**
68680
- * @deprecated (since 1.115.1) - This name was introduced in 1.115.0, but will be 'ODataModel$RequestSentEventParameters'
68681
- * in 1.115.1 and any later releases.
68682
- */
68683
- export type $ODataModelRequestSentEventParameters = ODataModel$RequestSentEventParameters;
68684
-
68685
68089
  export type ODataModel$RequestSentEvent = Event<ODataModel$RequestSentEventParameters>;
68686
68090
 
68687
68091
  export interface ODataModel$SessionTimeoutEventParameters {}
68688
68092
 
68689
- /**
68690
- * @deprecated (since 1.115.1) - This name was introduced in 1.115.0, but will be 'ODataModel$SessionTimeoutEventParameters'
68691
- * in 1.115.1 and any later releases.
68692
- */
68693
- export type $ODataModelSessionTimeoutEventParameters = ODataModel$SessionTimeoutEventParameters;
68694
-
68695
68093
  export type ODataModel$SessionTimeoutEvent = Event<ODataModel$SessionTimeoutEventParameters>;
68696
68094
  }
68697
68095
 
@@ -69047,34 +68445,16 @@ declare module "sap/ui/model/odata/v4/ODataPropertyBinding" {
69047
68445
  export interface ODataPropertyBinding$ChangeEventParameters
69048
68446
  extends Binding$ChangeEventParameters {}
69049
68447
 
69050
- /**
69051
- * @deprecated (since 1.115.1) - This name was introduced in 1.115.0, but will be 'ODataPropertyBinding$ChangeEventParameters'
69052
- * in 1.115.1 and any later releases.
69053
- */
69054
- export type $ODataPropertyBindingChangeEventParameters = ODataPropertyBinding$ChangeEventParameters;
69055
-
69056
68448
  export type ODataPropertyBinding$ChangeEvent = Event<ODataPropertyBinding$ChangeEventParameters>;
69057
68449
 
69058
68450
  export interface ODataPropertyBinding$DataReceivedEventParameters
69059
68451
  extends Binding$DataReceivedEventParameters {}
69060
68452
 
69061
- /**
69062
- * @deprecated (since 1.115.1) - This name was introduced in 1.115.0, but will be 'ODataPropertyBinding$DataReceivedEventParameters'
69063
- * in 1.115.1 and any later releases.
69064
- */
69065
- export type $ODataPropertyBindingDataReceivedEventParameters = ODataPropertyBinding$DataReceivedEventParameters;
69066
-
69067
68453
  export type ODataPropertyBinding$DataReceivedEvent = Event<ODataPropertyBinding$DataReceivedEventParameters>;
69068
68454
 
69069
68455
  export interface ODataPropertyBinding$DataRequestedEventParameters
69070
68456
  extends Binding$DataRequestedEventParameters {}
69071
68457
 
69072
- /**
69073
- * @deprecated (since 1.115.1) - This name was introduced in 1.115.0, but will be 'ODataPropertyBinding$DataRequestedEventParameters'
69074
- * in 1.115.1 and any later releases.
69075
- */
69076
- export type $ODataPropertyBindingDataRequestedEventParameters = ODataPropertyBinding$DataRequestedEventParameters;
69077
-
69078
68458
  export type ODataPropertyBinding$DataRequestedEvent = Event<ODataPropertyBinding$DataRequestedEventParameters>;
69079
68459
  }
69080
68460
 
@@ -76649,7 +76029,7 @@ declare module "sap/ui/test/Opa" {
76649
76029
  /**
76650
76030
  * "and" property for chaining actions and assertions
76651
76031
  */
76652
- and: this;
76032
+ and: Omit<this, "and">;
76653
76033
 
76654
76034
  /**
76655
76035
  * A map of QUnit-style assertions to be used in an opaTest. Contains all methods available on QUnit.assert
@@ -76918,7 +76298,7 @@ declare module "sap/ui/test/Opa5" {
76918
76298
  /**
76919
76299
  * "and" property for chaining
76920
76300
  */
76921
- and: this;
76301
+ and: Omit<this, "and">;
76922
76302
 
76923
76303
  /**
76924
76304
  * A map of QUnit-style assertions to be used in an opaTest.
@@ -78752,7 +78132,7 @@ declare namespace sap {
78752
78132
  /**
78753
78133
  * The module export value or a function that calculates that value
78754
78134
  */
78755
- vFactory: (p1: any) => any | any,
78135
+ vFactory: Function | any,
78756
78136
  /**
78757
78137
  * Whether an export to global names is required - should be used by SAP-owned code only
78758
78138
  */
@@ -78995,7 +78375,7 @@ declare namespace sap {
78995
78375
  /**
78996
78376
  * The module export value or a function that calculates that value
78997
78377
  */
78998
- vFactory: (p1: any) => any | any,
78378
+ vFactory: Function | any,
78999
78379
  /**
79000
78380
  * Whether an export to global names is required - should be used by SAP-owned code only
79001
78381
  */
@@ -79239,7 +78619,7 @@ declare namespace sap {
79239
78619
  /**
79240
78620
  * The module export value or a function that calculates that value
79241
78621
  */
79242
- vFactory: (p1: any) => any | any,
78622
+ vFactory: Function | any,
79243
78623
  /**
79244
78624
  * Whether an export to global names is required - should be used by SAP-owned code only
79245
78625
  */
@@ -79477,7 +78857,7 @@ declare namespace sap {
79477
78857
  /**
79478
78858
  * The module export value or a function that calculates that value
79479
78859
  */
79480
- vFactory: (p1: any) => any | any,
78860
+ vFactory: Function | any,
79481
78861
  /**
79482
78862
  * Whether an export to global names is required - should be used by SAP-owned code only
79483
78863
  */
@@ -80233,7 +79613,7 @@ declare namespace sap {
80233
79613
  /**
80234
79614
  * Callback function to execute after resolving an array of dependencies
80235
79615
  */
80236
- fnCallback?: (p1: any) => void,
79616
+ fnCallback?: Function,
80237
79617
  /**
80238
79618
  * Callback function to execute if an error was detected while loading the dependencies or executing the
80239
79619
  * factory function. Note that due to browser restrictions not all errors will be reported via this callback.
@@ -81153,6 +80533,20 @@ declare namespace sap {
81153
80533
 
81154
80534
  "sap/base/assert": undefined;
81155
80535
 
80536
+ "sap/base/Event": undefined;
80537
+
80538
+ "sap/base/i18n/date/CalendarType": undefined;
80539
+
80540
+ "sap/base/i18n/date/CalendarWeekNumbering": undefined;
80541
+
80542
+ "sap/base/i18n/date/TimezoneUtils": undefined;
80543
+
80544
+ "sap/base/i18n/Formatting": undefined;
80545
+
80546
+ "sap/base/i18n/LanguageTag": undefined;
80547
+
80548
+ "sap/base/i18n/Localization": undefined;
80549
+
81156
80550
  "sap/base/i18n/ResourceBundle": undefined;
81157
80551
 
81158
80552
  "sap/base/Log": undefined;
@@ -81267,6 +80661,8 @@ declare namespace sap {
81267
80661
 
81268
80662
  "sap/ui/core/_UrlResolver": undefined;
81269
80663
 
80664
+ "sap/ui/core/AnimationMode": undefined;
80665
+
81270
80666
  "sap/ui/core/AppCacheBuster": undefined;
81271
80667
 
81272
80668
  "sap/ui/core/BusyIndicator": undefined;
@@ -81293,6 +80689,8 @@ declare namespace sap {
81293
80689
 
81294
80690
  "sap/ui/core/Control": undefined;
81295
80691
 
80692
+ "sap/ui/core/ControlBehavior": undefined;
80693
+
81296
80694
  "sap/ui/core/Core": undefined;
81297
80695
 
81298
80696
  "sap/ui/core/CustomData": undefined;
@@ -81343,8 +80741,6 @@ declare namespace sap {
81343
80741
 
81344
80742
  "sap/ui/core/format/NumberFormat": undefined;
81345
80743
 
81346
- "sap/ui/core/format/TimezoneUtil": undefined;
81347
-
81348
80744
  "sap/ui/core/Fragment": undefined;
81349
80745
 
81350
80746
  "sap/ui/core/History": undefined;
@@ -81463,6 +80859,8 @@ declare namespace sap {
81463
80859
 
81464
80860
  "sap/ui/core/service/ServiceFactory": undefined;
81465
80861
 
80862
+ "sap/ui/core/StaticArea": undefined;
80863
+
81466
80864
  "sap/ui/core/support/Hotkeys": undefined;
81467
80865
 
81468
80866
  "sap/ui/core/support/Plugin": undefined;
@@ -81473,6 +80871,8 @@ declare namespace sap {
81473
80871
 
81474
80872
  "sap/ui/core/syncStyleClass": undefined;
81475
80873
 
80874
+ "sap/ui/core/Theming": undefined;
80875
+
81476
80876
  "sap/ui/core/theming/Parameters": undefined;
81477
80877
 
81478
80878
  "sap/ui/core/theming/ThemeHelper": undefined;