@openui5/types 1.120.11 → 1.120.13

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.11
283
+ // For Library Version: 1.120.13
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
@@ -15053,6 +15109,9 @@ declare module "sap/ui/core/Component" {
15053
15109
  }
15054
15110
  export const registry: registry;
15055
15111
 
15112
+ /**
15113
+ * Describes the settings that can be provided to the Component constructor.
15114
+ */
15056
15115
  export interface $ComponentSettings extends $ManagedObjectSettings {
15057
15116
  componentData?: any;
15058
15117
  }
@@ -15743,7 +15802,9 @@ declare module "sap/ui/core/ComponentContainer" {
15743
15802
  sWidth?: CSSSize
15744
15803
  ): this;
15745
15804
  }
15746
-
15805
+ /**
15806
+ * Describes the settings that can be provided to the ComponentContainer constructor.
15807
+ */
15747
15808
  export interface $ComponentContainerSettings extends $ControlSettings {
15748
15809
  /**
15749
15810
  * Component name, the package where the component is contained. This property can only be applied initially.
@@ -15856,6 +15917,9 @@ declare module "sap/ui/core/ComponentContainer" {
15856
15917
  componentFailed?: (oEvent: ComponentContainer$ComponentFailedEvent) => void;
15857
15918
  }
15858
15919
 
15920
+ /**
15921
+ * Parameters of the ComponentContainer#componentCreated event.
15922
+ */
15859
15923
  export interface ComponentContainer$ComponentCreatedEventParameters {
15860
15924
  /**
15861
15925
  * Reference to the created component instance
@@ -15863,11 +15927,17 @@ declare module "sap/ui/core/ComponentContainer" {
15863
15927
  component?: UIComponent;
15864
15928
  }
15865
15929
 
15930
+ /**
15931
+ * Event object of the ComponentContainer#componentCreated event.
15932
+ */
15866
15933
  export type ComponentContainer$ComponentCreatedEvent = Event<
15867
15934
  ComponentContainer$ComponentCreatedEventParameters,
15868
15935
  ComponentContainer
15869
15936
  >;
15870
15937
 
15938
+ /**
15939
+ * Parameters of the ComponentContainer#componentFailed event.
15940
+ */
15871
15941
  export interface ComponentContainer$ComponentFailedEventParameters {
15872
15942
  /**
15873
15943
  * The reason object as returned by the component promise
@@ -15875,6 +15945,9 @@ declare module "sap/ui/core/ComponentContainer" {
15875
15945
  reason?: object;
15876
15946
  }
15877
15947
 
15948
+ /**
15949
+ * Event object of the ComponentContainer#componentFailed event.
15950
+ */
15878
15951
  export type ComponentContainer$ComponentFailedEvent = Event<
15879
15952
  ComponentContainer$ComponentFailedEventParameters,
15880
15953
  ComponentContainer
@@ -16153,7 +16226,14 @@ declare module "sap/ui/core/Configuration" {
16153
16226
  *
16154
16227
  * Values of boolean parameters are case insensitive where "true" and "x" are interpreted as true.
16155
16228
  *
16156
- * @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.
16157
16237
  */
16158
16238
  interface Configuration {
16159
16239
  /**
@@ -16182,7 +16262,12 @@ declare module "sap/ui/core/Configuration" {
16182
16262
  * API can be provided in a nested object with name `formatSettings`.
16183
16263
  *
16184
16264
  * @since 1.38.6
16185
- * @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.
16186
16271
  *
16187
16272
  * @returns Returns `this` to allow method chaining
16188
16273
  */
@@ -16267,7 +16352,7 @@ declare module "sap/ui/core/Configuration" {
16267
16352
  /**
16268
16353
  * Base URLs to AppCacheBuster ETag-Index files.
16269
16354
  *
16270
- * @deprecated (since 1.120)
16355
+ * @deprecated (since 1.120) - without a replacement. Was only used within the implementation of the `AppCacheBuster`.
16271
16356
  *
16272
16357
  * @returns array of base URLs
16273
16358
  */
@@ -16275,7 +16360,7 @@ declare module "sap/ui/core/Configuration" {
16275
16360
  /**
16276
16361
  * The loading mode (sync|async|batch) of the AppCacheBuster (sync is default)
16277
16362
  *
16278
- * @deprecated (since 1.120)
16363
+ * @deprecated (since 1.120) - without a replacement. Was only used within the implementation of the `AppCacheBuster`.
16279
16364
  *
16280
16365
  * @returns "sync" | "async" | "batch"
16281
16366
  */
@@ -16293,7 +16378,8 @@ declare module "sap/ui/core/Configuration" {
16293
16378
  * Returns whether the framework automatically adds the ARIA role 'application' to the HTML body or not.
16294
16379
  *
16295
16380
  * @since 1.27.0
16296
- * @deprecated (since 1.120)
16381
+ * @deprecated (since 1.120) - without a replacement. Was only used in the implementation of the framework
16382
+ * itself.
16297
16383
  *
16298
16384
  * @returns Wether the ARIA role 'application' should be added to the HTML body or not
16299
16385
  */
@@ -16325,7 +16411,10 @@ declare module "sap/ui/core/Configuration" {
16325
16411
  /**
16326
16412
  * Returns the used compatibility version for the given feature.
16327
16413
  *
16328
- * @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.
16329
16418
  *
16330
16419
  * @returns the used compatibility version
16331
16420
  */
@@ -16338,7 +16427,8 @@ declare module "sap/ui/core/Configuration" {
16338
16427
  /**
16339
16428
  * Returns whether the page runs in full debug mode.
16340
16429
  *
16341
- * @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.
16342
16432
  *
16343
16433
  * @returns Whether the page runs in full debug mode
16344
16434
  */
@@ -16351,7 +16441,8 @@ declare module "sap/ui/core/Configuration" {
16351
16441
  * The contract of the module is not defined by the configuration API.
16352
16442
  *
16353
16443
  * @since 1.102
16354
- * @deprecated (since 1.120)
16444
+ * @deprecated (since 1.120) - without a replacement. The configuration is only relevant for the `sap.ui.export`
16445
+ * library.
16355
16446
  *
16356
16447
  * @returns Module name (ID) of a file share support module
16357
16448
  */
@@ -16359,7 +16450,8 @@ declare module "sap/ui/core/Configuration" {
16359
16450
  /**
16360
16451
  * Returns whether the Fiori2Adaptation is on.
16361
16452
  *
16362
- * @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.
16363
16455
  *
16364
16456
  * @returns false - no adaptation, true - full adaptation, comma-separated list - partial adaptation Possible
16365
16457
  * values: style, collapse, title, back, hierarchy
@@ -16370,7 +16462,8 @@ declare module "sap/ui/core/Configuration" {
16370
16462
  * are not called.
16371
16463
  *
16372
16464
  * @since 1.60.0
16373
- * @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.
16374
16467
  *
16375
16468
  * @returns Flexibility services configuration
16376
16469
  */
@@ -16403,10 +16496,14 @@ declare module "sap/ui/core/Configuration" {
16403
16496
  */
16404
16497
  getFrameOptions(): string;
16405
16498
  /**
16406
- * Returns whether the UI5 control inspector is displayed. Has only an effect when the sap-ui-debug module
16407
- * 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.
16408
16502
  *
16409
- * @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.
16410
16507
  *
16411
16508
  * @returns whether the UI5 control inspector is displayed
16412
16509
  */
@@ -16491,7 +16588,8 @@ declare module "sap/ui/core/Configuration" {
16491
16588
  /**
16492
16589
  * Returns whether there should be an exception on any duplicate element IDs.
16493
16590
  *
16494
- * @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.
16495
16593
  *
16496
16594
  * @returns whether there should be an exception on any duplicate element IDs
16497
16595
  */
@@ -16499,7 +16597,9 @@ declare module "sap/ui/core/Configuration" {
16499
16597
  /**
16500
16598
  * Returns whether the text origin information is collected.
16501
16599
  *
16502
- * @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.
16503
16603
  *
16504
16604
  * @returns whether the text info is collected
16505
16605
  */
@@ -16550,11 +16650,11 @@ declare module "sap/ui/core/Configuration" {
16550
16650
  /**
16551
16651
  * Flag if statistics are requested.
16552
16652
  *
16553
- * 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
16554
16654
  * via TechnicalInfo.
16555
16655
  *
16556
16656
  * @since 1.106.0
16557
- * @deprecated (since 1.120)
16657
+ * @deprecated (since 1.120) - without a replacment. The configuration is only relevant within the framework.
16558
16658
  *
16559
16659
  * @returns Whether statistics are enabled
16560
16660
  */
@@ -16824,6 +16924,16 @@ declare module "sap/ui/core/Configuration" {
16824
16924
  ): this;
16825
16925
  }
16826
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
+ */
16827
16937
  export default Configuration;
16828
16938
 
16829
16939
  /**
@@ -18090,7 +18200,9 @@ declare module "sap/ui/core/Control" {
18090
18200
  aFieldGroupIds: string[]
18091
18201
  ): void;
18092
18202
  }
18093
-
18203
+ /**
18204
+ * Describes the settings that can be provided to the Control constructor.
18205
+ */
18094
18206
  export interface $ControlSettings extends $ElementSettings {
18095
18207
  /**
18096
18208
  * Whether the control is currently in blocked state.
@@ -18162,6 +18274,9 @@ declare module "sap/ui/core/Control" {
18162
18274
  validateFieldGroup?: (oEvent: Control$ValidateFieldGroupEvent) => void;
18163
18275
  }
18164
18276
 
18277
+ /**
18278
+ * Parameters of the Control#validateFieldGroup event.
18279
+ */
18165
18280
  export interface Control$ValidateFieldGroupEventParameters {
18166
18281
  /**
18167
18282
  * field group IDs of the logical field groups to validate
@@ -18169,6 +18284,9 @@ declare module "sap/ui/core/Control" {
18169
18284
  fieldGroupIds?: string[];
18170
18285
  }
18171
18286
 
18287
+ /**
18288
+ * Event object of the Control#validateFieldGroup event.
18289
+ */
18172
18290
  export type Control$ValidateFieldGroupEvent = Event<
18173
18291
  Control$ValidateFieldGroupEventParameters,
18174
18292
  Control
@@ -18312,7 +18430,8 @@ declare module "sap/ui/core/Core" {
18312
18430
  *
18313
18431
  * `oClassInfo` might contain the same kind of information as described in {@link sap.ui.base.ManagedObject.extend}.
18314
18432
  *
18315
- * @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.
18316
18435
  *
18317
18436
  * @returns The created class / constructor function
18318
18437
  */
@@ -18335,7 +18454,8 @@ declare module "sap/ui/core/Core" {
18335
18454
  /**
18336
18455
  * Returns the metadata for class `sap.ui.core.Core`.
18337
18456
  *
18338
- * @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.
18339
18459
  *
18340
18460
  * @returns Metadata object describing this class
18341
18461
  */
@@ -18346,7 +18466,11 @@ declare module "sap/ui/core/Core" {
18346
18466
  * In general, applications and Controls should avoid calling this method and instead let the framework
18347
18467
  * manage any necessary rendering.
18348
18468
  *
18349
- * @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.
18350
18474
  */
18351
18475
  applyChanges(): void;
18352
18476
  /**
@@ -18385,7 +18509,8 @@ declare module "sap/ui/core/Core" {
18385
18509
  * When called, the context of the listener (its `this`) will be bound to `oListener` if specified, otherwise
18386
18510
  * it will be bound to a dummy event provider object.
18387
18511
  *
18388
- * @deprecated (since 1.119)
18512
+ * @deprecated (since 1.119) - without a replacement. Applications should not have the need to intercept
18513
+ * all control events.
18389
18514
  */
18390
18515
  attachControlEvent(
18391
18516
  /**
@@ -18794,7 +18919,9 @@ declare module "sap/ui/core/Core" {
18794
18919
  * The caller must take care to destroy the render manager when it is no longer needed. Calling this method
18795
18920
  * before the Core has been {@link #isInitialized initialized}, is not recommended.
18796
18921
  *
18797
- * @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.
18798
18925
  *
18799
18926
  * @returns New instance of the RenderManager
18800
18927
  */
@@ -18817,7 +18944,8 @@ declare module "sap/ui/core/Core" {
18817
18944
  *
18818
18945
  * The passed function and listener object must match the ones used for event registration.
18819
18946
  *
18820
- * @deprecated (since 1.119)
18947
+ * @deprecated (since 1.119) - without a replacement. Applications should not have the need to intercept
18948
+ * all control events.
18821
18949
  */
18822
18950
  detachControlEvent(
18823
18951
  /**
@@ -19149,13 +19277,13 @@ declare module "sap/ui/core/Core" {
19149
19277
  sId: ID | null | undefined
19150
19278
  ): UI5Element | undefined;
19151
19279
  /**
19152
- * Returns the Id of the control/element currently in focus.
19280
+ * Returns the ID of the control/element currently in focus.
19153
19281
  *
19154
19282
  * @deprecated (since 1.119) - Please use {@link sap.ui.core.Element.getActiveElement Element.getActiveElement }
19155
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}.
19156
19284
  * Please be aware, {@link sap.ui.core.Element.getActiveElement Element.getActiveElement} can return 'undefined'.
19157
19285
  *
19158
- * @returns the Id of the control/element currently in focus.
19286
+ * @returns the ID of the control/element currently in focus.
19159
19287
  */
19160
19288
  getCurrentFocusedControlId(): string;
19161
19289
  /**
@@ -19288,7 +19416,8 @@ declare module "sap/ui/core/Core" {
19288
19416
  * **Note:** The returned info objects must not be modified. They might be a living copy of the internal
19289
19417
  * data (for efficiency reasons) and the framework is not prepared to handle modifications to these objects.
19290
19418
  *
19291
- * @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}.
19292
19421
  *
19293
19422
  * @returns Map of library info objects keyed by the library names.
19294
19423
  */
@@ -19375,7 +19504,8 @@ declare module "sap/ui/core/Core" {
19375
19504
  * Returns `true` if there are any pending rendering tasks or when such rendering tasks are currently being
19376
19505
  * executed.
19377
19506
  *
19378
- * @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.
19379
19509
  *
19380
19510
  * @returns true if there are pending (or executing) rendering tasks.
19381
19511
  */
@@ -19393,7 +19523,8 @@ declare module "sap/ui/core/Core" {
19393
19523
  * Includes a library theme into the current page (if a variant is specified it will include the variant
19394
19524
  * library theme)
19395
19525
  *
19396
- * @deprecated (since 1.119)
19526
+ * @deprecated (since 1.119) - without replacement. There's no known use case that would require a public
19527
+ * API.
19397
19528
  */
19398
19529
  includeLibraryTheme(
19399
19530
  /**
@@ -19488,9 +19619,10 @@ declare module "sap/ui/core/Core" {
19488
19619
  */
19489
19620
  isInitialized(): boolean;
19490
19621
  /**
19491
- * Returns the locked state of the `sap.ui.core.Core`
19622
+ * Returns the locked state of the `sap.ui.core.Core`.
19492
19623
  *
19493
- * @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.
19494
19626
  *
19495
19627
  * @returns locked state
19496
19628
  */
@@ -19629,7 +19761,8 @@ declare module "sap/ui/core/Core" {
19629
19761
  * Lock should be called before and after the DOM is modified for rendering, roundtrips... Exceptions might
19630
19762
  * be the case for asynchronous UI behavior
19631
19763
  *
19632
- * @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.
19633
19766
  */
19634
19767
  lock(): void;
19635
19768
  /**
@@ -19773,7 +19906,8 @@ declare module "sap/ui/core/Core" {
19773
19906
  * in order to configure the theme location early enough.
19774
19907
  *
19775
19908
  * @since 1.10
19776
- * @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}.
19777
19911
  *
19778
19912
  * @returns the Core, to allow method chaining
19779
19913
  */
@@ -19843,7 +19977,8 @@ declare module "sap/ui/core/Core" {
19843
19977
  * in order to configure the theme location early enough.
19844
19978
  *
19845
19979
  * @since 1.10
19846
- * @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}.
19847
19982
  *
19848
19983
  * @returns the Core, to allow method chaining
19849
19984
  */
@@ -19866,7 +20001,8 @@ declare module "sap/ui/core/Core" {
19866
20001
  *
19867
20002
  * Browser events are dispatched to the controls again after this method is called.
19868
20003
  *
19869
- * @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.
19870
20006
  */
19871
20007
  unlock(): void;
19872
20008
  /**
@@ -20123,7 +20259,9 @@ declare module "sap/ui/core/CustomData" {
20123
20259
  bWriteToDom?: boolean
20124
20260
  ): this;
20125
20261
  }
20126
-
20262
+ /**
20263
+ * Describes the settings that can be provided to the CustomData constructor.
20264
+ */
20127
20265
  export interface $CustomDataSettings extends $ElementSettings {
20128
20266
  /**
20129
20267
  * The key of the data in this CustomData object. When the data is just stored, it can be any string, but
@@ -20520,37 +20658,66 @@ declare module "sap/ui/core/delegate/ItemNavigation" {
20520
20658
  bTableList?: boolean
20521
20659
  ): this;
20522
20660
  }
20523
-
20661
+ /**
20662
+ * Parameters of the ItemNavigation#AfterFocus event.
20663
+ */
20524
20664
  export interface ItemNavigation$AfterFocusEventParameters {}
20525
20665
 
20666
+ /**
20667
+ * Event object of the ItemNavigation#AfterFocus event.
20668
+ */
20526
20669
  export type ItemNavigation$AfterFocusEvent = Event<
20527
20670
  ItemNavigation$AfterFocusEventParameters,
20528
20671
  ItemNavigation
20529
20672
  >;
20530
20673
 
20674
+ /**
20675
+ * Parameters of the ItemNavigation#BeforeFocus event.
20676
+ */
20531
20677
  export interface ItemNavigation$BeforeFocusEventParameters {}
20532
20678
 
20679
+ /**
20680
+ * Event object of the ItemNavigation#BeforeFocus event.
20681
+ */
20533
20682
  export type ItemNavigation$BeforeFocusEvent = Event<
20534
20683
  ItemNavigation$BeforeFocusEventParameters,
20535
20684
  ItemNavigation
20536
20685
  >;
20537
20686
 
20687
+ /**
20688
+ * Parameters of the ItemNavigation#BorderReached event.
20689
+ */
20538
20690
  export interface ItemNavigation$BorderReachedEventParameters {}
20539
20691
 
20692
+ /**
20693
+ * Event object of the ItemNavigation#BorderReached event.
20694
+ */
20540
20695
  export type ItemNavigation$BorderReachedEvent = Event<
20541
20696
  ItemNavigation$BorderReachedEventParameters,
20542
20697
  ItemNavigation
20543
20698
  >;
20544
20699
 
20700
+ /**
20701
+ * Parameters of the ItemNavigation#FocusAgain event.
20702
+ */
20545
20703
  export interface ItemNavigation$FocusAgainEventParameters {}
20546
20704
 
20705
+ /**
20706
+ * Event object of the ItemNavigation#FocusAgain event.
20707
+ */
20547
20708
  export type ItemNavigation$FocusAgainEvent = Event<
20548
20709
  ItemNavigation$FocusAgainEventParameters,
20549
20710
  ItemNavigation
20550
20711
  >;
20551
20712
 
20713
+ /**
20714
+ * Parameters of the ItemNavigation#FocusLeave event.
20715
+ */
20552
20716
  export interface ItemNavigation$FocusLeaveEventParameters {}
20553
20717
 
20718
+ /**
20719
+ * Event object of the ItemNavigation#FocusLeave event.
20720
+ */
20554
20721
  export type ItemNavigation$FocusLeaveEvent = Event<
20555
20722
  ItemNavigation$FocusLeaveEventParameters,
20556
20723
  ItemNavigation
@@ -21008,7 +21175,9 @@ declare module "sap/ui/core/dnd/DragDropBase" {
21008
21175
  sGroupName?: string
21009
21176
  ): this;
21010
21177
  }
21011
-
21178
+ /**
21179
+ * Describes the settings that can be provided to the DragDropBase constructor.
21180
+ */
21012
21181
  export interface $DragDropBaseSettings extends $ElementSettings {
21013
21182
  /**
21014
21183
  * Defines the name of the group to which this object belongs. If `groupName` is specified, then this object
@@ -21327,7 +21496,9 @@ declare module "sap/ui/core/dnd/DragDropInfo" {
21327
21496
  oTargetElement: ID | UI5Element
21328
21497
  ): this;
21329
21498
  }
21330
-
21499
+ /**
21500
+ * Describes the settings that can be provided to the DragDropInfo constructor.
21501
+ */
21331
21502
  export interface $DragDropInfoSettings extends $DropInfoSettings {
21332
21503
  /**
21333
21504
  * The name of the aggregation from which all children can be dragged. If undefined, the control itself
@@ -21355,13 +21526,22 @@ declare module "sap/ui/core/dnd/DragDropInfo" {
21355
21526
  dragEnd?: (oEvent: Event) => void;
21356
21527
  }
21357
21528
 
21529
+ /**
21530
+ * Parameters of the DragDropInfo#dragEnd event.
21531
+ */
21358
21532
  export interface DragDropInfo$DragEndEventParameters {}
21359
21533
 
21534
+ /**
21535
+ * Event object of the DragDropInfo#dragEnd event.
21536
+ */
21360
21537
  export type DragDropInfo$DragEndEvent = Event<
21361
21538
  DragDropInfo$DragEndEventParameters,
21362
21539
  DragDropInfo
21363
21540
  >;
21364
21541
 
21542
+ /**
21543
+ * Parameters of the DragDropInfo#dragStart event.
21544
+ */
21365
21545
  export interface DragDropInfo$DragStartEventParameters {
21366
21546
  /**
21367
21547
  * The target element that will be dragged
@@ -21379,6 +21559,9 @@ declare module "sap/ui/core/dnd/DragDropInfo" {
21379
21559
  browserEvent?: DragEvent;
21380
21560
  }
21381
21561
 
21562
+ /**
21563
+ * Event object of the DragDropInfo#dragStart event.
21564
+ */
21382
21565
  export type DragDropInfo$DragStartEvent = Event<
21383
21566
  DragDropInfo$DragStartEventParameters,
21384
21567
  DragDropInfo
@@ -21666,7 +21849,9 @@ declare module "sap/ui/core/dnd/DragInfo" {
21666
21849
  sSourceAggregation?: string
21667
21850
  ): this;
21668
21851
  }
21669
-
21852
+ /**
21853
+ * Describes the settings that can be provided to the DragInfo constructor.
21854
+ */
21670
21855
  export interface $DragInfoSettings extends $DragDropBaseSettings {
21671
21856
  /**
21672
21857
  * The name of the aggregation from which all children can be dragged. If undefined, the control itself
@@ -21687,6 +21872,9 @@ declare module "sap/ui/core/dnd/DragInfo" {
21687
21872
  dragEnd?: (oEvent: DragInfo$DragEndEvent) => void;
21688
21873
  }
21689
21874
 
21875
+ /**
21876
+ * Parameters of the DragInfo#dragEnd event.
21877
+ */
21690
21878
  export interface DragInfo$DragEndEventParameters {
21691
21879
  /**
21692
21880
  * The target element that is being dragged
@@ -21704,11 +21892,17 @@ declare module "sap/ui/core/dnd/DragInfo" {
21704
21892
  browserEvent?: DragEvent;
21705
21893
  }
21706
21894
 
21895
+ /**
21896
+ * Event object of the DragInfo#dragEnd event.
21897
+ */
21707
21898
  export type DragInfo$DragEndEvent = Event<
21708
21899
  DragInfo$DragEndEventParameters,
21709
21900
  DragInfo
21710
21901
  >;
21711
21902
 
21903
+ /**
21904
+ * Parameters of the DragInfo#dragStart event.
21905
+ */
21712
21906
  export interface DragInfo$DragStartEventParameters {
21713
21907
  /**
21714
21908
  * The target element that will be dragged
@@ -21726,6 +21920,9 @@ declare module "sap/ui/core/dnd/DragInfo" {
21726
21920
  browserEvent?: DragEvent;
21727
21921
  }
21728
21922
 
21923
+ /**
21924
+ * Event object of the DragInfo#dragStart event.
21925
+ */
21729
21926
  export type DragInfo$DragStartEvent = Event<
21730
21927
  DragInfo$DragStartEventParameters,
21731
21928
  DragInfo
@@ -22330,7 +22527,9 @@ declare module "sap/ui/core/dnd/DropInfo" {
22330
22527
  sTargetAggregation?: string
22331
22528
  ): this;
22332
22529
  }
22333
-
22530
+ /**
22531
+ * Describes the settings that can be provided to the DropInfo constructor.
22532
+ */
22334
22533
  export interface $DropInfoSettings extends $DragDropBaseSettings {
22335
22534
  /**
22336
22535
  * The aggregation name in the drop target control which is the target of this drag-and-drop action. If
@@ -22382,6 +22581,9 @@ declare module "sap/ui/core/dnd/DropInfo" {
22382
22581
  drop?: (oEvent: DropInfo$DropEvent) => void;
22383
22582
  }
22384
22583
 
22584
+ /**
22585
+ * Parameters of the DropInfo#dragEnter event.
22586
+ */
22385
22587
  export interface DropInfo$DragEnterEventParameters {
22386
22588
  /**
22387
22589
  * The target element on which the dragged element will be dropped
@@ -22399,11 +22601,17 @@ declare module "sap/ui/core/dnd/DropInfo" {
22399
22601
  browserEvent?: DragEvent;
22400
22602
  }
22401
22603
 
22604
+ /**
22605
+ * Event object of the DropInfo#dragEnter event.
22606
+ */
22402
22607
  export type DropInfo$DragEnterEvent = Event<
22403
22608
  DropInfo$DragEnterEventParameters,
22404
22609
  DropInfo
22405
22610
  >;
22406
22611
 
22612
+ /**
22613
+ * Parameters of the DropInfo#dragOver event.
22614
+ */
22407
22615
  export interface DropInfo$DragOverEventParameters {
22408
22616
  /**
22409
22617
  * The target element on which the dragged element will be dropped
@@ -22428,11 +22636,17 @@ declare module "sap/ui/core/dnd/DropInfo" {
22428
22636
  browserEvent?: DragEvent;
22429
22637
  }
22430
22638
 
22639
+ /**
22640
+ * Event object of the DropInfo#dragOver event.
22641
+ */
22431
22642
  export type DropInfo$DragOverEvent = Event<
22432
22643
  DropInfo$DragOverEventParameters,
22433
22644
  DropInfo
22434
22645
  >;
22435
22646
 
22647
+ /**
22648
+ * Parameters of the DropInfo#drop event.
22649
+ */
22436
22650
  export interface DropInfo$DropEventParameters {
22437
22651
  /**
22438
22652
  * The UI5 `dragSession` object that exists only during drag and drop
@@ -22462,6 +22676,9 @@ declare module "sap/ui/core/dnd/DropInfo" {
22462
22676
  browserEvent?: DragEvent;
22463
22677
  }
22464
22678
 
22679
+ /**
22680
+ * Event object of the DropInfo#drop event.
22681
+ */
22465
22682
  export type DropInfo$DropEvent = Event<
22466
22683
  DropInfo$DropEventParameters,
22467
22684
  DropInfo
@@ -23736,6 +23953,9 @@ declare module "sap/ui/core/Element" {
23736
23953
  }
23737
23954
  export const registry: registry;
23738
23955
 
23956
+ /**
23957
+ * Describes the settings that can be provided to the Element constructor.
23958
+ */
23739
23959
  export interface $ElementSettings extends $ManagedObjectSettings {
23740
23960
  /**
23741
23961
  * The tooltip that should be shown for this Element.
@@ -26199,7 +26419,9 @@ declare module "sap/ui/core/Fragment" {
26199
26419
  sType: string
26200
26420
  ): this;
26201
26421
  }
26202
-
26422
+ /**
26423
+ * Describes the settings that can be provided to the Fragment constructor.
26424
+ */
26203
26425
  export interface $FragmentSettings extends $ManagedObjectSettings {
26204
26426
  type?: string | PropertyBindingInfo;
26205
26427
 
@@ -26647,7 +26869,9 @@ declare module "sap/ui/core/HTML" {
26647
26869
  bVisible?: boolean
26648
26870
  ): this;
26649
26871
  }
26650
-
26872
+ /**
26873
+ * Describes the settings that can be provided to the HTML constructor.
26874
+ */
26651
26875
  export interface $HTMLSettings extends $ControlSettings {
26652
26876
  /**
26653
26877
  * HTML content to be displayed, defined as a string.
@@ -26709,6 +26933,9 @@ declare module "sap/ui/core/HTML" {
26709
26933
  afterRendering?: (oEvent: HTML$AfterRenderingEvent) => void;
26710
26934
  }
26711
26935
 
26936
+ /**
26937
+ * Parameters of the HTML#afterRendering event.
26938
+ */
26712
26939
  export interface HTML$AfterRenderingEventParameters {
26713
26940
  /**
26714
26941
  * Whether the current DOM of the control has been preserved (true) or not (e.g. rendered from content property
@@ -26717,6 +26944,9 @@ declare module "sap/ui/core/HTML" {
26717
26944
  isPreservedDOM?: boolean;
26718
26945
  }
26719
26946
 
26947
+ /**
26948
+ * Event object of the HTML#afterRendering event.
26949
+ */
26720
26950
  export type HTML$AfterRenderingEvent = Event<
26721
26951
  HTML$AfterRenderingEventParameters,
26722
26952
  HTML
@@ -26993,7 +27223,9 @@ declare module "sap/ui/core/hyphenation/Hyphenation" {
26993
27223
  sLang?: string
26994
27224
  ): boolean;
26995
27225
  }
26996
-
27226
+ /**
27227
+ * Describes the settings that can be provided to the Hyphenation constructor.
27228
+ */
26997
27229
  export interface $HyphenationSettings extends $ManagedObjectSettings {
26998
27230
  /**
26999
27231
  * Fired if an error with initialization or hyphenation occurs.
@@ -27001,6 +27233,9 @@ declare module "sap/ui/core/hyphenation/Hyphenation" {
27001
27233
  error?: (oEvent: Hyphenation$ErrorEvent) => void;
27002
27234
  }
27003
27235
 
27236
+ /**
27237
+ * Parameters of the Hyphenation#error event.
27238
+ */
27004
27239
  export interface Hyphenation$ErrorEventParameters {
27005
27240
  /**
27006
27241
  * The message of the error.
@@ -27008,6 +27243,9 @@ declare module "sap/ui/core/hyphenation/Hyphenation" {
27008
27243
  sErrorMessage?: string;
27009
27244
  }
27010
27245
 
27246
+ /**
27247
+ * Event object of the Hyphenation#error event.
27248
+ */
27011
27249
  export type Hyphenation$ErrorEvent = Event<
27012
27250
  Hyphenation$ErrorEventParameters,
27013
27251
  Hyphenation
@@ -27652,7 +27890,9 @@ declare module "sap/ui/core/Icon" {
27652
27890
  sWidth?: CSSSize
27653
27891
  ): this;
27654
27892
  }
27655
-
27893
+ /**
27894
+ * Describes the settings that can be provided to the Icon constructor.
27895
+ */
27656
27896
  export interface $IconSettings extends $ControlSettings {
27657
27897
  /**
27658
27898
  * This property can be set by following options:
@@ -27773,8 +28013,14 @@ declare module "sap/ui/core/Icon" {
27773
28013
  press?: (oEvent: Event) => void;
27774
28014
  }
27775
28015
 
28016
+ /**
28017
+ * Parameters of the Icon#press event.
28018
+ */
27776
28019
  export interface Icon$PressEventParameters {}
27777
28020
 
28021
+ /**
28022
+ * Event object of the Icon#press event.
28023
+ */
27778
28024
  export type Icon$PressEvent = Event<Icon$PressEventParameters, Icon>;
27779
28025
  }
27780
28026
 
@@ -28308,7 +28554,9 @@ declare module "sap/ui/core/InvisibleMessage" {
28308
28554
  sMode: InvisibleMessageMode | keyof typeof InvisibleMessageMode
28309
28555
  ): void;
28310
28556
  }
28311
-
28557
+ /**
28558
+ * Describes the settings that can be provided to the InvisibleMessage constructor.
28559
+ */
28312
28560
  export interface $InvisibleMessageSettings extends $ManagedObjectSettings {}
28313
28561
  }
28314
28562
 
@@ -28485,7 +28733,9 @@ declare module "sap/ui/core/InvisibleText" {
28485
28733
  */
28486
28734
  toStatic(): this;
28487
28735
  }
28488
-
28736
+ /**
28737
+ * Describes the settings that can be provided to the InvisibleText constructor.
28738
+ */
28489
28739
  export interface $InvisibleTextSettings extends $ControlSettings {
28490
28740
  /**
28491
28741
  * The text of the InvisibleText.
@@ -28682,7 +28932,9 @@ declare module "sap/ui/core/Item" {
28682
28932
  sTextDirection?: TextDirection | keyof typeof TextDirection
28683
28933
  ): this;
28684
28934
  }
28685
-
28935
+ /**
28936
+ * Describes the settings that can be provided to the Item constructor.
28937
+ */
28686
28938
  export interface $ItemSettings extends $ElementSettings {
28687
28939
  /**
28688
28940
  * The text to be displayed for the item.
@@ -28891,7 +29143,9 @@ declare module "sap/ui/core/LayoutData" {
28891
29143
  */
28892
29144
  static getMetadata(): ElementMetadata;
28893
29145
  }
28894
-
29146
+ /**
29147
+ * Describes the settings that can be provided to the LayoutData constructor.
29148
+ */
28895
29149
  export interface $LayoutDataSettings extends $ElementSettings {}
28896
29150
  }
28897
29151
 
@@ -29319,7 +29573,9 @@ declare module "sap/ui/core/ListItem" {
29319
29573
  sIcon?: string
29320
29574
  ): this;
29321
29575
  }
29322
-
29576
+ /**
29577
+ * Describes the settings that can be provided to the ListItem constructor.
29578
+ */
29323
29579
  export interface $ListItemSettings extends $ItemSettings {
29324
29580
  /**
29325
29581
  * The icon belonging to this list item instance. This can be a URI to an image or an icon font URI.
@@ -29478,7 +29734,12 @@ declare module "sap/ui/core/LocalBusyIndicator" {
29478
29734
  sWidth?: CSSSize
29479
29735
  ): this;
29480
29736
  }
29481
-
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
+ */
29482
29743
  export interface $LocalBusyIndicatorSettings extends $ControlSettings {
29483
29744
  /**
29484
29745
  * This property is the width of the control that has to be covered. With this width the position of the
@@ -31130,7 +31391,11 @@ declare module "sap/ui/core/Message" {
31130
31391
  sTimestamp?: string
31131
31392
  ): this;
31132
31393
  }
31133
-
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
+ */
31134
31399
  export interface $MessageSettings extends $ElementSettings {
31135
31400
  /**
31136
31401
  * Message text
@@ -31972,7 +32237,9 @@ declare module "sap/ui/core/message/MessageProcessor" {
31972
32237
  mMessages: Record<string, Message[]>
31973
32238
  ): void;
31974
32239
  }
31975
-
32240
+ /**
32241
+ * Parameters of the MessageProcessor#messageChange event.
32242
+ */
31976
32243
  export interface MessageProcessor$MessageChangeEventParameters {
31977
32244
  /**
31978
32245
  * Messages already existing before the `messageChange` event was fired.
@@ -31985,6 +32252,9 @@ declare module "sap/ui/core/message/MessageProcessor" {
31985
32252
  newMessages?: Message;
31986
32253
  }
31987
32254
 
32255
+ /**
32256
+ * Event object of the MessageProcessor#messageChange event.
32257
+ */
31988
32258
  export type MessageProcessor$MessageChangeEvent = Event<
31989
32259
  MessageProcessor$MessageChangeEventParameters,
31990
32260
  MessageProcessor
@@ -32592,7 +32862,16 @@ declare module "sap/ui/core/mvc/HTMLView" {
32592
32862
  */
32593
32863
  static getMetadata(): ElementMetadata;
32594
32864
  }
32595
-
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
+ */
32596
32875
  export interface $HTMLViewSettings extends $ViewSettings {}
32597
32876
  }
32598
32877
 
@@ -32727,7 +33006,12 @@ declare module "sap/ui/core/mvc/JSONView" {
32727
33006
  */
32728
33007
  static getMetadata(): ElementMetadata;
32729
33008
  }
32730
-
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
+ */
32731
33015
  export interface $JSONViewSettings extends $ViewSettings {}
32732
33016
  }
32733
33017
 
@@ -32863,7 +33147,13 @@ declare module "sap/ui/core/mvc/JSView" {
32863
33147
  */
32864
33148
  createContent(): Control | Control[];
32865
33149
  }
32866
-
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
+ */
32867
33157
  export interface $JSViewSettings extends $ViewSettings {}
32868
33158
  }
32869
33159
 
@@ -32979,7 +33269,12 @@ declare module "sap/ui/core/mvc/TemplateView" {
32979
33269
  */
32980
33270
  static getMetadata(): ElementMetadata;
32981
33271
  }
32982
-
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
+ */
32983
33278
  export interface $TemplateViewSettings extends $ViewSettings {}
32984
33279
  }
32985
33280
 
@@ -34049,6 +34344,9 @@ declare module "sap/ui/core/mvc/View" {
34049
34344
  ): Object | Promise<Object>;
34050
34345
  }
34051
34346
 
34347
+ /**
34348
+ * Describes the settings that can be provided to the View constructor.
34349
+ */
34052
34350
  export interface $ViewSettings extends $ControlSettings {
34053
34351
  /**
34054
34352
  * The width
@@ -34163,26 +34461,50 @@ declare module "sap/ui/core/mvc/View" {
34163
34461
  beforeRendering?: (oEvent: Event) => void;
34164
34462
  }
34165
34463
 
34464
+ /**
34465
+ * Parameters of the View#afterInit event.
34466
+ */
34166
34467
  export interface View$AfterInitEventParameters {}
34167
34468
 
34469
+ /**
34470
+ * Event object of the View#afterInit event.
34471
+ */
34168
34472
  export type View$AfterInitEvent = Event<View$AfterInitEventParameters, View>;
34169
34473
 
34474
+ /**
34475
+ * Parameters of the View#afterRendering event.
34476
+ */
34170
34477
  export interface View$AfterRenderingEventParameters {}
34171
34478
 
34479
+ /**
34480
+ * Event object of the View#afterRendering event.
34481
+ */
34172
34482
  export type View$AfterRenderingEvent = Event<
34173
34483
  View$AfterRenderingEventParameters,
34174
34484
  View
34175
34485
  >;
34176
34486
 
34487
+ /**
34488
+ * Parameters of the View#beforeExit event.
34489
+ */
34177
34490
  export interface View$BeforeExitEventParameters {}
34178
34491
 
34492
+ /**
34493
+ * Event object of the View#beforeExit event.
34494
+ */
34179
34495
  export type View$BeforeExitEvent = Event<
34180
34496
  View$BeforeExitEventParameters,
34181
34497
  View
34182
34498
  >;
34183
34499
 
34500
+ /**
34501
+ * Parameters of the View#beforeRendering event.
34502
+ */
34184
34503
  export interface View$BeforeRenderingEventParameters {}
34185
34504
 
34505
+ /**
34506
+ * Event object of the View#beforeRendering event.
34507
+ */
34186
34508
  export type View$BeforeRenderingEvent = Event<
34187
34509
  View$BeforeRenderingEventParameters,
34188
34510
  View
@@ -34568,7 +34890,9 @@ declare module "sap/ui/core/mvc/XMLView" {
34568
34890
  */
34569
34891
  XML = "xml",
34570
34892
  }
34571
-
34893
+ /**
34894
+ * Describes the settings that can be provided to the XMLView constructor.
34895
+ */
34572
34896
  export interface $XMLViewSettings extends $ViewSettings {
34573
34897
  /**
34574
34898
  * Configuration for the XMLView caching.
@@ -35443,12 +35767,18 @@ declare module "sap/ui/core/Popup" {
35443
35767
  currentOfRect: DOMRect;
35444
35768
  };
35445
35769
 
35770
+ /**
35771
+ * Describes the settings that can be provided to the Popup constructor.
35772
+ */
35446
35773
  export interface $PopupSettings extends $ManagedObjectSettings {
35447
35774
  opened?: (oEvent: Event) => void;
35448
35775
 
35449
35776
  closed?: (oEvent: Event) => void;
35450
35777
  }
35451
35778
 
35779
+ /**
35780
+ * Parameters of the Popup#blockLayerStateChange event.
35781
+ */
35452
35782
  export interface Popup$BlockLayerStateChangeEventParameters {
35453
35783
  /**
35454
35784
  * Indicates whether a blocking layer is currently visible `visible: true` or not `visible: false`
@@ -35463,17 +35793,32 @@ declare module "sap/ui/core/Popup" {
35463
35793
  zIndex?: number;
35464
35794
  }
35465
35795
 
35796
+ /**
35797
+ * Event object of the Popup#blockLayerStateChange event.
35798
+ */
35466
35799
  export type Popup$BlockLayerStateChangeEvent = Event<
35467
35800
  Popup$BlockLayerStateChangeEventParameters,
35468
35801
  Popup
35469
35802
  >;
35470
35803
 
35804
+ /**
35805
+ * Parameters of the Popup#closed event.
35806
+ */
35471
35807
  export interface Popup$ClosedEventParameters {}
35472
35808
 
35809
+ /**
35810
+ * Event object of the Popup#closed event.
35811
+ */
35473
35812
  export type Popup$ClosedEvent = Event<Popup$ClosedEventParameters, Popup>;
35474
35813
 
35814
+ /**
35815
+ * Parameters of the Popup#opened event.
35816
+ */
35475
35817
  export interface Popup$OpenedEventParameters {}
35476
35818
 
35819
+ /**
35820
+ * Event object of the Popup#opened event.
35821
+ */
35477
35822
  export type Popup$OpenedEvent = Event<Popup$OpenedEventParameters, Popup>;
35478
35823
  }
35479
35824
 
@@ -37231,7 +37576,9 @@ declare module "sap/ui/core/routing/Route" {
37231
37576
  sHash: string
37232
37577
  ): boolean;
37233
37578
  }
37234
-
37579
+ /**
37580
+ * Parameters of the Route#beforeMatched event.
37581
+ */
37235
37582
  export interface Route$BeforeMatchedEventParameters {
37236
37583
  /**
37237
37584
  * The name of the route
@@ -37258,11 +37605,17 @@ declare module "sap/ui/core/routing/Route" {
37258
37605
  nestedRoute?: Route;
37259
37606
  }
37260
37607
 
37608
+ /**
37609
+ * Event object of the Route#beforeMatched event.
37610
+ */
37261
37611
  export type Route$BeforeMatchedEvent = Event<
37262
37612
  Route$BeforeMatchedEventParameters,
37263
37613
  Route
37264
37614
  >;
37265
37615
 
37616
+ /**
37617
+ * Parameters of the Route#matched event.
37618
+ */
37266
37619
  export interface Route$MatchedEventParameters {
37267
37620
  /**
37268
37621
  * The name of the route
@@ -37311,8 +37664,14 @@ declare module "sap/ui/core/routing/Route" {
37311
37664
  targetControls?: Control[];
37312
37665
  }
37313
37666
 
37667
+ /**
37668
+ * Event object of the Route#matched event.
37669
+ */
37314
37670
  export type Route$MatchedEvent = Event<Route$MatchedEventParameters, Route>;
37315
37671
 
37672
+ /**
37673
+ * Parameters of the Route#patternMatched event.
37674
+ */
37316
37675
  export interface Route$PatternMatchedEventParameters {
37317
37676
  /**
37318
37677
  * The name of the route
@@ -37353,11 +37712,17 @@ declare module "sap/ui/core/routing/Route" {
37353
37712
  targetControls?: Control[];
37354
37713
  }
37355
37714
 
37715
+ /**
37716
+ * Event object of the Route#patternMatched event.
37717
+ */
37356
37718
  export type Route$PatternMatchedEvent = Event<
37357
37719
  Route$PatternMatchedEventParameters,
37358
37720
  Route
37359
37721
  >;
37360
37722
 
37723
+ /**
37724
+ * Parameters of the Route#switched event.
37725
+ */
37361
37726
  export interface Route$SwitchedEventParameters {
37362
37727
  /**
37363
37728
  * The name of the route
@@ -37376,6 +37741,9 @@ declare module "sap/ui/core/routing/Route" {
37376
37741
  config?: object;
37377
37742
  }
37378
37743
 
37744
+ /**
37745
+ * Event object of the Route#switched event.
37746
+ */
37379
37747
  export type Route$SwitchedEvent = Event<Route$SwitchedEventParameters, Route>;
37380
37748
  }
37381
37749
 
@@ -37801,7 +38169,9 @@ declare module "sap/ui/core/routing/Target" {
37801
38169
  */
37802
38170
  suspend(): Target;
37803
38171
  }
37804
-
38172
+ /**
38173
+ * Parameters of the Target#display event.
38174
+ */
37805
38175
  export interface Target$DisplayEventParameters {
37806
38176
  /**
37807
38177
  * The view that got displayed.
@@ -37829,6 +38199,9 @@ declare module "sap/ui/core/routing/Target" {
37829
38199
  routeRelevant?: object;
37830
38200
  }
37831
38201
 
38202
+ /**
38203
+ * Event object of the Target#display event.
38204
+ */
37832
38205
  export type Target$DisplayEvent = Event<
37833
38206
  Target$DisplayEventParameters,
37834
38207
  Target
@@ -38029,6 +38402,9 @@ declare module "sap/ui/core/routing/HashChanger" {
38029
38402
  fullHash?: string;
38030
38403
  };
38031
38404
 
38405
+ /**
38406
+ * Parameters of the HashChanger#hashSet event.
38407
+ */
38032
38408
  export interface HashChanger$HashSetEventParameters {
38033
38409
  /**
38034
38410
  * The relevant hash segment
@@ -38036,6 +38412,9 @@ declare module "sap/ui/core/routing/HashChanger" {
38036
38412
  hash?: string;
38037
38413
  }
38038
38414
 
38415
+ /**
38416
+ * Event object of the HashChanger#hashSet event.
38417
+ */
38039
38418
  export type HashChanger$HashSetEvent = Event<
38040
38419
  HashChanger$HashSetEventParameters,
38041
38420
  HashChanger
@@ -38133,7 +38512,11 @@ declare module "sap/ui/core/routing/HashChangerBase" {
38133
38512
  sHash: string
38134
38513
  ): void;
38135
38514
  }
38136
-
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
+ */
38137
38520
  export interface HashChangerBase$HashChangedEventParameters {
38138
38521
  /**
38139
38522
  * The hash segment before it's changed
@@ -38151,11 +38534,21 @@ declare module "sap/ui/core/routing/HashChangerBase" {
38151
38534
  fullHash?: string;
38152
38535
  }
38153
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
+ */
38154
38542
  export type HashChangerBase$HashChangedEvent = Event<
38155
38543
  HashChangerBase$HashChangedEventParameters,
38156
38544
  HashChangerBase
38157
38545
  >;
38158
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
+ */
38159
38552
  export interface HashChangerBase$HashReplacedEventParameters {
38160
38553
  /**
38161
38554
  * The relevant hash segment
@@ -38163,6 +38556,11 @@ declare module "sap/ui/core/routing/HashChangerBase" {
38163
38556
  hash?: string;
38164
38557
  }
38165
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
+ */
38166
38564
  export type HashChangerBase$HashReplacedEvent = Event<
38167
38565
  HashChangerBase$HashReplacedEventParameters,
38168
38566
  HashChangerBase
@@ -39375,7 +39773,9 @@ declare module "sap/ui/core/routing/Router" {
39375
39773
  */
39376
39774
  stop(): Router;
39377
39775
  }
39378
-
39776
+ /**
39777
+ * Parameters of the Router#beforeRouteMatched event.
39778
+ */
39379
39779
  export interface Router$BeforeRouteMatchedEventParameters {
39380
39780
  /**
39381
39781
  * The name of the route
@@ -39402,11 +39802,17 @@ declare module "sap/ui/core/routing/Router" {
39402
39802
  nestedRoute?: Route;
39403
39803
  }
39404
39804
 
39805
+ /**
39806
+ * Event object of the Router#beforeRouteMatched event.
39807
+ */
39405
39808
  export type Router$BeforeRouteMatchedEvent = Event<
39406
39809
  Router$BeforeRouteMatchedEventParameters,
39407
39810
  Router
39408
39811
  >;
39409
39812
 
39813
+ /**
39814
+ * Parameters of the Router#bypassed event.
39815
+ */
39410
39816
  export interface Router$BypassedEventParameters {
39411
39817
  /**
39412
39818
  * the current URL hash which did not match any route
@@ -39414,11 +39820,17 @@ declare module "sap/ui/core/routing/Router" {
39414
39820
  hash?: string;
39415
39821
  }
39416
39822
 
39823
+ /**
39824
+ * Event object of the Router#bypassed event.
39825
+ */
39417
39826
  export type Router$BypassedEvent = Event<
39418
39827
  Router$BypassedEventParameters,
39419
39828
  Router
39420
39829
  >;
39421
39830
 
39831
+ /**
39832
+ * Parameters of the Router#routeMatched event.
39833
+ */
39422
39834
  export interface Router$RouteMatchedEventParameters {
39423
39835
  /**
39424
39836
  * The name of the route
@@ -39467,11 +39879,17 @@ declare module "sap/ui/core/routing/Router" {
39467
39879
  targetControls?: Control[];
39468
39880
  }
39469
39881
 
39882
+ /**
39883
+ * Event object of the Router#routeMatched event.
39884
+ */
39470
39885
  export type Router$RouteMatchedEvent = Event<
39471
39886
  Router$RouteMatchedEventParameters,
39472
39887
  Router
39473
39888
  >;
39474
39889
 
39890
+ /**
39891
+ * Parameters of the Router#routePatternMatched event.
39892
+ */
39475
39893
  export interface Router$RoutePatternMatchedEventParameters {
39476
39894
  /**
39477
39895
  * The name of the route
@@ -39512,11 +39930,17 @@ declare module "sap/ui/core/routing/Router" {
39512
39930
  targetControls?: Control[];
39513
39931
  }
39514
39932
 
39933
+ /**
39934
+ * Event object of the Router#routePatternMatched event.
39935
+ */
39515
39936
  export type Router$RoutePatternMatchedEvent = Event<
39516
39937
  Router$RoutePatternMatchedEventParameters,
39517
39938
  Router
39518
39939
  >;
39519
39940
 
39941
+ /**
39942
+ * Parameters of the Router#titleChanged event.
39943
+ */
39520
39944
  export interface Router$TitleChangedEventParameters {
39521
39945
  /**
39522
39946
  * The current displayed title
@@ -39543,6 +39967,9 @@ declare module "sap/ui/core/routing/Router" {
39543
39967
  propagated?: boolean;
39544
39968
  }
39545
39969
 
39970
+ /**
39971
+ * Event object of the Router#titleChanged event.
39972
+ */
39546
39973
  export type Router$TitleChangedEvent = Event<
39547
39974
  Router$TitleChangedEventParameters,
39548
39975
  Router
@@ -40115,7 +40542,9 @@ declare module "sap/ui/core/routing/Targets" {
40115
40542
  */
40116
40543
  getViews(): Views;
40117
40544
  }
40118
-
40545
+ /**
40546
+ * Parameters of the Targets#display event.
40547
+ */
40119
40548
  export interface Targets$DisplayEventParameters {
40120
40549
  /**
40121
40550
  * The view that got displayed.
@@ -40148,11 +40577,17 @@ declare module "sap/ui/core/routing/Targets" {
40148
40577
  routeRelevant?: object;
40149
40578
  }
40150
40579
 
40580
+ /**
40581
+ * Event object of the Targets#display event.
40582
+ */
40151
40583
  export type Targets$DisplayEvent = Event<
40152
40584
  Targets$DisplayEventParameters,
40153
40585
  Targets
40154
40586
  >;
40155
40587
 
40588
+ /**
40589
+ * Parameters of the Targets#titleChanged event.
40590
+ */
40156
40591
  export interface Targets$TitleChangedEventParameters {
40157
40592
  /**
40158
40593
  * The current displayed title
@@ -40165,6 +40600,9 @@ declare module "sap/ui/core/routing/Targets" {
40165
40600
  name?: string;
40166
40601
  }
40167
40602
 
40603
+ /**
40604
+ * Event object of the Targets#titleChanged event.
40605
+ */
40168
40606
  export type Targets$TitleChangedEvent = Event<
40169
40607
  Targets$TitleChangedEventParameters,
40170
40608
  Targets
@@ -40295,7 +40733,9 @@ declare module "sap/ui/core/routing/Views" {
40295
40733
  oView: View | null | undefined
40296
40734
  ): this;
40297
40735
  }
40298
-
40736
+ /**
40737
+ * Parameters of the Views#created event.
40738
+ */
40299
40739
  export interface Views$CreatedEventParameters {
40300
40740
  /**
40301
40741
  * the instance of the created view.
@@ -40308,6 +40748,9 @@ declare module "sap/ui/core/routing/Views" {
40308
40748
  viewOptions?: object;
40309
40749
  }
40310
40750
 
40751
+ /**
40752
+ * Event object of the Views#created event.
40753
+ */
40311
40754
  export type Views$CreatedEvent = Event<Views$CreatedEventParameters, Views>;
40312
40755
  }
40313
40756
 
@@ -40627,7 +41070,11 @@ declare module "sap/ui/core/ScrollBar" {
40627
41070
  oOwnerDomRef: string
40628
41071
  ): void;
40629
41072
  }
40630
-
41073
+ /**
41074
+ * Describes the settings that can be provided to the ScrollBar constructor.
41075
+ *
41076
+ * @deprecated (since 1.56)
41077
+ */
40631
41078
  export interface $ScrollBarSettings extends $ControlSettings {
40632
41079
  /**
40633
41080
  * Orientation. Defines if the Scrollbar is vertical or horizontal.
@@ -40660,6 +41107,9 @@ declare module "sap/ui/core/ScrollBar" {
40660
41107
  scroll?: (oEvent: ScrollBar$ScrollEvent) => void;
40661
41108
  }
40662
41109
 
41110
+ /**
41111
+ * Parameters of the ScrollBar#scroll event.
41112
+ */
40663
41113
  export interface ScrollBar$ScrollEventParameters {
40664
41114
  /**
40665
41115
  * Actions are: Click on track, button, drag of thumb, or mouse wheel click.
@@ -40682,6 +41132,9 @@ declare module "sap/ui/core/ScrollBar" {
40682
41132
  oldScrollPos?: int;
40683
41133
  }
40684
41134
 
41135
+ /**
41136
+ * Event object of the ScrollBar#scroll event.
41137
+ */
40685
41138
  export type ScrollBar$ScrollEvent = Event<
40686
41139
  ScrollBar$ScrollEventParameters,
40687
41140
  ScrollBar
@@ -40840,7 +41293,11 @@ declare module "sap/ui/core/search/OpenSearchProvider" {
40840
41293
  fCallback: (p1: string, p2: string[]) => void
40841
41294
  ): void;
40842
41295
  }
40843
-
41296
+ /**
41297
+ * Describes the settings that can be provided to the OpenSearchProvider constructor.
41298
+ *
41299
+ * @deprecated (since 1.120)
41300
+ */
40844
41301
  export interface $OpenSearchProviderSettings extends $SearchProviderSettings {
40845
41302
  /**
40846
41303
  * The URL for suggestions of the search provider. As placeholder for the concrete search queries '{searchTerms}'
@@ -40973,7 +41430,11 @@ declare module "sap/ui/core/search/SearchProvider" {
40973
41430
  fnCallback: (p1: string, p2: string[]) => void
40974
41431
  ): void;
40975
41432
  }
40976
-
41433
+ /**
41434
+ * Describes the settings that can be provided to the SearchProvider constructor.
41435
+ *
41436
+ * @deprecated (since 1.120)
41437
+ */
40977
41438
  export interface $SearchProviderSettings extends $ElementSettings {
40978
41439
  /**
40979
41440
  * Icon of the Search Provider
@@ -41061,7 +41522,9 @@ declare module "sap/ui/core/SeparatorItem" {
41061
41522
  */
41062
41523
  static getMetadata(): ElementMetadata;
41063
41524
  }
41064
-
41525
+ /**
41526
+ * Describes the settings that can be provided to the SeparatorItem constructor.
41527
+ */
41065
41528
  export interface $SeparatorItemSettings extends $ItemSettings {}
41066
41529
  }
41067
41530
 
@@ -41329,7 +41792,10 @@ declare module "sap/ui/core/theming/Parameters" {
41329
41792
  * Resets the CSS parameters which finally will reload the parameters the next time they are queried via
41330
41793
  * the method `get`.
41331
41794
  *
41332
- * @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.
41333
41799
  */
41334
41800
  reset(): void;
41335
41801
  }
@@ -41534,7 +42000,9 @@ declare module "sap/ui/core/Title" {
41534
42000
  sText?: string
41535
42001
  ): this;
41536
42002
  }
41537
-
42003
+ /**
42004
+ * Describes the settings that can be provided to the Title constructor.
42005
+ */
41538
42006
  export interface $TitleSettings extends $ElementSettings {
41539
42007
  /**
41540
42008
  * Defines the title text
@@ -41691,7 +42159,11 @@ declare module "sap/ui/core/tmpl/DOMAttribute" {
41691
42159
  sValue?: string
41692
42160
  ): this;
41693
42161
  }
41694
-
42162
+ /**
42163
+ * Describes the settings that can be provided to the DOMAttribute constructor.
42164
+ *
42165
+ * @deprecated (since 1.56)
42166
+ */
41695
42167
  export interface $DOMAttributeSettings extends $ElementSettings {
41696
42168
  /**
41697
42169
  * Name of the DOM attribute
@@ -42025,7 +42497,11 @@ declare module "sap/ui/core/tmpl/DOMElement" {
42025
42497
  sText?: string
42026
42498
  ): this;
42027
42499
  }
42028
-
42500
+ /**
42501
+ * Describes the settings that can be provided to the DOMElement constructor.
42502
+ *
42503
+ * @deprecated (since 1.56)
42504
+ */
42029
42505
  export interface $DOMElementSettings extends $ControlSettings {
42030
42506
  /**
42031
42507
  * The text content of the DOM element
@@ -42148,7 +42624,11 @@ declare module "sap/ui/core/tmpl/HandlebarsTemplate" {
42148
42624
  */
42149
42625
  static getMetadata(): ManagedObjectMetadata;
42150
42626
  }
42151
-
42627
+ /**
42628
+ * Describes the settings that can be provided to the HandlebarsTemplate constructor.
42629
+ *
42630
+ * @deprecated (since 1.56)
42631
+ */
42152
42632
  export interface $HandlebarsTemplateSettings extends $TemplateSettings {}
42153
42633
  }
42154
42634
 
@@ -42411,7 +42891,12 @@ declare module "sap/ui/core/tmpl/Template" {
42411
42891
  sContent?: string
42412
42892
  ): this;
42413
42893
  }
42414
-
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
+ */
42415
42900
  export interface $TemplateSettings extends $ManagedObjectSettings {
42416
42901
  /**
42417
42902
  * The Template definition as a String.
@@ -42867,7 +43352,11 @@ declare module "sap/ui/core/tmpl/TemplateControl" {
42867
43352
  fnRenderer: Function
42868
43353
  ): this;
42869
43354
  }
42870
-
43355
+ /**
43356
+ * Describes the settings that can be provided to the TemplateControl constructor.
43357
+ *
43358
+ * @deprecated (since 1.56)
43359
+ */
42871
43360
  export interface $TemplateControlSettings extends $ControlSettings {
42872
43361
  /**
42873
43362
  * The context is a data object. It can be used for default template expressions. A change of the context
@@ -42892,15 +43381,27 @@ declare module "sap/ui/core/tmpl/TemplateControl" {
42892
43381
  beforeRendering?: (oEvent: Event) => void;
42893
43382
  }
42894
43383
 
43384
+ /**
43385
+ * Parameters of the TemplateControl#afterRendering event.
43386
+ */
42895
43387
  export interface TemplateControl$AfterRenderingEventParameters {}
42896
43388
 
43389
+ /**
43390
+ * Event object of the TemplateControl#afterRendering event.
43391
+ */
42897
43392
  export type TemplateControl$AfterRenderingEvent = Event<
42898
43393
  TemplateControl$AfterRenderingEventParameters,
42899
43394
  TemplateControl
42900
43395
  >;
42901
43396
 
43397
+ /**
43398
+ * Parameters of the TemplateControl#beforeRendering event.
43399
+ */
42902
43400
  export interface TemplateControl$BeforeRenderingEventParameters {}
42903
43401
 
43402
+ /**
43403
+ * Event object of the TemplateControl#beforeRendering event.
43404
+ */
42904
43405
  export type TemplateControl$BeforeRenderingEvent = Event<
42905
43406
  TemplateControl$BeforeRenderingEventParameters,
42906
43407
  TemplateControl
@@ -43333,7 +43834,9 @@ declare module "sap/ui/core/TooltipBase" {
43333
43834
  sText?: string
43334
43835
  ): this;
43335
43836
  }
43336
-
43837
+ /**
43838
+ * Describes the settings that can be provided to the TooltipBase constructor.
43839
+ */
43337
43840
  export interface $TooltipBaseSettings extends $ControlSettings {
43338
43841
  /**
43339
43842
  * The text that is shown in the tooltip that extends the TooltipBase class, for example in RichTooltip.
@@ -43390,8 +43893,14 @@ declare module "sap/ui/core/TooltipBase" {
43390
43893
  closed?: (oEvent: Event) => void;
43391
43894
  }
43392
43895
 
43896
+ /**
43897
+ * Parameters of the TooltipBase#closed event.
43898
+ */
43393
43899
  export interface TooltipBase$ClosedEventParameters {}
43394
43900
 
43901
+ /**
43902
+ * Event object of the TooltipBase#closed event.
43903
+ */
43395
43904
  export type TooltipBase$ClosedEvent = Event<
43396
43905
  TooltipBase$ClosedEventParameters,
43397
43906
  TooltipBase
@@ -43444,10 +43953,12 @@ declare module "sap/ui/core/UIArea" {
43444
43953
  export default class UIArea extends ManagedObject {
43445
43954
  constructor();
43446
43955
  /**
43447
- * Registry of all `sap.ui.core.Element`s that currently exist.
43956
+ * Registry of all `sap.ui.core.UIArea`s that currently exist.
43448
43957
  *
43449
43958
  * @since 1.107
43450
- * @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}.
43451
43962
  */
43452
43963
  static registry: registry;
43453
43964
 
@@ -43761,7 +44272,9 @@ declare module "sap/ui/core/UIArea" {
43761
44272
  *
43762
44273
  * The node must have an ID that will be used as ID for this instance of `UIArea`.
43763
44274
  *
43764
- * @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}.
43765
44278
  */
43766
44279
  setRootNode(
43767
44280
  /**
@@ -43777,16 +44290,20 @@ declare module "sap/ui/core/UIArea" {
43777
44290
  unlock(): void;
43778
44291
  }
43779
44292
  /**
43780
- * Registry of all `sap.ui.core.Element`s that currently exist.
44293
+ * Registry of all `sap.ui.core.UIArea`s that currently exist.
43781
44294
  *
43782
44295
  * @since 1.107
43783
- * @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}.
43784
44299
  */
43785
44300
  interface registry {
43786
44301
  /**
43787
44302
  * Number of existing UIAreas.
43788
44303
  *
43789
- * @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}.
43790
44307
  */
43791
44308
  size: int;
43792
44309
 
@@ -43800,7 +44317,9 @@ declare module "sap/ui/core/UIArea" {
43800
44317
  * **Note**: The returned object is created by a call to `Object.create(null)`, and therefore lacks all
43801
44318
  * methods of `Object.prototype`, e.g. `toString` etc.
43802
44319
  *
43803
- * @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}.
43804
44323
  *
43805
44324
  * @returns Object with all UIAreas, keyed by their ID
43806
44325
  */
@@ -43828,7 +44347,9 @@ declare module "sap/ui/core/UIArea" {
43828
44347
  * in the array is not specified and might change between calls (over time and across different versions
43829
44348
  * of UI5).
43830
44349
  *
43831
- * @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}.
43832
44353
  *
43833
44354
  * @returns Array of UIAreas matching the predicate; order is undefined and might change in newer versions
43834
44355
  * of UI5
@@ -43865,7 +44386,9 @@ declare module "sap/ui/core/UIArea" {
43865
44386
  * that the implementation of `callback` sees, depends on the usual resolution mechanism. E.g. when `callback`
43866
44387
  * was bound to some context object, that object wins over the given `thisArg`.
43867
44388
  *
43868
- * @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}.
43869
44392
  */
43870
44393
  forEach(
43871
44394
  /**
@@ -43883,7 +44406,9 @@ declare module "sap/ui/core/UIArea" {
43883
44406
  * When the ID is `null` or `undefined` or when there's no UIArea with the given ID, then `undefined` is
43884
44407
  * returned.
43885
44408
  *
43886
- * @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}.
43887
44412
  *
43888
44413
  * @returns UIArea with the given ID or `undefined`
43889
44414
  */
@@ -43896,6 +44421,9 @@ declare module "sap/ui/core/UIArea" {
43896
44421
  }
43897
44422
  export const registry: registry;
43898
44423
 
44424
+ /**
44425
+ * Describes the settings that can be provided to the UIArea constructor.
44426
+ */
43899
44427
  export interface $UIAreaSettings extends $ManagedObjectSettings {
43900
44428
  /**
43901
44429
  * Content that is displayed in the UIArea.
@@ -44359,6 +44887,9 @@ declare module "sap/ui/core/UIComponent" {
44359
44887
  };
44360
44888
  };
44361
44889
 
44890
+ /**
44891
+ * Describes the settings that can be provided to the UIComponent constructor.
44892
+ */
44362
44893
  export interface $UIComponentSettings extends $ComponentSettings {}
44363
44894
  }
44364
44895
 
@@ -44700,7 +45231,11 @@ declare module "sap/ui/core/util/Export" {
44700
45231
  */
44701
45232
  unbindRows(): this;
44702
45233
  }
44703
-
45234
+ /**
45235
+ * Describes the settings that can be provided to the Export constructor.
45236
+ *
45237
+ * @deprecated (since 1.73)
45238
+ */
44704
45239
  export interface $ExportSettings extends $ControlSettings {
44705
45240
  /**
44706
45241
  * Type that generates the content.
@@ -44826,7 +45361,11 @@ declare module "sap/ui/core/util/ExportCell" {
44826
45361
  sContent: string
44827
45362
  ): this;
44828
45363
  }
44829
-
45364
+ /**
45365
+ * Describes the settings that can be provided to the ExportCell constructor.
45366
+ *
45367
+ * @deprecated (since 1.73)
45368
+ */
44830
45369
  export interface $ExportCellSettings extends $ElementSettings {
44831
45370
  /**
44832
45371
  * Cell content.
@@ -44966,7 +45505,11 @@ declare module "sap/ui/core/util/ExportColumn" {
44966
45505
  oTemplate: ExportCell
44967
45506
  ): this;
44968
45507
  }
44969
-
45508
+ /**
45509
+ * Describes the settings that can be provided to the ExportColumn constructor.
45510
+ *
45511
+ * @deprecated (since 1.73)
45512
+ */
44970
45513
  export interface $ExportColumnSettings extends $ManagedObjectSettings {
44971
45514
  /**
44972
45515
  * Column name.
@@ -45138,7 +45681,11 @@ declare module "sap/ui/core/util/ExportRow" {
45138
45681
  vCell: int | string | ExportCell
45139
45682
  ): ExportCell | null;
45140
45683
  }
45141
-
45684
+ /**
45685
+ * Describes the settings that can be provided to the ExportRow constructor.
45686
+ *
45687
+ * @deprecated (since 1.73)
45688
+ */
45142
45689
  export interface $ExportRowSettings extends $ManagedObjectSettings {
45143
45690
  /**
45144
45691
  * Cells for the Export.
@@ -45395,7 +45942,11 @@ declare module "sap/ui/core/util/ExportType" {
45395
45942
  sMimeType: string
45396
45943
  ): this;
45397
45944
  }
45398
-
45945
+ /**
45946
+ * Describes the settings that can be provided to the ExportType constructor.
45947
+ *
45948
+ * @deprecated (since 1.73)
45949
+ */
45399
45950
  export interface $ExportTypeSettings extends $ManagedObjectSettings {
45400
45951
  /**
45401
45952
  * File extension.
@@ -45546,7 +46097,11 @@ declare module "sap/ui/core/util/ExportTypeCSV" {
45546
46097
  sSeparatorChar: string
45547
46098
  ): this;
45548
46099
  }
45549
-
46100
+ /**
46101
+ * Describes the settings that can be provided to the ExportTypeCSV constructor.
46102
+ *
46103
+ * @deprecated (since 1.73)
46104
+ */
45550
46105
  export interface $ExportTypeCSVSettings extends $ExportTypeSettings {
45551
46106
  /**
45552
46107
  * Separator char.
@@ -46144,6 +46699,9 @@ declare module "sap/ui/core/util/MockServer" {
46144
46699
  ): void;
46145
46700
  }
46146
46701
 
46702
+ /**
46703
+ * Describes the settings that can be provided to the MockServer constructor.
46704
+ */
46147
46705
  export interface $MockServerSettings extends $ManagedObjectSettings {
46148
46706
  /**
46149
46707
  * Getter for property `rootUri`. Has to be relative and requires a trailing '/'. It also needs to match
@@ -46566,7 +47124,9 @@ declare module "sap/ui/core/VariantLayoutData" {
46566
47124
  vMultipleLayoutData: int | string | LayoutData
46567
47125
  ): LayoutData | null;
46568
47126
  }
46569
-
47127
+ /**
47128
+ * Describes the settings that can be provided to the VariantLayoutData constructor.
47129
+ */
46570
47130
  export interface $VariantLayoutDataSettings extends $LayoutDataSettings {
46571
47131
  /**
46572
47132
  * Allows multiple LayoutData.
@@ -46739,6 +47299,11 @@ declare module "sap/ui/core/webc/WebComponent" {
46739
47299
  */
46740
47300
  export type MetadataOptionsPropertyMapping = MetadataOptions.Property.Mapping;
46741
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
+ */
46742
47307
  export interface $WebComponentSettings extends $ControlSettings {}
46743
47308
 
46744
47309
  export namespace MetadataOptions {
@@ -47007,7 +47572,9 @@ declare module "sap/ui/core/ws/SapPcpWebSocket" {
47007
47572
  enum SUPPORTED_PROTOCOLS {
47008
47573
  v10 = "v10.pcp.sap.com",
47009
47574
  }
47010
-
47575
+ /**
47576
+ * Parameters of the SapPcpWebSocket#message event.
47577
+ */
47011
47578
  export interface SapPcpWebSocket$MessageEventParameters
47012
47579
  extends WebSocket$MessageEventParameters {
47013
47580
  /**
@@ -47016,6 +47583,9 @@ declare module "sap/ui/core/ws/SapPcpWebSocket" {
47016
47583
  pcpFields?: string;
47017
47584
  }
47018
47585
 
47586
+ /**
47587
+ * Event object of the SapPcpWebSocket#message event.
47588
+ */
47019
47589
  export type SapPcpWebSocket$MessageEvent = Event<
47020
47590
  SapPcpWebSocket$MessageEventParameters,
47021
47591
  SapPcpWebSocket
@@ -47444,7 +48014,9 @@ declare module "sap/ui/core/ws/WebSocket" {
47444
48014
  sMessage: string
47445
48015
  ): this;
47446
48016
  }
47447
-
48017
+ /**
48018
+ * Parameters of the WebSocket#close event.
48019
+ */
47448
48020
  export interface WebSocket$CloseEventParameters {
47449
48021
  /**
47450
48022
  * Close code provided by the server.
@@ -47462,18 +48034,30 @@ declare module "sap/ui/core/ws/WebSocket" {
47462
48034
  wasClean?: string;
47463
48035
  }
47464
48036
 
48037
+ /**
48038
+ * Event object of the WebSocket#close event.
48039
+ */
47465
48040
  export type WebSocket$CloseEvent = Event<
47466
48041
  WebSocket$CloseEventParameters,
47467
48042
  WebSocket
47468
48043
  >;
47469
48044
 
48045
+ /**
48046
+ * Parameters of the WebSocket#error event.
48047
+ */
47470
48048
  export interface WebSocket$ErrorEventParameters {}
47471
48049
 
48050
+ /**
48051
+ * Event object of the WebSocket#error event.
48052
+ */
47472
48053
  export type WebSocket$ErrorEvent = Event<
47473
48054
  WebSocket$ErrorEventParameters,
47474
48055
  WebSocket
47475
48056
  >;
47476
48057
 
48058
+ /**
48059
+ * Parameters of the WebSocket#message event.
48060
+ */
47477
48061
  export interface WebSocket$MessageEventParameters {
47478
48062
  /**
47479
48063
  * Received data from the server.
@@ -47481,13 +48065,22 @@ declare module "sap/ui/core/ws/WebSocket" {
47481
48065
  data?: string;
47482
48066
  }
47483
48067
 
48068
+ /**
48069
+ * Event object of the WebSocket#message event.
48070
+ */
47484
48071
  export type WebSocket$MessageEvent = Event<
47485
48072
  WebSocket$MessageEventParameters,
47486
48073
  WebSocket
47487
48074
  >;
47488
48075
 
48076
+ /**
48077
+ * Parameters of the WebSocket#open event.
48078
+ */
47489
48079
  export interface WebSocket$OpenEventParameters {}
47490
48080
 
48081
+ /**
48082
+ * Event object of the WebSocket#open event.
48083
+ */
47491
48084
  export type WebSocket$OpenEvent = Event<
47492
48085
  WebSocket$OpenEventParameters,
47493
48086
  WebSocket
@@ -47794,7 +48387,12 @@ declare module "sap/ui/core/XMLComposite" {
47794
48387
  sWidth?: CSSSize
47795
48388
  ): this;
47796
48389
  }
47797
-
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
+ */
47798
48396
  export interface $XMLCompositeSettings extends $ControlSettings {
47799
48397
  /**
47800
48398
  * The width
@@ -51884,7 +52482,9 @@ declare module "sap/ui/model/Binding" {
51884
52482
  oModel: object
51885
52483
  ): boolean;
51886
52484
  }
51887
-
52485
+ /**
52486
+ * Parameters of the Binding#AggregatedDataStateChange event.
52487
+ */
51888
52488
  export interface Binding$AggregatedDataStateChangeEventParameters {
51889
52489
  /**
51890
52490
  * The `DataState` object of the binding
@@ -51892,11 +52492,17 @@ declare module "sap/ui/model/Binding" {
51892
52492
  dataState?: DataState;
51893
52493
  }
51894
52494
 
52495
+ /**
52496
+ * Event object of the Binding#AggregatedDataStateChange event.
52497
+ */
51895
52498
  export type Binding$AggregatedDataStateChangeEvent = Event<
51896
52499
  Binding$AggregatedDataStateChangeEventParameters,
51897
52500
  Binding
51898
52501
  >;
51899
52502
 
52503
+ /**
52504
+ * Parameters of the Binding#change event.
52505
+ */
51900
52506
  export interface Binding$ChangeEventParameters {
51901
52507
  /**
51902
52508
  * A string stating the reason for the data change; some change reasons can be found in {@link sap.ui.model.ChangeReason},
@@ -51905,11 +52511,17 @@ declare module "sap/ui/model/Binding" {
51905
52511
  reason?: string;
51906
52512
  }
51907
52513
 
52514
+ /**
52515
+ * Event object of the Binding#change event.
52516
+ */
51908
52517
  export type Binding$ChangeEvent = Event<
51909
52518
  Binding$ChangeEventParameters,
51910
52519
  Binding
51911
52520
  >;
51912
52521
 
52522
+ /**
52523
+ * Parameters of the Binding#dataReceived event.
52524
+ */
51913
52525
  export interface Binding$DataReceivedEventParameters {
51914
52526
  /**
51915
52527
  * The data received; is `undefined` in error cases
@@ -51917,18 +52529,30 @@ declare module "sap/ui/model/Binding" {
51917
52529
  data?: string;
51918
52530
  }
51919
52531
 
52532
+ /**
52533
+ * Event object of the Binding#dataReceived event.
52534
+ */
51920
52535
  export type Binding$DataReceivedEvent = Event<
51921
52536
  Binding$DataReceivedEventParameters,
51922
52537
  Binding
51923
52538
  >;
51924
52539
 
52540
+ /**
52541
+ * Parameters of the Binding#dataRequested event.
52542
+ */
51925
52543
  export interface Binding$DataRequestedEventParameters {}
51926
52544
 
52545
+ /**
52546
+ * Event object of the Binding#dataRequested event.
52547
+ */
51927
52548
  export type Binding$DataRequestedEvent = Event<
51928
52549
  Binding$DataRequestedEventParameters,
51929
52550
  Binding
51930
52551
  >;
51931
52552
 
52553
+ /**
52554
+ * Parameters of the Binding#DataStateChange event.
52555
+ */
51932
52556
  export interface Binding$DataStateChangeEventParameters {
51933
52557
  /**
51934
52558
  * The `DataState` object of the binding
@@ -51936,6 +52560,9 @@ declare module "sap/ui/model/Binding" {
51936
52560
  dataState?: DataState;
51937
52561
  }
51938
52562
 
52563
+ /**
52564
+ * Event object of the Binding#DataStateChange event.
52565
+ */
51939
52566
  export type Binding$DataStateChangeEvent = Event<
51940
52567
  Binding$DataStateChangeEventParameters,
51941
52568
  Binding
@@ -53274,9 +53901,9 @@ declare module "sap/ui/model/CompositeType" {
53274
53901
  * @since 1.82.0
53275
53902
  *
53276
53903
  * @returns An array of indices that determine which parts of this type shall not propagate their model
53277
- * messages to the attached control
53904
+ * messages to the attached control; an empty array is returned by default
53278
53905
  */
53279
- getPartsIgnoringMessages(): number[];
53906
+ getPartsIgnoringMessages(): int[];
53280
53907
  /**
53281
53908
  * Returns whether the {@link #formatValue} and {@link #parseValue} methods operate on the internal, related
53282
53909
  * native JavaScript values.
@@ -55061,16 +55688,39 @@ declare module "sap/ui/model/ListBinding" {
55061
55688
  */
55062
55689
  update(): void;
55063
55690
  }
55064
-
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
+ */
55065
55697
  export interface ListBinding$FilterEventParameters {}
55066
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
+ */
55067
55705
  export type ListBinding$FilterEvent = Event<
55068
55706
  ListBinding$FilterEventParameters,
55069
55707
  ListBinding
55070
55708
  >;
55071
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
+ */
55072
55716
  export interface ListBinding$SortEventParameters {}
55073
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
+ */
55074
55724
  export type ListBinding$SortEvent = Event<
55075
55725
  ListBinding$SortEventParameters,
55076
55726
  ListBinding
@@ -55992,7 +56642,9 @@ declare module "sap/ui/model/Model" {
55992
56642
  iSizeLimit: int
55993
56643
  ): void;
55994
56644
  }
55995
-
56645
+ /**
56646
+ * Parameters of the Model#parseError event.
56647
+ */
55996
56648
  export interface Model$ParseErrorEventParameters {
55997
56649
  errorCode?: int;
55998
56650
 
@@ -56009,11 +56661,17 @@ declare module "sap/ui/model/Model" {
56009
56661
  filepos?: int;
56010
56662
  }
56011
56663
 
56664
+ /**
56665
+ * Event object of the Model#parseError event.
56666
+ */
56012
56667
  export type Model$ParseErrorEvent = Event<
56013
56668
  Model$ParseErrorEventParameters,
56014
56669
  Model
56015
56670
  >;
56016
56671
 
56672
+ /**
56673
+ * Parameters of the Model#propertyChange event.
56674
+ */
56017
56675
  export interface Model$PropertyChangeEventParameters {
56018
56676
  /**
56019
56677
  * The cause of the property value change
@@ -56036,11 +56694,17 @@ declare module "sap/ui/model/Model" {
56036
56694
  value?: any;
56037
56695
  }
56038
56696
 
56697
+ /**
56698
+ * Event object of the Model#propertyChange event.
56699
+ */
56039
56700
  export type Model$PropertyChangeEvent = Event<
56040
56701
  Model$PropertyChangeEventParameters,
56041
56702
  Model
56042
56703
  >;
56043
56704
 
56705
+ /**
56706
+ * Parameters of the Model#requestCompleted event.
56707
+ */
56044
56708
  export interface Model$RequestCompletedEventParameters {
56045
56709
  /**
56046
56710
  * URL which was sent to the back end
@@ -56079,11 +56743,17 @@ declare module "sap/ui/model/Model" {
56079
56743
  infoObject?: object;
56080
56744
  }
56081
56745
 
56746
+ /**
56747
+ * Event object of the Model#requestCompleted event.
56748
+ */
56082
56749
  export type Model$RequestCompletedEvent = Event<
56083
56750
  Model$RequestCompletedEventParameters,
56084
56751
  Model
56085
56752
  >;
56086
56753
 
56754
+ /**
56755
+ * Parameters of the Model#requestFailed event.
56756
+ */
56087
56757
  export interface Model$RequestFailedEventParameters {
56088
56758
  /**
56089
56759
  * A text that describes the failure.
@@ -56106,11 +56776,17 @@ declare module "sap/ui/model/Model" {
56106
56776
  responseText?: string;
56107
56777
  }
56108
56778
 
56779
+ /**
56780
+ * Event object of the Model#requestFailed event.
56781
+ */
56109
56782
  export type Model$RequestFailedEvent = Event<
56110
56783
  Model$RequestFailedEventParameters,
56111
56784
  Model
56112
56785
  >;
56113
56786
 
56787
+ /**
56788
+ * Parameters of the Model#requestSent event.
56789
+ */
56114
56790
  export interface Model$RequestSentEventParameters {
56115
56791
  /**
56116
56792
  * The url which is sent to the back end
@@ -56138,6 +56814,9 @@ declare module "sap/ui/model/Model" {
56138
56814
  infoObject?: object;
56139
56815
  }
56140
56816
 
56817
+ /**
56818
+ * Event object of the Model#requestSent event.
56819
+ */
56141
56820
  export type Model$RequestSentEvent = Event<
56142
56821
  Model$RequestSentEventParameters,
56143
56822
  Model
@@ -56966,16 +57645,27 @@ declare module "sap/ui/model/odata/ODataAnnotations" {
56966
57645
  }
56967
57646
  ): boolean;
56968
57647
  }
56969
-
57648
+ /**
57649
+ * Parameters of the ODataAnnotations#failed event.
57650
+ */
56970
57651
  export interface ODataAnnotations$FailedEventParameters {}
56971
57652
 
57653
+ /**
57654
+ * Event object of the ODataAnnotations#failed event.
57655
+ */
56972
57656
  export type ODataAnnotations$FailedEvent = Event<
56973
57657
  ODataAnnotations$FailedEventParameters,
56974
57658
  ODataAnnotations
56975
57659
  >;
56976
57660
 
57661
+ /**
57662
+ * Parameters of the ODataAnnotations#loaded event.
57663
+ */
56977
57664
  export interface ODataAnnotations$LoadedEventParameters {}
56978
57665
 
57666
+ /**
57667
+ * Event object of the ODataAnnotations#loaded event.
57668
+ */
56979
57669
  export type ODataAnnotations$LoadedEvent = Event<
56980
57670
  ODataAnnotations$LoadedEventParameters,
56981
57671
  ODataAnnotations
@@ -57670,16 +58360,27 @@ declare module "sap/ui/model/odata/ODataMetadata" {
57670
58360
  */
57671
58361
  refresh(): Promise<any>;
57672
58362
  }
57673
-
58363
+ /**
58364
+ * Parameters of the ODataMetadata#failed event.
58365
+ */
57674
58366
  export interface ODataMetadata$FailedEventParameters {}
57675
58367
 
58368
+ /**
58369
+ * Event object of the ODataMetadata#failed event.
58370
+ */
57676
58371
  export type ODataMetadata$FailedEvent = Event<
57677
58372
  ODataMetadata$FailedEventParameters,
57678
58373
  ODataMetadata
57679
58374
  >;
57680
58375
 
58376
+ /**
58377
+ * Parameters of the ODataMetadata#loaded event.
58378
+ */
57681
58379
  export interface ODataMetadata$LoadedEventParameters {}
57682
58380
 
58381
+ /**
58382
+ * Event object of the ODataMetadata#loaded event.
58383
+ */
57683
58384
  export type ODataMetadata$LoadedEvent = Event<
57684
58385
  ODataMetadata$LoadedEventParameters,
57685
58386
  ODataMetadata
@@ -60235,30 +60936,53 @@ declare module "sap/ui/model/odata/ODataModel" {
60235
60936
  bForceUpdate?: boolean
60236
60937
  ): void;
60237
60938
  }
60238
-
60939
+ /**
60940
+ * Parameters of the ODataModel#annotationsFailed event.
60941
+ */
60239
60942
  export interface ODataModel$AnnotationsFailedEventParameters {}
60240
60943
 
60944
+ /**
60945
+ * Event object of the ODataModel#annotationsFailed event.
60946
+ */
60241
60947
  export type ODataModel$AnnotationsFailedEvent = Event<
60242
60948
  ODataModel$AnnotationsFailedEventParameters,
60243
60949
  ODataModel
60244
60950
  >;
60245
60951
 
60952
+ /**
60953
+ * Parameters of the ODataModel#annotationsLoaded event.
60954
+ */
60246
60955
  export interface ODataModel$AnnotationsLoadedEventParameters {}
60247
60956
 
60957
+ /**
60958
+ * Event object of the ODataModel#annotationsLoaded event.
60959
+ */
60248
60960
  export type ODataModel$AnnotationsLoadedEvent = Event<
60249
60961
  ODataModel$AnnotationsLoadedEventParameters,
60250
60962
  ODataModel
60251
60963
  >;
60252
60964
 
60965
+ /**
60966
+ * Parameters of the ODataModel#metadataFailed event.
60967
+ */
60253
60968
  export interface ODataModel$MetadataFailedEventParameters {}
60254
60969
 
60970
+ /**
60971
+ * Event object of the ODataModel#metadataFailed event.
60972
+ */
60255
60973
  export type ODataModel$MetadataFailedEvent = Event<
60256
60974
  ODataModel$MetadataFailedEventParameters,
60257
60975
  ODataModel
60258
60976
  >;
60259
60977
 
60978
+ /**
60979
+ * Parameters of the ODataModel#metadataLoaded event.
60980
+ */
60260
60981
  export interface ODataModel$MetadataLoadedEventParameters {}
60261
60982
 
60983
+ /**
60984
+ * Event object of the ODataModel#metadataLoaded event.
60985
+ */
60262
60986
  export type ODataModel$MetadataLoadedEvent = Event<
60263
60987
  ODataModel$MetadataLoadedEventParameters,
60264
60988
  ODataModel
@@ -65145,9 +65869,14 @@ declare module "sap/ui/model/odata/v2/ODataListBinding" {
65145
65869
  bReturnSuccess?: boolean
65146
65870
  ): this;
65147
65871
  }
65148
-
65872
+ /**
65873
+ * Parameters of the ODataListBinding#createActivate event.
65874
+ */
65149
65875
  export interface ODataListBinding$CreateActivateEventParameters {}
65150
65876
 
65877
+ /**
65878
+ * Event object of the ODataListBinding#createActivate event.
65879
+ */
65151
65880
  export type ODataListBinding$CreateActivateEvent = Event<
65152
65881
  ODataListBinding$CreateActivateEventParameters,
65153
65882
  ODataListBinding
@@ -67796,6 +68525,9 @@ declare module "sap/ui/model/odata/v2/ODataModel" {
67796
68525
  single?: boolean;
67797
68526
  };
67798
68527
 
68528
+ /**
68529
+ * Parameters of the ODataModel#annotationsFailed event.
68530
+ */
67799
68531
  export interface ODataModel$AnnotationsFailedEventParameters {
67800
68532
  /**
67801
68533
  * An array of Errors
@@ -67803,11 +68535,17 @@ declare module "sap/ui/model/odata/v2/ODataModel" {
67803
68535
  result?: Error[];
67804
68536
  }
67805
68537
 
68538
+ /**
68539
+ * Event object of the ODataModel#annotationsFailed event.
68540
+ */
67806
68541
  export type ODataModel$AnnotationsFailedEvent = Event<
67807
68542
  ODataModel$AnnotationsFailedEventParameters,
67808
68543
  ODataModel
67809
68544
  >;
67810
68545
 
68546
+ /**
68547
+ * Parameters of the ODataModel#annotationsLoaded event.
68548
+ */
67811
68549
  export interface ODataModel$AnnotationsLoadedEventParameters {
67812
68550
  /**
67813
68551
  * An array consisting of one or several annotation sources and/or errors containing a source property and
@@ -67816,11 +68554,17 @@ declare module "sap/ui/model/odata/v2/ODataModel" {
67816
68554
  result?: Source[];
67817
68555
  }
67818
68556
 
68557
+ /**
68558
+ * Event object of the ODataModel#annotationsLoaded event.
68559
+ */
67819
68560
  export type ODataModel$AnnotationsLoadedEvent = Event<
67820
68561
  ODataModel$AnnotationsLoadedEventParameters,
67821
68562
  ODataModel
67822
68563
  >;
67823
68564
 
68565
+ /**
68566
+ * Parameters of the ODataModel#batchRequestCompleted event.
68567
+ */
67824
68568
  export interface ODataModel$BatchRequestCompletedEventParameters {
67825
68569
  /**
67826
68570
  * The request ID
@@ -67865,11 +68609,17 @@ declare module "sap/ui/model/odata/v2/ODataModel" {
67865
68609
  response?: object;
67866
68610
  }
67867
68611
 
68612
+ /**
68613
+ * Event object of the ODataModel#batchRequestCompleted event.
68614
+ */
67868
68615
  export type ODataModel$BatchRequestCompletedEvent = Event<
67869
68616
  ODataModel$BatchRequestCompletedEventParameters,
67870
68617
  ODataModel
67871
68618
  >;
67872
68619
 
68620
+ /**
68621
+ * Parameters of the ODataModel#batchRequestFailed event.
68622
+ */
67873
68623
  export interface ODataModel$BatchRequestFailedEventParameters {
67874
68624
  /**
67875
68625
  * The request ID
@@ -67914,11 +68664,17 @@ declare module "sap/ui/model/odata/v2/ODataModel" {
67914
68664
  requests?: any[];
67915
68665
  }
67916
68666
 
68667
+ /**
68668
+ * Event object of the ODataModel#batchRequestFailed event.
68669
+ */
67917
68670
  export type ODataModel$BatchRequestFailedEvent = Event<
67918
68671
  ODataModel$BatchRequestFailedEventParameters,
67919
68672
  ODataModel
67920
68673
  >;
67921
68674
 
68675
+ /**
68676
+ * Parameters of the ODataModel#batchRequestSent event.
68677
+ */
67922
68678
  export interface ODataModel$BatchRequestSentEventParameters {
67923
68679
  /**
67924
68680
  * The URL which is sent to the backend
@@ -67942,11 +68698,17 @@ declare module "sap/ui/model/odata/v2/ODataModel" {
67942
68698
  requests?: any[];
67943
68699
  }
67944
68700
 
68701
+ /**
68702
+ * Event object of the ODataModel#batchRequestSent event.
68703
+ */
67945
68704
  export type ODataModel$BatchRequestSentEvent = Event<
67946
68705
  ODataModel$BatchRequestSentEventParameters,
67947
68706
  ODataModel
67948
68707
  >;
67949
68708
 
68709
+ /**
68710
+ * Parameters of the ODataModel#metadataFailed event.
68711
+ */
67950
68712
  export interface ODataModel$MetadataFailedEventParameters {
67951
68713
  /**
67952
68714
  * The parsed metadata
@@ -67979,11 +68741,17 @@ declare module "sap/ui/model/odata/v2/ODataModel" {
67979
68741
  response?: object;
67980
68742
  }
67981
68743
 
68744
+ /**
68745
+ * Event object of the ODataModel#metadataFailed event.
68746
+ */
67982
68747
  export type ODataModel$MetadataFailedEvent = Event<
67983
68748
  ODataModel$MetadataFailedEventParameters,
67984
68749
  ODataModel
67985
68750
  >;
67986
68751
 
68752
+ /**
68753
+ * Parameters of the ODataModel#metadataLoaded event.
68754
+ */
67987
68755
  export interface ODataModel$MetadataLoadedEventParameters {
67988
68756
  /**
67989
68757
  * The parsed metadata
@@ -67991,11 +68759,17 @@ declare module "sap/ui/model/odata/v2/ODataModel" {
67991
68759
  metadata?: string;
67992
68760
  }
67993
68761
 
68762
+ /**
68763
+ * Event object of the ODataModel#metadataLoaded event.
68764
+ */
67994
68765
  export type ODataModel$MetadataLoadedEvent = Event<
67995
68766
  ODataModel$MetadataLoadedEventParameters,
67996
68767
  ODataModel
67997
68768
  >;
67998
68769
 
68770
+ /**
68771
+ * Parameters of the ODataModel#requestCompleted event.
68772
+ */
67999
68773
  export interface ODataModel$RequestCompletedEventParameters
68000
68774
  extends Model$RequestCompletedEventParameters {
68001
68775
  /**
@@ -68020,11 +68794,17 @@ declare module "sap/ui/model/odata/v2/ODataModel" {
68020
68794
  response?: object;
68021
68795
  }
68022
68796
 
68797
+ /**
68798
+ * Event object of the ODataModel#requestCompleted event.
68799
+ */
68023
68800
  export type ODataModel$RequestCompletedEvent = Event<
68024
68801
  ODataModel$RequestCompletedEventParameters,
68025
68802
  ODataModel
68026
68803
  >;
68027
68804
 
68805
+ /**
68806
+ * Parameters of the ODataModel#requestFailed event.
68807
+ */
68028
68808
  export interface ODataModel$RequestFailedEventParameters
68029
68809
  extends Model$RequestFailedEventParameters {
68030
68810
  /**
@@ -68064,11 +68844,17 @@ declare module "sap/ui/model/odata/v2/ODataModel" {
68064
68844
  response?: object;
68065
68845
  }
68066
68846
 
68847
+ /**
68848
+ * Event object of the ODataModel#requestFailed event.
68849
+ */
68067
68850
  export type ODataModel$RequestFailedEvent = Event<
68068
68851
  ODataModel$RequestFailedEventParameters,
68069
68852
  ODataModel
68070
68853
  >;
68071
68854
 
68855
+ /**
68856
+ * Parameters of the ODataModel#requestSent event.
68857
+ */
68072
68858
  export interface ODataModel$RequestSentEventParameters
68073
68859
  extends Model$RequestSentEventParameters {
68074
68860
  /**
@@ -68087,6 +68873,9 @@ declare module "sap/ui/model/odata/v2/ODataModel" {
68087
68873
  headers?: Record<string, string>;
68088
68874
  }
68089
68875
 
68876
+ /**
68877
+ * Event object of the ODataModel#requestSent event.
68878
+ */
68090
68879
  export type ODataModel$RequestSentEvent = Event<
68091
68880
  ODataModel$RequestSentEventParameters,
68092
68881
  ODataModel
@@ -69842,7 +70631,8 @@ declare module "sap/ui/model/odata/v4/ODataContextBinding" {
69842
70631
  ): this;
69843
70632
  /**
69844
70633
  * Changes this binding's parameters and refreshes the binding. Since 1.111.0, a list binding's header context
69845
- * is deselected.
70634
+ * is deselected, but (since 1.120.13) only if the binding parameter '$$clearSelectionOnFilter' is set and
70635
+ * the '$filter' or '$search' parameter is changed.
69846
70636
  *
69847
70637
  * If there are pending changes that cannot be ignored, an error is thrown. Use {@link #hasPendingChanges }
69848
70638
  * to check if there are such pending changes. If there are, call {@link sap.ui.model.odata.v4.ODataModel#submitBatch }
@@ -70214,15 +71004,23 @@ declare module "sap/ui/model/odata/v4/ODataContextBinding" {
70214
71004
  */
70215
71005
  toString(): string;
70216
71006
  }
70217
-
71007
+ /**
71008
+ * Parameters of the ODataContextBinding#change event.
71009
+ */
70218
71010
  export interface ODataContextBinding$ChangeEventParameters
70219
71011
  extends Binding$ChangeEventParameters {}
70220
71012
 
71013
+ /**
71014
+ * Event object of the ODataContextBinding#change event.
71015
+ */
70221
71016
  export type ODataContextBinding$ChangeEvent = Event<
70222
71017
  ODataContextBinding$ChangeEventParameters,
70223
71018
  ODataContextBinding
70224
71019
  >;
70225
71020
 
71021
+ /**
71022
+ * Parameters of the ODataContextBinding#dataReceived event.
71023
+ */
70226
71024
  export interface ODataContextBinding$DataReceivedEventParameters
70227
71025
  extends Binding$DataReceivedEventParameters {
70228
71026
  /**
@@ -70232,19 +71030,31 @@ declare module "sap/ui/model/odata/v4/ODataContextBinding" {
70232
71030
  error?: Error;
70233
71031
  }
70234
71032
 
71033
+ /**
71034
+ * Event object of the ODataContextBinding#dataReceived event.
71035
+ */
70235
71036
  export type ODataContextBinding$DataReceivedEvent = Event<
70236
71037
  ODataContextBinding$DataReceivedEventParameters,
70237
71038
  ODataContextBinding
70238
71039
  >;
70239
71040
 
71041
+ /**
71042
+ * Parameters of the ODataContextBinding#dataRequested event.
71043
+ */
70240
71044
  export interface ODataContextBinding$DataRequestedEventParameters
70241
71045
  extends Binding$DataRequestedEventParameters {}
70242
71046
 
71047
+ /**
71048
+ * Event object of the ODataContextBinding#dataRequested event.
71049
+ */
70243
71050
  export type ODataContextBinding$DataRequestedEvent = Event<
70244
71051
  ODataContextBinding$DataRequestedEventParameters,
70245
71052
  ODataContextBinding
70246
71053
  >;
70247
71054
 
71055
+ /**
71056
+ * Parameters of the ODataContextBinding#patchCompleted event.
71057
+ */
70248
71058
  export interface ODataContextBinding$PatchCompletedEventParameters {
70249
71059
  /**
70250
71060
  * Whether all PATCHes are successfully processed
@@ -70252,13 +71062,22 @@ declare module "sap/ui/model/odata/v4/ODataContextBinding" {
70252
71062
  success?: boolean;
70253
71063
  }
70254
71064
 
71065
+ /**
71066
+ * Event object of the ODataContextBinding#patchCompleted event.
71067
+ */
70255
71068
  export type ODataContextBinding$PatchCompletedEvent = Event<
70256
71069
  ODataContextBinding$PatchCompletedEventParameters,
70257
71070
  ODataContextBinding
70258
71071
  >;
70259
71072
 
71073
+ /**
71074
+ * Parameters of the ODataContextBinding#patchSent event.
71075
+ */
70260
71076
  export interface ODataContextBinding$PatchSentEventParameters {}
70261
71077
 
71078
+ /**
71079
+ * Event object of the ODataContextBinding#patchSent event.
71080
+ */
70262
71081
  export type ODataContextBinding$PatchSentEvent = Event<
70263
71082
  ODataContextBinding$PatchSentEventParameters,
70264
71083
  ODataContextBinding
@@ -70444,7 +71263,8 @@ declare module "sap/ui/model/odata/v4/ODataListBinding" {
70444
71263
  ): this;
70445
71264
  /**
70446
71265
  * Changes this binding's parameters and refreshes the binding. Since 1.111.0, a list binding's header context
70447
- * is deselected.
71266
+ * is deselected, but (since 1.120.13) only if the binding parameter '$$clearSelectionOnFilter' is set and
71267
+ * the '$filter' or '$search' parameter is changed.
70448
71268
  *
70449
71269
  * If there are pending changes that cannot be ignored, an error is thrown. Use {@link #hasPendingChanges }
70450
71270
  * to check if there are such pending changes. If there are, call {@link sap.ui.model.odata.v4.ODataModel#submitBatch }
@@ -70663,7 +71483,8 @@ declare module "sap/ui/model/odata/v4/ODataListBinding" {
70663
71483
  ): this;
70664
71484
  /**
70665
71485
  * Filters the list with the given filters. Since 1.97.0, if filters are unchanged, no request is sent,
70666
- * regardless of pending changes. Since 1.111.0, the header context is deselected.
71486
+ * regardless of pending changes. Since 1.111.0, all contexts (incl. the header context) are deselected,
71487
+ * but (since 1.120.13) only if the binding parameter '$$clearSelectionOnFilter' is set.
70667
71488
  *
70668
71489
  * If there are pending changes that cannot be ignored, an error is thrown. Use {@link #hasPendingChanges }
70669
71490
  * to check if there are such pending changes. If there are, call {@link sap.ui.model.odata.v4.ODataModel#submitBatch }
@@ -71239,7 +72060,9 @@ declare module "sap/ui/model/odata/v4/ODataListBinding" {
71239
72060
  * certain content will break the syntax of the system query option `$apply` and result in an invalid request.
71240
72061
  * If the OData service supports the proposal ODATA-1452,
71241
72062
  * then `ODataUtils.formatLiteral(sSearch, "Edm.String");` should be used to encapsulate the whole search
71242
- * string beforehand (see {@link sap.ui.model.odata.v4.ODataUtils.formatLiteral}).
72063
+ * string beforehand (see {@link sap.ui.model.odata.v4.ODataUtils.formatLiteral}). Since 1.120.13, all contexts,
72064
+ * including the header context are deselected if the '$$clearSelectionOnFilter' binding parameter is set
72065
+ * and the search parameter is changed.
71243
72066
  */
71244
72067
  search?: string;
71245
72068
  /**
@@ -71393,7 +72216,9 @@ declare module "sap/ui/model/odata/v4/ODataListBinding" {
71393
72216
  }
71394
72217
  | undefined;
71395
72218
  }
71396
-
72219
+ /**
72220
+ * Parameters of the ODataListBinding#change event.
72221
+ */
71397
72222
  export interface ODataListBinding$ChangeEventParameters
71398
72223
  extends Binding$ChangeEventParameters {
71399
72224
  /**
@@ -71404,11 +72229,17 @@ declare module "sap/ui/model/odata/v4/ODataListBinding" {
71404
72229
  detailedReason?: string;
71405
72230
  }
71406
72231
 
72232
+ /**
72233
+ * Event object of the ODataListBinding#change event.
72234
+ */
71407
72235
  export type ODataListBinding$ChangeEvent = Event<
71408
72236
  ODataListBinding$ChangeEventParameters,
71409
72237
  ODataListBinding
71410
72238
  >;
71411
72239
 
72240
+ /**
72241
+ * Parameters of the ODataListBinding#createActivate event.
72242
+ */
71412
72243
  export interface ODataListBinding$CreateActivateEventParameters {
71413
72244
  /**
71414
72245
  * The affected context
@@ -71416,11 +72247,17 @@ declare module "sap/ui/model/odata/v4/ODataListBinding" {
71416
72247
  context?: Context;
71417
72248
  }
71418
72249
 
72250
+ /**
72251
+ * Event object of the ODataListBinding#createActivate event.
72252
+ */
71419
72253
  export type ODataListBinding$CreateActivateEvent = Event<
71420
72254
  ODataListBinding$CreateActivateEventParameters,
71421
72255
  ODataListBinding
71422
72256
  >;
71423
72257
 
72258
+ /**
72259
+ * Parameters of the ODataListBinding#createCompleted event.
72260
+ */
71424
72261
  export interface ODataListBinding$CreateCompletedEventParameters {
71425
72262
  /**
71426
72263
  * The context for the created entity
@@ -71433,11 +72270,17 @@ declare module "sap/ui/model/odata/v4/ODataListBinding" {
71433
72270
  success?: boolean;
71434
72271
  }
71435
72272
 
72273
+ /**
72274
+ * Event object of the ODataListBinding#createCompleted event.
72275
+ */
71436
72276
  export type ODataListBinding$CreateCompletedEvent = Event<
71437
72277
  ODataListBinding$CreateCompletedEventParameters,
71438
72278
  ODataListBinding
71439
72279
  >;
71440
72280
 
72281
+ /**
72282
+ * Parameters of the ODataListBinding#createSent event.
72283
+ */
71441
72284
  export interface ODataListBinding$CreateSentEventParameters {
71442
72285
  /**
71443
72286
  * The context for the created entity
@@ -71445,11 +72288,17 @@ declare module "sap/ui/model/odata/v4/ODataListBinding" {
71445
72288
  context?: Context;
71446
72289
  }
71447
72290
 
72291
+ /**
72292
+ * Event object of the ODataListBinding#createSent event.
72293
+ */
71448
72294
  export type ODataListBinding$CreateSentEvent = Event<
71449
72295
  ODataListBinding$CreateSentEventParameters,
71450
72296
  ODataListBinding
71451
72297
  >;
71452
72298
 
72299
+ /**
72300
+ * Parameters of the ODataListBinding#dataReceived event.
72301
+ */
71453
72302
  export interface ODataListBinding$DataReceivedEventParameters
71454
72303
  extends Binding$DataReceivedEventParameters {
71455
72304
  /**
@@ -71459,19 +72308,31 @@ declare module "sap/ui/model/odata/v4/ODataListBinding" {
71459
72308
  error?: Error;
71460
72309
  }
71461
72310
 
72311
+ /**
72312
+ * Event object of the ODataListBinding#dataReceived event.
72313
+ */
71462
72314
  export type ODataListBinding$DataReceivedEvent = Event<
71463
72315
  ODataListBinding$DataReceivedEventParameters,
71464
72316
  ODataListBinding
71465
72317
  >;
71466
72318
 
72319
+ /**
72320
+ * Parameters of the ODataListBinding#dataRequested event.
72321
+ */
71467
72322
  export interface ODataListBinding$DataRequestedEventParameters
71468
72323
  extends Binding$DataRequestedEventParameters {}
71469
72324
 
72325
+ /**
72326
+ * Event object of the ODataListBinding#dataRequested event.
72327
+ */
71470
72328
  export type ODataListBinding$DataRequestedEvent = Event<
71471
72329
  ODataListBinding$DataRequestedEventParameters,
71472
72330
  ODataListBinding
71473
72331
  >;
71474
72332
 
72333
+ /**
72334
+ * Parameters of the ODataListBinding#patchCompleted event.
72335
+ */
71475
72336
  export interface ODataListBinding$PatchCompletedEventParameters {
71476
72337
  /**
71477
72338
  * Whether all PATCHes are successfully processed
@@ -71479,18 +72340,30 @@ declare module "sap/ui/model/odata/v4/ODataListBinding" {
71479
72340
  success?: boolean;
71480
72341
  }
71481
72342
 
72343
+ /**
72344
+ * Event object of the ODataListBinding#patchCompleted event.
72345
+ */
71482
72346
  export type ODataListBinding$PatchCompletedEvent = Event<
71483
72347
  ODataListBinding$PatchCompletedEventParameters,
71484
72348
  ODataListBinding
71485
72349
  >;
71486
72350
 
72351
+ /**
72352
+ * Parameters of the ODataListBinding#patchSent event.
72353
+ */
71487
72354
  export interface ODataListBinding$PatchSentEventParameters {}
71488
72355
 
72356
+ /**
72357
+ * Event object of the ODataListBinding#patchSent event.
72358
+ */
71489
72359
  export type ODataListBinding$PatchSentEvent = Event<
71490
72360
  ODataListBinding$PatchSentEventParameters,
71491
72361
  ODataListBinding
71492
72362
  >;
71493
72363
 
72364
+ /**
72365
+ * Parameters of the ODataListBinding#refresh event.
72366
+ */
71494
72367
  export interface ODataListBinding$RefreshEventParameters {
71495
72368
  /**
71496
72369
  * The reason for the 'refresh' event could be
@@ -71508,6 +72381,9 @@ declare module "sap/ui/model/odata/v4/ODataListBinding" {
71508
72381
  reason?: ChangeReason;
71509
72382
  }
71510
72383
 
72384
+ /**
72385
+ * Event object of the ODataListBinding#refresh event.
72386
+ */
71511
72387
  export type ODataListBinding$RefreshEvent = Event<
71512
72388
  ODataListBinding$RefreshEventParameters,
71513
72389
  ODataListBinding
@@ -72732,6 +73608,11 @@ declare module "sap/ui/model/odata/v4/ODataModel" {
72732
73608
  * from its context's path for data service requests; only the value `true` is allowed.
72733
73609
  */
72734
73610
  $$canonicalPath?: boolean;
73611
+ /**
73612
+ * Whether the selection state of the list binding is cleared when a filter is changed; this includes dynamic
73613
+ * filters, '$filter', '$search', and `$$aggregation.search`. Supported since 1.120.13.
73614
+ */
73615
+ $$clearSelectionOnFilter?: boolean;
72735
73616
  /**
72736
73617
  * Whether this binding is considered for a match when {@link #getKeepAliveContext} is called; only the
72737
73618
  * value `true` is allowed. Must not be combined with `$apply`, `$$aggregation`, `$$canonicalPath`, or `$$sharedRequest`.
@@ -73377,7 +74258,9 @@ declare module "sap/ui/model/odata/v4/ODataModel" {
73377
74258
  */
73378
74259
  toString(): string;
73379
74260
  }
73380
-
74261
+ /**
74262
+ * Parameters of the ODataModel#dataReceived event.
74263
+ */
73381
74264
  export interface ODataModel$DataReceivedEventParameters {
73382
74265
  /**
73383
74266
  * An empty data object if a back-end request succeeds
@@ -73396,11 +74279,17 @@ declare module "sap/ui/model/odata/v4/ODataModel" {
73396
74279
  path?: string;
73397
74280
  }
73398
74281
 
74282
+ /**
74283
+ * Event object of the ODataModel#dataReceived event.
74284
+ */
73399
74285
  export type ODataModel$DataReceivedEvent = Event<
73400
74286
  ODataModel$DataReceivedEventParameters,
73401
74287
  ODataModel
73402
74288
  >;
73403
74289
 
74290
+ /**
74291
+ * Parameters of the ODataModel#dataRequested event.
74292
+ */
73404
74293
  export interface ODataModel$DataRequestedEventParameters {
73405
74294
  /**
73406
74295
  * The absolute path to the entity which caused the event. The path is only provided for additional property
@@ -73409,19 +74298,31 @@ declare module "sap/ui/model/odata/v4/ODataModel" {
73409
74298
  path?: string;
73410
74299
  }
73411
74300
 
74301
+ /**
74302
+ * Event object of the ODataModel#dataRequested event.
74303
+ */
73412
74304
  export type ODataModel$DataRequestedEvent = Event<
73413
74305
  ODataModel$DataRequestedEventParameters,
73414
74306
  ODataModel
73415
74307
  >;
73416
74308
 
74309
+ /**
74310
+ * Parameters of the ODataModel#parseError event.
74311
+ */
73417
74312
  export interface ODataModel$ParseErrorEventParameters
73418
74313
  extends Model$ParseErrorEventParameters {}
73419
74314
 
74315
+ /**
74316
+ * Event object of the ODataModel#parseError event.
74317
+ */
73420
74318
  export type ODataModel$ParseErrorEvent = Event<
73421
74319
  ODataModel$ParseErrorEventParameters,
73422
74320
  ODataModel
73423
74321
  >;
73424
74322
 
74323
+ /**
74324
+ * Parameters of the ODataModel#propertyChange event.
74325
+ */
73425
74326
  export interface ODataModel$PropertyChangeEventParameters
73426
74327
  extends Model$PropertyChangeEventParameters {
73427
74328
  /**
@@ -73436,37 +74337,64 @@ declare module "sap/ui/model/odata/v4/ODataModel" {
73436
74337
  resolvedPath?: string;
73437
74338
  }
73438
74339
 
74340
+ /**
74341
+ * Event object of the ODataModel#propertyChange event.
74342
+ */
73439
74343
  export type ODataModel$PropertyChangeEvent = Event<
73440
74344
  ODataModel$PropertyChangeEventParameters,
73441
74345
  ODataModel
73442
74346
  >;
73443
74347
 
74348
+ /**
74349
+ * Parameters of the ODataModel#requestCompleted event.
74350
+ */
73444
74351
  export interface ODataModel$RequestCompletedEventParameters
73445
74352
  extends Model$RequestCompletedEventParameters {}
73446
74353
 
74354
+ /**
74355
+ * Event object of the ODataModel#requestCompleted event.
74356
+ */
73447
74357
  export type ODataModel$RequestCompletedEvent = Event<
73448
74358
  ODataModel$RequestCompletedEventParameters,
73449
74359
  ODataModel
73450
74360
  >;
73451
74361
 
74362
+ /**
74363
+ * Parameters of the ODataModel#requestFailed event.
74364
+ */
73452
74365
  export interface ODataModel$RequestFailedEventParameters
73453
74366
  extends Model$RequestFailedEventParameters {}
73454
74367
 
74368
+ /**
74369
+ * Event object of the ODataModel#requestFailed event.
74370
+ */
73455
74371
  export type ODataModel$RequestFailedEvent = Event<
73456
74372
  ODataModel$RequestFailedEventParameters,
73457
74373
  ODataModel
73458
74374
  >;
73459
74375
 
74376
+ /**
74377
+ * Parameters of the ODataModel#requestSent event.
74378
+ */
73460
74379
  export interface ODataModel$RequestSentEventParameters
73461
74380
  extends Model$RequestSentEventParameters {}
73462
74381
 
74382
+ /**
74383
+ * Event object of the ODataModel#requestSent event.
74384
+ */
73463
74385
  export type ODataModel$RequestSentEvent = Event<
73464
74386
  ODataModel$RequestSentEventParameters,
73465
74387
  ODataModel
73466
74388
  >;
73467
74389
 
74390
+ /**
74391
+ * Parameters of the ODataModel#sessionTimeout event.
74392
+ */
73468
74393
  export interface ODataModel$SessionTimeoutEventParameters {}
73469
74394
 
74395
+ /**
74396
+ * Event object of the ODataModel#sessionTimeout event.
74397
+ */
73470
74398
  export type ODataModel$SessionTimeoutEvent = Event<
73471
74399
  ODataModel$SessionTimeoutEventParameters,
73472
74400
  ODataModel
@@ -73823,15 +74751,23 @@ declare module "sap/ui/model/odata/v4/ODataPropertyBinding" {
73823
74751
  */
73824
74752
  toString(): string;
73825
74753
  }
73826
-
74754
+ /**
74755
+ * Parameters of the ODataPropertyBinding#change event.
74756
+ */
73827
74757
  export interface ODataPropertyBinding$ChangeEventParameters
73828
74758
  extends Binding$ChangeEventParameters {}
73829
74759
 
74760
+ /**
74761
+ * Event object of the ODataPropertyBinding#change event.
74762
+ */
73830
74763
  export type ODataPropertyBinding$ChangeEvent = Event<
73831
74764
  ODataPropertyBinding$ChangeEventParameters,
73832
74765
  ODataPropertyBinding
73833
74766
  >;
73834
74767
 
74768
+ /**
74769
+ * Parameters of the ODataPropertyBinding#dataReceived event.
74770
+ */
73835
74771
  export interface ODataPropertyBinding$DataReceivedEventParameters
73836
74772
  extends Binding$DataReceivedEventParameters {
73837
74773
  /**
@@ -73841,14 +74777,23 @@ declare module "sap/ui/model/odata/v4/ODataPropertyBinding" {
73841
74777
  error?: Error;
73842
74778
  }
73843
74779
 
74780
+ /**
74781
+ * Event object of the ODataPropertyBinding#dataReceived event.
74782
+ */
73844
74783
  export type ODataPropertyBinding$DataReceivedEvent = Event<
73845
74784
  ODataPropertyBinding$DataReceivedEventParameters,
73846
74785
  ODataPropertyBinding
73847
74786
  >;
73848
74787
 
74788
+ /**
74789
+ * Parameters of the ODataPropertyBinding#dataRequested event.
74790
+ */
73849
74791
  export interface ODataPropertyBinding$DataRequestedEventParameters
73850
74792
  extends Binding$DataRequestedEventParameters {}
73851
74793
 
74794
+ /**
74795
+ * Event object of the ODataPropertyBinding#dataRequested event.
74796
+ */
73852
74797
  export type ODataPropertyBinding$DataRequestedEvent = Event<
73853
74798
  ODataPropertyBinding$DataRequestedEventParameters,
73854
74799
  ODataPropertyBinding
@@ -77366,7 +78311,9 @@ declare module "sap/ui/test/actions/Action" {
77366
78311
  sIdSuffix: string
77367
78312
  ): this;
77368
78313
  }
77369
-
78314
+ /**
78315
+ * Describes the settings that can be provided to the Action constructor.
78316
+ */
77370
78317
  export interface $ActionSettings extends $ManagedObjectSettings {
77371
78318
  /**
77372
78319
  * Use this only if the target property or the default of the action does not work for your control. The
@@ -77463,7 +78410,9 @@ declare module "sap/ui/test/actions/Drag" {
77463
78410
  oControl: Control
77464
78411
  ): void;
77465
78412
  }
77466
-
78413
+ /**
78414
+ * Describes the settings that can be provided to the Drag constructor.
78415
+ */
77467
78416
  export interface $DragSettings extends $ActionSettings {}
77468
78417
  }
77469
78418
 
@@ -77650,7 +78599,9 @@ declare module "sap/ui/test/actions/Drop" {
77650
78599
  bBefore: boolean
77651
78600
  ): this;
77652
78601
  }
77653
-
78602
+ /**
78603
+ * Describes the settings that can be provided to the Drop constructor.
78604
+ */
77654
78605
  export interface $DropSettings extends $ActionSettings {
77655
78606
  /**
77656
78607
  * name of the droppable aggregation, whose root to use as drop target. This makes sense only for some controls,
@@ -77893,7 +78844,9 @@ declare module "sap/ui/test/actions/EnterText" {
77893
78844
  sText: string
77894
78845
  ): this;
77895
78846
  }
77896
-
78847
+ /**
78848
+ * Describes the settings that can be provided to the EnterText constructor.
78849
+ */
77897
78850
  export interface $EnterTextSettings extends $ActionSettings {
77898
78851
  /**
77899
78852
  * The Text that is going to be typed to the control. If you are entering an empty string, the value will
@@ -78176,7 +79129,9 @@ declare module "sap/ui/test/actions/Press" {
78176
79129
  fYPercentage: float
78177
79130
  ): this;
78178
79131
  }
78179
-
79132
+ /**
79133
+ * Describes the settings that can be provided to the Press constructor.
79134
+ */
78180
79135
  export interface $PressSettings extends $ActionSettings {
78181
79136
  /**
78182
79137
  * If it is set to `true`, the Alt Key modifier will be used
@@ -78345,7 +79300,9 @@ declare module "sap/ui/test/actions/Scroll" {
78345
79300
  iY?: int
78346
79301
  ): this;
78347
79302
  }
78348
-
79303
+ /**
79304
+ * Describes the settings that can be provided to the Scroll constructor.
79305
+ */
78349
79306
  export interface $ScrollSettings extends $ActionSettings {
78350
79307
  x?: int | PropertyBindingInfo | `{${string}}`;
78351
79308
 
@@ -78867,7 +79824,9 @@ declare module "sap/ui/test/matchers/AggregationContainsPropertyEqual" {
78867
79824
  oPropertyValue: any
78868
79825
  ): this;
78869
79826
  }
78870
-
79827
+ /**
79828
+ * Describes the settings that can be provided to the AggregationContainsPropertyEqual constructor.
79829
+ */
78871
79830
  export interface $AggregationContainsPropertyEqualSettings
78872
79831
  extends $MatcherSettings {
78873
79832
  /**
@@ -78990,7 +79949,9 @@ declare module "sap/ui/test/matchers/AggregationEmpty" {
78990
79949
  sName: string
78991
79950
  ): this;
78992
79951
  }
78993
-
79952
+ /**
79953
+ * Describes the settings that can be provided to the AggregationEmpty constructor.
79954
+ */
78994
79955
  export interface $AggregationEmptySettings extends $MatcherSettings {
78995
79956
  /**
78996
79957
  * The name of the aggregation that is used for matching.
@@ -79108,7 +80069,9 @@ declare module "sap/ui/test/matchers/AggregationFilled" {
79108
80069
  sName: string
79109
80070
  ): this;
79110
80071
  }
79111
-
80072
+ /**
80073
+ * Describes the settings that can be provided to the AggregationFilled constructor.
80074
+ */
79112
80075
  export interface $AggregationFilledSettings extends $MatcherSettings {
79113
80076
  /**
79114
80077
  * The name of the aggregation that is used for matching.
@@ -79252,7 +80215,9 @@ declare module "sap/ui/test/matchers/AggregationLengthEquals" {
79252
80215
  sName: string
79253
80216
  ): this;
79254
80217
  }
79255
-
80218
+ /**
80219
+ * Describes the settings that can be provided to the AggregationLengthEquals constructor.
80220
+ */
79256
80221
  export interface $AggregationLengthEqualsSettings extends $MatcherSettings {
79257
80222
  /**
79258
80223
  * The name of the aggregation that is used for matching.
@@ -80765,7 +81730,9 @@ declare module "sap/ui/test/matchers/BindingPath" {
80765
81730
  oValue: any
80766
81731
  ): this;
80767
81732
  }
80768
-
81733
+ /**
81734
+ * Describes the settings that can be provided to the BindingPath constructor.
81735
+ */
80769
81736
  export interface $BindingPathSettings extends $MatcherSettings {
80770
81737
  /**
80771
81738
  * The value of the binding context path that is used for matching. As of version 1.81, it can also be a
@@ -81050,7 +82017,9 @@ declare module "sap/ui/test/matchers/I18NText" {
81050
82017
  bUseLibraryBundle: boolean
81051
82018
  ): this;
81052
82019
  }
81053
-
82020
+ /**
82021
+ * Describes the settings that can be provided to the I18NText constructor.
82022
+ */
81054
82023
  export interface $I18NTextSettings extends $MatcherSettings {
81055
82024
  /**
81056
82025
  * The name of the control property to match the I18N text with.
@@ -81142,7 +82111,9 @@ declare module "sap/ui/test/matchers/Interactable" {
81142
82111
  */
81143
82112
  static getMetadata(): ManagedObjectMetadata;
81144
82113
  }
81145
-
82114
+ /**
82115
+ * Describes the settings that can be provided to the Interactable constructor.
82116
+ */
81146
82117
  export interface $InteractableSettings extends $MatcherSettings {}
81147
82118
  }
81148
82119
 
@@ -81378,7 +82349,9 @@ declare module "sap/ui/test/matchers/LabelFor" {
81378
82349
  sText: string
81379
82350
  ): this;
81380
82351
  }
81381
-
82352
+ /**
82353
+ * Describes the settings that can be provided to the LabelFor constructor.
82354
+ */
81382
82355
  export interface $LabelForSettings extends $MatcherSettings {
81383
82356
  /**
81384
82357
  * The text of the {@link sap.m.Label} which have the labelFor property.
@@ -81481,7 +82454,9 @@ declare module "sap/ui/test/matchers/Matcher" {
81481
82454
  oControl: Control
81482
82455
  ): boolean;
81483
82456
  }
81484
-
82457
+ /**
82458
+ * Describes the settings that can be provided to the Matcher constructor.
82459
+ */
81485
82460
  export interface $MatcherSettings extends $ManagedObjectSettings {}
81486
82461
  }
81487
82462
 
@@ -81670,7 +82645,9 @@ declare module "sap/ui/test/matchers/PropertyStrictEquals" {
81670
82645
  oValue: any
81671
82646
  ): this;
81672
82647
  }
81673
-
82648
+ /**
82649
+ * Describes the settings that can be provided to the PropertyStrictEquals constructor.
82650
+ */
81674
82651
  export interface $PropertyStrictEqualsSettings extends $MatcherSettings {
81675
82652
  /**
81676
82653
  * The Name of the property that is used for matching.