@openui5/types 1.120.10 → 1.120.12

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -280,7 +280,7 @@ declare namespace sap {
280
280
  }
281
281
  }
282
282
 
283
- // For Library Version: 1.120.10
283
+ // For Library Version: 1.120.12
284
284
 
285
285
  declare module "sap/base/assert" {
286
286
  /**
@@ -4680,7 +4680,10 @@ declare module "sap/ui/core/getCompatibilityVersion" {
4680
4680
  /**
4681
4681
  * Returns the used compatibility version for the given feature.
4682
4682
  *
4683
- * @deprecated (since 1.119.0)
4683
+ * @deprecated (since 1.119) - without a replacement. All features that have been controlled by a compatibility
4684
+ * version in UI5 1.x will abandon their legacy behavior, starting with the next major version. In other
4685
+ * words, they will behave as if compatibility version "edge" was configured. Due to this, no more access
4686
+ * to the compatibility version will be required starting with the next major version.
4684
4687
  *
4685
4688
  * @returns the used compatibility version
4686
4689
  */
@@ -6953,7 +6956,13 @@ declare module "sap/ui/app/Application" {
6953
6956
  oRootComponent: UIComponent
6954
6957
  ): this;
6955
6958
  }
6956
-
6959
+ /**
6960
+ * Describes the settings that can be provided to the Application constructor.
6961
+ *
6962
+ * @deprecated (since 1.15.1) - The Component class is enhanced to take care about the Application code.
6963
+ * @experimental (since 1.11.1) - The Application class is still under construction, so some implementation
6964
+ * details can be changed in future.
6965
+ */
6957
6966
  export interface $ApplicationSettings extends $ComponentSettings {
6958
6967
  root?: string | PropertyBindingInfo;
6959
6968
 
@@ -7011,7 +7020,13 @@ declare module "sap/ui/app/MockServer" {
7011
7020
  oScope?: object
7012
7021
  );
7013
7022
  }
7014
-
7023
+ /**
7024
+ * Describes the settings that can be provided to the MockServer constructor.
7025
+ *
7026
+ * @deprecated (since 1.15.1) - The mock server code has been moved to sap.ui.core.util - see {@link sap.ui.core.util.MockServer}
7027
+ * @experimental (since 1.13.0) - The mock server is still under construction, so some implementation details
7028
+ * can be changed in future.
7029
+ */
7015
7030
  export interface $MockServerSettings extends $ManagedObjectSettings {}
7016
7031
  }
7017
7032
 
@@ -10345,6 +10360,9 @@ declare module "sap/ui/base/ManagedObject" {
10345
10360
  parts?: Array<string | PropertyBindingInfo>;
10346
10361
  };
10347
10362
 
10363
+ /**
10364
+ * Describes the settings that can be provided to the ManagedObject constructor.
10365
+ */
10348
10366
  export interface $ManagedObjectSettings {
10349
10367
  /**
10350
10368
  * Unique ID of this instance. If not given, a so called autoID will be generated by the framework. AutoIDs
@@ -10409,6 +10427,9 @@ declare module "sap/ui/base/ManagedObject" {
10409
10427
  modelContextChange?: (oEvent: Event) => void;
10410
10428
  }
10411
10429
 
10430
+ /**
10431
+ * Parameters of the ManagedObject#formatError event.
10432
+ */
10412
10433
  export interface ManagedObject$FormatErrorEventParameters {
10413
10434
  /**
10414
10435
  * ManagedObject instance whose property should have received the model update.
@@ -10436,18 +10457,30 @@ declare module "sap/ui/base/ManagedObject" {
10436
10457
  oldValue?: any;
10437
10458
  }
10438
10459
 
10460
+ /**
10461
+ * Event object of the ManagedObject#formatError event.
10462
+ */
10439
10463
  export type ManagedObject$FormatErrorEvent = Event<
10440
10464
  ManagedObject$FormatErrorEventParameters,
10441
10465
  ManagedObject
10442
10466
  >;
10443
10467
 
10468
+ /**
10469
+ * Parameters of the ManagedObject#modelContextChange event.
10470
+ */
10444
10471
  export interface ManagedObject$ModelContextChangeEventParameters {}
10445
10472
 
10473
+ /**
10474
+ * Event object of the ManagedObject#modelContextChange event.
10475
+ */
10446
10476
  export type ManagedObject$ModelContextChangeEvent = Event<
10447
10477
  ManagedObject$ModelContextChangeEventParameters,
10448
10478
  ManagedObject
10449
10479
  >;
10450
10480
 
10481
+ /**
10482
+ * Parameters of the ManagedObject#parseError event.
10483
+ */
10451
10484
  export interface ManagedObject$ParseErrorEventParameters {
10452
10485
  /**
10453
10486
  * ManagedObject instance whose property initiated the model update.
@@ -10480,11 +10513,17 @@ declare module "sap/ui/base/ManagedObject" {
10480
10513
  message?: string;
10481
10514
  }
10482
10515
 
10516
+ /**
10517
+ * Event object of the ManagedObject#parseError event.
10518
+ */
10483
10519
  export type ManagedObject$ParseErrorEvent = Event<
10484
10520
  ManagedObject$ParseErrorEventParameters,
10485
10521
  ManagedObject
10486
10522
  >;
10487
10523
 
10524
+ /**
10525
+ * Parameters of the ManagedObject#validationError event.
10526
+ */
10488
10527
  export interface ManagedObject$ValidationErrorEventParameters {
10489
10528
  /**
10490
10529
  * ManagedObject instance whose property initiated the model update.
@@ -10517,11 +10556,17 @@ declare module "sap/ui/base/ManagedObject" {
10517
10556
  message?: string;
10518
10557
  }
10519
10558
 
10559
+ /**
10560
+ * Event object of the ManagedObject#validationError event.
10561
+ */
10520
10562
  export type ManagedObject$ValidationErrorEvent = Event<
10521
10563
  ManagedObject$ValidationErrorEventParameters,
10522
10564
  ManagedObject
10523
10565
  >;
10524
10566
 
10567
+ /**
10568
+ * Parameters of the ManagedObject#validationSuccess event.
10569
+ */
10525
10570
  export interface ManagedObject$ValidationSuccessEventParameters {
10526
10571
  /**
10527
10572
  * ManagedObject instance whose property initiated the model update.
@@ -10552,6 +10597,9 @@ declare module "sap/ui/base/ManagedObject" {
10552
10597
  oldValue?: any;
10553
10598
  }
10554
10599
 
10600
+ /**
10601
+ * Event object of the ManagedObject#validationSuccess event.
10602
+ */
10555
10603
  export type ManagedObject$ValidationSuccessEvent = Event<
10556
10604
  ManagedObject$ValidationSuccessEventParameters,
10557
10605
  ManagedObject
@@ -14121,7 +14169,9 @@ declare module "sap/ui/core/CommandExecution" {
14121
14169
  */
14122
14170
  trigger(): void;
14123
14171
  }
14124
-
14172
+ /**
14173
+ * Describes the settings that can be provided to the CommandExecution constructor.
14174
+ */
14125
14175
  export interface $CommandExecutionSettings extends $ElementSettings {
14126
14176
  /**
14127
14177
  * The command's name, that has to be defined in the manifest. This property can only be applied initially.
@@ -14150,8 +14200,14 @@ declare module "sap/ui/core/CommandExecution" {
14150
14200
  execute?: (oEvent: Event) => void;
14151
14201
  }
14152
14202
 
14203
+ /**
14204
+ * Parameters of the CommandExecution#execute event.
14205
+ */
14153
14206
  export interface CommandExecution$ExecuteEventParameters {}
14154
14207
 
14208
+ /**
14209
+ * Event object of the CommandExecution#execute event.
14210
+ */
14155
14211
  export type CommandExecution$ExecuteEvent = Event<
14156
14212
  CommandExecution$ExecuteEventParameters,
14157
14213
  CommandExecution
@@ -14644,8 +14700,16 @@ declare module "sap/ui/core/Component" {
14644
14700
  * Subclasses of Component should override this hook to implement any necessary cleanup.
14645
14701
  *
14646
14702
  * @ui5-protected Do not call from applications (only from related classes in the framework)
14703
+ *
14704
+ * @returns This hook method must not have a return value. Return value `void` is deprecated since 1.120,
14705
+ * as it does not force functions to **not** return something. This implies that, for instance, no async
14706
+ * function returning a Promise should be used.
14707
+ *
14708
+ * **Note:** While the return type is currently `void|undefined`, any implementation of this hook must not
14709
+ * return anything but undefined. Any other return value will cause an error log in this version of UI5
14710
+ * and will fail in future major versions of UI5.
14647
14711
  */
14648
- exit(): void;
14712
+ exit(): void | undefined;
14649
14713
  /**
14650
14714
  * Returns the list of active terminologies. See the {@link sap.ui.core.Component.create Component.create }
14651
14715
  * factory API documentation for more detail.
@@ -14804,15 +14868,29 @@ declare module "sap/ui/core/Component" {
14804
14868
  * Subclasses of Component should override this hook to implement any necessary initialization.
14805
14869
  *
14806
14870
  * @ui5-protected Do not call from applications (only from related classes in the framework)
14871
+ *
14872
+ * @returns This hook method must not have a return value. Return value `void` is deprecated since 1.120,
14873
+ * as it does not force functions to **not** return something. This implies that, for instance, no async
14874
+ * function returning a Promise should be used.
14875
+ *
14876
+ * **Note:** While the return type is currently `void|undefined`, any implementation of this hook must not
14877
+ * return anything but undefined. Any other return value will cause an error log in this version of UI5
14878
+ * and will fail in future major versions of UI5.
14807
14879
  */
14808
- init(): void;
14880
+ init(): void | undefined;
14809
14881
  /**
14810
14882
  * This method is called after the component is activated
14811
14883
  *
14812
14884
  * @since 1.88
14813
14885
  * @ui5-protected Do not call from applications (only from related classes in the framework)
14886
+ *
14887
+ * @returns This lifecycle hook must not have a return value.
14888
+ *
14889
+ * **Note:** While the return type is currently `void|undefined`, any implementation of this hook must not
14890
+ * return anything but undefined. Any other return value will cause an error log in this version of UI5
14891
+ * and will fail in future major versions of UI5.
14814
14892
  */
14815
- onActivate(): void;
14893
+ onActivate(): void | undefined;
14816
14894
  /**
14817
14895
  * The hook which gets called when the static configuration of the component has been changed by some configuration
14818
14896
  * extension.
@@ -14830,8 +14908,14 @@ declare module "sap/ui/core/Component" {
14830
14908
  *
14831
14909
  * @since 1.88
14832
14910
  * @ui5-protected Do not call from applications (only from related classes in the framework)
14911
+ *
14912
+ * @returns This lifecycle hook must not have a return value.
14913
+ *
14914
+ * **Note:** While the return type is currently `void|undefined`, any implementation of this hook must not
14915
+ * return anything but undefined. Any other return value will cause an error log in this version of UI5
14916
+ * and will fail in future major versions of UI5.
14833
14917
  */
14834
- onDeactivate(): void;
14918
+ onDeactivate(): void | undefined;
14835
14919
  /**
14836
14920
  * The window before unload hook. Override this method in your Component class implementation, to handle
14837
14921
  * cleanup before the real unload or to prompt a question to the user, if the component should be exited.
@@ -15025,6 +15109,9 @@ declare module "sap/ui/core/Component" {
15025
15109
  }
15026
15110
  export const registry: registry;
15027
15111
 
15112
+ /**
15113
+ * Describes the settings that can be provided to the Component constructor.
15114
+ */
15028
15115
  export interface $ComponentSettings extends $ManagedObjectSettings {
15029
15116
  componentData?: any;
15030
15117
  }
@@ -15715,7 +15802,9 @@ declare module "sap/ui/core/ComponentContainer" {
15715
15802
  sWidth?: CSSSize
15716
15803
  ): this;
15717
15804
  }
15718
-
15805
+ /**
15806
+ * Describes the settings that can be provided to the ComponentContainer constructor.
15807
+ */
15719
15808
  export interface $ComponentContainerSettings extends $ControlSettings {
15720
15809
  /**
15721
15810
  * Component name, the package where the component is contained. This property can only be applied initially.
@@ -15828,6 +15917,9 @@ declare module "sap/ui/core/ComponentContainer" {
15828
15917
  componentFailed?: (oEvent: ComponentContainer$ComponentFailedEvent) => void;
15829
15918
  }
15830
15919
 
15920
+ /**
15921
+ * Parameters of the ComponentContainer#componentCreated event.
15922
+ */
15831
15923
  export interface ComponentContainer$ComponentCreatedEventParameters {
15832
15924
  /**
15833
15925
  * Reference to the created component instance
@@ -15835,11 +15927,17 @@ declare module "sap/ui/core/ComponentContainer" {
15835
15927
  component?: UIComponent;
15836
15928
  }
15837
15929
 
15930
+ /**
15931
+ * Event object of the ComponentContainer#componentCreated event.
15932
+ */
15838
15933
  export type ComponentContainer$ComponentCreatedEvent = Event<
15839
15934
  ComponentContainer$ComponentCreatedEventParameters,
15840
15935
  ComponentContainer
15841
15936
  >;
15842
15937
 
15938
+ /**
15939
+ * Parameters of the ComponentContainer#componentFailed event.
15940
+ */
15843
15941
  export interface ComponentContainer$ComponentFailedEventParameters {
15844
15942
  /**
15845
15943
  * The reason object as returned by the component promise
@@ -15847,6 +15945,9 @@ declare module "sap/ui/core/ComponentContainer" {
15847
15945
  reason?: object;
15848
15946
  }
15849
15947
 
15948
+ /**
15949
+ * Event object of the ComponentContainer#componentFailed event.
15950
+ */
15850
15951
  export type ComponentContainer$ComponentFailedEvent = Event<
15851
15952
  ComponentContainer$ComponentFailedEventParameters,
15852
15953
  ComponentContainer
@@ -16125,7 +16226,14 @@ declare module "sap/ui/core/Configuration" {
16125
16226
  *
16126
16227
  * Values of boolean parameters are case insensitive where "true" and "x" are interpreted as true.
16127
16228
  *
16128
- * @deprecated (since 1.120)
16229
+ * @deprecated (since 1.120) - There's no single replacement for this class. Instead, several facades have
16230
+ * been created for different topics, e.g. {@link module:sap/base/i18n/Localization Localization} for settings
16231
+ * related to localization, {@link module:sap/base/i18n/Formatting Formatting} for settings related to data
16232
+ * formatting, {@link module:sap/ui/core/Theming Theming} for theming related settings, {@link module:sap/ui/core/ControlBehavior ControlBehavior }
16233
+ * for settings that are typically required when implementing the behavior of a control, {@link module:sap/ui/security/Security Security }
16234
+ * for settings around security.
16235
+ *
16236
+ * Please check the individual methods of this class for their replacements, if any.
16129
16237
  */
16130
16238
  interface Configuration {
16131
16239
  /**
@@ -16154,7 +16262,12 @@ declare module "sap/ui/core/Configuration" {
16154
16262
  * API can be provided in a nested object with name `formatSettings`.
16155
16263
  *
16156
16264
  * @since 1.38.6
16157
- * @deprecated (since 1.120)
16265
+ * @deprecated (since 1.120) - without a replacement. As the different settings have been spread across
16266
+ * multiple new APIs (see {@link sap.ui.core.Configuration the deprecation hint for this class}), a common
16267
+ * API for changing multiple settings no longer made sense.
16268
+ *
16269
+ * Please check the individual methods of this class for their replacements and call those replacement methods
16270
+ * one by one.
16158
16271
  *
16159
16272
  * @returns Returns `this` to allow method chaining
16160
16273
  */
@@ -16239,7 +16352,7 @@ declare module "sap/ui/core/Configuration" {
16239
16352
  /**
16240
16353
  * Base URLs to AppCacheBuster ETag-Index files.
16241
16354
  *
16242
- * @deprecated (since 1.120)
16355
+ * @deprecated (since 1.120) - without a replacement. Was only used within the implementation of the `AppCacheBuster`.
16243
16356
  *
16244
16357
  * @returns array of base URLs
16245
16358
  */
@@ -16247,7 +16360,7 @@ declare module "sap/ui/core/Configuration" {
16247
16360
  /**
16248
16361
  * The loading mode (sync|async|batch) of the AppCacheBuster (sync is default)
16249
16362
  *
16250
- * @deprecated (since 1.120)
16363
+ * @deprecated (since 1.120) - without a replacement. Was only used within the implementation of the `AppCacheBuster`.
16251
16364
  *
16252
16365
  * @returns "sync" | "async" | "batch"
16253
16366
  */
@@ -16265,7 +16378,8 @@ declare module "sap/ui/core/Configuration" {
16265
16378
  * Returns whether the framework automatically adds the ARIA role 'application' to the HTML body or not.
16266
16379
  *
16267
16380
  * @since 1.27.0
16268
- * @deprecated (since 1.120)
16381
+ * @deprecated (since 1.120) - without a replacement. Was only used in the implementation of the framework
16382
+ * itself.
16269
16383
  *
16270
16384
  * @returns Wether the ARIA role 'application' should be added to the HTML body or not
16271
16385
  */
@@ -16297,7 +16411,10 @@ declare module "sap/ui/core/Configuration" {
16297
16411
  /**
16298
16412
  * Returns the used compatibility version for the given feature.
16299
16413
  *
16300
- * @deprecated (since 1.119.0)
16414
+ * @deprecated (since 1.119) - without a replacement. All features that have been controlled by a compatibility
16415
+ * version in UI5 1.x will abandon their legacy behavior, starting with the next major version. In other
16416
+ * words, they will behave as if compatibility version "edge" was configured. Due to this, no more access
16417
+ * to the compatibility version will be required starting with the next major version.
16301
16418
  *
16302
16419
  * @returns the used compatibility version
16303
16420
  */
@@ -16310,7 +16427,8 @@ declare module "sap/ui/core/Configuration" {
16310
16427
  /**
16311
16428
  * Returns whether the page runs in full debug mode.
16312
16429
  *
16313
- * @deprecated (since 1.120)
16430
+ * @deprecated (since 1.120) - without a replacement. All debug mode functionality is implemented within
16431
+ * the framework and should be transparent for application code. There's no need for a public accessor method.
16314
16432
  *
16315
16433
  * @returns Whether the page runs in full debug mode
16316
16434
  */
@@ -16323,7 +16441,8 @@ declare module "sap/ui/core/Configuration" {
16323
16441
  * The contract of the module is not defined by the configuration API.
16324
16442
  *
16325
16443
  * @since 1.102
16326
- * @deprecated (since 1.120)
16444
+ * @deprecated (since 1.120) - without a replacement. The configuration is only relevant for the `sap.ui.export`
16445
+ * library.
16327
16446
  *
16328
16447
  * @returns Module name (ID) of a file share support module
16329
16448
  */
@@ -16331,7 +16450,8 @@ declare module "sap/ui/core/Configuration" {
16331
16450
  /**
16332
16451
  * Returns whether the Fiori2Adaptation is on.
16333
16452
  *
16334
- * @deprecated (since 1.120)
16453
+ * @deprecated (since 1.120) - without a replacement. All the Fiori 2.0 adaptation logic is handled by the
16454
+ * framework, there should be no need for apps to know about it.
16335
16455
  *
16336
16456
  * @returns false - no adaptation, true - full adaptation, comma-separated list - partial adaptation Possible
16337
16457
  * values: style, collapse, title, back, hierarchy
@@ -16342,7 +16462,8 @@ declare module "sap/ui/core/Configuration" {
16342
16462
  * are not called.
16343
16463
  *
16344
16464
  * @since 1.60.0
16345
- * @deprecated (since 1.120)
16465
+ * @deprecated (since 1.120) - without a replacement. Was only used by the Flexibility feature which now
16466
+ * resolves this on its own.
16346
16467
  *
16347
16468
  * @returns Flexibility services configuration
16348
16469
  */
@@ -16375,10 +16496,14 @@ declare module "sap/ui/core/Configuration" {
16375
16496
  */
16376
16497
  getFrameOptions(): string;
16377
16498
  /**
16378
- * Returns whether the UI5 control inspector is displayed. Has only an effect when the sap-ui-debug module
16379
- * has been loaded
16499
+ * Returns whether the UI5 control inspector is displayed.
16500
+ *
16501
+ * Has only an effect when the sap-ui-debug module has been loaded.
16380
16502
  *
16381
- * @deprecated (since 1.120)
16503
+ * @deprecated (since 1.120) - without a replacement. The inspect option is related to the very old sap-ui-debug
16504
+ * module. As there are now much better development tools (e.g. the UI5 Inpsector browser extension), this
16505
+ * option has been deprecated and the sap-ui-debug feature might be removed in future major versions of
16506
+ * UI5.
16382
16507
  *
16383
16508
  * @returns whether the UI5 control inspector is displayed
16384
16509
  */
@@ -16463,7 +16588,8 @@ declare module "sap/ui/core/Configuration" {
16463
16588
  /**
16464
16589
  * Returns whether there should be an exception on any duplicate element IDs.
16465
16590
  *
16466
- * @deprecated (since 1.120)
16591
+ * @deprecated (since 1.120) - without a replacement. Future major versions of UI5 will always report duplicate
16592
+ * IDs as an error as the framework heavily relies on their uniqueness.
16467
16593
  *
16468
16594
  * @returns whether there should be an exception on any duplicate element IDs
16469
16595
  */
@@ -16471,7 +16597,9 @@ declare module "sap/ui/core/Configuration" {
16471
16597
  /**
16472
16598
  * Returns whether the text origin information is collected.
16473
16599
  *
16474
- * @deprecated (since 1.120)
16600
+ * @deprecated (since 1.120) - The origin info was intended as a mean to track down translation issues to
16601
+ * the origin of a translated text. Meanwhile, with the pseudo logon language 3Q, a similar, more lightweight
16602
+ * feature exists for use with OpenUI5 or SAPUI5 libraries.
16475
16603
  *
16476
16604
  * @returns whether the text info is collected
16477
16605
  */
@@ -16522,11 +16650,11 @@ declare module "sap/ui/core/Configuration" {
16522
16650
  /**
16523
16651
  * Flag if statistics are requested.
16524
16652
  *
16525
- * Flag set by TechnicalInfo Popup will also be checked. So its active if set by URL parameter or manually
16653
+ * Flag set by TechnicalInfo Popup will also be checked. So it's active if set by URL parameter or manually
16526
16654
  * via TechnicalInfo.
16527
16655
  *
16528
16656
  * @since 1.106.0
16529
- * @deprecated (since 1.120)
16657
+ * @deprecated (since 1.120) - without a replacment. The configuration is only relevant within the framework.
16530
16658
  *
16531
16659
  * @returns Whether statistics are enabled
16532
16660
  */
@@ -16796,6 +16924,16 @@ declare module "sap/ui/core/Configuration" {
16796
16924
  ): this;
16797
16925
  }
16798
16926
  const Configuration: Configuration;
16927
+ /**
16928
+ * @deprecated (since 1.120) - There's no single replacement for this class. Instead, several facades have
16929
+ * been created for different topics, e.g. {@link module:sap/base/i18n/Localization Localization} for settings
16930
+ * related to localization, {@link module:sap/base/i18n/Formatting Formatting} for settings related to data
16931
+ * formatting, {@link module:sap/ui/core/Theming Theming} for theming related settings, {@link module:sap/ui/core/ControlBehavior ControlBehavior }
16932
+ * for settings that are typically required when implementing the behavior of a control, {@link module:sap/ui/security/Security Security }
16933
+ * for settings around security.
16934
+ *
16935
+ * Please check the individual methods of this class for their replacements, if any.
16936
+ */
16799
16937
  export default Configuration;
16800
16938
 
16801
16939
  /**
@@ -17825,13 +17963,21 @@ declare module "sap/ui/core/Control" {
17825
17963
  * Subclasses of Control should override this hook to implement any necessary actions after the rendering.
17826
17964
  *
17827
17965
  * @ui5-protected Do not call from applications (only from related classes in the framework)
17966
+ *
17967
+ * @returns This hook method must not have a return value. Return value `void` is deprecated since 1.120,
17968
+ * as it does not force functions to **not** return something. This implies that, for instance, no async
17969
+ * function returning a Promise should be used.
17970
+ *
17971
+ * **Note:** While the return type is currently `void|undefined`, any implementation of this hook must not
17972
+ * return anything but undefined. Any other return value will cause an error log in this version of UI5
17973
+ * and will fail in future major versions of UI5.
17828
17974
  */
17829
17975
  onAfterRendering(
17830
17976
  /**
17831
17977
  * onAfterRendering event object
17832
17978
  */
17833
17979
  oEvent: jQuery.Event
17834
- ): void;
17980
+ ): void | undefined;
17835
17981
  /**
17836
17982
  * Function is called before the rendering of the control is started.
17837
17983
  *
@@ -17840,13 +17986,21 @@ declare module "sap/ui/core/Control" {
17840
17986
  * Subclasses of Control should override this hook to implement any necessary actions before the rendering.
17841
17987
  *
17842
17988
  * @ui5-protected Do not call from applications (only from related classes in the framework)
17989
+ *
17990
+ * @returns This hook method must not have a return value. Return value `void` is deprecated since 1.120,
17991
+ * as it does not force functions to **not** return something. This implies that, for instance, no async
17992
+ * function returning a Promise should be used.
17993
+ *
17994
+ * **Note:** While the return type is currently `void|undefined`, any implementation of this hook must not
17995
+ * return anything but undefined. Any other return value will cause an error log in this version of UI5
17996
+ * and will fail in future major versions of UI5.
17843
17997
  */
17844
17998
  onBeforeRendering(
17845
17999
  /**
17846
18000
  * onBeforeRendering event object
17847
18001
  */
17848
18002
  oEvent: jQuery.Event
17849
- ): void;
18003
+ ): void | undefined;
17850
18004
  /**
17851
18005
  * Puts `this` control into the specified container (`oRef`) at the given position (`oPosition`).
17852
18006
  *
@@ -18046,7 +18200,9 @@ declare module "sap/ui/core/Control" {
18046
18200
  aFieldGroupIds: string[]
18047
18201
  ): void;
18048
18202
  }
18049
-
18203
+ /**
18204
+ * Describes the settings that can be provided to the Control constructor.
18205
+ */
18050
18206
  export interface $ControlSettings extends $ElementSettings {
18051
18207
  /**
18052
18208
  * Whether the control is currently in blocked state.
@@ -18118,6 +18274,9 @@ declare module "sap/ui/core/Control" {
18118
18274
  validateFieldGroup?: (oEvent: Control$ValidateFieldGroupEvent) => void;
18119
18275
  }
18120
18276
 
18277
+ /**
18278
+ * Parameters of the Control#validateFieldGroup event.
18279
+ */
18121
18280
  export interface Control$ValidateFieldGroupEventParameters {
18122
18281
  /**
18123
18282
  * field group IDs of the logical field groups to validate
@@ -18125,6 +18284,9 @@ declare module "sap/ui/core/Control" {
18125
18284
  fieldGroupIds?: string[];
18126
18285
  }
18127
18286
 
18287
+ /**
18288
+ * Event object of the Control#validateFieldGroup event.
18289
+ */
18128
18290
  export type Control$ValidateFieldGroupEvent = Event<
18129
18291
  Control$ValidateFieldGroupEventParameters,
18130
18292
  Control
@@ -18268,7 +18430,8 @@ declare module "sap/ui/core/Core" {
18268
18430
  *
18269
18431
  * `oClassInfo` might contain the same kind of information as described in {@link sap.ui.base.ManagedObject.extend}.
18270
18432
  *
18271
- * @deprecated (since 1.119.0)
18433
+ * @deprecated (since 1.119) - without replacement. In future major versions, the Core no longer has a class
18434
+ * nature and therefore can't be extended.
18272
18435
  *
18273
18436
  * @returns The created class / constructor function
18274
18437
  */
@@ -18291,7 +18454,8 @@ declare module "sap/ui/core/Core" {
18291
18454
  /**
18292
18455
  * Returns the metadata for class `sap.ui.core.Core`.
18293
18456
  *
18294
- * @deprecated (since 1.119.0)
18457
+ * @deprecated (since 1.119) - without replacement. In future major versions, the Core no longer has a class
18458
+ * nature and no longer inherits from sap.ui.base.Object and therefore no longer has metadata.
18295
18459
  *
18296
18460
  * @returns Metadata object describing this class
18297
18461
  */
@@ -18302,7 +18466,11 @@ declare module "sap/ui/core/Core" {
18302
18466
  * In general, applications and Controls should avoid calling this method and instead let the framework
18303
18467
  * manage any necessary rendering.
18304
18468
  *
18305
- * @deprecated (since 1.118)
18469
+ * @deprecated (since 1.118) - without replacement. In the next major version, synchronously rendering UI
18470
+ * updates is no longer supported as it can lead to unnecessary intermediate DOM updates or layout shifting
18471
+ * etc. Controls should rather use invalidation and apps should not trigger rendering at all but rather
18472
+ * rely on the framework's automatic update mechanisms. Test code can use the test module `sap/ui/qunit/utils/nextUIUpdate`
18473
+ * as a convenient way to wait for the next asynchronous rendering.
18306
18474
  */
18307
18475
  applyChanges(): void;
18308
18476
  /**
@@ -18341,7 +18509,8 @@ declare module "sap/ui/core/Core" {
18341
18509
  * When called, the context of the listener (its `this`) will be bound to `oListener` if specified, otherwise
18342
18510
  * it will be bound to a dummy event provider object.
18343
18511
  *
18344
- * @deprecated (since 1.119)
18512
+ * @deprecated (since 1.119) - without a replacement. Applications should not have the need to intercept
18513
+ * all control events.
18345
18514
  */
18346
18515
  attachControlEvent(
18347
18516
  /**
@@ -18750,7 +18919,9 @@ declare module "sap/ui/core/Core" {
18750
18919
  * The caller must take care to destroy the render manager when it is no longer needed. Calling this method
18751
18920
  * before the Core has been {@link #isInitialized initialized}, is not recommended.
18752
18921
  *
18753
- * @deprecated (since 1.119)
18922
+ * @deprecated (since 1.119) - without replacement. In the next major version, synchronously rendering UI
18923
+ * updates is no longer supported as it can lead to unnecessary intermediate DOM updates or layout shifting
18924
+ * etc. Controls should rather use invalidation.
18754
18925
  *
18755
18926
  * @returns New instance of the RenderManager
18756
18927
  */
@@ -18773,7 +18944,8 @@ declare module "sap/ui/core/Core" {
18773
18944
  *
18774
18945
  * The passed function and listener object must match the ones used for event registration.
18775
18946
  *
18776
- * @deprecated (since 1.119)
18947
+ * @deprecated (since 1.119) - without a replacement. Applications should not have the need to intercept
18948
+ * all control events.
18777
18949
  */
18778
18950
  detachControlEvent(
18779
18951
  /**
@@ -19105,13 +19277,13 @@ declare module "sap/ui/core/Core" {
19105
19277
  sId: ID | null | undefined
19106
19278
  ): UI5Element | undefined;
19107
19279
  /**
19108
- * Returns the Id of the control/element currently in focus.
19280
+ * Returns the ID of the control/element currently in focus.
19109
19281
  *
19110
19282
  * @deprecated (since 1.119) - Please use {@link sap.ui.core.Element.getActiveElement Element.getActiveElement }
19111
19283
  * to get the currently focused element. You can then retrieve the ID of that element with {@link sap.ui.core.Element#getId Element#getId}.
19112
19284
  * Please be aware, {@link sap.ui.core.Element.getActiveElement Element.getActiveElement} can return 'undefined'.
19113
19285
  *
19114
- * @returns the Id of the control/element currently in focus.
19286
+ * @returns the ID of the control/element currently in focus.
19115
19287
  */
19116
19288
  getCurrentFocusedControlId(): string;
19117
19289
  /**
@@ -19244,7 +19416,8 @@ declare module "sap/ui/core/Core" {
19244
19416
  * **Note:** The returned info objects must not be modified. They might be a living copy of the internal
19245
19417
  * data (for efficiency reasons) and the framework is not prepared to handle modifications to these objects.
19246
19418
  *
19247
- * @deprecated (since 1.119)
19419
+ * @deprecated (since 1.119) - without a 1:1 replacement. Callers that used `getLoadedLibraries` to check
19420
+ * whether a certain library is loaded, should rather use {@link sap.ui.core.Lib#isLoaded Library#isLoaded}.
19248
19421
  *
19249
19422
  * @returns Map of library info objects keyed by the library names.
19250
19423
  */
@@ -19331,7 +19504,8 @@ declare module "sap/ui/core/Core" {
19331
19504
  * Returns `true` if there are any pending rendering tasks or when such rendering tasks are currently being
19332
19505
  * executed.
19333
19506
  *
19334
- * @deprecated (since 1.118)
19507
+ * @deprecated (since 1.118) - without replacement. The known use cases in testing environments are covered
19508
+ * by other APIs or features, e.g. OPA's waitFor mechanism.
19335
19509
  *
19336
19510
  * @returns true if there are pending (or executing) rendering tasks.
19337
19511
  */
@@ -19349,7 +19523,8 @@ declare module "sap/ui/core/Core" {
19349
19523
  * Includes a library theme into the current page (if a variant is specified it will include the variant
19350
19524
  * library theme)
19351
19525
  *
19352
- * @deprecated (since 1.119)
19526
+ * @deprecated (since 1.119) - without replacement. There's no known use case that would require a public
19527
+ * API.
19353
19528
  */
19354
19529
  includeLibraryTheme(
19355
19530
  /**
@@ -19444,9 +19619,10 @@ declare module "sap/ui/core/Core" {
19444
19619
  */
19445
19620
  isInitialized(): boolean;
19446
19621
  /**
19447
- * Returns the locked state of the `sap.ui.core.Core`
19622
+ * Returns the locked state of the `sap.ui.core.Core`.
19448
19623
  *
19449
- * @deprecated (since 1.118)
19624
+ * @deprecated (since 1.118) - without a replacement. The ability to prevent the re-rendering of all `UIArea`s
19625
+ * wasn't really used in the past and did not provide a meaningful feature. It therefore has been abandoned.
19450
19626
  *
19451
19627
  * @returns locked state
19452
19628
  */
@@ -19585,7 +19761,8 @@ declare module "sap/ui/core/Core" {
19585
19761
  * Lock should be called before and after the DOM is modified for rendering, roundtrips... Exceptions might
19586
19762
  * be the case for asynchronous UI behavior
19587
19763
  *
19588
- * @deprecated (since 1.118)
19764
+ * @deprecated (since 1.118) - without a replacement. The ability to prevent the re-rendering of all `UIArea`s
19765
+ * wasn't really used in the past and did not provide a meaningful feature. It therefore has been abandoned.
19589
19766
  */
19590
19767
  lock(): void;
19591
19768
  /**
@@ -19729,7 +19906,8 @@ declare module "sap/ui/core/Core" {
19729
19906
  * in order to configure the theme location early enough.
19730
19907
  *
19731
19908
  * @since 1.10
19732
- * @deprecated (since 1.119)
19909
+ * @deprecated (since 1.119) - without replacement. The need to define the location for a theme should be
19910
+ * fully covered with the capabiltites of the {@link sap/base/config base configuration}.
19733
19911
  *
19734
19912
  * @returns the Core, to allow method chaining
19735
19913
  */
@@ -19799,7 +19977,8 @@ declare module "sap/ui/core/Core" {
19799
19977
  * in order to configure the theme location early enough.
19800
19978
  *
19801
19979
  * @since 1.10
19802
- * @deprecated (since 1.119)
19980
+ * @deprecated (since 1.119) - without replacement. The need to define the location for a theme should be
19981
+ * fully covered with the capabiltites of the {@link sap/base/config base configuration}.
19803
19982
  *
19804
19983
  * @returns the Core, to allow method chaining
19805
19984
  */
@@ -19822,7 +20001,8 @@ declare module "sap/ui/core/Core" {
19822
20001
  *
19823
20002
  * Browser events are dispatched to the controls again after this method is called.
19824
20003
  *
19825
- * @deprecated (since 1.118)
20004
+ * @deprecated (since 1.118) - without a replacement. The ability to prevent the re-rendering of all `UIArea`s
20005
+ * wasn't really used in the past and did not provide a meaningful feature. It therefore has been abandoned.
19826
20006
  */
19827
20007
  unlock(): void;
19828
20008
  /**
@@ -20079,7 +20259,9 @@ declare module "sap/ui/core/CustomData" {
20079
20259
  bWriteToDom?: boolean
20080
20260
  ): this;
20081
20261
  }
20082
-
20262
+ /**
20263
+ * Describes the settings that can be provided to the CustomData constructor.
20264
+ */
20083
20265
  export interface $CustomDataSettings extends $ElementSettings {
20084
20266
  /**
20085
20267
  * The key of the data in this CustomData object. When the data is just stored, it can be any string, but
@@ -20476,37 +20658,66 @@ declare module "sap/ui/core/delegate/ItemNavigation" {
20476
20658
  bTableList?: boolean
20477
20659
  ): this;
20478
20660
  }
20479
-
20661
+ /**
20662
+ * Parameters of the ItemNavigation#AfterFocus event.
20663
+ */
20480
20664
  export interface ItemNavigation$AfterFocusEventParameters {}
20481
20665
 
20666
+ /**
20667
+ * Event object of the ItemNavigation#AfterFocus event.
20668
+ */
20482
20669
  export type ItemNavigation$AfterFocusEvent = Event<
20483
20670
  ItemNavigation$AfterFocusEventParameters,
20484
20671
  ItemNavigation
20485
20672
  >;
20486
20673
 
20674
+ /**
20675
+ * Parameters of the ItemNavigation#BeforeFocus event.
20676
+ */
20487
20677
  export interface ItemNavigation$BeforeFocusEventParameters {}
20488
20678
 
20679
+ /**
20680
+ * Event object of the ItemNavigation#BeforeFocus event.
20681
+ */
20489
20682
  export type ItemNavigation$BeforeFocusEvent = Event<
20490
20683
  ItemNavigation$BeforeFocusEventParameters,
20491
20684
  ItemNavigation
20492
20685
  >;
20493
20686
 
20687
+ /**
20688
+ * Parameters of the ItemNavigation#BorderReached event.
20689
+ */
20494
20690
  export interface ItemNavigation$BorderReachedEventParameters {}
20495
20691
 
20692
+ /**
20693
+ * Event object of the ItemNavigation#BorderReached event.
20694
+ */
20496
20695
  export type ItemNavigation$BorderReachedEvent = Event<
20497
20696
  ItemNavigation$BorderReachedEventParameters,
20498
20697
  ItemNavigation
20499
20698
  >;
20500
20699
 
20700
+ /**
20701
+ * Parameters of the ItemNavigation#FocusAgain event.
20702
+ */
20501
20703
  export interface ItemNavigation$FocusAgainEventParameters {}
20502
20704
 
20705
+ /**
20706
+ * Event object of the ItemNavigation#FocusAgain event.
20707
+ */
20503
20708
  export type ItemNavigation$FocusAgainEvent = Event<
20504
20709
  ItemNavigation$FocusAgainEventParameters,
20505
20710
  ItemNavigation
20506
20711
  >;
20507
20712
 
20713
+ /**
20714
+ * Parameters of the ItemNavigation#FocusLeave event.
20715
+ */
20508
20716
  export interface ItemNavigation$FocusLeaveEventParameters {}
20509
20717
 
20718
+ /**
20719
+ * Event object of the ItemNavigation#FocusLeave event.
20720
+ */
20510
20721
  export type ItemNavigation$FocusLeaveEvent = Event<
20511
20722
  ItemNavigation$FocusLeaveEventParameters,
20512
20723
  ItemNavigation
@@ -20560,15 +20771,15 @@ declare module "sap/ui/core/delegate/ScrollEnablement" {
20560
20771
  */
20561
20772
  vertical?: boolean;
20562
20773
  /**
20563
- * @deprecated since 1.42, the parameter has no effect
20774
+ * Deprecated since 1.42, the parameter has no effect
20564
20775
  */
20565
20776
  zynga?: boolean;
20566
20777
  /**
20567
- * @deprecated since 1.42, the parameter has no effect
20778
+ * Deprecated since 1.42, the parameter has no effect
20568
20779
  */
20569
20780
  iscroll?: boolean;
20570
20781
  /**
20571
- * @deprecated since 1.42, the parameter has no effect
20782
+ * Deprecated since 1.42, the parameter has no effect
20572
20783
  */
20573
20784
  preventDefault?: boolean;
20574
20785
  /**
@@ -20964,7 +21175,9 @@ declare module "sap/ui/core/dnd/DragDropBase" {
20964
21175
  sGroupName?: string
20965
21176
  ): this;
20966
21177
  }
20967
-
21178
+ /**
21179
+ * Describes the settings that can be provided to the DragDropBase constructor.
21180
+ */
20968
21181
  export interface $DragDropBaseSettings extends $ElementSettings {
20969
21182
  /**
20970
21183
  * Defines the name of the group to which this object belongs. If `groupName` is specified, then this object
@@ -21283,7 +21496,9 @@ declare module "sap/ui/core/dnd/DragDropInfo" {
21283
21496
  oTargetElement: ID | UI5Element
21284
21497
  ): this;
21285
21498
  }
21286
-
21499
+ /**
21500
+ * Describes the settings that can be provided to the DragDropInfo constructor.
21501
+ */
21287
21502
  export interface $DragDropInfoSettings extends $DropInfoSettings {
21288
21503
  /**
21289
21504
  * The name of the aggregation from which all children can be dragged. If undefined, the control itself
@@ -21311,13 +21526,22 @@ declare module "sap/ui/core/dnd/DragDropInfo" {
21311
21526
  dragEnd?: (oEvent: Event) => void;
21312
21527
  }
21313
21528
 
21529
+ /**
21530
+ * Parameters of the DragDropInfo#dragEnd event.
21531
+ */
21314
21532
  export interface DragDropInfo$DragEndEventParameters {}
21315
21533
 
21534
+ /**
21535
+ * Event object of the DragDropInfo#dragEnd event.
21536
+ */
21316
21537
  export type DragDropInfo$DragEndEvent = Event<
21317
21538
  DragDropInfo$DragEndEventParameters,
21318
21539
  DragDropInfo
21319
21540
  >;
21320
21541
 
21542
+ /**
21543
+ * Parameters of the DragDropInfo#dragStart event.
21544
+ */
21321
21545
  export interface DragDropInfo$DragStartEventParameters {
21322
21546
  /**
21323
21547
  * The target element that will be dragged
@@ -21335,6 +21559,9 @@ declare module "sap/ui/core/dnd/DragDropInfo" {
21335
21559
  browserEvent?: DragEvent;
21336
21560
  }
21337
21561
 
21562
+ /**
21563
+ * Event object of the DragDropInfo#dragStart event.
21564
+ */
21338
21565
  export type DragDropInfo$DragStartEvent = Event<
21339
21566
  DragDropInfo$DragStartEventParameters,
21340
21567
  DragDropInfo
@@ -21622,7 +21849,9 @@ declare module "sap/ui/core/dnd/DragInfo" {
21622
21849
  sSourceAggregation?: string
21623
21850
  ): this;
21624
21851
  }
21625
-
21852
+ /**
21853
+ * Describes the settings that can be provided to the DragInfo constructor.
21854
+ */
21626
21855
  export interface $DragInfoSettings extends $DragDropBaseSettings {
21627
21856
  /**
21628
21857
  * The name of the aggregation from which all children can be dragged. If undefined, the control itself
@@ -21643,6 +21872,9 @@ declare module "sap/ui/core/dnd/DragInfo" {
21643
21872
  dragEnd?: (oEvent: DragInfo$DragEndEvent) => void;
21644
21873
  }
21645
21874
 
21875
+ /**
21876
+ * Parameters of the DragInfo#dragEnd event.
21877
+ */
21646
21878
  export interface DragInfo$DragEndEventParameters {
21647
21879
  /**
21648
21880
  * The target element that is being dragged
@@ -21660,11 +21892,17 @@ declare module "sap/ui/core/dnd/DragInfo" {
21660
21892
  browserEvent?: DragEvent;
21661
21893
  }
21662
21894
 
21895
+ /**
21896
+ * Event object of the DragInfo#dragEnd event.
21897
+ */
21663
21898
  export type DragInfo$DragEndEvent = Event<
21664
21899
  DragInfo$DragEndEventParameters,
21665
21900
  DragInfo
21666
21901
  >;
21667
21902
 
21903
+ /**
21904
+ * Parameters of the DragInfo#dragStart event.
21905
+ */
21668
21906
  export interface DragInfo$DragStartEventParameters {
21669
21907
  /**
21670
21908
  * The target element that will be dragged
@@ -21682,6 +21920,9 @@ declare module "sap/ui/core/dnd/DragInfo" {
21682
21920
  browserEvent?: DragEvent;
21683
21921
  }
21684
21922
 
21923
+ /**
21924
+ * Event object of the DragInfo#dragStart event.
21925
+ */
21685
21926
  export type DragInfo$DragStartEvent = Event<
21686
21927
  DragInfo$DragStartEventParameters,
21687
21928
  DragInfo
@@ -22286,7 +22527,9 @@ declare module "sap/ui/core/dnd/DropInfo" {
22286
22527
  sTargetAggregation?: string
22287
22528
  ): this;
22288
22529
  }
22289
-
22530
+ /**
22531
+ * Describes the settings that can be provided to the DropInfo constructor.
22532
+ */
22290
22533
  export interface $DropInfoSettings extends $DragDropBaseSettings {
22291
22534
  /**
22292
22535
  * The aggregation name in the drop target control which is the target of this drag-and-drop action. If
@@ -22338,6 +22581,9 @@ declare module "sap/ui/core/dnd/DropInfo" {
22338
22581
  drop?: (oEvent: DropInfo$DropEvent) => void;
22339
22582
  }
22340
22583
 
22584
+ /**
22585
+ * Parameters of the DropInfo#dragEnter event.
22586
+ */
22341
22587
  export interface DropInfo$DragEnterEventParameters {
22342
22588
  /**
22343
22589
  * The target element on which the dragged element will be dropped
@@ -22355,11 +22601,17 @@ declare module "sap/ui/core/dnd/DropInfo" {
22355
22601
  browserEvent?: DragEvent;
22356
22602
  }
22357
22603
 
22604
+ /**
22605
+ * Event object of the DropInfo#dragEnter event.
22606
+ */
22358
22607
  export type DropInfo$DragEnterEvent = Event<
22359
22608
  DropInfo$DragEnterEventParameters,
22360
22609
  DropInfo
22361
22610
  >;
22362
22611
 
22612
+ /**
22613
+ * Parameters of the DropInfo#dragOver event.
22614
+ */
22363
22615
  export interface DropInfo$DragOverEventParameters {
22364
22616
  /**
22365
22617
  * The target element on which the dragged element will be dropped
@@ -22384,11 +22636,17 @@ declare module "sap/ui/core/dnd/DropInfo" {
22384
22636
  browserEvent?: DragEvent;
22385
22637
  }
22386
22638
 
22639
+ /**
22640
+ * Event object of the DropInfo#dragOver event.
22641
+ */
22387
22642
  export type DropInfo$DragOverEvent = Event<
22388
22643
  DropInfo$DragOverEventParameters,
22389
22644
  DropInfo
22390
22645
  >;
22391
22646
 
22647
+ /**
22648
+ * Parameters of the DropInfo#drop event.
22649
+ */
22392
22650
  export interface DropInfo$DropEventParameters {
22393
22651
  /**
22394
22652
  * The UI5 `dragSession` object that exists only during drag and drop
@@ -22418,6 +22676,9 @@ declare module "sap/ui/core/dnd/DropInfo" {
22418
22676
  browserEvent?: DragEvent;
22419
22677
  }
22420
22678
 
22679
+ /**
22680
+ * Event object of the DropInfo#drop event.
22681
+ */
22421
22682
  export type DropInfo$DropEvent = Event<
22422
22683
  DropInfo$DropEventParameters,
22423
22684
  DropInfo
@@ -23079,8 +23340,16 @@ declare module "sap/ui/core/Element" {
23079
23340
  * in the documentation.
23080
23341
  *
23081
23342
  * @ui5-protected Do not call from applications (only from related classes in the framework)
23343
+ *
23344
+ * @returns This hook method must not have a return value. Return value `void` is deprecated since 1.120,
23345
+ * as it does not force functions to **not** return something. This implies that, for instance, no async
23346
+ * function returning a Promise should be used.
23347
+ *
23348
+ * **Note:** While the return type is currently `void|undefined`, any implementation of this hook must not
23349
+ * return anything but undefined. Any other return value will cause an error log in this version of UI5
23350
+ * and will fail in future major versions of UI5.
23082
23351
  */
23083
- exit(): void;
23352
+ exit(): void | undefined;
23084
23353
  /**
23085
23354
  * Searches and returns an array of child elements and controls which are referenced within an aggregation
23086
23355
  * or aggregations of child elements/controls. This can be either done recursive or not.
@@ -23308,8 +23577,16 @@ declare module "sap/ui/core/Element" {
23308
23577
  * Subclasses of Element should override this hook to implement any necessary initialization.
23309
23578
  *
23310
23579
  * @ui5-protected Do not call from applications (only from related classes in the framework)
23580
+ *
23581
+ * @returns This hook method must not have a return value. Return value `void` is deprecated since 1.120,
23582
+ * as it does not force functions to **not** return something. This implies that, for instance, no async
23583
+ * function returning a Promise should be used.
23584
+ *
23585
+ * **Note:** While the return type is currently `void|undefined`, any implementation of this hook must not
23586
+ * return anything but undefined. Any other return value will cause an error log in this version of UI5
23587
+ * and will fail in future major versions of UI5.
23311
23588
  */
23312
- init(): void;
23589
+ init(): void | undefined;
23313
23590
  /**
23314
23591
  * Inserts a customData into the aggregation {@link #getCustomData customData}.
23315
23592
  *
@@ -23676,6 +23953,9 @@ declare module "sap/ui/core/Element" {
23676
23953
  }
23677
23954
  export const registry: registry;
23678
23955
 
23956
+ /**
23957
+ * Describes the settings that can be provided to the Element constructor.
23958
+ */
23679
23959
  export interface $ElementSettings extends $ManagedObjectSettings {
23680
23960
  /**
23681
23961
  * The tooltip that should be shown for this Element.
@@ -26139,7 +26419,9 @@ declare module "sap/ui/core/Fragment" {
26139
26419
  sType: string
26140
26420
  ): this;
26141
26421
  }
26142
-
26422
+ /**
26423
+ * Describes the settings that can be provided to the Fragment constructor.
26424
+ */
26143
26425
  export interface $FragmentSettings extends $ManagedObjectSettings {
26144
26426
  type?: string | PropertyBindingInfo;
26145
26427
 
@@ -26587,7 +26869,9 @@ declare module "sap/ui/core/HTML" {
26587
26869
  bVisible?: boolean
26588
26870
  ): this;
26589
26871
  }
26590
-
26872
+ /**
26873
+ * Describes the settings that can be provided to the HTML constructor.
26874
+ */
26591
26875
  export interface $HTMLSettings extends $ControlSettings {
26592
26876
  /**
26593
26877
  * HTML content to be displayed, defined as a string.
@@ -26649,6 +26933,9 @@ declare module "sap/ui/core/HTML" {
26649
26933
  afterRendering?: (oEvent: HTML$AfterRenderingEvent) => void;
26650
26934
  }
26651
26935
 
26936
+ /**
26937
+ * Parameters of the HTML#afterRendering event.
26938
+ */
26652
26939
  export interface HTML$AfterRenderingEventParameters {
26653
26940
  /**
26654
26941
  * Whether the current DOM of the control has been preserved (true) or not (e.g. rendered from content property
@@ -26657,6 +26944,9 @@ declare module "sap/ui/core/HTML" {
26657
26944
  isPreservedDOM?: boolean;
26658
26945
  }
26659
26946
 
26947
+ /**
26948
+ * Event object of the HTML#afterRendering event.
26949
+ */
26660
26950
  export type HTML$AfterRenderingEvent = Event<
26661
26951
  HTML$AfterRenderingEventParameters,
26662
26952
  HTML
@@ -26933,7 +27223,9 @@ declare module "sap/ui/core/hyphenation/Hyphenation" {
26933
27223
  sLang?: string
26934
27224
  ): boolean;
26935
27225
  }
26936
-
27226
+ /**
27227
+ * Describes the settings that can be provided to the Hyphenation constructor.
27228
+ */
26937
27229
  export interface $HyphenationSettings extends $ManagedObjectSettings {
26938
27230
  /**
26939
27231
  * Fired if an error with initialization or hyphenation occurs.
@@ -26941,6 +27233,9 @@ declare module "sap/ui/core/hyphenation/Hyphenation" {
26941
27233
  error?: (oEvent: Hyphenation$ErrorEvent) => void;
26942
27234
  }
26943
27235
 
27236
+ /**
27237
+ * Parameters of the Hyphenation#error event.
27238
+ */
26944
27239
  export interface Hyphenation$ErrorEventParameters {
26945
27240
  /**
26946
27241
  * The message of the error.
@@ -26948,6 +27243,9 @@ declare module "sap/ui/core/hyphenation/Hyphenation" {
26948
27243
  sErrorMessage?: string;
26949
27244
  }
26950
27245
 
27246
+ /**
27247
+ * Event object of the Hyphenation#error event.
27248
+ */
26951
27249
  export type Hyphenation$ErrorEvent = Event<
26952
27250
  Hyphenation$ErrorEventParameters,
26953
27251
  Hyphenation
@@ -27592,7 +27890,9 @@ declare module "sap/ui/core/Icon" {
27592
27890
  sWidth?: CSSSize
27593
27891
  ): this;
27594
27892
  }
27595
-
27893
+ /**
27894
+ * Describes the settings that can be provided to the Icon constructor.
27895
+ */
27596
27896
  export interface $IconSettings extends $ControlSettings {
27597
27897
  /**
27598
27898
  * This property can be set by following options:
@@ -27713,8 +28013,14 @@ declare module "sap/ui/core/Icon" {
27713
28013
  press?: (oEvent: Event) => void;
27714
28014
  }
27715
28015
 
28016
+ /**
28017
+ * Parameters of the Icon#press event.
28018
+ */
27716
28019
  export interface Icon$PressEventParameters {}
27717
28020
 
28021
+ /**
28022
+ * Event object of the Icon#press event.
28023
+ */
27718
28024
  export type Icon$PressEvent = Event<Icon$PressEventParameters, Icon>;
27719
28025
  }
27720
28026
 
@@ -28248,7 +28554,9 @@ declare module "sap/ui/core/InvisibleMessage" {
28248
28554
  sMode: InvisibleMessageMode | keyof typeof InvisibleMessageMode
28249
28555
  ): void;
28250
28556
  }
28251
-
28557
+ /**
28558
+ * Describes the settings that can be provided to the InvisibleMessage constructor.
28559
+ */
28252
28560
  export interface $InvisibleMessageSettings extends $ManagedObjectSettings {}
28253
28561
  }
28254
28562
 
@@ -28425,7 +28733,9 @@ declare module "sap/ui/core/InvisibleText" {
28425
28733
  */
28426
28734
  toStatic(): this;
28427
28735
  }
28428
-
28736
+ /**
28737
+ * Describes the settings that can be provided to the InvisibleText constructor.
28738
+ */
28429
28739
  export interface $InvisibleTextSettings extends $ControlSettings {
28430
28740
  /**
28431
28741
  * The text of the InvisibleText.
@@ -28622,7 +28932,9 @@ declare module "sap/ui/core/Item" {
28622
28932
  sTextDirection?: TextDirection | keyof typeof TextDirection
28623
28933
  ): this;
28624
28934
  }
28625
-
28935
+ /**
28936
+ * Describes the settings that can be provided to the Item constructor.
28937
+ */
28626
28938
  export interface $ItemSettings extends $ElementSettings {
28627
28939
  /**
28628
28940
  * The text to be displayed for the item.
@@ -28831,7 +29143,9 @@ declare module "sap/ui/core/LayoutData" {
28831
29143
  */
28832
29144
  static getMetadata(): ElementMetadata;
28833
29145
  }
28834
-
29146
+ /**
29147
+ * Describes the settings that can be provided to the LayoutData constructor.
29148
+ */
28835
29149
  export interface $LayoutDataSettings extends $ElementSettings {}
28836
29150
  }
28837
29151
 
@@ -29259,7 +29573,9 @@ declare module "sap/ui/core/ListItem" {
29259
29573
  sIcon?: string
29260
29574
  ): this;
29261
29575
  }
29262
-
29576
+ /**
29577
+ * Describes the settings that can be provided to the ListItem constructor.
29578
+ */
29263
29579
  export interface $ListItemSettings extends $ItemSettings {
29264
29580
  /**
29265
29581
  * The icon belonging to this list item instance. This can be a URI to an image or an icon font URI.
@@ -29418,7 +29734,12 @@ declare module "sap/ui/core/LocalBusyIndicator" {
29418
29734
  sWidth?: CSSSize
29419
29735
  ): this;
29420
29736
  }
29421
-
29737
+ /**
29738
+ * Describes the settings that can be provided to the LocalBusyIndicator constructor.
29739
+ *
29740
+ * @deprecated (since 1.14.2) - The LocalBusyIndicator Control is not needed anymore by the new implementation
29741
+ * of the LBI. Hence, it is not used anymore.
29742
+ */
29422
29743
  export interface $LocalBusyIndicatorSettings extends $ControlSettings {
29423
29744
  /**
29424
29745
  * This property is the width of the control that has to be covered. With this width the position of the
@@ -31070,7 +31391,11 @@ declare module "sap/ui/core/Message" {
31070
31391
  sTimestamp?: string
31071
31392
  ): this;
31072
31393
  }
31073
-
31394
+ /**
31395
+ * Describes the settings that can be provided to the Message constructor.
31396
+ *
31397
+ * @deprecated (since 1.120) - Please use {@link sap.ui.core.message.Message} instead.
31398
+ */
31074
31399
  export interface $MessageSettings extends $ElementSettings {
31075
31400
  /**
31076
31401
  * Message text
@@ -31912,7 +32237,9 @@ declare module "sap/ui/core/message/MessageProcessor" {
31912
32237
  mMessages: Record<string, Message[]>
31913
32238
  ): void;
31914
32239
  }
31915
-
32240
+ /**
32241
+ * Parameters of the MessageProcessor#messageChange event.
32242
+ */
31916
32243
  export interface MessageProcessor$MessageChangeEventParameters {
31917
32244
  /**
31918
32245
  * Messages already existing before the `messageChange` event was fired.
@@ -31925,6 +32252,9 @@ declare module "sap/ui/core/message/MessageProcessor" {
31925
32252
  newMessages?: Message;
31926
32253
  }
31927
32254
 
32255
+ /**
32256
+ * Event object of the MessageProcessor#messageChange event.
32257
+ */
31928
32258
  export type MessageProcessor$MessageChangeEvent = Event<
31929
32259
  MessageProcessor$MessageChangeEventParameters,
31930
32260
  MessageProcessor
@@ -32213,8 +32543,16 @@ declare module "sap/ui/core/mvc/Controller" {
32213
32543
  * sap.ui.core.Control.prototype.onAfterRendering
32214
32544
  *
32215
32545
  * @ui5-protected Do not call from applications (only from related classes in the framework)
32546
+ *
32547
+ * @returns This lifecycle hook must not have a return value. Return value `void` is deprecated since 1.120,
32548
+ * as it does not force functions to **not** return something. This implies that, for instance, no async
32549
+ * function returning a Promise should be used.
32550
+ *
32551
+ * **Note:** While the return type is currently `void|undefined`, any implementation of this hook must not
32552
+ * return anything but undefined. Any other return value will cause an error log in this version of UI5
32553
+ * and will fail in future major versions of UI5.
32216
32554
  */
32217
- onAfterRendering(): void;
32555
+ onAfterRendering(): void | undefined;
32218
32556
  /**
32219
32557
  * This method is called every time the View is rendered, before the Renderer is called and the HTML is
32220
32558
  * placed in the DOM-Tree. It can be used to perform clean-up-tasks before re-rendering. (Even though this
@@ -32224,8 +32562,16 @@ declare module "sap/ui/core/mvc/Controller" {
32224
32562
  * sap.ui.core.Control.prototype.onBeforeRendering
32225
32563
  *
32226
32564
  * @ui5-protected Do not call from applications (only from related classes in the framework)
32565
+ *
32566
+ * @returns This lifecycle hook must not have a return value. Return value `void` is deprecated since 1.120,
32567
+ * as it does not force functions to **not** return something. This implies that, for instance, no async
32568
+ * function returning a Promise should be used.
32569
+ *
32570
+ * **Note:** While the return type is currently `void|undefined`, any implementation of this hook must not
32571
+ * return anything but undefined. Any other return value will cause an error log in this version of UI5
32572
+ * and will fail in future major versions of UI5.
32227
32573
  */
32228
- onBeforeRendering(): void;
32574
+ onBeforeRendering(): void | undefined;
32229
32575
  /**
32230
32576
  * This method is called upon desctuction of the View. The controller should perform its internal destruction
32231
32577
  * in this hook. It is only called once per View instance, unlike the onBeforeRendering and onAfterRendering
@@ -32233,8 +32579,16 @@ declare module "sap/ui/core/mvc/Controller" {
32233
32579
  * if the method does not exist, it will simply not be called.)
32234
32580
  *
32235
32581
  * @ui5-protected Do not call from applications (only from related classes in the framework)
32582
+ *
32583
+ * @returns This lifecycle hook must not have a return value. Return value `void` is deprecated since 1.120,
32584
+ * as it does not force functions to **not** return something. This implies that, for instance, no async
32585
+ * function returning a Promise should be used.
32586
+ *
32587
+ * **Note:** While the return type is currently `void|undefined`, any implementation of this hook must not
32588
+ * return anything but undefined. Any other return value will cause an error log in this version of UI5
32589
+ * and will fail in future major versions of UI5.
32236
32590
  */
32237
- onExit(): void;
32591
+ onExit(): void | undefined;
32238
32592
  /**
32239
32593
  * This method is called upon initialization of the View. The controller can perform its internal setup
32240
32594
  * in this hook. It is only called once per View instance, unlike the onBeforeRendering and onAfterRendering
@@ -32248,8 +32602,16 @@ declare module "sap/ui/core/mvc/Controller" {
32248
32602
  * event. The event is fired when either the context or the model changes for the control.
32249
32603
  *
32250
32604
  * @ui5-protected Do not call from applications (only from related classes in the framework)
32605
+ *
32606
+ * @returns This lifecycle hook must not have a return value. Return value `void` is deprecated since 1.120,
32607
+ * as it does not force functions to **not** return something. This implies that, for instance, no async
32608
+ * function returning a Promise should be used.
32609
+ *
32610
+ * **Note:** While the return type is currently `void|undefined`, any implementation of this hook must not
32611
+ * return anything but undefined. Any other return value will cause an error log in this version of UI5
32612
+ * and will fail in future major versions of UI5.
32251
32613
  */
32252
- onInit(): void;
32614
+ onInit(): void | undefined;
32253
32615
  }
32254
32616
  }
32255
32617
 
@@ -32500,7 +32862,16 @@ declare module "sap/ui/core/mvc/HTMLView" {
32500
32862
  */
32501
32863
  static getMetadata(): ElementMetadata;
32502
32864
  }
32503
-
32865
+ /**
32866
+ * Describes the settings that can be provided to the HTMLView constructor.
32867
+ *
32868
+ * @deprecated (since 1.108) - as there are no more known usages of `HTMLViews`, and as the use of HTML
32869
+ * as syntax does not bring any advantages over XML. The HTML necessary for the `HTMLView` is not re-used
32870
+ * for the HTML of the controls, but is fully replaced.
32871
+ *
32872
+ * Consider using {@link sap.ui.core.mvc.XMLView XMLViews} or "typed views" (view classes written in JavaScript)
32873
+ * instead. For more information, see the documentation on {@link topic:91f27e3e6f4d1014b6dd926db0e91070 View types}.
32874
+ */
32504
32875
  export interface $HTMLViewSettings extends $ViewSettings {}
32505
32876
  }
32506
32877
 
@@ -32635,7 +33006,12 @@ declare module "sap/ui/core/mvc/JSONView" {
32635
33006
  */
32636
33007
  static getMetadata(): ElementMetadata;
32637
33008
  }
32638
-
33009
+ /**
33010
+ * Describes the settings that can be provided to the JSONView constructor.
33011
+ *
33012
+ * @deprecated (since 1.120) - please consider using {@link sap.ui.core.mvc.XMLView XMLViews} or "typed
33013
+ * views" (view classes written in JavaScript) instead. For more information, see the documentation on {@link topic:91f27e3e6f4d1014b6dd926db0e91070 View types}.
33014
+ */
32639
33015
  export interface $JSONViewSettings extends $ViewSettings {}
32640
33016
  }
32641
33017
 
@@ -32771,7 +33147,13 @@ declare module "sap/ui/core/mvc/JSView" {
32771
33147
  */
32772
33148
  createContent(): Control | Control[];
32773
33149
  }
32774
-
33150
+ /**
33151
+ * Describes the settings that can be provided to the JSView constructor.
33152
+ *
33153
+ * @deprecated (since 1.90) - Instead use {@link topic:e6bb33d076dc4f23be50c082c271b9f0 Typed Views} by
33154
+ * defining the view class with {@link sap.ui.core.mvc.View.extend View.extend} and creating the view instances
33155
+ * with {@link sap.ui.core.mvc.View.create View.create}.
33156
+ */
32775
33157
  export interface $JSViewSettings extends $ViewSettings {}
32776
33158
  }
32777
33159
 
@@ -32887,7 +33269,12 @@ declare module "sap/ui/core/mvc/TemplateView" {
32887
33269
  */
32888
33270
  static getMetadata(): ElementMetadata;
32889
33271
  }
32890
-
33272
+ /**
33273
+ * Describes the settings that can be provided to the TemplateView constructor.
33274
+ *
33275
+ * @deprecated (since 1.56.0) - use {@link sap.ui.core.mvc.XMLView} in combination with {@link topic:5ee619fc1370463ea674ee04b65ed83b XML Templating }
33276
+ * instead.
33277
+ */
32891
33278
  export interface $TemplateViewSettings extends $ViewSettings {}
32892
33279
  }
32893
33280
 
@@ -33957,6 +34344,9 @@ declare module "sap/ui/core/mvc/View" {
33957
34344
  ): Object | Promise<Object>;
33958
34345
  }
33959
34346
 
34347
+ /**
34348
+ * Describes the settings that can be provided to the View constructor.
34349
+ */
33960
34350
  export interface $ViewSettings extends $ControlSettings {
33961
34351
  /**
33962
34352
  * The width
@@ -34071,26 +34461,50 @@ declare module "sap/ui/core/mvc/View" {
34071
34461
  beforeRendering?: (oEvent: Event) => void;
34072
34462
  }
34073
34463
 
34464
+ /**
34465
+ * Parameters of the View#afterInit event.
34466
+ */
34074
34467
  export interface View$AfterInitEventParameters {}
34075
34468
 
34469
+ /**
34470
+ * Event object of the View#afterInit event.
34471
+ */
34076
34472
  export type View$AfterInitEvent = Event<View$AfterInitEventParameters, View>;
34077
34473
 
34474
+ /**
34475
+ * Parameters of the View#afterRendering event.
34476
+ */
34078
34477
  export interface View$AfterRenderingEventParameters {}
34079
34478
 
34479
+ /**
34480
+ * Event object of the View#afterRendering event.
34481
+ */
34080
34482
  export type View$AfterRenderingEvent = Event<
34081
34483
  View$AfterRenderingEventParameters,
34082
34484
  View
34083
34485
  >;
34084
34486
 
34487
+ /**
34488
+ * Parameters of the View#beforeExit event.
34489
+ */
34085
34490
  export interface View$BeforeExitEventParameters {}
34086
34491
 
34492
+ /**
34493
+ * Event object of the View#beforeExit event.
34494
+ */
34087
34495
  export type View$BeforeExitEvent = Event<
34088
34496
  View$BeforeExitEventParameters,
34089
34497
  View
34090
34498
  >;
34091
34499
 
34500
+ /**
34501
+ * Parameters of the View#beforeRendering event.
34502
+ */
34092
34503
  export interface View$BeforeRenderingEventParameters {}
34093
34504
 
34505
+ /**
34506
+ * Event object of the View#beforeRendering event.
34507
+ */
34094
34508
  export type View$BeforeRenderingEvent = Event<
34095
34509
  View$BeforeRenderingEventParameters,
34096
34510
  View
@@ -34476,7 +34890,9 @@ declare module "sap/ui/core/mvc/XMLView" {
34476
34890
  */
34477
34891
  XML = "xml",
34478
34892
  }
34479
-
34893
+ /**
34894
+ * Describes the settings that can be provided to the XMLView constructor.
34895
+ */
34480
34896
  export interface $XMLViewSettings extends $ViewSettings {
34481
34897
  /**
34482
34898
  * Configuration for the XMLView caching.
@@ -35351,12 +35767,18 @@ declare module "sap/ui/core/Popup" {
35351
35767
  currentOfRect: DOMRect;
35352
35768
  };
35353
35769
 
35770
+ /**
35771
+ * Describes the settings that can be provided to the Popup constructor.
35772
+ */
35354
35773
  export interface $PopupSettings extends $ManagedObjectSettings {
35355
35774
  opened?: (oEvent: Event) => void;
35356
35775
 
35357
35776
  closed?: (oEvent: Event) => void;
35358
35777
  }
35359
35778
 
35779
+ /**
35780
+ * Parameters of the Popup#blockLayerStateChange event.
35781
+ */
35360
35782
  export interface Popup$BlockLayerStateChangeEventParameters {
35361
35783
  /**
35362
35784
  * Indicates whether a blocking layer is currently visible `visible: true` or not `visible: false`
@@ -35371,17 +35793,32 @@ declare module "sap/ui/core/Popup" {
35371
35793
  zIndex?: number;
35372
35794
  }
35373
35795
 
35796
+ /**
35797
+ * Event object of the Popup#blockLayerStateChange event.
35798
+ */
35374
35799
  export type Popup$BlockLayerStateChangeEvent = Event<
35375
35800
  Popup$BlockLayerStateChangeEventParameters,
35376
35801
  Popup
35377
35802
  >;
35378
35803
 
35804
+ /**
35805
+ * Parameters of the Popup#closed event.
35806
+ */
35379
35807
  export interface Popup$ClosedEventParameters {}
35380
35808
 
35809
+ /**
35810
+ * Event object of the Popup#closed event.
35811
+ */
35381
35812
  export type Popup$ClosedEvent = Event<Popup$ClosedEventParameters, Popup>;
35382
35813
 
35814
+ /**
35815
+ * Parameters of the Popup#opened event.
35816
+ */
35383
35817
  export interface Popup$OpenedEventParameters {}
35384
35818
 
35819
+ /**
35820
+ * Event object of the Popup#opened event.
35821
+ */
35385
35822
  export type Popup$OpenedEvent = Event<Popup$OpenedEventParameters, Popup>;
35386
35823
  }
35387
35824
 
@@ -37139,7 +37576,9 @@ declare module "sap/ui/core/routing/Route" {
37139
37576
  sHash: string
37140
37577
  ): boolean;
37141
37578
  }
37142
-
37579
+ /**
37580
+ * Parameters of the Route#beforeMatched event.
37581
+ */
37143
37582
  export interface Route$BeforeMatchedEventParameters {
37144
37583
  /**
37145
37584
  * The name of the route
@@ -37166,11 +37605,17 @@ declare module "sap/ui/core/routing/Route" {
37166
37605
  nestedRoute?: Route;
37167
37606
  }
37168
37607
 
37608
+ /**
37609
+ * Event object of the Route#beforeMatched event.
37610
+ */
37169
37611
  export type Route$BeforeMatchedEvent = Event<
37170
37612
  Route$BeforeMatchedEventParameters,
37171
37613
  Route
37172
37614
  >;
37173
37615
 
37616
+ /**
37617
+ * Parameters of the Route#matched event.
37618
+ */
37174
37619
  export interface Route$MatchedEventParameters {
37175
37620
  /**
37176
37621
  * The name of the route
@@ -37219,8 +37664,14 @@ declare module "sap/ui/core/routing/Route" {
37219
37664
  targetControls?: Control[];
37220
37665
  }
37221
37666
 
37667
+ /**
37668
+ * Event object of the Route#matched event.
37669
+ */
37222
37670
  export type Route$MatchedEvent = Event<Route$MatchedEventParameters, Route>;
37223
37671
 
37672
+ /**
37673
+ * Parameters of the Route#patternMatched event.
37674
+ */
37224
37675
  export interface Route$PatternMatchedEventParameters {
37225
37676
  /**
37226
37677
  * The name of the route
@@ -37261,11 +37712,17 @@ declare module "sap/ui/core/routing/Route" {
37261
37712
  targetControls?: Control[];
37262
37713
  }
37263
37714
 
37715
+ /**
37716
+ * Event object of the Route#patternMatched event.
37717
+ */
37264
37718
  export type Route$PatternMatchedEvent = Event<
37265
37719
  Route$PatternMatchedEventParameters,
37266
37720
  Route
37267
37721
  >;
37268
37722
 
37723
+ /**
37724
+ * Parameters of the Route#switched event.
37725
+ */
37269
37726
  export interface Route$SwitchedEventParameters {
37270
37727
  /**
37271
37728
  * The name of the route
@@ -37284,6 +37741,9 @@ declare module "sap/ui/core/routing/Route" {
37284
37741
  config?: object;
37285
37742
  }
37286
37743
 
37744
+ /**
37745
+ * Event object of the Route#switched event.
37746
+ */
37287
37747
  export type Route$SwitchedEvent = Event<Route$SwitchedEventParameters, Route>;
37288
37748
  }
37289
37749
 
@@ -37709,7 +38169,9 @@ declare module "sap/ui/core/routing/Target" {
37709
38169
  */
37710
38170
  suspend(): Target;
37711
38171
  }
37712
-
38172
+ /**
38173
+ * Parameters of the Target#display event.
38174
+ */
37713
38175
  export interface Target$DisplayEventParameters {
37714
38176
  /**
37715
38177
  * The view that got displayed.
@@ -37737,6 +38199,9 @@ declare module "sap/ui/core/routing/Target" {
37737
38199
  routeRelevant?: object;
37738
38200
  }
37739
38201
 
38202
+ /**
38203
+ * Event object of the Target#display event.
38204
+ */
37740
38205
  export type Target$DisplayEvent = Event<
37741
38206
  Target$DisplayEventParameters,
37742
38207
  Target
@@ -37937,6 +38402,9 @@ declare module "sap/ui/core/routing/HashChanger" {
37937
38402
  fullHash?: string;
37938
38403
  };
37939
38404
 
38405
+ /**
38406
+ * Parameters of the HashChanger#hashSet event.
38407
+ */
37940
38408
  export interface HashChanger$HashSetEventParameters {
37941
38409
  /**
37942
38410
  * The relevant hash segment
@@ -37944,6 +38412,9 @@ declare module "sap/ui/core/routing/HashChanger" {
37944
38412
  hash?: string;
37945
38413
  }
37946
38414
 
38415
+ /**
38416
+ * Event object of the HashChanger#hashSet event.
38417
+ */
37947
38418
  export type HashChanger$HashSetEvent = Event<
37948
38419
  HashChanger$HashSetEventParameters,
37949
38420
  HashChanger
@@ -38041,7 +38512,11 @@ declare module "sap/ui/core/routing/HashChangerBase" {
38041
38512
  sHash: string
38042
38513
  ): void;
38043
38514
  }
38044
-
38515
+ /**
38516
+ * Parameters of the HashChangerBase#hashChanged event.
38517
+ *
38518
+ * @ui5-protected DO NOT USE IN APPLICATIONS (only for related classes in the framework)
38519
+ */
38045
38520
  export interface HashChangerBase$HashChangedEventParameters {
38046
38521
  /**
38047
38522
  * The hash segment before it's changed
@@ -38059,11 +38534,21 @@ declare module "sap/ui/core/routing/HashChangerBase" {
38059
38534
  fullHash?: string;
38060
38535
  }
38061
38536
 
38537
+ /**
38538
+ * Event object of the HashChangerBase#hashChanged event.
38539
+ *
38540
+ * @ui5-protected DO NOT USE IN APPLICATIONS (only for related classes in the framework)
38541
+ */
38062
38542
  export type HashChangerBase$HashChangedEvent = Event<
38063
38543
  HashChangerBase$HashChangedEventParameters,
38064
38544
  HashChangerBase
38065
38545
  >;
38066
38546
 
38547
+ /**
38548
+ * Parameters of the HashChangerBase#hashReplaced event.
38549
+ *
38550
+ * @ui5-protected DO NOT USE IN APPLICATIONS (only for related classes in the framework)
38551
+ */
38067
38552
  export interface HashChangerBase$HashReplacedEventParameters {
38068
38553
  /**
38069
38554
  * The relevant hash segment
@@ -38071,6 +38556,11 @@ declare module "sap/ui/core/routing/HashChangerBase" {
38071
38556
  hash?: string;
38072
38557
  }
38073
38558
 
38559
+ /**
38560
+ * Event object of the HashChangerBase#hashReplaced event.
38561
+ *
38562
+ * @ui5-protected DO NOT USE IN APPLICATIONS (only for related classes in the framework)
38563
+ */
38074
38564
  export type HashChangerBase$HashReplacedEvent = Event<
38075
38565
  HashChangerBase$HashReplacedEventParameters,
38076
38566
  HashChangerBase
@@ -39283,7 +39773,9 @@ declare module "sap/ui/core/routing/Router" {
39283
39773
  */
39284
39774
  stop(): Router;
39285
39775
  }
39286
-
39776
+ /**
39777
+ * Parameters of the Router#beforeRouteMatched event.
39778
+ */
39287
39779
  export interface Router$BeforeRouteMatchedEventParameters {
39288
39780
  /**
39289
39781
  * The name of the route
@@ -39310,11 +39802,17 @@ declare module "sap/ui/core/routing/Router" {
39310
39802
  nestedRoute?: Route;
39311
39803
  }
39312
39804
 
39805
+ /**
39806
+ * Event object of the Router#beforeRouteMatched event.
39807
+ */
39313
39808
  export type Router$BeforeRouteMatchedEvent = Event<
39314
39809
  Router$BeforeRouteMatchedEventParameters,
39315
39810
  Router
39316
39811
  >;
39317
39812
 
39813
+ /**
39814
+ * Parameters of the Router#bypassed event.
39815
+ */
39318
39816
  export interface Router$BypassedEventParameters {
39319
39817
  /**
39320
39818
  * the current URL hash which did not match any route
@@ -39322,11 +39820,17 @@ declare module "sap/ui/core/routing/Router" {
39322
39820
  hash?: string;
39323
39821
  }
39324
39822
 
39823
+ /**
39824
+ * Event object of the Router#bypassed event.
39825
+ */
39325
39826
  export type Router$BypassedEvent = Event<
39326
39827
  Router$BypassedEventParameters,
39327
39828
  Router
39328
39829
  >;
39329
39830
 
39831
+ /**
39832
+ * Parameters of the Router#routeMatched event.
39833
+ */
39330
39834
  export interface Router$RouteMatchedEventParameters {
39331
39835
  /**
39332
39836
  * The name of the route
@@ -39375,11 +39879,17 @@ declare module "sap/ui/core/routing/Router" {
39375
39879
  targetControls?: Control[];
39376
39880
  }
39377
39881
 
39882
+ /**
39883
+ * Event object of the Router#routeMatched event.
39884
+ */
39378
39885
  export type Router$RouteMatchedEvent = Event<
39379
39886
  Router$RouteMatchedEventParameters,
39380
39887
  Router
39381
39888
  >;
39382
39889
 
39890
+ /**
39891
+ * Parameters of the Router#routePatternMatched event.
39892
+ */
39383
39893
  export interface Router$RoutePatternMatchedEventParameters {
39384
39894
  /**
39385
39895
  * The name of the route
@@ -39420,11 +39930,17 @@ declare module "sap/ui/core/routing/Router" {
39420
39930
  targetControls?: Control[];
39421
39931
  }
39422
39932
 
39933
+ /**
39934
+ * Event object of the Router#routePatternMatched event.
39935
+ */
39423
39936
  export type Router$RoutePatternMatchedEvent = Event<
39424
39937
  Router$RoutePatternMatchedEventParameters,
39425
39938
  Router
39426
39939
  >;
39427
39940
 
39941
+ /**
39942
+ * Parameters of the Router#titleChanged event.
39943
+ */
39428
39944
  export interface Router$TitleChangedEventParameters {
39429
39945
  /**
39430
39946
  * The current displayed title
@@ -39451,6 +39967,9 @@ declare module "sap/ui/core/routing/Router" {
39451
39967
  propagated?: boolean;
39452
39968
  }
39453
39969
 
39970
+ /**
39971
+ * Event object of the Router#titleChanged event.
39972
+ */
39454
39973
  export type Router$TitleChangedEvent = Event<
39455
39974
  Router$TitleChangedEventParameters,
39456
39975
  Router
@@ -40023,7 +40542,9 @@ declare module "sap/ui/core/routing/Targets" {
40023
40542
  */
40024
40543
  getViews(): Views;
40025
40544
  }
40026
-
40545
+ /**
40546
+ * Parameters of the Targets#display event.
40547
+ */
40027
40548
  export interface Targets$DisplayEventParameters {
40028
40549
  /**
40029
40550
  * The view that got displayed.
@@ -40056,11 +40577,17 @@ declare module "sap/ui/core/routing/Targets" {
40056
40577
  routeRelevant?: object;
40057
40578
  }
40058
40579
 
40580
+ /**
40581
+ * Event object of the Targets#display event.
40582
+ */
40059
40583
  export type Targets$DisplayEvent = Event<
40060
40584
  Targets$DisplayEventParameters,
40061
40585
  Targets
40062
40586
  >;
40063
40587
 
40588
+ /**
40589
+ * Parameters of the Targets#titleChanged event.
40590
+ */
40064
40591
  export interface Targets$TitleChangedEventParameters {
40065
40592
  /**
40066
40593
  * The current displayed title
@@ -40073,6 +40600,9 @@ declare module "sap/ui/core/routing/Targets" {
40073
40600
  name?: string;
40074
40601
  }
40075
40602
 
40603
+ /**
40604
+ * Event object of the Targets#titleChanged event.
40605
+ */
40076
40606
  export type Targets$TitleChangedEvent = Event<
40077
40607
  Targets$TitleChangedEventParameters,
40078
40608
  Targets
@@ -40203,7 +40733,9 @@ declare module "sap/ui/core/routing/Views" {
40203
40733
  oView: View | null | undefined
40204
40734
  ): this;
40205
40735
  }
40206
-
40736
+ /**
40737
+ * Parameters of the Views#created event.
40738
+ */
40207
40739
  export interface Views$CreatedEventParameters {
40208
40740
  /**
40209
40741
  * the instance of the created view.
@@ -40216,6 +40748,9 @@ declare module "sap/ui/core/routing/Views" {
40216
40748
  viewOptions?: object;
40217
40749
  }
40218
40750
 
40751
+ /**
40752
+ * Event object of the Views#created event.
40753
+ */
40219
40754
  export type Views$CreatedEvent = Event<Views$CreatedEventParameters, Views>;
40220
40755
  }
40221
40756
 
@@ -40535,7 +41070,11 @@ declare module "sap/ui/core/ScrollBar" {
40535
41070
  oOwnerDomRef: string
40536
41071
  ): void;
40537
41072
  }
40538
-
41073
+ /**
41074
+ * Describes the settings that can be provided to the ScrollBar constructor.
41075
+ *
41076
+ * @deprecated (since 1.56)
41077
+ */
40539
41078
  export interface $ScrollBarSettings extends $ControlSettings {
40540
41079
  /**
40541
41080
  * Orientation. Defines if the Scrollbar is vertical or horizontal.
@@ -40568,6 +41107,9 @@ declare module "sap/ui/core/ScrollBar" {
40568
41107
  scroll?: (oEvent: ScrollBar$ScrollEvent) => void;
40569
41108
  }
40570
41109
 
41110
+ /**
41111
+ * Parameters of the ScrollBar#scroll event.
41112
+ */
40571
41113
  export interface ScrollBar$ScrollEventParameters {
40572
41114
  /**
40573
41115
  * Actions are: Click on track, button, drag of thumb, or mouse wheel click.
@@ -40590,6 +41132,9 @@ declare module "sap/ui/core/ScrollBar" {
40590
41132
  oldScrollPos?: int;
40591
41133
  }
40592
41134
 
41135
+ /**
41136
+ * Event object of the ScrollBar#scroll event.
41137
+ */
40593
41138
  export type ScrollBar$ScrollEvent = Event<
40594
41139
  ScrollBar$ScrollEventParameters,
40595
41140
  ScrollBar
@@ -40748,7 +41293,11 @@ declare module "sap/ui/core/search/OpenSearchProvider" {
40748
41293
  fCallback: (p1: string, p2: string[]) => void
40749
41294
  ): void;
40750
41295
  }
40751
-
41296
+ /**
41297
+ * Describes the settings that can be provided to the OpenSearchProvider constructor.
41298
+ *
41299
+ * @deprecated (since 1.120)
41300
+ */
40752
41301
  export interface $OpenSearchProviderSettings extends $SearchProviderSettings {
40753
41302
  /**
40754
41303
  * The URL for suggestions of the search provider. As placeholder for the concrete search queries '{searchTerms}'
@@ -40881,7 +41430,11 @@ declare module "sap/ui/core/search/SearchProvider" {
40881
41430
  fnCallback: (p1: string, p2: string[]) => void
40882
41431
  ): void;
40883
41432
  }
40884
-
41433
+ /**
41434
+ * Describes the settings that can be provided to the SearchProvider constructor.
41435
+ *
41436
+ * @deprecated (since 1.120)
41437
+ */
40885
41438
  export interface $SearchProviderSettings extends $ElementSettings {
40886
41439
  /**
40887
41440
  * Icon of the Search Provider
@@ -40969,7 +41522,9 @@ declare module "sap/ui/core/SeparatorItem" {
40969
41522
  */
40970
41523
  static getMetadata(): ElementMetadata;
40971
41524
  }
40972
-
41525
+ /**
41526
+ * Describes the settings that can be provided to the SeparatorItem constructor.
41527
+ */
40973
41528
  export interface $SeparatorItemSettings extends $ItemSettings {}
40974
41529
  }
40975
41530
 
@@ -41237,7 +41792,10 @@ declare module "sap/ui/core/theming/Parameters" {
41237
41792
  * Resets the CSS parameters which finally will reload the parameters the next time they are queried via
41238
41793
  * the method `get`.
41239
41794
  *
41240
- * @deprecated (since 1.92)
41795
+ * @deprecated (since 1.92) - without a replacement. Application code should not be able to interfere with
41796
+ * the automated determination of theme parameters. Resetting the parameters unnecessarily could impact
41797
+ * performance. Please use the (potentially async) API to get parameter values and rely on the framework
41798
+ * to update parameter values when the theme changes.
41241
41799
  */
41242
41800
  reset(): void;
41243
41801
  }
@@ -41442,7 +42000,9 @@ declare module "sap/ui/core/Title" {
41442
42000
  sText?: string
41443
42001
  ): this;
41444
42002
  }
41445
-
42003
+ /**
42004
+ * Describes the settings that can be provided to the Title constructor.
42005
+ */
41446
42006
  export interface $TitleSettings extends $ElementSettings {
41447
42007
  /**
41448
42008
  * Defines the title text
@@ -41599,7 +42159,11 @@ declare module "sap/ui/core/tmpl/DOMAttribute" {
41599
42159
  sValue?: string
41600
42160
  ): this;
41601
42161
  }
41602
-
42162
+ /**
42163
+ * Describes the settings that can be provided to the DOMAttribute constructor.
42164
+ *
42165
+ * @deprecated (since 1.56)
42166
+ */
41603
42167
  export interface $DOMAttributeSettings extends $ElementSettings {
41604
42168
  /**
41605
42169
  * Name of the DOM attribute
@@ -41933,7 +42497,11 @@ declare module "sap/ui/core/tmpl/DOMElement" {
41933
42497
  sText?: string
41934
42498
  ): this;
41935
42499
  }
41936
-
42500
+ /**
42501
+ * Describes the settings that can be provided to the DOMElement constructor.
42502
+ *
42503
+ * @deprecated (since 1.56)
42504
+ */
41937
42505
  export interface $DOMElementSettings extends $ControlSettings {
41938
42506
  /**
41939
42507
  * The text content of the DOM element
@@ -42056,7 +42624,11 @@ declare module "sap/ui/core/tmpl/HandlebarsTemplate" {
42056
42624
  */
42057
42625
  static getMetadata(): ManagedObjectMetadata;
42058
42626
  }
42059
-
42627
+ /**
42628
+ * Describes the settings that can be provided to the HandlebarsTemplate constructor.
42629
+ *
42630
+ * @deprecated (since 1.56)
42631
+ */
42060
42632
  export interface $HandlebarsTemplateSettings extends $TemplateSettings {}
42061
42633
  }
42062
42634
 
@@ -42319,7 +42891,12 @@ declare module "sap/ui/core/tmpl/Template" {
42319
42891
  sContent?: string
42320
42892
  ): this;
42321
42893
  }
42322
-
42894
+ /**
42895
+ * Describes the settings that can be provided to the Template constructor.
42896
+ *
42897
+ * @deprecated (since 1.56) - use an {@link sap.ui.core.mvc.XMLView XMLView} or a {@link topic:e6bb33d076dc4f23be50c082c271b9f0 Typed View }
42898
+ * instead.
42899
+ */
42323
42900
  export interface $TemplateSettings extends $ManagedObjectSettings {
42324
42901
  /**
42325
42902
  * The Template definition as a String.
@@ -42775,7 +43352,11 @@ declare module "sap/ui/core/tmpl/TemplateControl" {
42775
43352
  fnRenderer: Function
42776
43353
  ): this;
42777
43354
  }
42778
-
43355
+ /**
43356
+ * Describes the settings that can be provided to the TemplateControl constructor.
43357
+ *
43358
+ * @deprecated (since 1.56)
43359
+ */
42779
43360
  export interface $TemplateControlSettings extends $ControlSettings {
42780
43361
  /**
42781
43362
  * The context is a data object. It can be used for default template expressions. A change of the context
@@ -42800,15 +43381,27 @@ declare module "sap/ui/core/tmpl/TemplateControl" {
42800
43381
  beforeRendering?: (oEvent: Event) => void;
42801
43382
  }
42802
43383
 
43384
+ /**
43385
+ * Parameters of the TemplateControl#afterRendering event.
43386
+ */
42803
43387
  export interface TemplateControl$AfterRenderingEventParameters {}
42804
43388
 
43389
+ /**
43390
+ * Event object of the TemplateControl#afterRendering event.
43391
+ */
42805
43392
  export type TemplateControl$AfterRenderingEvent = Event<
42806
43393
  TemplateControl$AfterRenderingEventParameters,
42807
43394
  TemplateControl
42808
43395
  >;
42809
43396
 
43397
+ /**
43398
+ * Parameters of the TemplateControl#beforeRendering event.
43399
+ */
42810
43400
  export interface TemplateControl$BeforeRenderingEventParameters {}
42811
43401
 
43402
+ /**
43403
+ * Event object of the TemplateControl#beforeRendering event.
43404
+ */
42812
43405
  export type TemplateControl$BeforeRenderingEvent = Event<
42813
43406
  TemplateControl$BeforeRenderingEventParameters,
42814
43407
  TemplateControl
@@ -43241,7 +43834,9 @@ declare module "sap/ui/core/TooltipBase" {
43241
43834
  sText?: string
43242
43835
  ): this;
43243
43836
  }
43244
-
43837
+ /**
43838
+ * Describes the settings that can be provided to the TooltipBase constructor.
43839
+ */
43245
43840
  export interface $TooltipBaseSettings extends $ControlSettings {
43246
43841
  /**
43247
43842
  * The text that is shown in the tooltip that extends the TooltipBase class, for example in RichTooltip.
@@ -43298,8 +43893,14 @@ declare module "sap/ui/core/TooltipBase" {
43298
43893
  closed?: (oEvent: Event) => void;
43299
43894
  }
43300
43895
 
43896
+ /**
43897
+ * Parameters of the TooltipBase#closed event.
43898
+ */
43301
43899
  export interface TooltipBase$ClosedEventParameters {}
43302
43900
 
43901
+ /**
43902
+ * Event object of the TooltipBase#closed event.
43903
+ */
43303
43904
  export type TooltipBase$ClosedEvent = Event<
43304
43905
  TooltipBase$ClosedEventParameters,
43305
43906
  TooltipBase
@@ -43352,10 +43953,12 @@ declare module "sap/ui/core/UIArea" {
43352
43953
  export default class UIArea extends ManagedObject {
43353
43954
  constructor();
43354
43955
  /**
43355
- * Registry of all `sap.ui.core.Element`s that currently exist.
43956
+ * Registry of all `sap.ui.core.UIArea`s that currently exist.
43356
43957
  *
43357
43958
  * @since 1.107
43358
- * @deprecated (since 1.120)
43959
+ * @deprecated (since 1.120) - without a replacement. Applications should not be interested in the set of
43960
+ * all `UIArea`s. They should only assign controls to them, by using {@link sap.ui.core.Control.prototype.placeAt Control.prototype.placeAt }
43961
+ * or use the API of a `UIArea` as reachable via {@link sap.ui.core.Control.prototype.getUIArea Control.prototype.getUIArea}.
43359
43962
  */
43360
43963
  static registry: registry;
43361
43964
 
@@ -43669,7 +44272,9 @@ declare module "sap/ui/core/UIArea" {
43669
44272
  *
43670
44273
  * The node must have an ID that will be used as ID for this instance of `UIArea`.
43671
44274
  *
43672
- * @deprecated (since 1.107.0)
44275
+ * @deprecated (since 1.107) - without a replacement. Applications should not create or modify `UIArea`s
44276
+ * programmatically. THey should only assign controls to them, by using {@link sap.ui.core.Control.prototype.placeAt Control.prototype.placeAt }
44277
+ * or use the API of a `UIArea` as reachable via {@link sap.ui.core.Control.prototype.getUIArea Control.prototype.getUIArea}.
43673
44278
  */
43674
44279
  setRootNode(
43675
44280
  /**
@@ -43685,16 +44290,20 @@ declare module "sap/ui/core/UIArea" {
43685
44290
  unlock(): void;
43686
44291
  }
43687
44292
  /**
43688
- * Registry of all `sap.ui.core.Element`s that currently exist.
44293
+ * Registry of all `sap.ui.core.UIArea`s that currently exist.
43689
44294
  *
43690
44295
  * @since 1.107
43691
- * @deprecated (since 1.120)
44296
+ * @deprecated (since 1.120) - without a replacement. Applications should not be interested in the set of
44297
+ * all `UIArea`s. They should only assign controls to them, by using {@link sap.ui.core.Control.prototype.placeAt Control.prototype.placeAt }
44298
+ * or use the API of a `UIArea` as reachable via {@link sap.ui.core.Control.prototype.getUIArea Control.prototype.getUIArea}.
43692
44299
  */
43693
44300
  interface registry {
43694
44301
  /**
43695
44302
  * Number of existing UIAreas.
43696
44303
  *
43697
- * @deprecated (since 1.120)
44304
+ * @deprecated (since 1.120) - without a replacement. Applications should not be interested in the set of
44305
+ * all `UIArea`s. They should only assign controls to them, by using {@link sap.ui.core.Control.prototype.placeAt Control.prototype.placeAt }
44306
+ * or use the API of a `UIArea` as reachable via {@link sap.ui.core.Control.prototype.getUIArea Control.prototype.getUIArea}.
43698
44307
  */
43699
44308
  size: int;
43700
44309
 
@@ -43708,7 +44317,9 @@ declare module "sap/ui/core/UIArea" {
43708
44317
  * **Note**: The returned object is created by a call to `Object.create(null)`, and therefore lacks all
43709
44318
  * methods of `Object.prototype`, e.g. `toString` etc.
43710
44319
  *
43711
- * @deprecated (since 1.120)
44320
+ * @deprecated (since 1.120) - without a replacement. Applications should not be interested in the set of
44321
+ * all `UIArea`s. They should only assign controls to them, by using {@link sap.ui.core.Control.prototype.placeAt Control.prototype.placeAt }
44322
+ * or use the API of a `UIArea` as reachable via {@link sap.ui.core.Control.prototype.getUIArea Control.prototype.getUIArea}.
43712
44323
  *
43713
44324
  * @returns Object with all UIAreas, keyed by their ID
43714
44325
  */
@@ -43736,7 +44347,9 @@ declare module "sap/ui/core/UIArea" {
43736
44347
  * in the array is not specified and might change between calls (over time and across different versions
43737
44348
  * of UI5).
43738
44349
  *
43739
- * @deprecated (since 1.120)
44350
+ * @deprecated (since 1.120) - without a replacement. Applications should not be interested in the set of
44351
+ * all `UIArea`s. They should only assign controls to them, by using {@link sap.ui.core.Control.prototype.placeAt Control.prototype.placeAt }
44352
+ * or use the API of a `UIArea` as reachable via {@link sap.ui.core.Control.prototype.getUIArea Control.prototype.getUIArea}.
43740
44353
  *
43741
44354
  * @returns Array of UIAreas matching the predicate; order is undefined and might change in newer versions
43742
44355
  * of UI5
@@ -43773,7 +44386,9 @@ declare module "sap/ui/core/UIArea" {
43773
44386
  * that the implementation of `callback` sees, depends on the usual resolution mechanism. E.g. when `callback`
43774
44387
  * was bound to some context object, that object wins over the given `thisArg`.
43775
44388
  *
43776
- * @deprecated (since 1.120)
44389
+ * @deprecated (since 1.120) - without a replacement. Applications should not be interested in the set of
44390
+ * all `UIArea`s. They should only assign controls to them, by using {@link sap.ui.core.Control.prototype.placeAt Control.prototype.placeAt }
44391
+ * or use the API of a `UIArea` as reachable via {@link sap.ui.core.Control.prototype.getUIArea Control.prototype.getUIArea}.
43777
44392
  */
43778
44393
  forEach(
43779
44394
  /**
@@ -43791,7 +44406,9 @@ declare module "sap/ui/core/UIArea" {
43791
44406
  * When the ID is `null` or `undefined` or when there's no UIArea with the given ID, then `undefined` is
43792
44407
  * returned.
43793
44408
  *
43794
- * @deprecated (since 1.120)
44409
+ * @deprecated (since 1.120) - without a replacement. Applications should not be interested in the set of
44410
+ * all `UIArea`s. They should only assign controls to them, by using {@link sap.ui.core.Control.prototype.placeAt Control.prototype.placeAt }
44411
+ * or use the API of a `UIArea` as reachable via {@link sap.ui.core.Control.prototype.getUIArea Control.prototype.getUIArea}.
43795
44412
  *
43796
44413
  * @returns UIArea with the given ID or `undefined`
43797
44414
  */
@@ -43804,6 +44421,9 @@ declare module "sap/ui/core/UIArea" {
43804
44421
  }
43805
44422
  export const registry: registry;
43806
44423
 
44424
+ /**
44425
+ * Describes the settings that can be provided to the UIArea constructor.
44426
+ */
43807
44427
  export interface $UIAreaSettings extends $ManagedObjectSettings {
43808
44428
  /**
43809
44429
  * Content that is displayed in the UIArea.
@@ -44267,6 +44887,9 @@ declare module "sap/ui/core/UIComponent" {
44267
44887
  };
44268
44888
  };
44269
44889
 
44890
+ /**
44891
+ * Describes the settings that can be provided to the UIComponent constructor.
44892
+ */
44270
44893
  export interface $UIComponentSettings extends $ComponentSettings {}
44271
44894
  }
44272
44895
 
@@ -44608,7 +45231,11 @@ declare module "sap/ui/core/util/Export" {
44608
45231
  */
44609
45232
  unbindRows(): this;
44610
45233
  }
44611
-
45234
+ /**
45235
+ * Describes the settings that can be provided to the Export constructor.
45236
+ *
45237
+ * @deprecated (since 1.73)
45238
+ */
44612
45239
  export interface $ExportSettings extends $ControlSettings {
44613
45240
  /**
44614
45241
  * Type that generates the content.
@@ -44734,7 +45361,11 @@ declare module "sap/ui/core/util/ExportCell" {
44734
45361
  sContent: string
44735
45362
  ): this;
44736
45363
  }
44737
-
45364
+ /**
45365
+ * Describes the settings that can be provided to the ExportCell constructor.
45366
+ *
45367
+ * @deprecated (since 1.73)
45368
+ */
44738
45369
  export interface $ExportCellSettings extends $ElementSettings {
44739
45370
  /**
44740
45371
  * Cell content.
@@ -44874,7 +45505,11 @@ declare module "sap/ui/core/util/ExportColumn" {
44874
45505
  oTemplate: ExportCell
44875
45506
  ): this;
44876
45507
  }
44877
-
45508
+ /**
45509
+ * Describes the settings that can be provided to the ExportColumn constructor.
45510
+ *
45511
+ * @deprecated (since 1.73)
45512
+ */
44878
45513
  export interface $ExportColumnSettings extends $ManagedObjectSettings {
44879
45514
  /**
44880
45515
  * Column name.
@@ -45046,7 +45681,11 @@ declare module "sap/ui/core/util/ExportRow" {
45046
45681
  vCell: int | string | ExportCell
45047
45682
  ): ExportCell | null;
45048
45683
  }
45049
-
45684
+ /**
45685
+ * Describes the settings that can be provided to the ExportRow constructor.
45686
+ *
45687
+ * @deprecated (since 1.73)
45688
+ */
45050
45689
  export interface $ExportRowSettings extends $ManagedObjectSettings {
45051
45690
  /**
45052
45691
  * Cells for the Export.
@@ -45303,7 +45942,11 @@ declare module "sap/ui/core/util/ExportType" {
45303
45942
  sMimeType: string
45304
45943
  ): this;
45305
45944
  }
45306
-
45945
+ /**
45946
+ * Describes the settings that can be provided to the ExportType constructor.
45947
+ *
45948
+ * @deprecated (since 1.73)
45949
+ */
45307
45950
  export interface $ExportTypeSettings extends $ManagedObjectSettings {
45308
45951
  /**
45309
45952
  * File extension.
@@ -45454,7 +46097,11 @@ declare module "sap/ui/core/util/ExportTypeCSV" {
45454
46097
  sSeparatorChar: string
45455
46098
  ): this;
45456
46099
  }
45457
-
46100
+ /**
46101
+ * Describes the settings that can be provided to the ExportTypeCSV constructor.
46102
+ *
46103
+ * @deprecated (since 1.73)
46104
+ */
45458
46105
  export interface $ExportTypeCSVSettings extends $ExportTypeSettings {
45459
46106
  /**
45460
46107
  * Separator char.
@@ -46052,6 +46699,9 @@ declare module "sap/ui/core/util/MockServer" {
46052
46699
  ): void;
46053
46700
  }
46054
46701
 
46702
+ /**
46703
+ * Describes the settings that can be provided to the MockServer constructor.
46704
+ */
46055
46705
  export interface $MockServerSettings extends $ManagedObjectSettings {
46056
46706
  /**
46057
46707
  * Getter for property `rootUri`. Has to be relative and requires a trailing '/'. It also needs to match
@@ -46474,7 +47124,9 @@ declare module "sap/ui/core/VariantLayoutData" {
46474
47124
  vMultipleLayoutData: int | string | LayoutData
46475
47125
  ): LayoutData | null;
46476
47126
  }
46477
-
47127
+ /**
47128
+ * Describes the settings that can be provided to the VariantLayoutData constructor.
47129
+ */
46478
47130
  export interface $VariantLayoutDataSettings extends $LayoutDataSettings {
46479
47131
  /**
46480
47132
  * Allows multiple LayoutData.
@@ -46647,6 +47299,11 @@ declare module "sap/ui/core/webc/WebComponent" {
46647
47299
  */
46648
47300
  export type MetadataOptionsPropertyMapping = MetadataOptions.Property.Mapping;
46649
47301
 
47302
+ /**
47303
+ * Describes the settings that can be provided to the WebComponent constructor.
47304
+ *
47305
+ * @experimental (since 1.118.0) - The API might change. It is not intended for productive usage yet!
47306
+ */
46650
47307
  export interface $WebComponentSettings extends $ControlSettings {}
46651
47308
 
46652
47309
  export namespace MetadataOptions {
@@ -46915,7 +47572,9 @@ declare module "sap/ui/core/ws/SapPcpWebSocket" {
46915
47572
  enum SUPPORTED_PROTOCOLS {
46916
47573
  v10 = "v10.pcp.sap.com",
46917
47574
  }
46918
-
47575
+ /**
47576
+ * Parameters of the SapPcpWebSocket#message event.
47577
+ */
46919
47578
  export interface SapPcpWebSocket$MessageEventParameters
46920
47579
  extends WebSocket$MessageEventParameters {
46921
47580
  /**
@@ -46924,6 +47583,9 @@ declare module "sap/ui/core/ws/SapPcpWebSocket" {
46924
47583
  pcpFields?: string;
46925
47584
  }
46926
47585
 
47586
+ /**
47587
+ * Event object of the SapPcpWebSocket#message event.
47588
+ */
46927
47589
  export type SapPcpWebSocket$MessageEvent = Event<
46928
47590
  SapPcpWebSocket$MessageEventParameters,
46929
47591
  SapPcpWebSocket
@@ -47352,7 +48014,9 @@ declare module "sap/ui/core/ws/WebSocket" {
47352
48014
  sMessage: string
47353
48015
  ): this;
47354
48016
  }
47355
-
48017
+ /**
48018
+ * Parameters of the WebSocket#close event.
48019
+ */
47356
48020
  export interface WebSocket$CloseEventParameters {
47357
48021
  /**
47358
48022
  * Close code provided by the server.
@@ -47370,18 +48034,30 @@ declare module "sap/ui/core/ws/WebSocket" {
47370
48034
  wasClean?: string;
47371
48035
  }
47372
48036
 
48037
+ /**
48038
+ * Event object of the WebSocket#close event.
48039
+ */
47373
48040
  export type WebSocket$CloseEvent = Event<
47374
48041
  WebSocket$CloseEventParameters,
47375
48042
  WebSocket
47376
48043
  >;
47377
48044
 
48045
+ /**
48046
+ * Parameters of the WebSocket#error event.
48047
+ */
47378
48048
  export interface WebSocket$ErrorEventParameters {}
47379
48049
 
48050
+ /**
48051
+ * Event object of the WebSocket#error event.
48052
+ */
47380
48053
  export type WebSocket$ErrorEvent = Event<
47381
48054
  WebSocket$ErrorEventParameters,
47382
48055
  WebSocket
47383
48056
  >;
47384
48057
 
48058
+ /**
48059
+ * Parameters of the WebSocket#message event.
48060
+ */
47385
48061
  export interface WebSocket$MessageEventParameters {
47386
48062
  /**
47387
48063
  * Received data from the server.
@@ -47389,13 +48065,22 @@ declare module "sap/ui/core/ws/WebSocket" {
47389
48065
  data?: string;
47390
48066
  }
47391
48067
 
48068
+ /**
48069
+ * Event object of the WebSocket#message event.
48070
+ */
47392
48071
  export type WebSocket$MessageEvent = Event<
47393
48072
  WebSocket$MessageEventParameters,
47394
48073
  WebSocket
47395
48074
  >;
47396
48075
 
48076
+ /**
48077
+ * Parameters of the WebSocket#open event.
48078
+ */
47397
48079
  export interface WebSocket$OpenEventParameters {}
47398
48080
 
48081
+ /**
48082
+ * Event object of the WebSocket#open event.
48083
+ */
47399
48084
  export type WebSocket$OpenEvent = Event<
47400
48085
  WebSocket$OpenEventParameters,
47401
48086
  WebSocket
@@ -47702,7 +48387,12 @@ declare module "sap/ui/core/XMLComposite" {
47702
48387
  sWidth?: CSSSize
47703
48388
  ): this;
47704
48389
  }
47705
-
48390
+ /**
48391
+ * Describes the settings that can be provided to the XMLComposite constructor.
48392
+ *
48393
+ * @deprecated (since 1.88) - use {@link topic:c1512f6ce1454ff1913e3857bad56392 Standard Composite Controls}
48394
+ * @experimental (since 1.56.0)
48395
+ */
47706
48396
  export interface $XMLCompositeSettings extends $ControlSettings {
47707
48397
  /**
47708
48398
  * The width
@@ -51792,7 +52482,9 @@ declare module "sap/ui/model/Binding" {
51792
52482
  oModel: object
51793
52483
  ): boolean;
51794
52484
  }
51795
-
52485
+ /**
52486
+ * Parameters of the Binding#AggregatedDataStateChange event.
52487
+ */
51796
52488
  export interface Binding$AggregatedDataStateChangeEventParameters {
51797
52489
  /**
51798
52490
  * The `DataState` object of the binding
@@ -51800,11 +52492,17 @@ declare module "sap/ui/model/Binding" {
51800
52492
  dataState?: DataState;
51801
52493
  }
51802
52494
 
52495
+ /**
52496
+ * Event object of the Binding#AggregatedDataStateChange event.
52497
+ */
51803
52498
  export type Binding$AggregatedDataStateChangeEvent = Event<
51804
52499
  Binding$AggregatedDataStateChangeEventParameters,
51805
52500
  Binding
51806
52501
  >;
51807
52502
 
52503
+ /**
52504
+ * Parameters of the Binding#change event.
52505
+ */
51808
52506
  export interface Binding$ChangeEventParameters {
51809
52507
  /**
51810
52508
  * A string stating the reason for the data change; some change reasons can be found in {@link sap.ui.model.ChangeReason},
@@ -51813,11 +52511,17 @@ declare module "sap/ui/model/Binding" {
51813
52511
  reason?: string;
51814
52512
  }
51815
52513
 
52514
+ /**
52515
+ * Event object of the Binding#change event.
52516
+ */
51816
52517
  export type Binding$ChangeEvent = Event<
51817
52518
  Binding$ChangeEventParameters,
51818
52519
  Binding
51819
52520
  >;
51820
52521
 
52522
+ /**
52523
+ * Parameters of the Binding#dataReceived event.
52524
+ */
51821
52525
  export interface Binding$DataReceivedEventParameters {
51822
52526
  /**
51823
52527
  * The data received; is `undefined` in error cases
@@ -51825,18 +52529,30 @@ declare module "sap/ui/model/Binding" {
51825
52529
  data?: string;
51826
52530
  }
51827
52531
 
52532
+ /**
52533
+ * Event object of the Binding#dataReceived event.
52534
+ */
51828
52535
  export type Binding$DataReceivedEvent = Event<
51829
52536
  Binding$DataReceivedEventParameters,
51830
52537
  Binding
51831
52538
  >;
51832
52539
 
52540
+ /**
52541
+ * Parameters of the Binding#dataRequested event.
52542
+ */
51833
52543
  export interface Binding$DataRequestedEventParameters {}
51834
52544
 
52545
+ /**
52546
+ * Event object of the Binding#dataRequested event.
52547
+ */
51835
52548
  export type Binding$DataRequestedEvent = Event<
51836
52549
  Binding$DataRequestedEventParameters,
51837
52550
  Binding
51838
52551
  >;
51839
52552
 
52553
+ /**
52554
+ * Parameters of the Binding#DataStateChange event.
52555
+ */
51840
52556
  export interface Binding$DataStateChangeEventParameters {
51841
52557
  /**
51842
52558
  * The `DataState` object of the binding
@@ -51844,6 +52560,9 @@ declare module "sap/ui/model/Binding" {
51844
52560
  dataState?: DataState;
51845
52561
  }
51846
52562
 
52563
+ /**
52564
+ * Event object of the Binding#DataStateChange event.
52565
+ */
51847
52566
  export type Binding$DataStateChangeEvent = Event<
51848
52567
  Binding$DataStateChangeEventParameters,
51849
52568
  Binding
@@ -54969,16 +55688,39 @@ declare module "sap/ui/model/ListBinding" {
54969
55688
  */
54970
55689
  update(): void;
54971
55690
  }
54972
-
55691
+ /**
55692
+ * Parameters of the ListBinding#filter event.
55693
+ *
55694
+ * @deprecated (since 1.11) - use the `change` event. It now contains a parameter `(reason : "filter")`
55695
+ * when a filter event is fired.
55696
+ */
54973
55697
  export interface ListBinding$FilterEventParameters {}
54974
55698
 
55699
+ /**
55700
+ * Event object of the ListBinding#filter event.
55701
+ *
55702
+ * @deprecated (since 1.11) - use the `change` event. It now contains a parameter `(reason : "filter")`
55703
+ * when a filter event is fired.
55704
+ */
54975
55705
  export type ListBinding$FilterEvent = Event<
54976
55706
  ListBinding$FilterEventParameters,
54977
55707
  ListBinding
54978
55708
  >;
54979
55709
 
55710
+ /**
55711
+ * Parameters of the ListBinding#sort event.
55712
+ *
55713
+ * @deprecated (since 1.11) - use the `change` event. It now contains a parameter `(reason : "sort")` when
55714
+ * a sorter event is fired.
55715
+ */
54980
55716
  export interface ListBinding$SortEventParameters {}
54981
55717
 
55718
+ /**
55719
+ * Event object of the ListBinding#sort event.
55720
+ *
55721
+ * @deprecated (since 1.11) - use the `change` event. It now contains a parameter `(reason : "sort")` when
55722
+ * a sorter event is fired.
55723
+ */
54982
55724
  export type ListBinding$SortEvent = Event<
54983
55725
  ListBinding$SortEventParameters,
54984
55726
  ListBinding
@@ -55900,7 +56642,9 @@ declare module "sap/ui/model/Model" {
55900
56642
  iSizeLimit: int
55901
56643
  ): void;
55902
56644
  }
55903
-
56645
+ /**
56646
+ * Parameters of the Model#parseError event.
56647
+ */
55904
56648
  export interface Model$ParseErrorEventParameters {
55905
56649
  errorCode?: int;
55906
56650
 
@@ -55917,11 +56661,17 @@ declare module "sap/ui/model/Model" {
55917
56661
  filepos?: int;
55918
56662
  }
55919
56663
 
56664
+ /**
56665
+ * Event object of the Model#parseError event.
56666
+ */
55920
56667
  export type Model$ParseErrorEvent = Event<
55921
56668
  Model$ParseErrorEventParameters,
55922
56669
  Model
55923
56670
  >;
55924
56671
 
56672
+ /**
56673
+ * Parameters of the Model#propertyChange event.
56674
+ */
55925
56675
  export interface Model$PropertyChangeEventParameters {
55926
56676
  /**
55927
56677
  * The cause of the property value change
@@ -55944,11 +56694,17 @@ declare module "sap/ui/model/Model" {
55944
56694
  value?: any;
55945
56695
  }
55946
56696
 
56697
+ /**
56698
+ * Event object of the Model#propertyChange event.
56699
+ */
55947
56700
  export type Model$PropertyChangeEvent = Event<
55948
56701
  Model$PropertyChangeEventParameters,
55949
56702
  Model
55950
56703
  >;
55951
56704
 
56705
+ /**
56706
+ * Parameters of the Model#requestCompleted event.
56707
+ */
55952
56708
  export interface Model$RequestCompletedEventParameters {
55953
56709
  /**
55954
56710
  * URL which was sent to the back end
@@ -55987,11 +56743,17 @@ declare module "sap/ui/model/Model" {
55987
56743
  infoObject?: object;
55988
56744
  }
55989
56745
 
56746
+ /**
56747
+ * Event object of the Model#requestCompleted event.
56748
+ */
55990
56749
  export type Model$RequestCompletedEvent = Event<
55991
56750
  Model$RequestCompletedEventParameters,
55992
56751
  Model
55993
56752
  >;
55994
56753
 
56754
+ /**
56755
+ * Parameters of the Model#requestFailed event.
56756
+ */
55995
56757
  export interface Model$RequestFailedEventParameters {
55996
56758
  /**
55997
56759
  * A text that describes the failure.
@@ -56014,11 +56776,17 @@ declare module "sap/ui/model/Model" {
56014
56776
  responseText?: string;
56015
56777
  }
56016
56778
 
56779
+ /**
56780
+ * Event object of the Model#requestFailed event.
56781
+ */
56017
56782
  export type Model$RequestFailedEvent = Event<
56018
56783
  Model$RequestFailedEventParameters,
56019
56784
  Model
56020
56785
  >;
56021
56786
 
56787
+ /**
56788
+ * Parameters of the Model#requestSent event.
56789
+ */
56022
56790
  export interface Model$RequestSentEventParameters {
56023
56791
  /**
56024
56792
  * The url which is sent to the back end
@@ -56046,6 +56814,9 @@ declare module "sap/ui/model/Model" {
56046
56814
  infoObject?: object;
56047
56815
  }
56048
56816
 
56817
+ /**
56818
+ * Event object of the Model#requestSent event.
56819
+ */
56049
56820
  export type Model$RequestSentEvent = Event<
56050
56821
  Model$RequestSentEventParameters,
56051
56822
  Model
@@ -56874,16 +57645,27 @@ declare module "sap/ui/model/odata/ODataAnnotations" {
56874
57645
  }
56875
57646
  ): boolean;
56876
57647
  }
56877
-
57648
+ /**
57649
+ * Parameters of the ODataAnnotations#failed event.
57650
+ */
56878
57651
  export interface ODataAnnotations$FailedEventParameters {}
56879
57652
 
57653
+ /**
57654
+ * Event object of the ODataAnnotations#failed event.
57655
+ */
56880
57656
  export type ODataAnnotations$FailedEvent = Event<
56881
57657
  ODataAnnotations$FailedEventParameters,
56882
57658
  ODataAnnotations
56883
57659
  >;
56884
57660
 
57661
+ /**
57662
+ * Parameters of the ODataAnnotations#loaded event.
57663
+ */
56885
57664
  export interface ODataAnnotations$LoadedEventParameters {}
56886
57665
 
57666
+ /**
57667
+ * Event object of the ODataAnnotations#loaded event.
57668
+ */
56887
57669
  export type ODataAnnotations$LoadedEvent = Event<
56888
57670
  ODataAnnotations$LoadedEventParameters,
56889
57671
  ODataAnnotations
@@ -57578,16 +58360,27 @@ declare module "sap/ui/model/odata/ODataMetadata" {
57578
58360
  */
57579
58361
  refresh(): Promise<any>;
57580
58362
  }
57581
-
58363
+ /**
58364
+ * Parameters of the ODataMetadata#failed event.
58365
+ */
57582
58366
  export interface ODataMetadata$FailedEventParameters {}
57583
58367
 
58368
+ /**
58369
+ * Event object of the ODataMetadata#failed event.
58370
+ */
57584
58371
  export type ODataMetadata$FailedEvent = Event<
57585
58372
  ODataMetadata$FailedEventParameters,
57586
58373
  ODataMetadata
57587
58374
  >;
57588
58375
 
58376
+ /**
58377
+ * Parameters of the ODataMetadata#loaded event.
58378
+ */
57589
58379
  export interface ODataMetadata$LoadedEventParameters {}
57590
58380
 
58381
+ /**
58382
+ * Event object of the ODataMetadata#loaded event.
58383
+ */
57591
58384
  export type ODataMetadata$LoadedEvent = Event<
57592
58385
  ODataMetadata$LoadedEventParameters,
57593
58386
  ODataMetadata
@@ -60143,30 +60936,53 @@ declare module "sap/ui/model/odata/ODataModel" {
60143
60936
  bForceUpdate?: boolean
60144
60937
  ): void;
60145
60938
  }
60146
-
60939
+ /**
60940
+ * Parameters of the ODataModel#annotationsFailed event.
60941
+ */
60147
60942
  export interface ODataModel$AnnotationsFailedEventParameters {}
60148
60943
 
60944
+ /**
60945
+ * Event object of the ODataModel#annotationsFailed event.
60946
+ */
60149
60947
  export type ODataModel$AnnotationsFailedEvent = Event<
60150
60948
  ODataModel$AnnotationsFailedEventParameters,
60151
60949
  ODataModel
60152
60950
  >;
60153
60951
 
60952
+ /**
60953
+ * Parameters of the ODataModel#annotationsLoaded event.
60954
+ */
60154
60955
  export interface ODataModel$AnnotationsLoadedEventParameters {}
60155
60956
 
60957
+ /**
60958
+ * Event object of the ODataModel#annotationsLoaded event.
60959
+ */
60156
60960
  export type ODataModel$AnnotationsLoadedEvent = Event<
60157
60961
  ODataModel$AnnotationsLoadedEventParameters,
60158
60962
  ODataModel
60159
60963
  >;
60160
60964
 
60965
+ /**
60966
+ * Parameters of the ODataModel#metadataFailed event.
60967
+ */
60161
60968
  export interface ODataModel$MetadataFailedEventParameters {}
60162
60969
 
60970
+ /**
60971
+ * Event object of the ODataModel#metadataFailed event.
60972
+ */
60163
60973
  export type ODataModel$MetadataFailedEvent = Event<
60164
60974
  ODataModel$MetadataFailedEventParameters,
60165
60975
  ODataModel
60166
60976
  >;
60167
60977
 
60978
+ /**
60979
+ * Parameters of the ODataModel#metadataLoaded event.
60980
+ */
60168
60981
  export interface ODataModel$MetadataLoadedEventParameters {}
60169
60982
 
60983
+ /**
60984
+ * Event object of the ODataModel#metadataLoaded event.
60985
+ */
60170
60986
  export type ODataModel$MetadataLoadedEvent = Event<
60171
60987
  ODataModel$MetadataLoadedEventParameters,
60172
60988
  ODataModel
@@ -65053,9 +65869,14 @@ declare module "sap/ui/model/odata/v2/ODataListBinding" {
65053
65869
  bReturnSuccess?: boolean
65054
65870
  ): this;
65055
65871
  }
65056
-
65872
+ /**
65873
+ * Parameters of the ODataListBinding#createActivate event.
65874
+ */
65057
65875
  export interface ODataListBinding$CreateActivateEventParameters {}
65058
65876
 
65877
+ /**
65878
+ * Event object of the ODataListBinding#createActivate event.
65879
+ */
65059
65880
  export type ODataListBinding$CreateActivateEvent = Event<
65060
65881
  ODataListBinding$CreateActivateEventParameters,
65061
65882
  ODataListBinding
@@ -67704,6 +68525,9 @@ declare module "sap/ui/model/odata/v2/ODataModel" {
67704
68525
  single?: boolean;
67705
68526
  };
67706
68527
 
68528
+ /**
68529
+ * Parameters of the ODataModel#annotationsFailed event.
68530
+ */
67707
68531
  export interface ODataModel$AnnotationsFailedEventParameters {
67708
68532
  /**
67709
68533
  * An array of Errors
@@ -67711,11 +68535,17 @@ declare module "sap/ui/model/odata/v2/ODataModel" {
67711
68535
  result?: Error[];
67712
68536
  }
67713
68537
 
68538
+ /**
68539
+ * Event object of the ODataModel#annotationsFailed event.
68540
+ */
67714
68541
  export type ODataModel$AnnotationsFailedEvent = Event<
67715
68542
  ODataModel$AnnotationsFailedEventParameters,
67716
68543
  ODataModel
67717
68544
  >;
67718
68545
 
68546
+ /**
68547
+ * Parameters of the ODataModel#annotationsLoaded event.
68548
+ */
67719
68549
  export interface ODataModel$AnnotationsLoadedEventParameters {
67720
68550
  /**
67721
68551
  * An array consisting of one or several annotation sources and/or errors containing a source property and
@@ -67724,11 +68554,17 @@ declare module "sap/ui/model/odata/v2/ODataModel" {
67724
68554
  result?: Source[];
67725
68555
  }
67726
68556
 
68557
+ /**
68558
+ * Event object of the ODataModel#annotationsLoaded event.
68559
+ */
67727
68560
  export type ODataModel$AnnotationsLoadedEvent = Event<
67728
68561
  ODataModel$AnnotationsLoadedEventParameters,
67729
68562
  ODataModel
67730
68563
  >;
67731
68564
 
68565
+ /**
68566
+ * Parameters of the ODataModel#batchRequestCompleted event.
68567
+ */
67732
68568
  export interface ODataModel$BatchRequestCompletedEventParameters {
67733
68569
  /**
67734
68570
  * The request ID
@@ -67773,11 +68609,17 @@ declare module "sap/ui/model/odata/v2/ODataModel" {
67773
68609
  response?: object;
67774
68610
  }
67775
68611
 
68612
+ /**
68613
+ * Event object of the ODataModel#batchRequestCompleted event.
68614
+ */
67776
68615
  export type ODataModel$BatchRequestCompletedEvent = Event<
67777
68616
  ODataModel$BatchRequestCompletedEventParameters,
67778
68617
  ODataModel
67779
68618
  >;
67780
68619
 
68620
+ /**
68621
+ * Parameters of the ODataModel#batchRequestFailed event.
68622
+ */
67781
68623
  export interface ODataModel$BatchRequestFailedEventParameters {
67782
68624
  /**
67783
68625
  * The request ID
@@ -67822,11 +68664,17 @@ declare module "sap/ui/model/odata/v2/ODataModel" {
67822
68664
  requests?: any[];
67823
68665
  }
67824
68666
 
68667
+ /**
68668
+ * Event object of the ODataModel#batchRequestFailed event.
68669
+ */
67825
68670
  export type ODataModel$BatchRequestFailedEvent = Event<
67826
68671
  ODataModel$BatchRequestFailedEventParameters,
67827
68672
  ODataModel
67828
68673
  >;
67829
68674
 
68675
+ /**
68676
+ * Parameters of the ODataModel#batchRequestSent event.
68677
+ */
67830
68678
  export interface ODataModel$BatchRequestSentEventParameters {
67831
68679
  /**
67832
68680
  * The URL which is sent to the backend
@@ -67850,11 +68698,17 @@ declare module "sap/ui/model/odata/v2/ODataModel" {
67850
68698
  requests?: any[];
67851
68699
  }
67852
68700
 
68701
+ /**
68702
+ * Event object of the ODataModel#batchRequestSent event.
68703
+ */
67853
68704
  export type ODataModel$BatchRequestSentEvent = Event<
67854
68705
  ODataModel$BatchRequestSentEventParameters,
67855
68706
  ODataModel
67856
68707
  >;
67857
68708
 
68709
+ /**
68710
+ * Parameters of the ODataModel#metadataFailed event.
68711
+ */
67858
68712
  export interface ODataModel$MetadataFailedEventParameters {
67859
68713
  /**
67860
68714
  * The parsed metadata
@@ -67887,11 +68741,17 @@ declare module "sap/ui/model/odata/v2/ODataModel" {
67887
68741
  response?: object;
67888
68742
  }
67889
68743
 
68744
+ /**
68745
+ * Event object of the ODataModel#metadataFailed event.
68746
+ */
67890
68747
  export type ODataModel$MetadataFailedEvent = Event<
67891
68748
  ODataModel$MetadataFailedEventParameters,
67892
68749
  ODataModel
67893
68750
  >;
67894
68751
 
68752
+ /**
68753
+ * Parameters of the ODataModel#metadataLoaded event.
68754
+ */
67895
68755
  export interface ODataModel$MetadataLoadedEventParameters {
67896
68756
  /**
67897
68757
  * The parsed metadata
@@ -67899,11 +68759,17 @@ declare module "sap/ui/model/odata/v2/ODataModel" {
67899
68759
  metadata?: string;
67900
68760
  }
67901
68761
 
68762
+ /**
68763
+ * Event object of the ODataModel#metadataLoaded event.
68764
+ */
67902
68765
  export type ODataModel$MetadataLoadedEvent = Event<
67903
68766
  ODataModel$MetadataLoadedEventParameters,
67904
68767
  ODataModel
67905
68768
  >;
67906
68769
 
68770
+ /**
68771
+ * Parameters of the ODataModel#requestCompleted event.
68772
+ */
67907
68773
  export interface ODataModel$RequestCompletedEventParameters
67908
68774
  extends Model$RequestCompletedEventParameters {
67909
68775
  /**
@@ -67928,11 +68794,17 @@ declare module "sap/ui/model/odata/v2/ODataModel" {
67928
68794
  response?: object;
67929
68795
  }
67930
68796
 
68797
+ /**
68798
+ * Event object of the ODataModel#requestCompleted event.
68799
+ */
67931
68800
  export type ODataModel$RequestCompletedEvent = Event<
67932
68801
  ODataModel$RequestCompletedEventParameters,
67933
68802
  ODataModel
67934
68803
  >;
67935
68804
 
68805
+ /**
68806
+ * Parameters of the ODataModel#requestFailed event.
68807
+ */
67936
68808
  export interface ODataModel$RequestFailedEventParameters
67937
68809
  extends Model$RequestFailedEventParameters {
67938
68810
  /**
@@ -67972,11 +68844,17 @@ declare module "sap/ui/model/odata/v2/ODataModel" {
67972
68844
  response?: object;
67973
68845
  }
67974
68846
 
68847
+ /**
68848
+ * Event object of the ODataModel#requestFailed event.
68849
+ */
67975
68850
  export type ODataModel$RequestFailedEvent = Event<
67976
68851
  ODataModel$RequestFailedEventParameters,
67977
68852
  ODataModel
67978
68853
  >;
67979
68854
 
68855
+ /**
68856
+ * Parameters of the ODataModel#requestSent event.
68857
+ */
67980
68858
  export interface ODataModel$RequestSentEventParameters
67981
68859
  extends Model$RequestSentEventParameters {
67982
68860
  /**
@@ -67995,6 +68873,9 @@ declare module "sap/ui/model/odata/v2/ODataModel" {
67995
68873
  headers?: Record<string, string>;
67996
68874
  }
67997
68875
 
68876
+ /**
68877
+ * Event object of the ODataModel#requestSent event.
68878
+ */
67998
68879
  export type ODataModel$RequestSentEvent = Event<
67999
68880
  ODataModel$RequestSentEventParameters,
68000
68881
  ODataModel
@@ -70122,15 +71003,23 @@ declare module "sap/ui/model/odata/v4/ODataContextBinding" {
70122
71003
  */
70123
71004
  toString(): string;
70124
71005
  }
70125
-
71006
+ /**
71007
+ * Parameters of the ODataContextBinding#change event.
71008
+ */
70126
71009
  export interface ODataContextBinding$ChangeEventParameters
70127
71010
  extends Binding$ChangeEventParameters {}
70128
71011
 
71012
+ /**
71013
+ * Event object of the ODataContextBinding#change event.
71014
+ */
70129
71015
  export type ODataContextBinding$ChangeEvent = Event<
70130
71016
  ODataContextBinding$ChangeEventParameters,
70131
71017
  ODataContextBinding
70132
71018
  >;
70133
71019
 
71020
+ /**
71021
+ * Parameters of the ODataContextBinding#dataReceived event.
71022
+ */
70134
71023
  export interface ODataContextBinding$DataReceivedEventParameters
70135
71024
  extends Binding$DataReceivedEventParameters {
70136
71025
  /**
@@ -70140,19 +71029,31 @@ declare module "sap/ui/model/odata/v4/ODataContextBinding" {
70140
71029
  error?: Error;
70141
71030
  }
70142
71031
 
71032
+ /**
71033
+ * Event object of the ODataContextBinding#dataReceived event.
71034
+ */
70143
71035
  export type ODataContextBinding$DataReceivedEvent = Event<
70144
71036
  ODataContextBinding$DataReceivedEventParameters,
70145
71037
  ODataContextBinding
70146
71038
  >;
70147
71039
 
71040
+ /**
71041
+ * Parameters of the ODataContextBinding#dataRequested event.
71042
+ */
70148
71043
  export interface ODataContextBinding$DataRequestedEventParameters
70149
71044
  extends Binding$DataRequestedEventParameters {}
70150
71045
 
71046
+ /**
71047
+ * Event object of the ODataContextBinding#dataRequested event.
71048
+ */
70151
71049
  export type ODataContextBinding$DataRequestedEvent = Event<
70152
71050
  ODataContextBinding$DataRequestedEventParameters,
70153
71051
  ODataContextBinding
70154
71052
  >;
70155
71053
 
71054
+ /**
71055
+ * Parameters of the ODataContextBinding#patchCompleted event.
71056
+ */
70156
71057
  export interface ODataContextBinding$PatchCompletedEventParameters {
70157
71058
  /**
70158
71059
  * Whether all PATCHes are successfully processed
@@ -70160,13 +71061,22 @@ declare module "sap/ui/model/odata/v4/ODataContextBinding" {
70160
71061
  success?: boolean;
70161
71062
  }
70162
71063
 
71064
+ /**
71065
+ * Event object of the ODataContextBinding#patchCompleted event.
71066
+ */
70163
71067
  export type ODataContextBinding$PatchCompletedEvent = Event<
70164
71068
  ODataContextBinding$PatchCompletedEventParameters,
70165
71069
  ODataContextBinding
70166
71070
  >;
70167
71071
 
71072
+ /**
71073
+ * Parameters of the ODataContextBinding#patchSent event.
71074
+ */
70168
71075
  export interface ODataContextBinding$PatchSentEventParameters {}
70169
71076
 
71077
+ /**
71078
+ * Event object of the ODataContextBinding#patchSent event.
71079
+ */
70170
71080
  export type ODataContextBinding$PatchSentEvent = Event<
70171
71081
  ODataContextBinding$PatchSentEventParameters,
70172
71082
  ODataContextBinding
@@ -71301,7 +72211,9 @@ declare module "sap/ui/model/odata/v4/ODataListBinding" {
71301
72211
  }
71302
72212
  | undefined;
71303
72213
  }
71304
-
72214
+ /**
72215
+ * Parameters of the ODataListBinding#change event.
72216
+ */
71305
72217
  export interface ODataListBinding$ChangeEventParameters
71306
72218
  extends Binding$ChangeEventParameters {
71307
72219
  /**
@@ -71312,11 +72224,17 @@ declare module "sap/ui/model/odata/v4/ODataListBinding" {
71312
72224
  detailedReason?: string;
71313
72225
  }
71314
72226
 
72227
+ /**
72228
+ * Event object of the ODataListBinding#change event.
72229
+ */
71315
72230
  export type ODataListBinding$ChangeEvent = Event<
71316
72231
  ODataListBinding$ChangeEventParameters,
71317
72232
  ODataListBinding
71318
72233
  >;
71319
72234
 
72235
+ /**
72236
+ * Parameters of the ODataListBinding#createActivate event.
72237
+ */
71320
72238
  export interface ODataListBinding$CreateActivateEventParameters {
71321
72239
  /**
71322
72240
  * The affected context
@@ -71324,11 +72242,17 @@ declare module "sap/ui/model/odata/v4/ODataListBinding" {
71324
72242
  context?: Context;
71325
72243
  }
71326
72244
 
72245
+ /**
72246
+ * Event object of the ODataListBinding#createActivate event.
72247
+ */
71327
72248
  export type ODataListBinding$CreateActivateEvent = Event<
71328
72249
  ODataListBinding$CreateActivateEventParameters,
71329
72250
  ODataListBinding
71330
72251
  >;
71331
72252
 
72253
+ /**
72254
+ * Parameters of the ODataListBinding#createCompleted event.
72255
+ */
71332
72256
  export interface ODataListBinding$CreateCompletedEventParameters {
71333
72257
  /**
71334
72258
  * The context for the created entity
@@ -71341,11 +72265,17 @@ declare module "sap/ui/model/odata/v4/ODataListBinding" {
71341
72265
  success?: boolean;
71342
72266
  }
71343
72267
 
72268
+ /**
72269
+ * Event object of the ODataListBinding#createCompleted event.
72270
+ */
71344
72271
  export type ODataListBinding$CreateCompletedEvent = Event<
71345
72272
  ODataListBinding$CreateCompletedEventParameters,
71346
72273
  ODataListBinding
71347
72274
  >;
71348
72275
 
72276
+ /**
72277
+ * Parameters of the ODataListBinding#createSent event.
72278
+ */
71349
72279
  export interface ODataListBinding$CreateSentEventParameters {
71350
72280
  /**
71351
72281
  * The context for the created entity
@@ -71353,11 +72283,17 @@ declare module "sap/ui/model/odata/v4/ODataListBinding" {
71353
72283
  context?: Context;
71354
72284
  }
71355
72285
 
72286
+ /**
72287
+ * Event object of the ODataListBinding#createSent event.
72288
+ */
71356
72289
  export type ODataListBinding$CreateSentEvent = Event<
71357
72290
  ODataListBinding$CreateSentEventParameters,
71358
72291
  ODataListBinding
71359
72292
  >;
71360
72293
 
72294
+ /**
72295
+ * Parameters of the ODataListBinding#dataReceived event.
72296
+ */
71361
72297
  export interface ODataListBinding$DataReceivedEventParameters
71362
72298
  extends Binding$DataReceivedEventParameters {
71363
72299
  /**
@@ -71367,19 +72303,31 @@ declare module "sap/ui/model/odata/v4/ODataListBinding" {
71367
72303
  error?: Error;
71368
72304
  }
71369
72305
 
72306
+ /**
72307
+ * Event object of the ODataListBinding#dataReceived event.
72308
+ */
71370
72309
  export type ODataListBinding$DataReceivedEvent = Event<
71371
72310
  ODataListBinding$DataReceivedEventParameters,
71372
72311
  ODataListBinding
71373
72312
  >;
71374
72313
 
72314
+ /**
72315
+ * Parameters of the ODataListBinding#dataRequested event.
72316
+ */
71375
72317
  export interface ODataListBinding$DataRequestedEventParameters
71376
72318
  extends Binding$DataRequestedEventParameters {}
71377
72319
 
72320
+ /**
72321
+ * Event object of the ODataListBinding#dataRequested event.
72322
+ */
71378
72323
  export type ODataListBinding$DataRequestedEvent = Event<
71379
72324
  ODataListBinding$DataRequestedEventParameters,
71380
72325
  ODataListBinding
71381
72326
  >;
71382
72327
 
72328
+ /**
72329
+ * Parameters of the ODataListBinding#patchCompleted event.
72330
+ */
71383
72331
  export interface ODataListBinding$PatchCompletedEventParameters {
71384
72332
  /**
71385
72333
  * Whether all PATCHes are successfully processed
@@ -71387,18 +72335,30 @@ declare module "sap/ui/model/odata/v4/ODataListBinding" {
71387
72335
  success?: boolean;
71388
72336
  }
71389
72337
 
72338
+ /**
72339
+ * Event object of the ODataListBinding#patchCompleted event.
72340
+ */
71390
72341
  export type ODataListBinding$PatchCompletedEvent = Event<
71391
72342
  ODataListBinding$PatchCompletedEventParameters,
71392
72343
  ODataListBinding
71393
72344
  >;
71394
72345
 
72346
+ /**
72347
+ * Parameters of the ODataListBinding#patchSent event.
72348
+ */
71395
72349
  export interface ODataListBinding$PatchSentEventParameters {}
71396
72350
 
72351
+ /**
72352
+ * Event object of the ODataListBinding#patchSent event.
72353
+ */
71397
72354
  export type ODataListBinding$PatchSentEvent = Event<
71398
72355
  ODataListBinding$PatchSentEventParameters,
71399
72356
  ODataListBinding
71400
72357
  >;
71401
72358
 
72359
+ /**
72360
+ * Parameters of the ODataListBinding#refresh event.
72361
+ */
71402
72362
  export interface ODataListBinding$RefreshEventParameters {
71403
72363
  /**
71404
72364
  * The reason for the 'refresh' event could be
@@ -71416,6 +72376,9 @@ declare module "sap/ui/model/odata/v4/ODataListBinding" {
71416
72376
  reason?: ChangeReason;
71417
72377
  }
71418
72378
 
72379
+ /**
72380
+ * Event object of the ODataListBinding#refresh event.
72381
+ */
71419
72382
  export type ODataListBinding$RefreshEvent = Event<
71420
72383
  ODataListBinding$RefreshEventParameters,
71421
72384
  ODataListBinding
@@ -71923,7 +72886,7 @@ declare module "sap/ui/model/odata/v4/ODataMetaModel" {
71923
72886
  * must refer to a function in `mParameters.scope` in case of a relative name starting with a dot, which
71924
72887
  * is stripped before lookup; see the `<template:alias>` instruction for XML Templating. In case of an
71925
72888
  * absolute name, it is searched in `mParameters.scope` first and then in the global namespace. (Using the
71926
- * global namespace is @deprecated as of version 1.120.3). The names "requestCurrencyCodes" and "requestUnitsOfMeasure"
72889
+ * global namespace is deprecated as of version 1.120.3). The names "requestCurrencyCodes" and "requestUnitsOfMeasure"
71927
72890
  * default to {@link #requestCurrencyCodes} and {@link #requestUnitsOfMeasure} resp. if not present in `mParameters.scope`.
71928
72891
  * This function is called with the current object (or primitive value) and additional details and returns
71929
72892
  * the result of this {@link #requestObject} call. The additional details are given as an object with the
@@ -73285,7 +74248,9 @@ declare module "sap/ui/model/odata/v4/ODataModel" {
73285
74248
  */
73286
74249
  toString(): string;
73287
74250
  }
73288
-
74251
+ /**
74252
+ * Parameters of the ODataModel#dataReceived event.
74253
+ */
73289
74254
  export interface ODataModel$DataReceivedEventParameters {
73290
74255
  /**
73291
74256
  * An empty data object if a back-end request succeeds
@@ -73304,11 +74269,17 @@ declare module "sap/ui/model/odata/v4/ODataModel" {
73304
74269
  path?: string;
73305
74270
  }
73306
74271
 
74272
+ /**
74273
+ * Event object of the ODataModel#dataReceived event.
74274
+ */
73307
74275
  export type ODataModel$DataReceivedEvent = Event<
73308
74276
  ODataModel$DataReceivedEventParameters,
73309
74277
  ODataModel
73310
74278
  >;
73311
74279
 
74280
+ /**
74281
+ * Parameters of the ODataModel#dataRequested event.
74282
+ */
73312
74283
  export interface ODataModel$DataRequestedEventParameters {
73313
74284
  /**
73314
74285
  * The absolute path to the entity which caused the event. The path is only provided for additional property
@@ -73317,19 +74288,31 @@ declare module "sap/ui/model/odata/v4/ODataModel" {
73317
74288
  path?: string;
73318
74289
  }
73319
74290
 
74291
+ /**
74292
+ * Event object of the ODataModel#dataRequested event.
74293
+ */
73320
74294
  export type ODataModel$DataRequestedEvent = Event<
73321
74295
  ODataModel$DataRequestedEventParameters,
73322
74296
  ODataModel
73323
74297
  >;
73324
74298
 
74299
+ /**
74300
+ * Parameters of the ODataModel#parseError event.
74301
+ */
73325
74302
  export interface ODataModel$ParseErrorEventParameters
73326
74303
  extends Model$ParseErrorEventParameters {}
73327
74304
 
74305
+ /**
74306
+ * Event object of the ODataModel#parseError event.
74307
+ */
73328
74308
  export type ODataModel$ParseErrorEvent = Event<
73329
74309
  ODataModel$ParseErrorEventParameters,
73330
74310
  ODataModel
73331
74311
  >;
73332
74312
 
74313
+ /**
74314
+ * Parameters of the ODataModel#propertyChange event.
74315
+ */
73333
74316
  export interface ODataModel$PropertyChangeEventParameters
73334
74317
  extends Model$PropertyChangeEventParameters {
73335
74318
  /**
@@ -73344,37 +74327,64 @@ declare module "sap/ui/model/odata/v4/ODataModel" {
73344
74327
  resolvedPath?: string;
73345
74328
  }
73346
74329
 
74330
+ /**
74331
+ * Event object of the ODataModel#propertyChange event.
74332
+ */
73347
74333
  export type ODataModel$PropertyChangeEvent = Event<
73348
74334
  ODataModel$PropertyChangeEventParameters,
73349
74335
  ODataModel
73350
74336
  >;
73351
74337
 
74338
+ /**
74339
+ * Parameters of the ODataModel#requestCompleted event.
74340
+ */
73352
74341
  export interface ODataModel$RequestCompletedEventParameters
73353
74342
  extends Model$RequestCompletedEventParameters {}
73354
74343
 
74344
+ /**
74345
+ * Event object of the ODataModel#requestCompleted event.
74346
+ */
73355
74347
  export type ODataModel$RequestCompletedEvent = Event<
73356
74348
  ODataModel$RequestCompletedEventParameters,
73357
74349
  ODataModel
73358
74350
  >;
73359
74351
 
74352
+ /**
74353
+ * Parameters of the ODataModel#requestFailed event.
74354
+ */
73360
74355
  export interface ODataModel$RequestFailedEventParameters
73361
74356
  extends Model$RequestFailedEventParameters {}
73362
74357
 
74358
+ /**
74359
+ * Event object of the ODataModel#requestFailed event.
74360
+ */
73363
74361
  export type ODataModel$RequestFailedEvent = Event<
73364
74362
  ODataModel$RequestFailedEventParameters,
73365
74363
  ODataModel
73366
74364
  >;
73367
74365
 
74366
+ /**
74367
+ * Parameters of the ODataModel#requestSent event.
74368
+ */
73368
74369
  export interface ODataModel$RequestSentEventParameters
73369
74370
  extends Model$RequestSentEventParameters {}
73370
74371
 
74372
+ /**
74373
+ * Event object of the ODataModel#requestSent event.
74374
+ */
73371
74375
  export type ODataModel$RequestSentEvent = Event<
73372
74376
  ODataModel$RequestSentEventParameters,
73373
74377
  ODataModel
73374
74378
  >;
73375
74379
 
74380
+ /**
74381
+ * Parameters of the ODataModel#sessionTimeout event.
74382
+ */
73376
74383
  export interface ODataModel$SessionTimeoutEventParameters {}
73377
74384
 
74385
+ /**
74386
+ * Event object of the ODataModel#sessionTimeout event.
74387
+ */
73378
74388
  export type ODataModel$SessionTimeoutEvent = Event<
73379
74389
  ODataModel$SessionTimeoutEventParameters,
73380
74390
  ODataModel
@@ -73731,15 +74741,23 @@ declare module "sap/ui/model/odata/v4/ODataPropertyBinding" {
73731
74741
  */
73732
74742
  toString(): string;
73733
74743
  }
73734
-
74744
+ /**
74745
+ * Parameters of the ODataPropertyBinding#change event.
74746
+ */
73735
74747
  export interface ODataPropertyBinding$ChangeEventParameters
73736
74748
  extends Binding$ChangeEventParameters {}
73737
74749
 
74750
+ /**
74751
+ * Event object of the ODataPropertyBinding#change event.
74752
+ */
73738
74753
  export type ODataPropertyBinding$ChangeEvent = Event<
73739
74754
  ODataPropertyBinding$ChangeEventParameters,
73740
74755
  ODataPropertyBinding
73741
74756
  >;
73742
74757
 
74758
+ /**
74759
+ * Parameters of the ODataPropertyBinding#dataReceived event.
74760
+ */
73743
74761
  export interface ODataPropertyBinding$DataReceivedEventParameters
73744
74762
  extends Binding$DataReceivedEventParameters {
73745
74763
  /**
@@ -73749,14 +74767,23 @@ declare module "sap/ui/model/odata/v4/ODataPropertyBinding" {
73749
74767
  error?: Error;
73750
74768
  }
73751
74769
 
74770
+ /**
74771
+ * Event object of the ODataPropertyBinding#dataReceived event.
74772
+ */
73752
74773
  export type ODataPropertyBinding$DataReceivedEvent = Event<
73753
74774
  ODataPropertyBinding$DataReceivedEventParameters,
73754
74775
  ODataPropertyBinding
73755
74776
  >;
73756
74777
 
74778
+ /**
74779
+ * Parameters of the ODataPropertyBinding#dataRequested event.
74780
+ */
73757
74781
  export interface ODataPropertyBinding$DataRequestedEventParameters
73758
74782
  extends Binding$DataRequestedEventParameters {}
73759
74783
 
74784
+ /**
74785
+ * Event object of the ODataPropertyBinding#dataRequested event.
74786
+ */
73760
74787
  export type ODataPropertyBinding$DataRequestedEvent = Event<
73761
74788
  ODataPropertyBinding$DataRequestedEventParameters,
73762
74789
  ODataPropertyBinding
@@ -77274,7 +78301,9 @@ declare module "sap/ui/test/actions/Action" {
77274
78301
  sIdSuffix: string
77275
78302
  ): this;
77276
78303
  }
77277
-
78304
+ /**
78305
+ * Describes the settings that can be provided to the Action constructor.
78306
+ */
77278
78307
  export interface $ActionSettings extends $ManagedObjectSettings {
77279
78308
  /**
77280
78309
  * Use this only if the target property or the default of the action does not work for your control. The
@@ -77371,7 +78400,9 @@ declare module "sap/ui/test/actions/Drag" {
77371
78400
  oControl: Control
77372
78401
  ): void;
77373
78402
  }
77374
-
78403
+ /**
78404
+ * Describes the settings that can be provided to the Drag constructor.
78405
+ */
77375
78406
  export interface $DragSettings extends $ActionSettings {}
77376
78407
  }
77377
78408
 
@@ -77558,7 +78589,9 @@ declare module "sap/ui/test/actions/Drop" {
77558
78589
  bBefore: boolean
77559
78590
  ): this;
77560
78591
  }
77561
-
78592
+ /**
78593
+ * Describes the settings that can be provided to the Drop constructor.
78594
+ */
77562
78595
  export interface $DropSettings extends $ActionSettings {
77563
78596
  /**
77564
78597
  * name of the droppable aggregation, whose root to use as drop target. This makes sense only for some controls,
@@ -77801,7 +78834,9 @@ declare module "sap/ui/test/actions/EnterText" {
77801
78834
  sText: string
77802
78835
  ): this;
77803
78836
  }
77804
-
78837
+ /**
78838
+ * Describes the settings that can be provided to the EnterText constructor.
78839
+ */
77805
78840
  export interface $EnterTextSettings extends $ActionSettings {
77806
78841
  /**
77807
78842
  * The Text that is going to be typed to the control. If you are entering an empty string, the value will
@@ -78084,7 +79119,9 @@ declare module "sap/ui/test/actions/Press" {
78084
79119
  fYPercentage: float
78085
79120
  ): this;
78086
79121
  }
78087
-
79122
+ /**
79123
+ * Describes the settings that can be provided to the Press constructor.
79124
+ */
78088
79125
  export interface $PressSettings extends $ActionSettings {
78089
79126
  /**
78090
79127
  * If it is set to `true`, the Alt Key modifier will be used
@@ -78253,7 +79290,9 @@ declare module "sap/ui/test/actions/Scroll" {
78253
79290
  iY?: int
78254
79291
  ): this;
78255
79292
  }
78256
-
79293
+ /**
79294
+ * Describes the settings that can be provided to the Scroll constructor.
79295
+ */
78257
79296
  export interface $ScrollSettings extends $ActionSettings {
78258
79297
  x?: int | PropertyBindingInfo | `{${string}}`;
78259
79298
 
@@ -78775,7 +79814,9 @@ declare module "sap/ui/test/matchers/AggregationContainsPropertyEqual" {
78775
79814
  oPropertyValue: any
78776
79815
  ): this;
78777
79816
  }
78778
-
79817
+ /**
79818
+ * Describes the settings that can be provided to the AggregationContainsPropertyEqual constructor.
79819
+ */
78779
79820
  export interface $AggregationContainsPropertyEqualSettings
78780
79821
  extends $MatcherSettings {
78781
79822
  /**
@@ -78898,7 +79939,9 @@ declare module "sap/ui/test/matchers/AggregationEmpty" {
78898
79939
  sName: string
78899
79940
  ): this;
78900
79941
  }
78901
-
79942
+ /**
79943
+ * Describes the settings that can be provided to the AggregationEmpty constructor.
79944
+ */
78902
79945
  export interface $AggregationEmptySettings extends $MatcherSettings {
78903
79946
  /**
78904
79947
  * The name of the aggregation that is used for matching.
@@ -79016,7 +80059,9 @@ declare module "sap/ui/test/matchers/AggregationFilled" {
79016
80059
  sName: string
79017
80060
  ): this;
79018
80061
  }
79019
-
80062
+ /**
80063
+ * Describes the settings that can be provided to the AggregationFilled constructor.
80064
+ */
79020
80065
  export interface $AggregationFilledSettings extends $MatcherSettings {
79021
80066
  /**
79022
80067
  * The name of the aggregation that is used for matching.
@@ -79160,7 +80205,9 @@ declare module "sap/ui/test/matchers/AggregationLengthEquals" {
79160
80205
  sName: string
79161
80206
  ): this;
79162
80207
  }
79163
-
80208
+ /**
80209
+ * Describes the settings that can be provided to the AggregationLengthEquals constructor.
80210
+ */
79164
80211
  export interface $AggregationLengthEqualsSettings extends $MatcherSettings {
79165
80212
  /**
79166
80213
  * The name of the aggregation that is used for matching.
@@ -80673,7 +81720,9 @@ declare module "sap/ui/test/matchers/BindingPath" {
80673
81720
  oValue: any
80674
81721
  ): this;
80675
81722
  }
80676
-
81723
+ /**
81724
+ * Describes the settings that can be provided to the BindingPath constructor.
81725
+ */
80677
81726
  export interface $BindingPathSettings extends $MatcherSettings {
80678
81727
  /**
80679
81728
  * The value of the binding context path that is used for matching. As of version 1.81, it can also be a
@@ -80958,7 +82007,9 @@ declare module "sap/ui/test/matchers/I18NText" {
80958
82007
  bUseLibraryBundle: boolean
80959
82008
  ): this;
80960
82009
  }
80961
-
82010
+ /**
82011
+ * Describes the settings that can be provided to the I18NText constructor.
82012
+ */
80962
82013
  export interface $I18NTextSettings extends $MatcherSettings {
80963
82014
  /**
80964
82015
  * The name of the control property to match the I18N text with.
@@ -81050,7 +82101,9 @@ declare module "sap/ui/test/matchers/Interactable" {
81050
82101
  */
81051
82102
  static getMetadata(): ManagedObjectMetadata;
81052
82103
  }
81053
-
82104
+ /**
82105
+ * Describes the settings that can be provided to the Interactable constructor.
82106
+ */
81054
82107
  export interface $InteractableSettings extends $MatcherSettings {}
81055
82108
  }
81056
82109
 
@@ -81286,7 +82339,9 @@ declare module "sap/ui/test/matchers/LabelFor" {
81286
82339
  sText: string
81287
82340
  ): this;
81288
82341
  }
81289
-
82342
+ /**
82343
+ * Describes the settings that can be provided to the LabelFor constructor.
82344
+ */
81290
82345
  export interface $LabelForSettings extends $MatcherSettings {
81291
82346
  /**
81292
82347
  * The text of the {@link sap.m.Label} which have the labelFor property.
@@ -81389,7 +82444,9 @@ declare module "sap/ui/test/matchers/Matcher" {
81389
82444
  oControl: Control
81390
82445
  ): boolean;
81391
82446
  }
81392
-
82447
+ /**
82448
+ * Describes the settings that can be provided to the Matcher constructor.
82449
+ */
81393
82450
  export interface $MatcherSettings extends $ManagedObjectSettings {}
81394
82451
  }
81395
82452
 
@@ -81578,7 +82635,9 @@ declare module "sap/ui/test/matchers/PropertyStrictEquals" {
81578
82635
  oValue: any
81579
82636
  ): this;
81580
82637
  }
81581
-
82638
+ /**
82639
+ * Describes the settings that can be provided to the PropertyStrictEquals constructor.
82640
+ */
81582
82641
  export interface $PropertyStrictEqualsSettings extends $MatcherSettings {
81583
82642
  /**
81584
82643
  * The Name of the property that is used for matching.