@openui5/ts-types 1.120.11 → 1.120.12

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -280,7 +280,7 @@ declare namespace sap {
280
280
  }
281
281
  }
282
282
 
283
- // For Library Version: 1.120.11
283
+ // For Library Version: 1.120.12
284
284
 
285
285
  declare module "sap/base/assert" {
286
286
  /**
@@ -4666,7 +4666,10 @@ declare module "sap/ui/core/getCompatibilityVersion" {
4666
4666
  /**
4667
4667
  * Returns the used compatibility version for the given feature.
4668
4668
  *
4669
- * @deprecated (since 1.119.0)
4669
+ * @deprecated (since 1.119) - without a replacement. All features that have been controlled by a compatibility
4670
+ * version in UI5 1.x will abandon their legacy behavior, starting with the next major version. In other
4671
+ * words, they will behave as if compatibility version "edge" was configured. Due to this, no more access
4672
+ * to the compatibility version will be required starting with the next major version.
4670
4673
  *
4671
4674
  * @returns the used compatibility version
4672
4675
  */
@@ -9154,6 +9157,13 @@ declare namespace sap {
9154
9157
  * details can be changed in future.
9155
9158
  */
9156
9159
  namespace app {
9160
+ /**
9161
+ * Describes the settings that can be provided to the Application constructor.
9162
+ *
9163
+ * @deprecated (since 1.15.1) - The Component class is enhanced to take care about the Application code.
9164
+ * @experimental (since 1.11.1) - The Application class is still under construction, so some implementation
9165
+ * details can be changed in future.
9166
+ */
9157
9167
  interface $ApplicationSettings extends sap.ui.core.$ComponentSettings {
9158
9168
  root?: string | sap.ui.base.ManagedObject.PropertyBindingInfo;
9159
9169
 
@@ -9165,6 +9175,13 @@ declare namespace sap {
9165
9175
  rootComponent?: sap.ui.core.UIComponent;
9166
9176
  }
9167
9177
 
9178
+ /**
9179
+ * Describes the settings that can be provided to the MockServer constructor.
9180
+ *
9181
+ * @deprecated (since 1.15.1) - The mock server code has been moved to sap.ui.core.util - see {@link sap.ui.core.util.MockServer}
9182
+ * @experimental (since 1.13.0) - The mock server is still under construction, so some implementation details
9183
+ * can be changed in future.
9184
+ */
9168
9185
  interface $MockServerSettings
9169
9186
  extends sap.ui.base.$ManagedObjectSettings {}
9170
9187
 
@@ -10178,6 +10195,9 @@ declare namespace sap {
10178
10195
  reset(): void;
10179
10196
  }
10180
10197
 
10198
+ /**
10199
+ * Describes the settings that can be provided to the ManagedObject constructor.
10200
+ */
10181
10201
  interface $ManagedObjectSettings {
10182
10202
  /**
10183
10203
  * Unique ID of this instance. If not given, a so called autoID will be generated by the framework. AutoIDs
@@ -10244,6 +10264,9 @@ declare namespace sap {
10244
10264
  modelContextChange?: (oEvent: sap.ui.base.Event) => void;
10245
10265
  }
10246
10266
 
10267
+ /**
10268
+ * Parameters of the ManagedObject#formatError event.
10269
+ */
10247
10270
  interface ManagedObject$FormatErrorEventParameters {
10248
10271
  /**
10249
10272
  * ManagedObject instance whose property should have received the model update.
@@ -10271,8 +10294,14 @@ declare namespace sap {
10271
10294
  oldValue?: any;
10272
10295
  }
10273
10296
 
10297
+ /**
10298
+ * Parameters of the ManagedObject#modelContextChange event.
10299
+ */
10274
10300
  interface ManagedObject$ModelContextChangeEventParameters {}
10275
10301
 
10302
+ /**
10303
+ * Parameters of the ManagedObject#parseError event.
10304
+ */
10276
10305
  interface ManagedObject$ParseErrorEventParameters {
10277
10306
  /**
10278
10307
  * ManagedObject instance whose property initiated the model update.
@@ -10305,6 +10334,9 @@ declare namespace sap {
10305
10334
  message?: string;
10306
10335
  }
10307
10336
 
10337
+ /**
10338
+ * Parameters of the ManagedObject#validationError event.
10339
+ */
10308
10340
  interface ManagedObject$ValidationErrorEventParameters {
10309
10341
  /**
10310
10342
  * ManagedObject instance whose property initiated the model update.
@@ -10337,6 +10369,9 @@ declare namespace sap {
10337
10369
  message?: string;
10338
10370
  }
10339
10371
 
10372
+ /**
10373
+ * Parameters of the ManagedObject#validationSuccess event.
10374
+ */
10340
10375
  interface ManagedObject$ValidationSuccessEventParameters {
10341
10376
  /**
10342
10377
  * ManagedObject instance whose property initiated the model update.
@@ -14338,26 +14373,41 @@ declare namespace sap {
14338
14373
  ): void;
14339
14374
  }
14340
14375
 
14376
+ /**
14377
+ * Event object of the ManagedObject#formatError event.
14378
+ */
14341
14379
  type ManagedObject$FormatErrorEvent = sap.ui.base.Event<
14342
14380
  ManagedObject$FormatErrorEventParameters,
14343
14381
  ManagedObject
14344
14382
  >;
14345
14383
 
14384
+ /**
14385
+ * Event object of the ManagedObject#modelContextChange event.
14386
+ */
14346
14387
  type ManagedObject$ModelContextChangeEvent = sap.ui.base.Event<
14347
14388
  ManagedObject$ModelContextChangeEventParameters,
14348
14389
  ManagedObject
14349
14390
  >;
14350
14391
 
14392
+ /**
14393
+ * Event object of the ManagedObject#parseError event.
14394
+ */
14351
14395
  type ManagedObject$ParseErrorEvent = sap.ui.base.Event<
14352
14396
  ManagedObject$ParseErrorEventParameters,
14353
14397
  ManagedObject
14354
14398
  >;
14355
14399
 
14400
+ /**
14401
+ * Event object of the ManagedObject#validationError event.
14402
+ */
14356
14403
  type ManagedObject$ValidationErrorEvent = sap.ui.base.Event<
14357
14404
  ManagedObject$ValidationErrorEventParameters,
14358
14405
  ManagedObject
14359
14406
  >;
14360
14407
 
14408
+ /**
14409
+ * Event object of the ManagedObject#validationSuccess event.
14410
+ */
14361
14411
  type ManagedObject$ValidationSuccessEvent = sap.ui.base.Event<
14362
14412
  ManagedObject$ValidationSuccessEventParameters,
14363
14413
  ManagedObject
@@ -14422,14 +14472,29 @@ declare namespace sap {
14422
14472
  function CustomStyleClassSupport(): void;
14423
14473
 
14424
14474
  namespace delegate {
14475
+ /**
14476
+ * Parameters of the ItemNavigation#AfterFocus event.
14477
+ */
14425
14478
  interface ItemNavigation$AfterFocusEventParameters {}
14426
14479
 
14480
+ /**
14481
+ * Parameters of the ItemNavigation#BeforeFocus event.
14482
+ */
14427
14483
  interface ItemNavigation$BeforeFocusEventParameters {}
14428
14484
 
14485
+ /**
14486
+ * Parameters of the ItemNavigation#BorderReached event.
14487
+ */
14429
14488
  interface ItemNavigation$BorderReachedEventParameters {}
14430
14489
 
14490
+ /**
14491
+ * Parameters of the ItemNavigation#FocusAgain event.
14492
+ */
14431
14493
  interface ItemNavigation$FocusAgainEventParameters {}
14432
14494
 
14495
+ /**
14496
+ * Parameters of the ItemNavigation#FocusLeave event.
14497
+ */
14433
14498
  interface ItemNavigation$FocusLeaveEventParameters {}
14434
14499
 
14435
14500
  /**
@@ -15008,26 +15073,41 @@ declare namespace sap {
15008
15073
  ): void;
15009
15074
  }
15010
15075
 
15076
+ /**
15077
+ * Event object of the ItemNavigation#AfterFocus event.
15078
+ */
15011
15079
  type ItemNavigation$AfterFocusEvent = sap.ui.base.Event<
15012
15080
  ItemNavigation$AfterFocusEventParameters,
15013
15081
  ItemNavigation
15014
15082
  >;
15015
15083
 
15084
+ /**
15085
+ * Event object of the ItemNavigation#BeforeFocus event.
15086
+ */
15016
15087
  type ItemNavigation$BeforeFocusEvent = sap.ui.base.Event<
15017
15088
  ItemNavigation$BeforeFocusEventParameters,
15018
15089
  ItemNavigation
15019
15090
  >;
15020
15091
 
15092
+ /**
15093
+ * Event object of the ItemNavigation#BorderReached event.
15094
+ */
15021
15095
  type ItemNavigation$BorderReachedEvent = sap.ui.base.Event<
15022
15096
  ItemNavigation$BorderReachedEventParameters,
15023
15097
  ItemNavigation
15024
15098
  >;
15025
15099
 
15100
+ /**
15101
+ * Event object of the ItemNavigation#FocusAgain event.
15102
+ */
15026
15103
  type ItemNavigation$FocusAgainEvent = sap.ui.base.Event<
15027
15104
  ItemNavigation$FocusAgainEventParameters,
15028
15105
  ItemNavigation
15029
15106
  >;
15030
15107
 
15108
+ /**
15109
+ * Event object of the ItemNavigation#FocusLeave event.
15110
+ */
15031
15111
  type ItemNavigation$FocusLeaveEvent = sap.ui.base.Event<
15032
15112
  ItemNavigation$FocusLeaveEventParameters,
15033
15113
  ItemNavigation
@@ -15197,6 +15277,9 @@ declare namespace sap {
15197
15277
  __implements__sap_ui_core_dnd_IDropInfo: boolean;
15198
15278
  }
15199
15279
 
15280
+ /**
15281
+ * Describes the settings that can be provided to the DragDropBase constructor.
15282
+ */
15200
15283
  interface $DragDropBaseSettings extends sap.ui.core.$ElementSettings {
15201
15284
  /**
15202
15285
  * Defines the name of the group to which this object belongs. If `groupName` is specified, then this object
@@ -15215,6 +15298,9 @@ declare namespace sap {
15215
15298
  | `{${string}}`;
15216
15299
  }
15217
15300
 
15301
+ /**
15302
+ * Describes the settings that can be provided to the DragDropInfo constructor.
15303
+ */
15218
15304
  interface $DragDropInfoSettings
15219
15305
  extends sap.ui.core.dnd.$DropInfoSettings {
15220
15306
  /**
@@ -15245,6 +15331,9 @@ declare namespace sap {
15245
15331
  dragEnd?: (oEvent: sap.ui.base.Event) => void;
15246
15332
  }
15247
15333
 
15334
+ /**
15335
+ * Describes the settings that can be provided to the DragInfo constructor.
15336
+ */
15248
15337
  interface $DragInfoSettings
15249
15338
  extends sap.ui.core.dnd.$DragDropBaseSettings {
15250
15339
  /**
@@ -15268,6 +15357,9 @@ declare namespace sap {
15268
15357
  dragEnd?: (oEvent: DragInfo$DragEndEvent) => void;
15269
15358
  }
15270
15359
 
15360
+ /**
15361
+ * Describes the settings that can be provided to the DropInfo constructor.
15362
+ */
15271
15363
  interface $DropInfoSettings
15272
15364
  extends sap.ui.core.dnd.$DragDropBaseSettings {
15273
15365
  /**
@@ -15322,8 +15414,14 @@ declare namespace sap {
15322
15414
  drop?: (oEvent: DropInfo$DropEvent) => void;
15323
15415
  }
15324
15416
 
15417
+ /**
15418
+ * Parameters of the DragDropInfo#dragEnd event.
15419
+ */
15325
15420
  interface DragDropInfo$DragEndEventParameters {}
15326
15421
 
15422
+ /**
15423
+ * Parameters of the DragDropInfo#dragStart event.
15424
+ */
15327
15425
  interface DragDropInfo$DragStartEventParameters {
15328
15426
  /**
15329
15427
  * The target element that will be dragged
@@ -15341,6 +15439,9 @@ declare namespace sap {
15341
15439
  browserEvent?: DragEvent;
15342
15440
  }
15343
15441
 
15442
+ /**
15443
+ * Parameters of the DragInfo#dragEnd event.
15444
+ */
15344
15445
  interface DragInfo$DragEndEventParameters {
15345
15446
  /**
15346
15447
  * The target element that is being dragged
@@ -15358,6 +15459,9 @@ declare namespace sap {
15358
15459
  browserEvent?: DragEvent;
15359
15460
  }
15360
15461
 
15462
+ /**
15463
+ * Parameters of the DragInfo#dragStart event.
15464
+ */
15361
15465
  interface DragInfo$DragStartEventParameters {
15362
15466
  /**
15363
15467
  * The target element that will be dragged
@@ -15375,6 +15479,9 @@ declare namespace sap {
15375
15479
  browserEvent?: DragEvent;
15376
15480
  }
15377
15481
 
15482
+ /**
15483
+ * Parameters of the DropInfo#dragEnter event.
15484
+ */
15378
15485
  interface DropInfo$DragEnterEventParameters {
15379
15486
  /**
15380
15487
  * The target element on which the dragged element will be dropped
@@ -15392,6 +15499,9 @@ declare namespace sap {
15392
15499
  browserEvent?: DragEvent;
15393
15500
  }
15394
15501
 
15502
+ /**
15503
+ * Parameters of the DropInfo#dragOver event.
15504
+ */
15395
15505
  interface DropInfo$DragOverEventParameters {
15396
15506
  /**
15397
15507
  * The target element on which the dragged element will be dropped
@@ -15414,6 +15524,9 @@ declare namespace sap {
15414
15524
  browserEvent?: DragEvent;
15415
15525
  }
15416
15526
 
15527
+ /**
15528
+ * Parameters of the DropInfo#drop event.
15529
+ */
15417
15530
  interface DropInfo$DropEventParameters {
15418
15531
  /**
15419
15532
  * The UI5 `dragSession` object that exists only during drag and drop
@@ -16643,37 +16756,57 @@ declare namespace sap {
16643
16756
  */
16644
16757
  On = "On",
16645
16758
  }
16646
-
16759
+ /**
16760
+ * Event object of the DragDropInfo#dragEnd event.
16761
+ */
16647
16762
  type DragDropInfo$DragEndEvent = sap.ui.base.Event<
16648
16763
  DragDropInfo$DragEndEventParameters,
16649
16764
  DragDropInfo
16650
16765
  >;
16651
16766
 
16767
+ /**
16768
+ * Event object of the DragDropInfo#dragStart event.
16769
+ */
16652
16770
  type DragDropInfo$DragStartEvent = sap.ui.base.Event<
16653
16771
  DragDropInfo$DragStartEventParameters,
16654
16772
  DragDropInfo
16655
16773
  >;
16656
16774
 
16775
+ /**
16776
+ * Event object of the DragInfo#dragEnd event.
16777
+ */
16657
16778
  type DragInfo$DragEndEvent = sap.ui.base.Event<
16658
16779
  DragInfo$DragEndEventParameters,
16659
16780
  DragInfo
16660
16781
  >;
16661
16782
 
16783
+ /**
16784
+ * Event object of the DragInfo#dragStart event.
16785
+ */
16662
16786
  type DragInfo$DragStartEvent = sap.ui.base.Event<
16663
16787
  DragInfo$DragStartEventParameters,
16664
16788
  DragInfo
16665
16789
  >;
16666
16790
 
16791
+ /**
16792
+ * Event object of the DropInfo#dragEnter event.
16793
+ */
16667
16794
  type DropInfo$DragEnterEvent = sap.ui.base.Event<
16668
16795
  DropInfo$DragEnterEventParameters,
16669
16796
  DropInfo
16670
16797
  >;
16671
16798
 
16799
+ /**
16800
+ * Event object of the DropInfo#dragOver event.
16801
+ */
16672
16802
  type DropInfo$DragOverEvent = sap.ui.base.Event<
16673
16803
  DropInfo$DragOverEventParameters,
16674
16804
  DropInfo
16675
16805
  >;
16676
16806
 
16807
+ /**
16808
+ * Event object of the DropInfo#drop event.
16809
+ */
16677
16810
  type DropInfo$DropEvent = sap.ui.base.Event<
16678
16811
  DropInfo$DropEventParameters,
16679
16812
  DropInfo
@@ -18459,6 +18592,9 @@ declare namespace sap {
18459
18592
  }
18460
18593
 
18461
18594
  namespace message {
18595
+ /**
18596
+ * Parameters of the MessageProcessor#messageChange event.
18597
+ */
18462
18598
  interface MessageProcessor$MessageChangeEventParameters {
18463
18599
  /**
18464
18600
  * Messages already existing before the `messageChange` event was fired.
@@ -19235,6 +19371,9 @@ declare namespace sap {
19235
19371
  ): void;
19236
19372
  }
19237
19373
 
19374
+ /**
19375
+ * Event object of the MessageProcessor#messageChange event.
19376
+ */
19238
19377
  type MessageProcessor$MessageChangeEvent = sap.ui.base.Event<
19239
19378
  MessageProcessor$MessageChangeEventParameters,
19240
19379
  MessageProcessor
@@ -19373,14 +19512,46 @@ declare namespace sap {
19373
19512
  __implements__sap_ui_core_mvc_IControllerExtension: boolean;
19374
19513
  }
19375
19514
 
19515
+ /**
19516
+ * Describes the settings that can be provided to the HTMLView constructor.
19517
+ *
19518
+ * @deprecated (since 1.108) - as there are no more known usages of `HTMLViews`, and as the use of HTML
19519
+ * as syntax does not bring any advantages over XML. The HTML necessary for the `HTMLView` is not re-used
19520
+ * for the HTML of the controls, but is fully replaced.
19521
+ *
19522
+ * Consider using {@link sap.ui.core.mvc.XMLView XMLViews} or "typed views" (view classes written in JavaScript)
19523
+ * instead. For more information, see the documentation on {@link topic:91f27e3e6f4d1014b6dd926db0e91070 View types}.
19524
+ */
19376
19525
  interface $HTMLViewSettings extends sap.ui.core.mvc.$ViewSettings {}
19377
19526
 
19527
+ /**
19528
+ * Describes the settings that can be provided to the JSONView constructor.
19529
+ *
19530
+ * @deprecated (since 1.120) - please consider using {@link sap.ui.core.mvc.XMLView XMLViews} or "typed
19531
+ * views" (view classes written in JavaScript) instead. For more information, see the documentation on {@link topic:91f27e3e6f4d1014b6dd926db0e91070 View types}.
19532
+ */
19378
19533
  interface $JSONViewSettings extends sap.ui.core.mvc.$ViewSettings {}
19379
19534
 
19535
+ /**
19536
+ * Describes the settings that can be provided to the JSView constructor.
19537
+ *
19538
+ * @deprecated (since 1.90) - Instead use {@link topic:e6bb33d076dc4f23be50c082c271b9f0 Typed Views} by
19539
+ * defining the view class with {@link sap.ui.core.mvc.View.extend View.extend} and creating the view instances
19540
+ * with {@link sap.ui.core.mvc.View.create View.create}.
19541
+ */
19380
19542
  interface $JSViewSettings extends sap.ui.core.mvc.$ViewSettings {}
19381
19543
 
19544
+ /**
19545
+ * Describes the settings that can be provided to the TemplateView constructor.
19546
+ *
19547
+ * @deprecated (since 1.56.0) - use {@link sap.ui.core.mvc.XMLView} in combination with {@link topic:5ee619fc1370463ea674ee04b65ed83b XML Templating }
19548
+ * instead.
19549
+ */
19382
19550
  interface $TemplateViewSettings extends sap.ui.core.mvc.$ViewSettings {}
19383
19551
 
19552
+ /**
19553
+ * Describes the settings that can be provided to the View constructor.
19554
+ */
19384
19555
  interface $ViewSettings extends sap.ui.core.$ControlSettings {
19385
19556
  /**
19386
19557
  * The width
@@ -19508,6 +19679,9 @@ declare namespace sap {
19508
19679
  beforeRendering?: (oEvent: sap.ui.base.Event) => void;
19509
19680
  }
19510
19681
 
19682
+ /**
19683
+ * Describes the settings that can be provided to the XMLView constructor.
19684
+ */
19511
19685
  interface $XMLViewSettings extends sap.ui.core.mvc.$ViewSettings {
19512
19686
  /**
19513
19687
  * Configuration for the XMLView caching.
@@ -19526,12 +19700,24 @@ declare namespace sap {
19526
19700
  requireContext?: Object;
19527
19701
  }
19528
19702
 
19703
+ /**
19704
+ * Parameters of the View#afterInit event.
19705
+ */
19529
19706
  interface View$AfterInitEventParameters {}
19530
19707
 
19708
+ /**
19709
+ * Parameters of the View#afterRendering event.
19710
+ */
19531
19711
  interface View$AfterRenderingEventParameters {}
19532
19712
 
19713
+ /**
19714
+ * Parameters of the View#beforeExit event.
19715
+ */
19533
19716
  interface View$BeforeExitEventParameters {}
19534
19717
 
19718
+ /**
19719
+ * Parameters of the View#beforeRendering event.
19720
+ */
19535
19721
  interface View$BeforeRenderingEventParameters {}
19536
19722
 
19537
19723
  /**
@@ -21748,22 +21934,33 @@ declare namespace sap {
21748
21934
  */
21749
21935
  XML = "XML",
21750
21936
  }
21751
-
21937
+ /**
21938
+ * Event object of the View#afterInit event.
21939
+ */
21752
21940
  type View$AfterInitEvent = sap.ui.base.Event<
21753
21941
  View$AfterInitEventParameters,
21754
21942
  View
21755
21943
  >;
21756
21944
 
21945
+ /**
21946
+ * Event object of the View#afterRendering event.
21947
+ */
21757
21948
  type View$AfterRenderingEvent = sap.ui.base.Event<
21758
21949
  View$AfterRenderingEventParameters,
21759
21950
  View
21760
21951
  >;
21761
21952
 
21953
+ /**
21954
+ * Event object of the View#beforeExit event.
21955
+ */
21762
21956
  type View$BeforeExitEvent = sap.ui.base.Event<
21763
21957
  View$BeforeExitEventParameters,
21764
21958
  View
21765
21959
  >;
21766
21960
 
21961
+ /**
21962
+ * Event object of the View#beforeRendering event.
21963
+ */
21767
21964
  type View$BeforeRenderingEvent = sap.ui.base.Event<
21768
21965
  View$BeforeRenderingEventParameters,
21769
21966
  View
@@ -22549,6 +22746,9 @@ declare namespace sap {
22549
22746
  }
22550
22747
 
22551
22748
  namespace hyphenation {
22749
+ /**
22750
+ * Describes the settings that can be provided to the Hyphenation constructor.
22751
+ */
22552
22752
  interface $HyphenationSettings
22553
22753
  extends sap.ui.base.$ManagedObjectSettings {
22554
22754
  /**
@@ -22557,6 +22757,9 @@ declare namespace sap {
22557
22757
  error?: (oEvent: Hyphenation$ErrorEvent) => void;
22558
22758
  }
22559
22759
 
22760
+ /**
22761
+ * Parameters of the Hyphenation#error event.
22762
+ */
22560
22763
  interface Hyphenation$ErrorEventParameters {
22561
22764
  /**
22562
22765
  * The message of the error.
@@ -22825,6 +23028,9 @@ declare namespace sap {
22825
23028
  ): boolean;
22826
23029
  }
22827
23030
 
23031
+ /**
23032
+ * Event object of the Hyphenation#error event.
23033
+ */
22828
23034
  type Hyphenation$ErrorEvent = sap.ui.base.Event<
22829
23035
  Hyphenation$ErrorEventParameters,
22830
23036
  Hyphenation
@@ -22921,6 +23127,9 @@ declare namespace sap {
22921
23127
  }
22922
23128
 
22923
23129
  namespace routing {
23130
+ /**
23131
+ * Parameters of the HashChanger#hashSet event.
23132
+ */
22924
23133
  interface HashChanger$HashSetEventParameters {
22925
23134
  /**
22926
23135
  * The relevant hash segment
@@ -22928,6 +23137,11 @@ declare namespace sap {
22928
23137
  hash?: string;
22929
23138
  }
22930
23139
 
23140
+ /**
23141
+ * Parameters of the HashChangerBase#hashChanged event.
23142
+ *
23143
+ * @ui5-protected DO NOT USE IN APPLICATIONS (only for related classes in the framework)
23144
+ */
22931
23145
  interface HashChangerBase$HashChangedEventParameters {
22932
23146
  /**
22933
23147
  * The hash segment before it's changed
@@ -22945,6 +23159,11 @@ declare namespace sap {
22945
23159
  fullHash?: string;
22946
23160
  }
22947
23161
 
23162
+ /**
23163
+ * Parameters of the HashChangerBase#hashReplaced event.
23164
+ *
23165
+ * @ui5-protected DO NOT USE IN APPLICATIONS (only for related classes in the framework)
23166
+ */
22948
23167
  interface HashChangerBase$HashReplacedEventParameters {
22949
23168
  /**
22950
23169
  * The relevant hash segment
@@ -22952,6 +23171,9 @@ declare namespace sap {
22952
23171
  hash?: string;
22953
23172
  }
22954
23173
 
23174
+ /**
23175
+ * Parameters of the Route#beforeMatched event.
23176
+ */
22955
23177
  interface Route$BeforeMatchedEventParameters {
22956
23178
  /**
22957
23179
  * The name of the route
@@ -22978,6 +23200,9 @@ declare namespace sap {
22978
23200
  nestedRoute?: sap.ui.core.routing.Route;
22979
23201
  }
22980
23202
 
23203
+ /**
23204
+ * Parameters of the Route#matched event.
23205
+ */
22981
23206
  interface Route$MatchedEventParameters {
22982
23207
  /**
22983
23208
  * The name of the route
@@ -23026,6 +23251,9 @@ declare namespace sap {
23026
23251
  targetControls?: sap.ui.core.Control[];
23027
23252
  }
23028
23253
 
23254
+ /**
23255
+ * Parameters of the Route#patternMatched event.
23256
+ */
23029
23257
  interface Route$PatternMatchedEventParameters {
23030
23258
  /**
23031
23259
  * The name of the route
@@ -23066,6 +23294,9 @@ declare namespace sap {
23066
23294
  targetControls?: sap.ui.core.Control[];
23067
23295
  }
23068
23296
 
23297
+ /**
23298
+ * Parameters of the Route#switched event.
23299
+ */
23069
23300
  interface Route$SwitchedEventParameters {
23070
23301
  /**
23071
23302
  * The name of the route
@@ -23084,6 +23315,9 @@ declare namespace sap {
23084
23315
  config?: object;
23085
23316
  }
23086
23317
 
23318
+ /**
23319
+ * Parameters of the Router#beforeRouteMatched event.
23320
+ */
23087
23321
  interface Router$BeforeRouteMatchedEventParameters {
23088
23322
  /**
23089
23323
  * The name of the route
@@ -23110,6 +23344,9 @@ declare namespace sap {
23110
23344
  nestedRoute?: sap.ui.core.routing.Route;
23111
23345
  }
23112
23346
 
23347
+ /**
23348
+ * Parameters of the Router#bypassed event.
23349
+ */
23113
23350
  interface Router$BypassedEventParameters {
23114
23351
  /**
23115
23352
  * the current URL hash which did not match any route
@@ -23117,6 +23354,9 @@ declare namespace sap {
23117
23354
  hash?: string;
23118
23355
  }
23119
23356
 
23357
+ /**
23358
+ * Parameters of the Router#routeMatched event.
23359
+ */
23120
23360
  interface Router$RouteMatchedEventParameters {
23121
23361
  /**
23122
23362
  * The name of the route
@@ -23165,6 +23405,9 @@ declare namespace sap {
23165
23405
  targetControls?: sap.ui.core.Control[];
23166
23406
  }
23167
23407
 
23408
+ /**
23409
+ * Parameters of the Router#routePatternMatched event.
23410
+ */
23168
23411
  interface Router$RoutePatternMatchedEventParameters {
23169
23412
  /**
23170
23413
  * The name of the route
@@ -23205,6 +23448,9 @@ declare namespace sap {
23205
23448
  targetControls?: sap.ui.core.Control[];
23206
23449
  }
23207
23450
 
23451
+ /**
23452
+ * Parameters of the Router#titleChanged event.
23453
+ */
23208
23454
  interface Router$TitleChangedEventParameters {
23209
23455
  /**
23210
23456
  * The current displayed title
@@ -23231,6 +23477,9 @@ declare namespace sap {
23231
23477
  propagated?: boolean;
23232
23478
  }
23233
23479
 
23480
+ /**
23481
+ * Parameters of the Target#display event.
23482
+ */
23234
23483
  interface Target$DisplayEventParameters {
23235
23484
  /**
23236
23485
  * The view that got displayed.
@@ -23258,6 +23507,9 @@ declare namespace sap {
23258
23507
  routeRelevant?: object;
23259
23508
  }
23260
23509
 
23510
+ /**
23511
+ * Parameters of the Targets#display event.
23512
+ */
23261
23513
  interface Targets$DisplayEventParameters {
23262
23514
  /**
23263
23515
  * The view that got displayed.
@@ -23290,6 +23542,9 @@ declare namespace sap {
23290
23542
  routeRelevant?: object;
23291
23543
  }
23292
23544
 
23545
+ /**
23546
+ * Parameters of the Targets#titleChanged event.
23547
+ */
23293
23548
  interface Targets$TitleChangedEventParameters {
23294
23549
  /**
23295
23550
  * The current displayed title
@@ -23302,6 +23557,9 @@ declare namespace sap {
23302
23557
  name?: string;
23303
23558
  }
23304
23559
 
23560
+ /**
23561
+ * Parameters of the Views#created event.
23562
+ */
23305
23563
  interface Views$CreatedEventParameters {
23306
23564
  /**
23307
23565
  * the instance of the created view.
@@ -26248,81 +26506,133 @@ declare namespace sap {
26248
26506
  ignoreInitialHash?: boolean;
26249
26507
  };
26250
26508
 
26509
+ /**
26510
+ * Event object of the HashChanger#hashSet event.
26511
+ */
26251
26512
  type HashChanger$HashSetEvent = sap.ui.base.Event<
26252
26513
  HashChanger$HashSetEventParameters,
26253
26514
  HashChanger
26254
26515
  >;
26255
26516
 
26517
+ /**
26518
+ * Event object of the HashChangerBase#hashChanged event.
26519
+ *
26520
+ * @ui5-protected DO NOT USE IN APPLICATIONS (only for related classes in the framework)
26521
+ */
26256
26522
  type HashChangerBase$HashChangedEvent = sap.ui.base.Event<
26257
26523
  HashChangerBase$HashChangedEventParameters,
26258
26524
  HashChangerBase
26259
26525
  >;
26260
26526
 
26527
+ /**
26528
+ * Event object of the HashChangerBase#hashReplaced event.
26529
+ *
26530
+ * @ui5-protected DO NOT USE IN APPLICATIONS (only for related classes in the framework)
26531
+ */
26261
26532
  type HashChangerBase$HashReplacedEvent = sap.ui.base.Event<
26262
26533
  HashChangerBase$HashReplacedEventParameters,
26263
26534
  HashChangerBase
26264
26535
  >;
26265
26536
 
26537
+ /**
26538
+ * Event object of the Route#beforeMatched event.
26539
+ */
26266
26540
  type Route$BeforeMatchedEvent = sap.ui.base.Event<
26267
26541
  Route$BeforeMatchedEventParameters,
26268
26542
  Route
26269
26543
  >;
26270
26544
 
26545
+ /**
26546
+ * Event object of the Route#matched event.
26547
+ */
26271
26548
  type Route$MatchedEvent = sap.ui.base.Event<
26272
26549
  Route$MatchedEventParameters,
26273
26550
  Route
26274
26551
  >;
26275
26552
 
26553
+ /**
26554
+ * Event object of the Route#patternMatched event.
26555
+ */
26276
26556
  type Route$PatternMatchedEvent = sap.ui.base.Event<
26277
26557
  Route$PatternMatchedEventParameters,
26278
26558
  Route
26279
26559
  >;
26280
26560
 
26561
+ /**
26562
+ * Event object of the Route#switched event.
26563
+ */
26281
26564
  type Route$SwitchedEvent = sap.ui.base.Event<
26282
26565
  Route$SwitchedEventParameters,
26283
26566
  Route
26284
26567
  >;
26285
26568
 
26569
+ /**
26570
+ * Event object of the Router#beforeRouteMatched event.
26571
+ */
26286
26572
  type Router$BeforeRouteMatchedEvent = sap.ui.base.Event<
26287
26573
  Router$BeforeRouteMatchedEventParameters,
26288
26574
  Router
26289
26575
  >;
26290
26576
 
26577
+ /**
26578
+ * Event object of the Router#bypassed event.
26579
+ */
26291
26580
  type Router$BypassedEvent = sap.ui.base.Event<
26292
26581
  Router$BypassedEventParameters,
26293
26582
  Router
26294
26583
  >;
26295
26584
 
26585
+ /**
26586
+ * Event object of the Router#routeMatched event.
26587
+ */
26296
26588
  type Router$RouteMatchedEvent = sap.ui.base.Event<
26297
26589
  Router$RouteMatchedEventParameters,
26298
26590
  Router
26299
26591
  >;
26300
26592
 
26593
+ /**
26594
+ * Event object of the Router#routePatternMatched event.
26595
+ */
26301
26596
  type Router$RoutePatternMatchedEvent = sap.ui.base.Event<
26302
26597
  Router$RoutePatternMatchedEventParameters,
26303
26598
  Router
26304
26599
  >;
26305
26600
 
26601
+ /**
26602
+ * Event object of the Router#titleChanged event.
26603
+ */
26306
26604
  type Router$TitleChangedEvent = sap.ui.base.Event<
26307
26605
  Router$TitleChangedEventParameters,
26308
26606
  Router
26309
26607
  >;
26310
26608
 
26609
+ /**
26610
+ * Event object of the Target#display event.
26611
+ */
26311
26612
  type Target$DisplayEvent = sap.ui.base.Event<
26312
26613
  Target$DisplayEventParameters,
26313
26614
  Target
26314
26615
  >;
26315
26616
 
26617
+ /**
26618
+ * Event object of the Targets#display event.
26619
+ */
26316
26620
  type Targets$DisplayEvent = sap.ui.base.Event<
26317
26621
  Targets$DisplayEventParameters,
26318
26622
  Targets
26319
26623
  >;
26320
26624
 
26625
+ /**
26626
+ * Event object of the Targets#titleChanged event.
26627
+ */
26321
26628
  type Targets$TitleChangedEvent = sap.ui.base.Event<
26322
26629
  Targets$TitleChangedEventParameters,
26323
26630
  Targets
26324
26631
  >;
26325
26632
 
26633
+ /**
26634
+ * Event object of the Views#created event.
26635
+ */
26326
26636
  type Views$CreatedEvent = sap.ui.base.Event<
26327
26637
  Views$CreatedEventParameters,
26328
26638
  Views
@@ -26330,6 +26640,11 @@ declare namespace sap {
26330
26640
  }
26331
26641
 
26332
26642
  namespace search {
26643
+ /**
26644
+ * Describes the settings that can be provided to the OpenSearchProvider constructor.
26645
+ *
26646
+ * @deprecated (since 1.120)
26647
+ */
26333
26648
  interface $OpenSearchProviderSettings
26334
26649
  extends sap.ui.core.search.$SearchProviderSettings {
26335
26650
  /**
@@ -26347,6 +26662,11 @@ declare namespace sap {
26347
26662
  suggestType?: string | sap.ui.base.ManagedObject.PropertyBindingInfo;
26348
26663
  }
26349
26664
 
26665
+ /**
26666
+ * Describes the settings that can be provided to the SearchProvider constructor.
26667
+ *
26668
+ * @deprecated (since 1.120)
26669
+ */
26350
26670
  interface $SearchProviderSettings extends sap.ui.core.$ElementSettings {
26351
26671
  /**
26352
26672
  * Icon of the Search Provider
@@ -26877,13 +27197,21 @@ declare namespace sap {
26877
27197
  * Resets the CSS parameters which finally will reload the parameters the next time they are queried via
26878
27198
  * the method `get`.
26879
27199
  *
26880
- * @deprecated (since 1.92)
27200
+ * @deprecated (since 1.92) - without a replacement. Application code should not be able to interfere with
27201
+ * the automated determination of theme parameters. Resetting the parameters unnecessarily could impact
27202
+ * performance. Please use the (potentially async) API to get parameter values and rely on the framework
27203
+ * to update parameter values when the theme changes.
26881
27204
  */
26882
27205
  reset(): void;
26883
27206
  }
26884
27207
  }
26885
27208
 
26886
27209
  namespace tmpl {
27210
+ /**
27211
+ * Describes the settings that can be provided to the DOMAttribute constructor.
27212
+ *
27213
+ * @deprecated (since 1.56)
27214
+ */
26887
27215
  interface $DOMAttributeSettings extends sap.ui.core.$ElementSettings {
26888
27216
  /**
26889
27217
  * Name of the DOM attribute
@@ -26896,6 +27224,11 @@ declare namespace sap {
26896
27224
  value?: string | sap.ui.base.ManagedObject.PropertyBindingInfo;
26897
27225
  }
26898
27226
 
27227
+ /**
27228
+ * Describes the settings that can be provided to the DOMElement constructor.
27229
+ *
27230
+ * @deprecated (since 1.56)
27231
+ */
26899
27232
  interface $DOMElementSettings extends sap.ui.core.$ControlSettings {
26900
27233
  /**
26901
27234
  * The text content of the DOM element
@@ -26926,9 +27259,20 @@ declare namespace sap {
26926
27259
  | `{${string}}`;
26927
27260
  }
26928
27261
 
27262
+ /**
27263
+ * Describes the settings that can be provided to the HandlebarsTemplate constructor.
27264
+ *
27265
+ * @deprecated (since 1.56)
27266
+ */
26929
27267
  interface $HandlebarsTemplateSettings
26930
27268
  extends sap.ui.core.tmpl.$TemplateSettings {}
26931
27269
 
27270
+ /**
27271
+ * Describes the settings that can be provided to the Template constructor.
27272
+ *
27273
+ * @deprecated (since 1.56) - use an {@link sap.ui.core.mvc.XMLView XMLView} or a {@link topic:e6bb33d076dc4f23be50c082c271b9f0 Typed View }
27274
+ * instead.
27275
+ */
26932
27276
  interface $TemplateSettings extends sap.ui.base.$ManagedObjectSettings {
26933
27277
  /**
26934
27278
  * The Template definition as a String.
@@ -26936,6 +27280,11 @@ declare namespace sap {
26936
27280
  content?: string | sap.ui.base.ManagedObject.PropertyBindingInfo;
26937
27281
  }
26938
27282
 
27283
+ /**
27284
+ * Describes the settings that can be provided to the TemplateControl constructor.
27285
+ *
27286
+ * @deprecated (since 1.56)
27287
+ */
26939
27288
  interface $TemplateControlSettings
26940
27289
  extends sap.ui.core.$ControlSettings {
26941
27290
  /**
@@ -26964,8 +27313,14 @@ declare namespace sap {
26964
27313
  beforeRendering?: (oEvent: sap.ui.base.Event) => void;
26965
27314
  }
26966
27315
 
27316
+ /**
27317
+ * Parameters of the TemplateControl#afterRendering event.
27318
+ */
26967
27319
  interface TemplateControl$AfterRenderingEventParameters {}
26968
27320
 
27321
+ /**
27322
+ * Parameters of the TemplateControl#beforeRendering event.
27323
+ */
26969
27324
  interface TemplateControl$BeforeRenderingEventParameters {}
26970
27325
 
26971
27326
  /**
@@ -28168,11 +28523,17 @@ declare namespace sap {
28168
28523
  ): this;
28169
28524
  }
28170
28525
 
28526
+ /**
28527
+ * Event object of the TemplateControl#afterRendering event.
28528
+ */
28171
28529
  type TemplateControl$AfterRenderingEvent = sap.ui.base.Event<
28172
28530
  TemplateControl$AfterRenderingEventParameters,
28173
28531
  TemplateControl
28174
28532
  >;
28175
28533
 
28534
+ /**
28535
+ * Event object of the TemplateControl#beforeRendering event.
28536
+ */
28176
28537
  type TemplateControl$BeforeRenderingEvent = sap.ui.base.Event<
28177
28538
  TemplateControl$BeforeRenderingEventParameters,
28178
28539
  TemplateControl
@@ -28181,16 +28542,20 @@ declare namespace sap {
28181
28542
 
28182
28543
  namespace UIArea {
28183
28544
  /**
28184
- * Registry of all `sap.ui.core.Element`s that currently exist.
28545
+ * Registry of all `sap.ui.core.UIArea`s that currently exist.
28185
28546
  *
28186
28547
  * @since 1.107
28187
- * @deprecated (since 1.120)
28548
+ * @deprecated (since 1.120) - without a replacement. Applications should not be interested in the set of
28549
+ * all `UIArea`s. They should only assign controls to them, by using {@link sap.ui.core.Control.prototype.placeAt Control.prototype.placeAt }
28550
+ * or use the API of a `UIArea` as reachable via {@link sap.ui.core.Control.prototype.getUIArea Control.prototype.getUIArea}.
28188
28551
  */
28189
28552
  interface registry {
28190
28553
  /**
28191
28554
  * Number of existing UIAreas.
28192
28555
  *
28193
- * @deprecated (since 1.120)
28556
+ * @deprecated (since 1.120) - without a replacement. Applications should not be interested in the set of
28557
+ * all `UIArea`s. They should only assign controls to them, by using {@link sap.ui.core.Control.prototype.placeAt Control.prototype.placeAt }
28558
+ * or use the API of a `UIArea` as reachable via {@link sap.ui.core.Control.prototype.getUIArea Control.prototype.getUIArea}.
28194
28559
  */
28195
28560
  size: int;
28196
28561
 
@@ -28204,7 +28569,9 @@ declare namespace sap {
28204
28569
  * **Note**: The returned object is created by a call to `Object.create(null)`, and therefore lacks all
28205
28570
  * methods of `Object.prototype`, e.g. `toString` etc.
28206
28571
  *
28207
- * @deprecated (since 1.120)
28572
+ * @deprecated (since 1.120) - without a replacement. Applications should not be interested in the set of
28573
+ * all `UIArea`s. They should only assign controls to them, by using {@link sap.ui.core.Control.prototype.placeAt Control.prototype.placeAt }
28574
+ * or use the API of a `UIArea` as reachable via {@link sap.ui.core.Control.prototype.getUIArea Control.prototype.getUIArea}.
28208
28575
  *
28209
28576
  * @returns Object with all UIAreas, keyed by their ID
28210
28577
  */
@@ -28232,7 +28599,9 @@ declare namespace sap {
28232
28599
  * in the array is not specified and might change between calls (over time and across different versions
28233
28600
  * of UI5).
28234
28601
  *
28235
- * @deprecated (since 1.120)
28602
+ * @deprecated (since 1.120) - without a replacement. Applications should not be interested in the set of
28603
+ * all `UIArea`s. They should only assign controls to them, by using {@link sap.ui.core.Control.prototype.placeAt Control.prototype.placeAt }
28604
+ * or use the API of a `UIArea` as reachable via {@link sap.ui.core.Control.prototype.getUIArea Control.prototype.getUIArea}.
28236
28605
  *
28237
28606
  * @returns Array of UIAreas matching the predicate; order is undefined and might change in newer versions
28238
28607
  * of UI5
@@ -28269,7 +28638,9 @@ declare namespace sap {
28269
28638
  * that the implementation of `callback` sees, depends on the usual resolution mechanism. E.g. when `callback`
28270
28639
  * was bound to some context object, that object wins over the given `thisArg`.
28271
28640
  *
28272
- * @deprecated (since 1.120)
28641
+ * @deprecated (since 1.120) - without a replacement. Applications should not be interested in the set of
28642
+ * all `UIArea`s. They should only assign controls to them, by using {@link sap.ui.core.Control.prototype.placeAt Control.prototype.placeAt }
28643
+ * or use the API of a `UIArea` as reachable via {@link sap.ui.core.Control.prototype.getUIArea Control.prototype.getUIArea}.
28273
28644
  */
28274
28645
  forEach(
28275
28646
  /**
@@ -28287,7 +28658,9 @@ declare namespace sap {
28287
28658
  * When the ID is `null` or `undefined` or when there's no UIArea with the given ID, then `undefined` is
28288
28659
  * returned.
28289
28660
  *
28290
- * @deprecated (since 1.120)
28661
+ * @deprecated (since 1.120) - without a replacement. Applications should not be interested in the set of
28662
+ * all `UIArea`s. They should only assign controls to them, by using {@link sap.ui.core.Control.prototype.placeAt Control.prototype.placeAt }
28663
+ * or use the API of a `UIArea` as reachable via {@link sap.ui.core.Control.prototype.getUIArea Control.prototype.getUIArea}.
28291
28664
  *
28292
28665
  * @returns UIArea with the given ID or `undefined`
28293
28666
  */
@@ -28756,7 +29129,11 @@ declare namespace sap {
28756
29129
  ): any;
28757
29130
  }
28758
29131
  }
28759
-
29132
+ /**
29133
+ * Describes the settings that can be provided to the Export constructor.
29134
+ *
29135
+ * @deprecated (since 1.73)
29136
+ */
28760
29137
  interface $ExportSettings extends sap.ui.core.$ControlSettings {
28761
29138
  /**
28762
29139
  * Type that generates the content.
@@ -28782,6 +29159,11 @@ declare namespace sap {
28782
29159
  | `{${string}}`;
28783
29160
  }
28784
29161
 
29162
+ /**
29163
+ * Describes the settings that can be provided to the ExportCell constructor.
29164
+ *
29165
+ * @deprecated (since 1.73)
29166
+ */
28785
29167
  interface $ExportCellSettings extends sap.ui.core.$ElementSettings {
28786
29168
  /**
28787
29169
  * Cell content.
@@ -28789,6 +29171,11 @@ declare namespace sap {
28789
29171
  content?: string | sap.ui.base.ManagedObject.PropertyBindingInfo;
28790
29172
  }
28791
29173
 
29174
+ /**
29175
+ * Describes the settings that can be provided to the ExportColumn constructor.
29176
+ *
29177
+ * @deprecated (since 1.73)
29178
+ */
28792
29179
  interface $ExportColumnSettings
28793
29180
  extends sap.ui.base.$ManagedObjectSettings {
28794
29181
  /**
@@ -28802,6 +29189,11 @@ declare namespace sap {
28802
29189
  template?: sap.ui.core.util.ExportCell;
28803
29190
  }
28804
29191
 
29192
+ /**
29193
+ * Describes the settings that can be provided to the ExportRow constructor.
29194
+ *
29195
+ * @deprecated (since 1.73)
29196
+ */
28805
29197
  interface $ExportRowSettings
28806
29198
  extends sap.ui.base.$ManagedObjectSettings {
28807
29199
  /**
@@ -28814,6 +29206,11 @@ declare namespace sap {
28814
29206
  | `{${string}}`;
28815
29207
  }
28816
29208
 
29209
+ /**
29210
+ * Describes the settings that can be provided to the ExportType constructor.
29211
+ *
29212
+ * @deprecated (since 1.73)
29213
+ */
28817
29214
  interface $ExportTypeSettings
28818
29215
  extends sap.ui.base.$ManagedObjectSettings {
28819
29216
  /**
@@ -28842,6 +29239,11 @@ declare namespace sap {
28842
29239
  | `{${string}}`;
28843
29240
  }
28844
29241
 
29242
+ /**
29243
+ * Describes the settings that can be provided to the ExportTypeCSV constructor.
29244
+ *
29245
+ * @deprecated (since 1.73)
29246
+ */
28845
29247
  interface $ExportTypeCSVSettings
28846
29248
  extends sap.ui.core.util.$ExportTypeSettings {
28847
29249
  /**
@@ -28854,6 +29256,9 @@ declare namespace sap {
28854
29256
  | sap.ui.base.ManagedObject.PropertyBindingInfo;
28855
29257
  }
28856
29258
 
29259
+ /**
29260
+ * Describes the settings that can be provided to the MockServer constructor.
29261
+ */
28857
29262
  interface $MockServerSettings
28858
29263
  extends sap.ui.base.$ManagedObjectSettings {
28859
29264
  /**
@@ -30470,7 +30875,11 @@ declare namespace sap {
30470
30875
  */
30471
30876
  type MetadataOptionsPropertyMapping = sap.ui.core.webc.WebComponent.MetadataOptions.Property.Mapping;
30472
30877
  }
30473
-
30878
+ /**
30879
+ * Describes the settings that can be provided to the WebComponent constructor.
30880
+ *
30881
+ * @experimental (since 1.118.0) - The API might change. It is not intended for productive usage yet!
30882
+ */
30474
30883
  interface $WebComponentSettings extends sap.ui.core.$ControlSettings {}
30475
30884
 
30476
30885
  /**
@@ -30631,7 +31040,9 @@ declare namespace sap {
30631
31040
  v10 = "v10.pcp.sap.com",
30632
31041
  }
30633
31042
  }
30634
-
31043
+ /**
31044
+ * Parameters of the SapPcpWebSocket#message event.
31045
+ */
30635
31046
  interface SapPcpWebSocket$MessageEventParameters
30636
31047
  extends sap.ui.core.ws.WebSocket$MessageEventParameters {
30637
31048
  /**
@@ -30640,6 +31051,9 @@ declare namespace sap {
30640
31051
  pcpFields?: string;
30641
31052
  }
30642
31053
 
31054
+ /**
31055
+ * Parameters of the WebSocket#close event.
31056
+ */
30643
31057
  interface WebSocket$CloseEventParameters {
30644
31058
  /**
30645
31059
  * Close code provided by the server.
@@ -30657,8 +31071,14 @@ declare namespace sap {
30657
31071
  wasClean?: string;
30658
31072
  }
30659
31073
 
31074
+ /**
31075
+ * Parameters of the WebSocket#error event.
31076
+ */
30660
31077
  interface WebSocket$ErrorEventParameters {}
30661
31078
 
31079
+ /**
31080
+ * Parameters of the WebSocket#message event.
31081
+ */
30662
31082
  interface WebSocket$MessageEventParameters {
30663
31083
  /**
30664
31084
  * Received data from the server.
@@ -30666,6 +31086,9 @@ declare namespace sap {
30666
31086
  data?: string;
30667
31087
  }
30668
31088
 
31089
+ /**
31090
+ * Parameters of the WebSocket#open event.
31091
+ */
30669
31092
  interface WebSocket$OpenEventParameters {}
30670
31093
 
30671
31094
  /**
@@ -31181,27 +31604,41 @@ declare namespace sap {
31181
31604
  */
31182
31605
  OPEN = "1",
31183
31606
  }
31184
-
31607
+ /**
31608
+ * Event object of the SapPcpWebSocket#message event.
31609
+ */
31185
31610
  type SapPcpWebSocket$MessageEvent = sap.ui.base.Event<
31186
31611
  SapPcpWebSocket$MessageEventParameters,
31187
31612
  SapPcpWebSocket
31188
31613
  >;
31189
31614
 
31615
+ /**
31616
+ * Event object of the WebSocket#close event.
31617
+ */
31190
31618
  type WebSocket$CloseEvent = sap.ui.base.Event<
31191
31619
  WebSocket$CloseEventParameters,
31192
31620
  WebSocket
31193
31621
  >;
31194
31622
 
31623
+ /**
31624
+ * Event object of the WebSocket#error event.
31625
+ */
31195
31626
  type WebSocket$ErrorEvent = sap.ui.base.Event<
31196
31627
  WebSocket$ErrorEventParameters,
31197
31628
  WebSocket
31198
31629
  >;
31199
31630
 
31631
+ /**
31632
+ * Event object of the WebSocket#message event.
31633
+ */
31200
31634
  type WebSocket$MessageEvent = sap.ui.base.Event<
31201
31635
  WebSocket$MessageEventParameters,
31202
31636
  WebSocket
31203
31637
  >;
31204
31638
 
31639
+ /**
31640
+ * Event object of the WebSocket#open event.
31641
+ */
31205
31642
  type WebSocket$OpenEvent = sap.ui.base.Event<
31206
31643
  WebSocket$OpenEventParameters,
31207
31644
  WebSocket
@@ -31505,6 +31942,9 @@ declare namespace sap {
31505
31942
  __implements__sap_ui_core_Toolbar: boolean;
31506
31943
  }
31507
31944
 
31945
+ /**
31946
+ * Describes the settings that can be provided to the CommandExecution constructor.
31947
+ */
31508
31948
  interface $CommandExecutionSettings extends sap.ui.core.$ElementSettings {
31509
31949
  /**
31510
31950
  * The command's name, that has to be defined in the manifest. This property can only be applied initially.
@@ -31539,10 +31979,16 @@ declare namespace sap {
31539
31979
  execute?: (oEvent: sap.ui.base.Event) => void;
31540
31980
  }
31541
31981
 
31982
+ /**
31983
+ * Describes the settings that can be provided to the Component constructor.
31984
+ */
31542
31985
  interface $ComponentSettings extends sap.ui.base.$ManagedObjectSettings {
31543
31986
  componentData?: any;
31544
31987
  }
31545
31988
 
31989
+ /**
31990
+ * Describes the settings that can be provided to the ComponentContainer constructor.
31991
+ */
31546
31992
  interface $ComponentContainerSettings
31547
31993
  extends sap.ui.core.$ControlSettings {
31548
31994
  /**
@@ -31685,6 +32131,9 @@ declare namespace sap {
31685
32131
  ) => void;
31686
32132
  }
31687
32133
 
32134
+ /**
32135
+ * Describes the settings that can be provided to the Control constructor.
32136
+ */
31688
32137
  interface $ControlSettings extends sap.ui.core.$ElementSettings {
31689
32138
  /**
31690
32139
  * Whether the control is currently in blocked state.
@@ -31771,6 +32220,9 @@ declare namespace sap {
31771
32220
  validateFieldGroup?: (oEvent: Control$ValidateFieldGroupEvent) => void;
31772
32221
  }
31773
32222
 
32223
+ /**
32224
+ * Describes the settings that can be provided to the CustomData constructor.
32225
+ */
31774
32226
  interface $CustomDataSettings extends sap.ui.core.$ElementSettings {
31775
32227
  /**
31776
32228
  * The key of the data in this CustomData object. When the data is just stored, it can be any string, but
@@ -31816,6 +32268,9 @@ declare namespace sap {
31816
32268
  | `{${string}}`;
31817
32269
  }
31818
32270
 
32271
+ /**
32272
+ * Describes the settings that can be provided to the Element constructor.
32273
+ */
31819
32274
  interface $ElementSettings extends sap.ui.base.$ManagedObjectSettings {
31820
32275
  /**
31821
32276
  * The tooltip that should be shown for this Element.
@@ -31887,6 +32342,9 @@ declare namespace sap {
31887
32342
  | `{${string}}`;
31888
32343
  }
31889
32344
 
32345
+ /**
32346
+ * Describes the settings that can be provided to the Fragment constructor.
32347
+ */
31890
32348
  interface $FragmentSettings extends sap.ui.base.$ManagedObjectSettings {
31891
32349
  type?: string | sap.ui.base.ManagedObject.PropertyBindingInfo;
31892
32350
 
@@ -31895,6 +32353,9 @@ declare namespace sap {
31895
32353
  fragmentContent?: any;
31896
32354
  }
31897
32355
 
32356
+ /**
32357
+ * Describes the settings that can be provided to the HTML constructor.
32358
+ */
31898
32359
  interface $HTMLSettings extends sap.ui.core.$ControlSettings {
31899
32360
  /**
31900
32361
  * HTML content to be displayed, defined as a string.
@@ -31965,6 +32426,9 @@ declare namespace sap {
31965
32426
  afterRendering?: (oEvent: HTML$AfterRenderingEvent) => void;
31966
32427
  }
31967
32428
 
32429
+ /**
32430
+ * Describes the settings that can be provided to the Icon constructor.
32431
+ */
31968
32432
  interface $IconSettings extends sap.ui.core.$ControlSettings {
31969
32433
  /**
31970
32434
  * This property can be set by following options:
@@ -32112,9 +32576,15 @@ declare namespace sap {
32112
32576
  press?: (oEvent: sap.ui.base.Event) => void;
32113
32577
  }
32114
32578
 
32579
+ /**
32580
+ * Describes the settings that can be provided to the InvisibleMessage constructor.
32581
+ */
32115
32582
  interface $InvisibleMessageSettings
32116
32583
  extends sap.ui.base.$ManagedObjectSettings {}
32117
32584
 
32585
+ /**
32586
+ * Describes the settings that can be provided to the InvisibleText constructor.
32587
+ */
32118
32588
  interface $InvisibleTextSettings extends sap.ui.core.$ControlSettings {
32119
32589
  /**
32120
32590
  * The text of the InvisibleText.
@@ -32122,6 +32592,9 @@ declare namespace sap {
32122
32592
  text?: string | sap.ui.base.ManagedObject.PropertyBindingInfo;
32123
32593
  }
32124
32594
 
32595
+ /**
32596
+ * Describes the settings that can be provided to the Item constructor.
32597
+ */
32125
32598
  interface $ItemSettings extends sap.ui.core.$ElementSettings {
32126
32599
  /**
32127
32600
  * The text to be displayed for the item.
@@ -32150,8 +32623,14 @@ declare namespace sap {
32150
32623
  key?: string | sap.ui.base.ManagedObject.PropertyBindingInfo;
32151
32624
  }
32152
32625
 
32626
+ /**
32627
+ * Describes the settings that can be provided to the LayoutData constructor.
32628
+ */
32153
32629
  interface $LayoutDataSettings extends sap.ui.core.$ElementSettings {}
32154
32630
 
32631
+ /**
32632
+ * Describes the settings that can be provided to the ListItem constructor.
32633
+ */
32155
32634
  interface $ListItemSettings extends sap.ui.core.$ItemSettings {
32156
32635
  /**
32157
32636
  * The icon belonging to this list item instance. This can be a URI to an image or an icon font URI.
@@ -32164,6 +32643,12 @@ declare namespace sap {
32164
32643
  additionalText?: string | sap.ui.base.ManagedObject.PropertyBindingInfo;
32165
32644
  }
32166
32645
 
32646
+ /**
32647
+ * Describes the settings that can be provided to the LocalBusyIndicator constructor.
32648
+ *
32649
+ * @deprecated (since 1.14.2) - The LocalBusyIndicator Control is not needed anymore by the new implementation
32650
+ * of the LBI. Hence, it is not used anymore.
32651
+ */
32167
32652
  interface $LocalBusyIndicatorSettings
32168
32653
  extends sap.ui.core.$ControlSettings {
32169
32654
  /**
@@ -32185,6 +32670,11 @@ declare namespace sap {
32185
32670
  | `{${string}}`;
32186
32671
  }
32187
32672
 
32673
+ /**
32674
+ * Describes the settings that can be provided to the Message constructor.
32675
+ *
32676
+ * @deprecated (since 1.120) - Please use {@link sap.ui.core.message.Message} instead.
32677
+ */
32188
32678
  interface $MessageSettings extends sap.ui.core.$ElementSettings {
32189
32679
  /**
32190
32680
  * Message text
@@ -32225,12 +32715,20 @@ declare namespace sap {
32225
32715
  | `{${string}}`;
32226
32716
  }
32227
32717
 
32718
+ /**
32719
+ * Describes the settings that can be provided to the Popup constructor.
32720
+ */
32228
32721
  interface $PopupSettings extends sap.ui.base.$ManagedObjectSettings {
32229
32722
  opened?: (oEvent: sap.ui.base.Event) => void;
32230
32723
 
32231
32724
  closed?: (oEvent: sap.ui.base.Event) => void;
32232
32725
  }
32233
32726
 
32727
+ /**
32728
+ * Describes the settings that can be provided to the ScrollBar constructor.
32729
+ *
32730
+ * @deprecated (since 1.56)
32731
+ */
32234
32732
  interface $ScrollBarSettings extends sap.ui.core.$ControlSettings {
32235
32733
  /**
32236
32734
  * Orientation. Defines if the Scrollbar is vertical or horizontal.
@@ -32278,8 +32776,14 @@ declare namespace sap {
32278
32776
  scroll?: (oEvent: ScrollBar$ScrollEvent) => void;
32279
32777
  }
32280
32778
 
32779
+ /**
32780
+ * Describes the settings that can be provided to the SeparatorItem constructor.
32781
+ */
32281
32782
  interface $SeparatorItemSettings extends sap.ui.core.$ItemSettings {}
32282
32783
 
32784
+ /**
32785
+ * Describes the settings that can be provided to the Title constructor.
32786
+ */
32283
32787
  interface $TitleSettings extends sap.ui.core.$ElementSettings {
32284
32788
  /**
32285
32789
  * Defines the title text
@@ -32314,6 +32818,9 @@ declare namespace sap {
32314
32818
  | `{${string}}`;
32315
32819
  }
32316
32820
 
32821
+ /**
32822
+ * Describes the settings that can be provided to the TooltipBase constructor.
32823
+ */
32317
32824
  interface $TooltipBaseSettings extends sap.ui.core.$ControlSettings {
32318
32825
  /**
32319
32826
  * The text that is shown in the tooltip that extends the TooltipBase class, for example in RichTooltip.
@@ -32391,6 +32898,9 @@ declare namespace sap {
32391
32898
  closed?: (oEvent: sap.ui.base.Event) => void;
32392
32899
  }
32393
32900
 
32901
+ /**
32902
+ * Describes the settings that can be provided to the UIArea constructor.
32903
+ */
32394
32904
  interface $UIAreaSettings extends sap.ui.base.$ManagedObjectSettings {
32395
32905
  /**
32396
32906
  * Content that is displayed in the UIArea.
@@ -32412,8 +32922,14 @@ declare namespace sap {
32412
32922
  | `{${string}}`;
32413
32923
  }
32414
32924
 
32925
+ /**
32926
+ * Describes the settings that can be provided to the UIComponent constructor.
32927
+ */
32415
32928
  interface $UIComponentSettings extends sap.ui.core.$ComponentSettings {}
32416
32929
 
32930
+ /**
32931
+ * Describes the settings that can be provided to the VariantLayoutData constructor.
32932
+ */
32417
32933
  interface $VariantLayoutDataSettings
32418
32934
  extends sap.ui.core.$LayoutDataSettings {
32419
32935
  /**
@@ -32426,6 +32942,12 @@ declare namespace sap {
32426
32942
  | `{${string}}`;
32427
32943
  }
32428
32944
 
32945
+ /**
32946
+ * Describes the settings that can be provided to the XMLComposite constructor.
32947
+ *
32948
+ * @deprecated (since 1.88) - use {@link topic:c1512f6ce1454ff1913e3857bad56392 Standard Composite Controls}
32949
+ * @experimental (since 1.56.0)
32950
+ */
32429
32951
  interface $XMLCompositeSettings extends sap.ui.core.$ControlSettings {
32430
32952
  /**
32431
32953
  * The width
@@ -32452,8 +32974,14 @@ declare namespace sap {
32452
32974
  | `{${string}}`;
32453
32975
  }
32454
32976
 
32977
+ /**
32978
+ * Parameters of the CommandExecution#execute event.
32979
+ */
32455
32980
  interface CommandExecution$ExecuteEventParameters {}
32456
32981
 
32982
+ /**
32983
+ * Parameters of the ComponentContainer#componentCreated event.
32984
+ */
32457
32985
  interface ComponentContainer$ComponentCreatedEventParameters {
32458
32986
  /**
32459
32987
  * Reference to the created component instance
@@ -32461,6 +32989,9 @@ declare namespace sap {
32461
32989
  component?: sap.ui.core.UIComponent;
32462
32990
  }
32463
32991
 
32992
+ /**
32993
+ * Parameters of the ComponentContainer#componentFailed event.
32994
+ */
32464
32995
  interface ComponentContainer$ComponentFailedEventParameters {
32465
32996
  /**
32466
32997
  * The reason object as returned by the component promise
@@ -32468,6 +32999,9 @@ declare namespace sap {
32468
32999
  reason?: object;
32469
33000
  }
32470
33001
 
33002
+ /**
33003
+ * Parameters of the Control#validateFieldGroup event.
33004
+ */
32471
33005
  interface Control$ValidateFieldGroupEventParameters {
32472
33006
  /**
32473
33007
  * field group IDs of the logical field groups to validate
@@ -32475,6 +33009,9 @@ declare namespace sap {
32475
33009
  fieldGroupIds?: string[];
32476
33010
  }
32477
33011
 
33012
+ /**
33013
+ * Parameters of the HTML#afterRendering event.
33014
+ */
32478
33015
  interface HTML$AfterRenderingEventParameters {
32479
33016
  /**
32480
33017
  * Whether the current DOM of the control has been preserved (true) or not (e.g. rendered from content property
@@ -32483,8 +33020,14 @@ declare namespace sap {
32483
33020
  isPreservedDOM?: boolean;
32484
33021
  }
32485
33022
 
33023
+ /**
33024
+ * Parameters of the Icon#press event.
33025
+ */
32486
33026
  interface Icon$PressEventParameters {}
32487
33027
 
33028
+ /**
33029
+ * Parameters of the Popup#blockLayerStateChange event.
33030
+ */
32488
33031
  interface Popup$BlockLayerStateChangeEventParameters {
32489
33032
  /**
32490
33033
  * Indicates whether a blocking layer is currently visible `visible: true` or not `visible: false`
@@ -32499,10 +33042,19 @@ declare namespace sap {
32499
33042
  zIndex?: number;
32500
33043
  }
32501
33044
 
33045
+ /**
33046
+ * Parameters of the Popup#closed event.
33047
+ */
32502
33048
  interface Popup$ClosedEventParameters {}
32503
33049
 
33050
+ /**
33051
+ * Parameters of the Popup#opened event.
33052
+ */
32504
33053
  interface Popup$OpenedEventParameters {}
32505
33054
 
33055
+ /**
33056
+ * Parameters of the ScrollBar#scroll event.
33057
+ */
32506
33058
  interface ScrollBar$ScrollEventParameters {
32507
33059
  /**
32508
33060
  * Actions are: Click on track, button, drag of thumb, or mouse wheel click.
@@ -32525,6 +33077,9 @@ declare namespace sap {
32525
33077
  oldScrollPos?: int;
32526
33078
  }
32527
33079
 
33080
+ /**
33081
+ * Parameters of the TooltipBase#closed event.
33082
+ */
32528
33083
  interface TooltipBase$ClosedEventParameters {}
32529
33084
 
32530
33085
  /**
@@ -32701,7 +33256,14 @@ declare namespace sap {
32701
33256
  *
32702
33257
  * Values of boolean parameters are case insensitive where "true" and "x" are interpreted as true.
32703
33258
  *
32704
- * @deprecated (since 1.120)
33259
+ * @deprecated (since 1.120) - There's no single replacement for this class. Instead, several facades have
33260
+ * been created for different topics, e.g. {@link module:sap/base/i18n/Localization Localization} for settings
33261
+ * related to localization, {@link module:sap/base/i18n/Formatting Formatting} for settings related to data
33262
+ * formatting, {@link module:sap/ui/core/Theming Theming} for theming related settings, {@link module:sap/ui/core/ControlBehavior ControlBehavior }
33263
+ * for settings that are typically required when implementing the behavior of a control, {@link module:sap/ui/security/Security Security }
33264
+ * for settings around security.
33265
+ *
33266
+ * Please check the individual methods of this class for their replacements, if any.
32705
33267
  */
32706
33268
  interface Configuration {
32707
33269
  /**
@@ -32717,7 +33279,12 @@ declare namespace sap {
32717
33279
  * API can be provided in a nested object with name `formatSettings`.
32718
33280
  *
32719
33281
  * @since 1.38.6
32720
- * @deprecated (since 1.120)
33282
+ * @deprecated (since 1.120) - without a replacement. As the different settings have been spread across
33283
+ * multiple new APIs (see {@link sap.ui.core.Configuration the deprecation hint for this class}), a common
33284
+ * API for changing multiple settings no longer made sense.
33285
+ *
33286
+ * Please check the individual methods of this class for their replacements and call those replacement methods
33287
+ * one by one.
32721
33288
  *
32722
33289
  * @returns Returns `this` to allow method chaining
32723
33290
  */
@@ -32802,7 +33369,7 @@ declare namespace sap {
32802
33369
  /**
32803
33370
  * Base URLs to AppCacheBuster ETag-Index files.
32804
33371
  *
32805
- * @deprecated (since 1.120)
33372
+ * @deprecated (since 1.120) - without a replacement. Was only used within the implementation of the `AppCacheBuster`.
32806
33373
  *
32807
33374
  * @returns array of base URLs
32808
33375
  */
@@ -32810,7 +33377,7 @@ declare namespace sap {
32810
33377
  /**
32811
33378
  * The loading mode (sync|async|batch) of the AppCacheBuster (sync is default)
32812
33379
  *
32813
- * @deprecated (since 1.120)
33380
+ * @deprecated (since 1.120) - without a replacement. Was only used within the implementation of the `AppCacheBuster`.
32814
33381
  *
32815
33382
  * @returns "sync" | "async" | "batch"
32816
33383
  */
@@ -32828,7 +33395,8 @@ declare namespace sap {
32828
33395
  * Returns whether the framework automatically adds the ARIA role 'application' to the HTML body or not.
32829
33396
  *
32830
33397
  * @since 1.27.0
32831
- * @deprecated (since 1.120)
33398
+ * @deprecated (since 1.120) - without a replacement. Was only used in the implementation of the framework
33399
+ * itself.
32832
33400
  *
32833
33401
  * @returns Wether the ARIA role 'application' should be added to the HTML body or not
32834
33402
  */
@@ -32860,7 +33428,10 @@ declare namespace sap {
32860
33428
  /**
32861
33429
  * Returns the used compatibility version for the given feature.
32862
33430
  *
32863
- * @deprecated (since 1.119.0)
33431
+ * @deprecated (since 1.119) - without a replacement. All features that have been controlled by a compatibility
33432
+ * version in UI5 1.x will abandon their legacy behavior, starting with the next major version. In other
33433
+ * words, they will behave as if compatibility version "edge" was configured. Due to this, no more access
33434
+ * to the compatibility version will be required starting with the next major version.
32864
33435
  *
32865
33436
  * @returns the used compatibility version
32866
33437
  */
@@ -32873,7 +33444,8 @@ declare namespace sap {
32873
33444
  /**
32874
33445
  * Returns whether the page runs in full debug mode.
32875
33446
  *
32876
- * @deprecated (since 1.120)
33447
+ * @deprecated (since 1.120) - without a replacement. All debug mode functionality is implemented within
33448
+ * the framework and should be transparent for application code. There's no need for a public accessor method.
32877
33449
  *
32878
33450
  * @returns Whether the page runs in full debug mode
32879
33451
  */
@@ -32886,7 +33458,8 @@ declare namespace sap {
32886
33458
  * The contract of the module is not defined by the configuration API.
32887
33459
  *
32888
33460
  * @since 1.102
32889
- * @deprecated (since 1.120)
33461
+ * @deprecated (since 1.120) - without a replacement. The configuration is only relevant for the `sap.ui.export`
33462
+ * library.
32890
33463
  *
32891
33464
  * @returns Module name (ID) of a file share support module
32892
33465
  */
@@ -32894,7 +33467,8 @@ declare namespace sap {
32894
33467
  /**
32895
33468
  * Returns whether the Fiori2Adaptation is on.
32896
33469
  *
32897
- * @deprecated (since 1.120)
33470
+ * @deprecated (since 1.120) - without a replacement. All the Fiori 2.0 adaptation logic is handled by the
33471
+ * framework, there should be no need for apps to know about it.
32898
33472
  *
32899
33473
  * @returns false - no adaptation, true - full adaptation, comma-separated list - partial adaptation Possible
32900
33474
  * values: style, collapse, title, back, hierarchy
@@ -32905,7 +33479,8 @@ declare namespace sap {
32905
33479
  * are not called.
32906
33480
  *
32907
33481
  * @since 1.60.0
32908
- * @deprecated (since 1.120)
33482
+ * @deprecated (since 1.120) - without a replacement. Was only used by the Flexibility feature which now
33483
+ * resolves this on its own.
32909
33484
  *
32910
33485
  * @returns Flexibility services configuration
32911
33486
  */
@@ -32938,10 +33513,14 @@ declare namespace sap {
32938
33513
  */
32939
33514
  getFrameOptions(): string;
32940
33515
  /**
32941
- * Returns whether the UI5 control inspector is displayed. Has only an effect when the sap-ui-debug module
32942
- * has been loaded
33516
+ * Returns whether the UI5 control inspector is displayed.
32943
33517
  *
32944
- * @deprecated (since 1.120)
33518
+ * Has only an effect when the sap-ui-debug module has been loaded.
33519
+ *
33520
+ * @deprecated (since 1.120) - without a replacement. The inspect option is related to the very old sap-ui-debug
33521
+ * module. As there are now much better development tools (e.g. the UI5 Inpsector browser extension), this
33522
+ * option has been deprecated and the sap-ui-debug feature might be removed in future major versions of
33523
+ * UI5.
32945
33524
  *
32946
33525
  * @returns whether the UI5 control inspector is displayed
32947
33526
  */
@@ -33026,7 +33605,8 @@ declare namespace sap {
33026
33605
  /**
33027
33606
  * Returns whether there should be an exception on any duplicate element IDs.
33028
33607
  *
33029
- * @deprecated (since 1.120)
33608
+ * @deprecated (since 1.120) - without a replacement. Future major versions of UI5 will always report duplicate
33609
+ * IDs as an error as the framework heavily relies on their uniqueness.
33030
33610
  *
33031
33611
  * @returns whether there should be an exception on any duplicate element IDs
33032
33612
  */
@@ -33034,7 +33614,9 @@ declare namespace sap {
33034
33614
  /**
33035
33615
  * Returns whether the text origin information is collected.
33036
33616
  *
33037
- * @deprecated (since 1.120)
33617
+ * @deprecated (since 1.120) - The origin info was intended as a mean to track down translation issues to
33618
+ * the origin of a translated text. Meanwhile, with the pseudo logon language 3Q, a similar, more lightweight
33619
+ * feature exists for use with OpenUI5 or SAPUI5 libraries.
33038
33620
  *
33039
33621
  * @returns whether the text info is collected
33040
33622
  */
@@ -33087,11 +33669,11 @@ declare namespace sap {
33087
33669
  /**
33088
33670
  * Flag if statistics are requested.
33089
33671
  *
33090
- * Flag set by TechnicalInfo Popup will also be checked. So its active if set by URL parameter or manually
33672
+ * Flag set by TechnicalInfo Popup will also be checked. So it's active if set by URL parameter or manually
33091
33673
  * via TechnicalInfo.
33092
33674
  *
33093
33675
  * @since 1.106.0
33094
- * @deprecated (since 1.120)
33676
+ * @deprecated (since 1.120) - without a replacment. The configuration is only relevant within the framework.
33095
33677
  *
33096
33678
  * @returns Whether statistics are enabled
33097
33679
  */
@@ -33388,7 +33970,8 @@ declare namespace sap {
33388
33970
  *
33389
33971
  * `oClassInfo` might contain the same kind of information as described in {@link sap.ui.base.ManagedObject.extend}.
33390
33972
  *
33391
- * @deprecated (since 1.119.0)
33973
+ * @deprecated (since 1.119) - without replacement. In future major versions, the Core no longer has a class
33974
+ * nature and therefore can't be extended.
33392
33975
  *
33393
33976
  * @returns The created class / constructor function
33394
33977
  */
@@ -33411,7 +33994,8 @@ declare namespace sap {
33411
33994
  /**
33412
33995
  * Returns the metadata for class `sap.ui.core.Core`.
33413
33996
  *
33414
- * @deprecated (since 1.119.0)
33997
+ * @deprecated (since 1.119) - without replacement. In future major versions, the Core no longer has a class
33998
+ * nature and no longer inherits from sap.ui.base.Object and therefore no longer has metadata.
33415
33999
  *
33416
34000
  * @returns Metadata object describing this class
33417
34001
  */
@@ -33422,7 +34006,11 @@ declare namespace sap {
33422
34006
  * In general, applications and Controls should avoid calling this method and instead let the framework
33423
34007
  * manage any necessary rendering.
33424
34008
  *
33425
- * @deprecated (since 1.118)
34009
+ * @deprecated (since 1.118) - without replacement. In the next major version, synchronously rendering UI
34010
+ * updates is no longer supported as it can lead to unnecessary intermediate DOM updates or layout shifting
34011
+ * etc. Controls should rather use invalidation and apps should not trigger rendering at all but rather
34012
+ * rely on the framework's automatic update mechanisms. Test code can use the test module `sap/ui/qunit/utils/nextUIUpdate`
34013
+ * as a convenient way to wait for the next asynchronous rendering.
33426
34014
  */
33427
34015
  applyChanges(): void;
33428
34016
  /**
@@ -33461,7 +34049,8 @@ declare namespace sap {
33461
34049
  * When called, the context of the listener (its `this`) will be bound to `oListener` if specified, otherwise
33462
34050
  * it will be bound to a dummy event provider object.
33463
34051
  *
33464
- * @deprecated (since 1.119)
34052
+ * @deprecated (since 1.119) - without a replacement. Applications should not have the need to intercept
34053
+ * all control events.
33465
34054
  */
33466
34055
  attachControlEvent(
33467
34056
  /**
@@ -33870,7 +34459,9 @@ declare namespace sap {
33870
34459
  * The caller must take care to destroy the render manager when it is no longer needed. Calling this method
33871
34460
  * before the Core has been {@link #isInitialized initialized}, is not recommended.
33872
34461
  *
33873
- * @deprecated (since 1.119)
34462
+ * @deprecated (since 1.119) - without replacement. In the next major version, synchronously rendering UI
34463
+ * updates is no longer supported as it can lead to unnecessary intermediate DOM updates or layout shifting
34464
+ * etc. Controls should rather use invalidation.
33874
34465
  *
33875
34466
  * @returns New instance of the RenderManager
33876
34467
  */
@@ -33893,7 +34484,8 @@ declare namespace sap {
33893
34484
  *
33894
34485
  * The passed function and listener object must match the ones used for event registration.
33895
34486
  *
33896
- * @deprecated (since 1.119)
34487
+ * @deprecated (since 1.119) - without a replacement. Applications should not have the need to intercept
34488
+ * all control events.
33897
34489
  */
33898
34490
  detachControlEvent(
33899
34491
  /**
@@ -34225,13 +34817,13 @@ declare namespace sap {
34225
34817
  sId: sap.ui.core.ID | null | undefined
34226
34818
  ): sap.ui.core.Element | undefined;
34227
34819
  /**
34228
- * Returns the Id of the control/element currently in focus.
34820
+ * Returns the ID of the control/element currently in focus.
34229
34821
  *
34230
34822
  * @deprecated (since 1.119) - Please use {@link sap.ui.core.Element.getActiveElement Element.getActiveElement }
34231
34823
  * to get the currently focused element. You can then retrieve the ID of that element with {@link sap.ui.core.Element#getId Element#getId}.
34232
34824
  * Please be aware, {@link sap.ui.core.Element.getActiveElement Element.getActiveElement} can return 'undefined'.
34233
34825
  *
34234
- * @returns the Id of the control/element currently in focus.
34826
+ * @returns the ID of the control/element currently in focus.
34235
34827
  */
34236
34828
  getCurrentFocusedControlId(): string;
34237
34829
  /**
@@ -34370,7 +34962,8 @@ declare namespace sap {
34370
34962
  * **Note:** The returned info objects must not be modified. They might be a living copy of the internal
34371
34963
  * data (for efficiency reasons) and the framework is not prepared to handle modifications to these objects.
34372
34964
  *
34373
- * @deprecated (since 1.119)
34965
+ * @deprecated (since 1.119) - without a 1:1 replacement. Callers that used `getLoadedLibraries` to check
34966
+ * whether a certain library is loaded, should rather use {@link sap.ui.core.Lib#isLoaded Library#isLoaded}.
34374
34967
  *
34375
34968
  * @returns Map of library info objects keyed by the library names.
34376
34969
  */
@@ -34457,7 +35050,8 @@ declare namespace sap {
34457
35050
  * Returns `true` if there are any pending rendering tasks or when such rendering tasks are currently being
34458
35051
  * executed.
34459
35052
  *
34460
- * @deprecated (since 1.118)
35053
+ * @deprecated (since 1.118) - without replacement. The known use cases in testing environments are covered
35054
+ * by other APIs or features, e.g. OPA's waitFor mechanism.
34461
35055
  *
34462
35056
  * @returns true if there are pending (or executing) rendering tasks.
34463
35057
  */
@@ -34475,7 +35069,8 @@ declare namespace sap {
34475
35069
  * Includes a library theme into the current page (if a variant is specified it will include the variant
34476
35070
  * library theme)
34477
35071
  *
34478
- * @deprecated (since 1.119)
35072
+ * @deprecated (since 1.119) - without replacement. There's no known use case that would require a public
35073
+ * API.
34479
35074
  */
34480
35075
  includeLibraryTheme(
34481
35076
  /**
@@ -34570,9 +35165,10 @@ declare namespace sap {
34570
35165
  */
34571
35166
  isInitialized(): boolean;
34572
35167
  /**
34573
- * Returns the locked state of the `sap.ui.core.Core`
35168
+ * Returns the locked state of the `sap.ui.core.Core`.
34574
35169
  *
34575
- * @deprecated (since 1.118)
35170
+ * @deprecated (since 1.118) - without a replacement. The ability to prevent the re-rendering of all `UIArea`s
35171
+ * wasn't really used in the past and did not provide a meaningful feature. It therefore has been abandoned.
34576
35172
  *
34577
35173
  * @returns locked state
34578
35174
  */
@@ -34711,7 +35307,8 @@ declare namespace sap {
34711
35307
  * Lock should be called before and after the DOM is modified for rendering, roundtrips... Exceptions might
34712
35308
  * be the case for asynchronous UI behavior
34713
35309
  *
34714
- * @deprecated (since 1.118)
35310
+ * @deprecated (since 1.118) - without a replacement. The ability to prevent the re-rendering of all `UIArea`s
35311
+ * wasn't really used in the past and did not provide a meaningful feature. It therefore has been abandoned.
34715
35312
  */
34716
35313
  lock(): void;
34717
35314
  /**
@@ -34855,7 +35452,8 @@ declare namespace sap {
34855
35452
  * in order to configure the theme location early enough.
34856
35453
  *
34857
35454
  * @since 1.10
34858
- * @deprecated (since 1.119)
35455
+ * @deprecated (since 1.119) - without replacement. The need to define the location for a theme should be
35456
+ * fully covered with the capabiltites of the {@link sap/base/config base configuration}.
34859
35457
  *
34860
35458
  * @returns the Core, to allow method chaining
34861
35459
  */
@@ -34925,7 +35523,8 @@ declare namespace sap {
34925
35523
  * in order to configure the theme location early enough.
34926
35524
  *
34927
35525
  * @since 1.10
34928
- * @deprecated (since 1.119)
35526
+ * @deprecated (since 1.119) - without replacement. The need to define the location for a theme should be
35527
+ * fully covered with the capabiltites of the {@link sap/base/config base configuration}.
34929
35528
  *
34930
35529
  * @returns the Core, to allow method chaining
34931
35530
  */
@@ -34948,7 +35547,8 @@ declare namespace sap {
34948
35547
  *
34949
35548
  * Browser events are dispatched to the controls again after this method is called.
34950
35549
  *
34951
- * @deprecated (since 1.118)
35550
+ * @deprecated (since 1.118) - without a replacement. The ability to prevent the re-rendering of all `UIArea`s
35551
+ * wasn't really used in the past and did not provide a meaningful feature. It therefore has been abandoned.
34952
35552
  */
34953
35553
  unlock(): void;
34954
35554
  /**
@@ -47245,7 +47845,9 @@ declare namespace sap {
47245
47845
  *
47246
47846
  * The node must have an ID that will be used as ID for this instance of `UIArea`.
47247
47847
  *
47248
- * @deprecated (since 1.107.0)
47848
+ * @deprecated (since 1.107) - without a replacement. Applications should not create or modify `UIArea`s
47849
+ * programmatically. THey should only assign controls to them, by using {@link sap.ui.core.Control.prototype.placeAt Control.prototype.placeAt }
47850
+ * or use the API of a `UIArea` as reachable via {@link sap.ui.core.Control.prototype.getUIArea Control.prototype.getUIArea}.
47249
47851
  */
47250
47852
  setRootNode(
47251
47853
  /**
@@ -49283,53 +49885,86 @@ declare namespace sap {
49283
49885
  */
49284
49886
  type URI = string;
49285
49887
 
49888
+ /**
49889
+ * Event object of the CommandExecution#execute event.
49890
+ */
49286
49891
  type CommandExecution$ExecuteEvent = sap.ui.base.Event<
49287
49892
  CommandExecution$ExecuteEventParameters,
49288
49893
  CommandExecution
49289
49894
  >;
49290
49895
 
49896
+ /**
49897
+ * Event object of the ComponentContainer#componentCreated event.
49898
+ */
49291
49899
  type ComponentContainer$ComponentCreatedEvent = sap.ui.base.Event<
49292
49900
  ComponentContainer$ComponentCreatedEventParameters,
49293
49901
  ComponentContainer
49294
49902
  >;
49295
49903
 
49904
+ /**
49905
+ * Event object of the ComponentContainer#componentFailed event.
49906
+ */
49296
49907
  type ComponentContainer$ComponentFailedEvent = sap.ui.base.Event<
49297
49908
  ComponentContainer$ComponentFailedEventParameters,
49298
49909
  ComponentContainer
49299
49910
  >;
49300
49911
 
49912
+ /**
49913
+ * Event object of the Control#validateFieldGroup event.
49914
+ */
49301
49915
  type Control$ValidateFieldGroupEvent = sap.ui.base.Event<
49302
49916
  Control$ValidateFieldGroupEventParameters,
49303
49917
  Control
49304
49918
  >;
49305
49919
 
49920
+ /**
49921
+ * Event object of the HTML#afterRendering event.
49922
+ */
49306
49923
  type HTML$AfterRenderingEvent = sap.ui.base.Event<
49307
49924
  HTML$AfterRenderingEventParameters,
49308
49925
  HTML
49309
49926
  >;
49310
49927
 
49928
+ /**
49929
+ * Event object of the Icon#press event.
49930
+ */
49311
49931
  type Icon$PressEvent = sap.ui.base.Event<Icon$PressEventParameters, Icon>;
49312
49932
 
49933
+ /**
49934
+ * Event object of the Popup#blockLayerStateChange event.
49935
+ */
49313
49936
  type Popup$BlockLayerStateChangeEvent = sap.ui.base.Event<
49314
49937
  Popup$BlockLayerStateChangeEventParameters,
49315
49938
  Popup
49316
49939
  >;
49317
49940
 
49941
+ /**
49942
+ * Event object of the Popup#closed event.
49943
+ */
49318
49944
  type Popup$ClosedEvent = sap.ui.base.Event<
49319
49945
  Popup$ClosedEventParameters,
49320
49946
  Popup
49321
49947
  >;
49322
49948
 
49949
+ /**
49950
+ * Event object of the Popup#opened event.
49951
+ */
49323
49952
  type Popup$OpenedEvent = sap.ui.base.Event<
49324
49953
  Popup$OpenedEventParameters,
49325
49954
  Popup
49326
49955
  >;
49327
49956
 
49957
+ /**
49958
+ * Event object of the ScrollBar#scroll event.
49959
+ */
49328
49960
  type ScrollBar$ScrollEvent = sap.ui.base.Event<
49329
49961
  ScrollBar$ScrollEventParameters,
49330
49962
  ScrollBar
49331
49963
  >;
49332
49964
 
49965
+ /**
49966
+ * Event object of the TooltipBase#closed event.
49967
+ */
49333
49968
  type TooltipBase$ClosedEvent = sap.ui.base.Event<
49334
49969
  TooltipBase$ClosedEventParameters,
49335
49970
  TooltipBase
@@ -55778,9 +56413,14 @@ declare namespace sap {
55778
56413
  single?: boolean;
55779
56414
  };
55780
56415
  }
55781
-
56416
+ /**
56417
+ * Parameters of the ODataListBinding#createActivate event.
56418
+ */
55782
56419
  interface ODataListBinding$CreateActivateEventParameters {}
55783
56420
 
56421
+ /**
56422
+ * Parameters of the ODataModel#annotationsFailed event.
56423
+ */
55784
56424
  interface ODataModel$AnnotationsFailedEventParameters {
55785
56425
  /**
55786
56426
  * An array of Errors
@@ -55788,6 +56428,9 @@ declare namespace sap {
55788
56428
  result?: Error[];
55789
56429
  }
55790
56430
 
56431
+ /**
56432
+ * Parameters of the ODataModel#annotationsLoaded event.
56433
+ */
55791
56434
  interface ODataModel$AnnotationsLoadedEventParameters {
55792
56435
  /**
55793
56436
  * An array consisting of one or several annotation sources and/or errors containing a source property and
@@ -55796,6 +56439,9 @@ declare namespace sap {
55796
56439
  result?: sap.ui.model.odata.v2.ODataAnnotations.Source[];
55797
56440
  }
55798
56441
 
56442
+ /**
56443
+ * Parameters of the ODataModel#batchRequestCompleted event.
56444
+ */
55799
56445
  interface ODataModel$BatchRequestCompletedEventParameters {
55800
56446
  /**
55801
56447
  * The request ID
@@ -55840,6 +56486,9 @@ declare namespace sap {
55840
56486
  response?: object;
55841
56487
  }
55842
56488
 
56489
+ /**
56490
+ * Parameters of the ODataModel#batchRequestFailed event.
56491
+ */
55843
56492
  interface ODataModel$BatchRequestFailedEventParameters {
55844
56493
  /**
55845
56494
  * The request ID
@@ -55884,6 +56533,9 @@ declare namespace sap {
55884
56533
  requests?: any[];
55885
56534
  }
55886
56535
 
56536
+ /**
56537
+ * Parameters of the ODataModel#batchRequestSent event.
56538
+ */
55887
56539
  interface ODataModel$BatchRequestSentEventParameters {
55888
56540
  /**
55889
56541
  * The URL which is sent to the backend
@@ -55907,6 +56559,9 @@ declare namespace sap {
55907
56559
  requests?: any[];
55908
56560
  }
55909
56561
 
56562
+ /**
56563
+ * Parameters of the ODataModel#metadataFailed event.
56564
+ */
55910
56565
  interface ODataModel$MetadataFailedEventParameters {
55911
56566
  /**
55912
56567
  * The parsed metadata
@@ -55939,6 +56594,9 @@ declare namespace sap {
55939
56594
  response?: object;
55940
56595
  }
55941
56596
 
56597
+ /**
56598
+ * Parameters of the ODataModel#metadataLoaded event.
56599
+ */
55942
56600
  interface ODataModel$MetadataLoadedEventParameters {
55943
56601
  /**
55944
56602
  * The parsed metadata
@@ -55946,6 +56604,9 @@ declare namespace sap {
55946
56604
  metadata?: string;
55947
56605
  }
55948
56606
 
56607
+ /**
56608
+ * Parameters of the ODataModel#requestCompleted event.
56609
+ */
55949
56610
  interface ODataModel$RequestCompletedEventParameters
55950
56611
  extends sap.ui.model.Model$RequestCompletedEventParameters {
55951
56612
  /**
@@ -55970,6 +56631,9 @@ declare namespace sap {
55970
56631
  response?: object;
55971
56632
  }
55972
56633
 
56634
+ /**
56635
+ * Parameters of the ODataModel#requestFailed event.
56636
+ */
55973
56637
  interface ODataModel$RequestFailedEventParameters
55974
56638
  extends sap.ui.model.Model$RequestFailedEventParameters {
55975
56639
  /**
@@ -56009,6 +56673,9 @@ declare namespace sap {
56009
56673
  response?: object;
56010
56674
  }
56011
56675
 
56676
+ /**
56677
+ * Parameters of the ODataModel#requestSent event.
56678
+ */
56012
56679
  interface ODataModel$RequestSentEventParameters
56013
56680
  extends sap.ui.model.Model$RequestSentEventParameters {
56014
56681
  /**
@@ -60146,57 +60813,89 @@ declare namespace sap {
60146
60813
  */
60147
60814
  None = "None",
60148
60815
  }
60149
-
60816
+ /**
60817
+ * Event object of the ODataListBinding#createActivate event.
60818
+ */
60150
60819
  type ODataListBinding$CreateActivateEvent = sap.ui.base.Event<
60151
60820
  ODataListBinding$CreateActivateEventParameters,
60152
60821
  ODataListBinding
60153
60822
  >;
60154
60823
 
60824
+ /**
60825
+ * Event object of the ODataModel#annotationsFailed event.
60826
+ */
60155
60827
  type ODataModel$AnnotationsFailedEvent = sap.ui.base.Event<
60156
60828
  ODataModel$AnnotationsFailedEventParameters,
60157
60829
  ODataModel
60158
60830
  >;
60159
60831
 
60832
+ /**
60833
+ * Event object of the ODataModel#annotationsLoaded event.
60834
+ */
60160
60835
  type ODataModel$AnnotationsLoadedEvent = sap.ui.base.Event<
60161
60836
  ODataModel$AnnotationsLoadedEventParameters,
60162
60837
  ODataModel
60163
60838
  >;
60164
60839
 
60840
+ /**
60841
+ * Event object of the ODataModel#batchRequestCompleted event.
60842
+ */
60165
60843
  type ODataModel$BatchRequestCompletedEvent = sap.ui.base.Event<
60166
60844
  ODataModel$BatchRequestCompletedEventParameters,
60167
60845
  ODataModel
60168
60846
  >;
60169
60847
 
60848
+ /**
60849
+ * Event object of the ODataModel#batchRequestFailed event.
60850
+ */
60170
60851
  type ODataModel$BatchRequestFailedEvent = sap.ui.base.Event<
60171
60852
  ODataModel$BatchRequestFailedEventParameters,
60172
60853
  ODataModel
60173
60854
  >;
60174
60855
 
60856
+ /**
60857
+ * Event object of the ODataModel#batchRequestSent event.
60858
+ */
60175
60859
  type ODataModel$BatchRequestSentEvent = sap.ui.base.Event<
60176
60860
  ODataModel$BatchRequestSentEventParameters,
60177
60861
  ODataModel
60178
60862
  >;
60179
60863
 
60864
+ /**
60865
+ * Event object of the ODataModel#metadataFailed event.
60866
+ */
60180
60867
  type ODataModel$MetadataFailedEvent = sap.ui.base.Event<
60181
60868
  ODataModel$MetadataFailedEventParameters,
60182
60869
  ODataModel
60183
60870
  >;
60184
60871
 
60872
+ /**
60873
+ * Event object of the ODataModel#metadataLoaded event.
60874
+ */
60185
60875
  type ODataModel$MetadataLoadedEvent = sap.ui.base.Event<
60186
60876
  ODataModel$MetadataLoadedEventParameters,
60187
60877
  ODataModel
60188
60878
  >;
60189
60879
 
60880
+ /**
60881
+ * Event object of the ODataModel#requestCompleted event.
60882
+ */
60190
60883
  type ODataModel$RequestCompletedEvent = sap.ui.base.Event<
60191
60884
  ODataModel$RequestCompletedEventParameters,
60192
60885
  ODataModel
60193
60886
  >;
60194
60887
 
60888
+ /**
60889
+ * Event object of the ODataModel#requestFailed event.
60890
+ */
60195
60891
  type ODataModel$RequestFailedEvent = sap.ui.base.Event<
60196
60892
  ODataModel$RequestFailedEventParameters,
60197
60893
  ODataModel
60198
60894
  >;
60199
60895
 
60896
+ /**
60897
+ * Event object of the ODataModel#requestSent event.
60898
+ */
60200
60899
  type ODataModel$RequestSentEvent = sap.ui.base.Event<
60201
60900
  ODataModel$RequestSentEventParameters,
60202
60901
  ODataModel
@@ -60246,10 +60945,15 @@ declare namespace sap {
60246
60945
  $PropertyPath: string;
60247
60946
  };
60248
60947
  }
60249
-
60948
+ /**
60949
+ * Parameters of the ODataContextBinding#change event.
60950
+ */
60250
60951
  interface ODataContextBinding$ChangeEventParameters
60251
60952
  extends sap.ui.model.Binding$ChangeEventParameters {}
60252
60953
 
60954
+ /**
60955
+ * Parameters of the ODataContextBinding#dataReceived event.
60956
+ */
60253
60957
  interface ODataContextBinding$DataReceivedEventParameters
60254
60958
  extends sap.ui.model.Binding$DataReceivedEventParameters {
60255
60959
  /**
@@ -60259,9 +60963,15 @@ declare namespace sap {
60259
60963
  error?: Error;
60260
60964
  }
60261
60965
 
60966
+ /**
60967
+ * Parameters of the ODataContextBinding#dataRequested event.
60968
+ */
60262
60969
  interface ODataContextBinding$DataRequestedEventParameters
60263
60970
  extends sap.ui.model.Binding$DataRequestedEventParameters {}
60264
60971
 
60972
+ /**
60973
+ * Parameters of the ODataContextBinding#patchCompleted event.
60974
+ */
60265
60975
  interface ODataContextBinding$PatchCompletedEventParameters {
60266
60976
  /**
60267
60977
  * Whether all PATCHes are successfully processed
@@ -60269,8 +60979,14 @@ declare namespace sap {
60269
60979
  success?: boolean;
60270
60980
  }
60271
60981
 
60982
+ /**
60983
+ * Parameters of the ODataContextBinding#patchSent event.
60984
+ */
60272
60985
  interface ODataContextBinding$PatchSentEventParameters {}
60273
60986
 
60987
+ /**
60988
+ * Parameters of the ODataListBinding#change event.
60989
+ */
60274
60990
  interface ODataListBinding$ChangeEventParameters
60275
60991
  extends sap.ui.model.Binding$ChangeEventParameters {
60276
60992
  /**
@@ -60281,6 +60997,9 @@ declare namespace sap {
60281
60997
  detailedReason?: string;
60282
60998
  }
60283
60999
 
61000
+ /**
61001
+ * Parameters of the ODataListBinding#createActivate event.
61002
+ */
60284
61003
  interface ODataListBinding$CreateActivateEventParameters {
60285
61004
  /**
60286
61005
  * The affected context
@@ -60288,6 +61007,9 @@ declare namespace sap {
60288
61007
  context?: sap.ui.model.odata.v4.Context;
60289
61008
  }
60290
61009
 
61010
+ /**
61011
+ * Parameters of the ODataListBinding#createCompleted event.
61012
+ */
60291
61013
  interface ODataListBinding$CreateCompletedEventParameters {
60292
61014
  /**
60293
61015
  * The context for the created entity
@@ -60300,6 +61022,9 @@ declare namespace sap {
60300
61022
  success?: boolean;
60301
61023
  }
60302
61024
 
61025
+ /**
61026
+ * Parameters of the ODataListBinding#createSent event.
61027
+ */
60303
61028
  interface ODataListBinding$CreateSentEventParameters {
60304
61029
  /**
60305
61030
  * The context for the created entity
@@ -60307,6 +61032,9 @@ declare namespace sap {
60307
61032
  context?: sap.ui.model.odata.v4.Context;
60308
61033
  }
60309
61034
 
61035
+ /**
61036
+ * Parameters of the ODataListBinding#dataReceived event.
61037
+ */
60310
61038
  interface ODataListBinding$DataReceivedEventParameters
60311
61039
  extends sap.ui.model.Binding$DataReceivedEventParameters {
60312
61040
  /**
@@ -60316,9 +61044,15 @@ declare namespace sap {
60316
61044
  error?: Error;
60317
61045
  }
60318
61046
 
61047
+ /**
61048
+ * Parameters of the ODataListBinding#dataRequested event.
61049
+ */
60319
61050
  interface ODataListBinding$DataRequestedEventParameters
60320
61051
  extends sap.ui.model.Binding$DataRequestedEventParameters {}
60321
61052
 
61053
+ /**
61054
+ * Parameters of the ODataListBinding#patchCompleted event.
61055
+ */
60322
61056
  interface ODataListBinding$PatchCompletedEventParameters {
60323
61057
  /**
60324
61058
  * Whether all PATCHes are successfully processed
@@ -60326,8 +61060,14 @@ declare namespace sap {
60326
61060
  success?: boolean;
60327
61061
  }
60328
61062
 
61063
+ /**
61064
+ * Parameters of the ODataListBinding#patchSent event.
61065
+ */
60329
61066
  interface ODataListBinding$PatchSentEventParameters {}
60330
61067
 
61068
+ /**
61069
+ * Parameters of the ODataListBinding#refresh event.
61070
+ */
60331
61071
  interface ODataListBinding$RefreshEventParameters {
60332
61072
  /**
60333
61073
  * The reason for the 'refresh' event could be
@@ -60345,6 +61085,9 @@ declare namespace sap {
60345
61085
  reason?: sap.ui.model.ChangeReason;
60346
61086
  }
60347
61087
 
61088
+ /**
61089
+ * Parameters of the ODataModel#dataReceived event.
61090
+ */
60348
61091
  interface ODataModel$DataReceivedEventParameters {
60349
61092
  /**
60350
61093
  * An empty data object if a back-end request succeeds
@@ -60363,6 +61106,9 @@ declare namespace sap {
60363
61106
  path?: string;
60364
61107
  }
60365
61108
 
61109
+ /**
61110
+ * Parameters of the ODataModel#dataRequested event.
61111
+ */
60366
61112
  interface ODataModel$DataRequestedEventParameters {
60367
61113
  /**
60368
61114
  * The absolute path to the entity which caused the event. The path is only provided for additional property
@@ -60371,9 +61117,15 @@ declare namespace sap {
60371
61117
  path?: string;
60372
61118
  }
60373
61119
 
61120
+ /**
61121
+ * Parameters of the ODataModel#parseError event.
61122
+ */
60374
61123
  interface ODataModel$ParseErrorEventParameters
60375
61124
  extends sap.ui.model.Model$ParseErrorEventParameters {}
60376
61125
 
61126
+ /**
61127
+ * Parameters of the ODataModel#propertyChange event.
61128
+ */
60377
61129
  interface ODataModel$PropertyChangeEventParameters
60378
61130
  extends sap.ui.model.Model$PropertyChangeEventParameters {
60379
61131
  /**
@@ -60388,20 +61140,38 @@ declare namespace sap {
60388
61140
  resolvedPath?: string;
60389
61141
  }
60390
61142
 
61143
+ /**
61144
+ * Parameters of the ODataModel#requestCompleted event.
61145
+ */
60391
61146
  interface ODataModel$RequestCompletedEventParameters
60392
61147
  extends sap.ui.model.Model$RequestCompletedEventParameters {}
60393
61148
 
61149
+ /**
61150
+ * Parameters of the ODataModel#requestFailed event.
61151
+ */
60394
61152
  interface ODataModel$RequestFailedEventParameters
60395
61153
  extends sap.ui.model.Model$RequestFailedEventParameters {}
60396
61154
 
61155
+ /**
61156
+ * Parameters of the ODataModel#requestSent event.
61157
+ */
60397
61158
  interface ODataModel$RequestSentEventParameters
60398
61159
  extends sap.ui.model.Model$RequestSentEventParameters {}
60399
61160
 
61161
+ /**
61162
+ * Parameters of the ODataModel#sessionTimeout event.
61163
+ */
60400
61164
  interface ODataModel$SessionTimeoutEventParameters {}
60401
61165
 
61166
+ /**
61167
+ * Parameters of the ODataPropertyBinding#change event.
61168
+ */
60402
61169
  interface ODataPropertyBinding$ChangeEventParameters
60403
61170
  extends sap.ui.model.Binding$ChangeEventParameters {}
60404
61171
 
61172
+ /**
61173
+ * Parameters of the ODataPropertyBinding#dataReceived event.
61174
+ */
60405
61175
  interface ODataPropertyBinding$DataReceivedEventParameters
60406
61176
  extends sap.ui.model.Binding$DataReceivedEventParameters {
60407
61177
  /**
@@ -60411,6 +61181,9 @@ declare namespace sap {
60411
61181
  error?: Error;
60412
61182
  }
60413
61183
 
61184
+ /**
61185
+ * Parameters of the ODataPropertyBinding#dataRequested event.
61186
+ */
60414
61187
  interface ODataPropertyBinding$DataRequestedEventParameters
60415
61188
  extends sap.ui.model.Binding$DataRequestedEventParameters {}
60416
61189
 
@@ -65613,127 +66386,201 @@ declare namespace sap {
65613
66386
  */
65614
66387
  Standard = "Standard",
65615
66388
  }
65616
-
66389
+ /**
66390
+ * Event object of the ODataContextBinding#change event.
66391
+ */
65617
66392
  type ODataContextBinding$ChangeEvent = sap.ui.base.Event<
65618
66393
  ODataContextBinding$ChangeEventParameters,
65619
66394
  ODataContextBinding
65620
66395
  >;
65621
66396
 
66397
+ /**
66398
+ * Event object of the ODataContextBinding#dataReceived event.
66399
+ */
65622
66400
  type ODataContextBinding$DataReceivedEvent = sap.ui.base.Event<
65623
66401
  ODataContextBinding$DataReceivedEventParameters,
65624
66402
  ODataContextBinding
65625
66403
  >;
65626
66404
 
66405
+ /**
66406
+ * Event object of the ODataContextBinding#dataRequested event.
66407
+ */
65627
66408
  type ODataContextBinding$DataRequestedEvent = sap.ui.base.Event<
65628
66409
  ODataContextBinding$DataRequestedEventParameters,
65629
66410
  ODataContextBinding
65630
66411
  >;
65631
66412
 
66413
+ /**
66414
+ * Event object of the ODataContextBinding#patchCompleted event.
66415
+ */
65632
66416
  type ODataContextBinding$PatchCompletedEvent = sap.ui.base.Event<
65633
66417
  ODataContextBinding$PatchCompletedEventParameters,
65634
66418
  ODataContextBinding
65635
66419
  >;
65636
66420
 
66421
+ /**
66422
+ * Event object of the ODataContextBinding#patchSent event.
66423
+ */
65637
66424
  type ODataContextBinding$PatchSentEvent = sap.ui.base.Event<
65638
66425
  ODataContextBinding$PatchSentEventParameters,
65639
66426
  ODataContextBinding
65640
66427
  >;
65641
66428
 
66429
+ /**
66430
+ * Event object of the ODataListBinding#change event.
66431
+ */
65642
66432
  type ODataListBinding$ChangeEvent = sap.ui.base.Event<
65643
66433
  ODataListBinding$ChangeEventParameters,
65644
66434
  ODataListBinding
65645
66435
  >;
65646
66436
 
66437
+ /**
66438
+ * Event object of the ODataListBinding#createActivate event.
66439
+ */
65647
66440
  type ODataListBinding$CreateActivateEvent = sap.ui.base.Event<
65648
66441
  ODataListBinding$CreateActivateEventParameters,
65649
66442
  ODataListBinding
65650
66443
  >;
65651
66444
 
66445
+ /**
66446
+ * Event object of the ODataListBinding#createCompleted event.
66447
+ */
65652
66448
  type ODataListBinding$CreateCompletedEvent = sap.ui.base.Event<
65653
66449
  ODataListBinding$CreateCompletedEventParameters,
65654
66450
  ODataListBinding
65655
66451
  >;
65656
66452
 
66453
+ /**
66454
+ * Event object of the ODataListBinding#createSent event.
66455
+ */
65657
66456
  type ODataListBinding$CreateSentEvent = sap.ui.base.Event<
65658
66457
  ODataListBinding$CreateSentEventParameters,
65659
66458
  ODataListBinding
65660
66459
  >;
65661
66460
 
66461
+ /**
66462
+ * Event object of the ODataListBinding#dataReceived event.
66463
+ */
65662
66464
  type ODataListBinding$DataReceivedEvent = sap.ui.base.Event<
65663
66465
  ODataListBinding$DataReceivedEventParameters,
65664
66466
  ODataListBinding
65665
66467
  >;
65666
66468
 
66469
+ /**
66470
+ * Event object of the ODataListBinding#dataRequested event.
66471
+ */
65667
66472
  type ODataListBinding$DataRequestedEvent = sap.ui.base.Event<
65668
66473
  ODataListBinding$DataRequestedEventParameters,
65669
66474
  ODataListBinding
65670
66475
  >;
65671
66476
 
66477
+ /**
66478
+ * Event object of the ODataListBinding#patchCompleted event.
66479
+ */
65672
66480
  type ODataListBinding$PatchCompletedEvent = sap.ui.base.Event<
65673
66481
  ODataListBinding$PatchCompletedEventParameters,
65674
66482
  ODataListBinding
65675
66483
  >;
65676
66484
 
66485
+ /**
66486
+ * Event object of the ODataListBinding#patchSent event.
66487
+ */
65677
66488
  type ODataListBinding$PatchSentEvent = sap.ui.base.Event<
65678
66489
  ODataListBinding$PatchSentEventParameters,
65679
66490
  ODataListBinding
65680
66491
  >;
65681
66492
 
66493
+ /**
66494
+ * Event object of the ODataListBinding#refresh event.
66495
+ */
65682
66496
  type ODataListBinding$RefreshEvent = sap.ui.base.Event<
65683
66497
  ODataListBinding$RefreshEventParameters,
65684
66498
  ODataListBinding
65685
66499
  >;
65686
66500
 
66501
+ /**
66502
+ * Event object of the ODataModel#dataReceived event.
66503
+ */
65687
66504
  type ODataModel$DataReceivedEvent = sap.ui.base.Event<
65688
66505
  ODataModel$DataReceivedEventParameters,
65689
66506
  ODataModel
65690
66507
  >;
65691
66508
 
66509
+ /**
66510
+ * Event object of the ODataModel#dataRequested event.
66511
+ */
65692
66512
  type ODataModel$DataRequestedEvent = sap.ui.base.Event<
65693
66513
  ODataModel$DataRequestedEventParameters,
65694
66514
  ODataModel
65695
66515
  >;
65696
66516
 
66517
+ /**
66518
+ * Event object of the ODataModel#parseError event.
66519
+ */
65697
66520
  type ODataModel$ParseErrorEvent = sap.ui.base.Event<
65698
66521
  ODataModel$ParseErrorEventParameters,
65699
66522
  ODataModel
65700
66523
  >;
65701
66524
 
66525
+ /**
66526
+ * Event object of the ODataModel#propertyChange event.
66527
+ */
65702
66528
  type ODataModel$PropertyChangeEvent = sap.ui.base.Event<
65703
66529
  ODataModel$PropertyChangeEventParameters,
65704
66530
  ODataModel
65705
66531
  >;
65706
66532
 
66533
+ /**
66534
+ * Event object of the ODataModel#requestCompleted event.
66535
+ */
65707
66536
  type ODataModel$RequestCompletedEvent = sap.ui.base.Event<
65708
66537
  ODataModel$RequestCompletedEventParameters,
65709
66538
  ODataModel
65710
66539
  >;
65711
66540
 
66541
+ /**
66542
+ * Event object of the ODataModel#requestFailed event.
66543
+ */
65712
66544
  type ODataModel$RequestFailedEvent = sap.ui.base.Event<
65713
66545
  ODataModel$RequestFailedEventParameters,
65714
66546
  ODataModel
65715
66547
  >;
65716
66548
 
66549
+ /**
66550
+ * Event object of the ODataModel#requestSent event.
66551
+ */
65717
66552
  type ODataModel$RequestSentEvent = sap.ui.base.Event<
65718
66553
  ODataModel$RequestSentEventParameters,
65719
66554
  ODataModel
65720
66555
  >;
65721
66556
 
66557
+ /**
66558
+ * Event object of the ODataModel#sessionTimeout event.
66559
+ */
65722
66560
  type ODataModel$SessionTimeoutEvent = sap.ui.base.Event<
65723
66561
  ODataModel$SessionTimeoutEventParameters,
65724
66562
  ODataModel
65725
66563
  >;
65726
66564
 
66565
+ /**
66566
+ * Event object of the ODataPropertyBinding#change event.
66567
+ */
65727
66568
  type ODataPropertyBinding$ChangeEvent = sap.ui.base.Event<
65728
66569
  ODataPropertyBinding$ChangeEventParameters,
65729
66570
  ODataPropertyBinding
65730
66571
  >;
65731
66572
 
66573
+ /**
66574
+ * Event object of the ODataPropertyBinding#dataReceived event.
66575
+ */
65732
66576
  type ODataPropertyBinding$DataReceivedEvent = sap.ui.base.Event<
65733
66577
  ODataPropertyBinding$DataReceivedEventParameters,
65734
66578
  ODataPropertyBinding
65735
66579
  >;
65736
66580
 
66581
+ /**
66582
+ * Event object of the ODataPropertyBinding#dataRequested event.
66583
+ */
65737
66584
  type ODataPropertyBinding$DataRequestedEvent = sap.ui.base.Event<
65738
66585
  ODataPropertyBinding$DataRequestedEventParameters,
65739
66586
  ODataPropertyBinding
@@ -66468,21 +67315,44 @@ declare namespace sap {
66468
67315
  Parameters: sap.ui.model.odata.ODataMetaModel.ValueListParameter[];
66469
67316
  };
66470
67317
  }
66471
-
67318
+ /**
67319
+ * Parameters of the ODataAnnotations#failed event.
67320
+ */
66472
67321
  interface ODataAnnotations$FailedEventParameters {}
66473
67322
 
67323
+ /**
67324
+ * Parameters of the ODataAnnotations#loaded event.
67325
+ */
66474
67326
  interface ODataAnnotations$LoadedEventParameters {}
66475
67327
 
67328
+ /**
67329
+ * Parameters of the ODataMetadata#failed event.
67330
+ */
66476
67331
  interface ODataMetadata$FailedEventParameters {}
66477
67332
 
67333
+ /**
67334
+ * Parameters of the ODataMetadata#loaded event.
67335
+ */
66478
67336
  interface ODataMetadata$LoadedEventParameters {}
66479
67337
 
67338
+ /**
67339
+ * Parameters of the ODataModel#annotationsFailed event.
67340
+ */
66480
67341
  interface ODataModel$AnnotationsFailedEventParameters {}
66481
67342
 
67343
+ /**
67344
+ * Parameters of the ODataModel#annotationsLoaded event.
67345
+ */
66482
67346
  interface ODataModel$AnnotationsLoadedEventParameters {}
66483
67347
 
67348
+ /**
67349
+ * Parameters of the ODataModel#metadataFailed event.
67350
+ */
66484
67351
  interface ODataModel$MetadataFailedEventParameters {}
66485
67352
 
67353
+ /**
67354
+ * Parameters of the ODataModel#metadataLoaded event.
67355
+ */
66486
67356
  interface ODataModel$MetadataLoadedEventParameters {}
66487
67357
 
66488
67358
  /**
@@ -69982,42 +70852,65 @@ declare namespace sap {
69982
70852
  */
69983
70853
  Put = "PUT",
69984
70854
  }
69985
-
70855
+ /**
70856
+ * Event object of the ODataAnnotations#failed event.
70857
+ */
69986
70858
  type ODataAnnotations$FailedEvent = sap.ui.base.Event<
69987
70859
  ODataAnnotations$FailedEventParameters,
69988
70860
  ODataAnnotations
69989
70861
  >;
69990
70862
 
70863
+ /**
70864
+ * Event object of the ODataAnnotations#loaded event.
70865
+ */
69991
70866
  type ODataAnnotations$LoadedEvent = sap.ui.base.Event<
69992
70867
  ODataAnnotations$LoadedEventParameters,
69993
70868
  ODataAnnotations
69994
70869
  >;
69995
70870
 
70871
+ /**
70872
+ * Event object of the ODataMetadata#failed event.
70873
+ */
69996
70874
  type ODataMetadata$FailedEvent = sap.ui.base.Event<
69997
70875
  ODataMetadata$FailedEventParameters,
69998
70876
  ODataMetadata
69999
70877
  >;
70000
70878
 
70879
+ /**
70880
+ * Event object of the ODataMetadata#loaded event.
70881
+ */
70001
70882
  type ODataMetadata$LoadedEvent = sap.ui.base.Event<
70002
70883
  ODataMetadata$LoadedEventParameters,
70003
70884
  ODataMetadata
70004
70885
  >;
70005
70886
 
70887
+ /**
70888
+ * Event object of the ODataModel#annotationsFailed event.
70889
+ */
70006
70890
  type ODataModel$AnnotationsFailedEvent = sap.ui.base.Event<
70007
70891
  ODataModel$AnnotationsFailedEventParameters,
70008
70892
  ODataModel
70009
70893
  >;
70010
70894
 
70895
+ /**
70896
+ * Event object of the ODataModel#annotationsLoaded event.
70897
+ */
70011
70898
  type ODataModel$AnnotationsLoadedEvent = sap.ui.base.Event<
70012
70899
  ODataModel$AnnotationsLoadedEventParameters,
70013
70900
  ODataModel
70014
70901
  >;
70015
70902
 
70903
+ /**
70904
+ * Event object of the ODataModel#metadataFailed event.
70905
+ */
70016
70906
  type ODataModel$MetadataFailedEvent = sap.ui.base.Event<
70017
70907
  ODataModel$MetadataFailedEventParameters,
70018
70908
  ODataModel
70019
70909
  >;
70020
70910
 
70911
+ /**
70912
+ * Event object of the ODataModel#metadataLoaded event.
70913
+ */
70021
70914
  type ODataModel$MetadataLoadedEvent = sap.ui.base.Event<
70022
70915
  ODataModel$MetadataLoadedEventParameters,
70023
70916
  ODataModel
@@ -71827,7 +72720,9 @@ declare namespace sap {
71827
72720
  ): any[] | string;
71828
72721
  }
71829
72722
  }
71830
-
72723
+ /**
72724
+ * Parameters of the Binding#AggregatedDataStateChange event.
72725
+ */
71831
72726
  interface Binding$AggregatedDataStateChangeEventParameters {
71832
72727
  /**
71833
72728
  * The `DataState` object of the binding
@@ -71835,6 +72730,9 @@ declare namespace sap {
71835
72730
  dataState?: sap.ui.model.DataState;
71836
72731
  }
71837
72732
 
72733
+ /**
72734
+ * Parameters of the Binding#change event.
72735
+ */
71838
72736
  interface Binding$ChangeEventParameters {
71839
72737
  /**
71840
72738
  * A string stating the reason for the data change; some change reasons can be found in {@link sap.ui.model.ChangeReason},
@@ -71843,6 +72741,9 @@ declare namespace sap {
71843
72741
  reason?: string;
71844
72742
  }
71845
72743
 
72744
+ /**
72745
+ * Parameters of the Binding#dataReceived event.
72746
+ */
71846
72747
  interface Binding$DataReceivedEventParameters {
71847
72748
  /**
71848
72749
  * The data received; is `undefined` in error cases
@@ -71850,8 +72751,14 @@ declare namespace sap {
71850
72751
  data?: string;
71851
72752
  }
71852
72753
 
72754
+ /**
72755
+ * Parameters of the Binding#dataRequested event.
72756
+ */
71853
72757
  interface Binding$DataRequestedEventParameters {}
71854
72758
 
72759
+ /**
72760
+ * Parameters of the Binding#DataStateChange event.
72761
+ */
71855
72762
  interface Binding$DataStateChangeEventParameters {
71856
72763
  /**
71857
72764
  * The `DataState` object of the binding
@@ -71859,10 +72766,25 @@ declare namespace sap {
71859
72766
  dataState?: sap.ui.model.DataState;
71860
72767
  }
71861
72768
 
72769
+ /**
72770
+ * Parameters of the ListBinding#filter event.
72771
+ *
72772
+ * @deprecated (since 1.11) - use the `change` event. It now contains a parameter `(reason : "filter")`
72773
+ * when a filter event is fired.
72774
+ */
71862
72775
  interface ListBinding$FilterEventParameters {}
71863
72776
 
72777
+ /**
72778
+ * Parameters of the ListBinding#sort event.
72779
+ *
72780
+ * @deprecated (since 1.11) - use the `change` event. It now contains a parameter `(reason : "sort")` when
72781
+ * a sorter event is fired.
72782
+ */
71864
72783
  interface ListBinding$SortEventParameters {}
71865
72784
 
72785
+ /**
72786
+ * Parameters of the Model#parseError event.
72787
+ */
71866
72788
  interface Model$ParseErrorEventParameters {
71867
72789
  errorCode?: int;
71868
72790
 
@@ -71879,6 +72801,9 @@ declare namespace sap {
71879
72801
  filepos?: int;
71880
72802
  }
71881
72803
 
72804
+ /**
72805
+ * Parameters of the Model#propertyChange event.
72806
+ */
71882
72807
  interface Model$PropertyChangeEventParameters {
71883
72808
  /**
71884
72809
  * The cause of the property value change
@@ -71901,6 +72826,9 @@ declare namespace sap {
71901
72826
  value?: any;
71902
72827
  }
71903
72828
 
72829
+ /**
72830
+ * Parameters of the Model#requestCompleted event.
72831
+ */
71904
72832
  interface Model$RequestCompletedEventParameters {
71905
72833
  /**
71906
72834
  * URL which was sent to the back end
@@ -71939,6 +72867,9 @@ declare namespace sap {
71939
72867
  infoObject?: object;
71940
72868
  }
71941
72869
 
72870
+ /**
72871
+ * Parameters of the Model#requestFailed event.
72872
+ */
71942
72873
  interface Model$RequestFailedEventParameters {
71943
72874
  /**
71944
72875
  * A text that describes the failure.
@@ -71961,6 +72892,9 @@ declare namespace sap {
71961
72892
  responseText?: string;
71962
72893
  }
71963
72894
 
72895
+ /**
72896
+ * Parameters of the Model#requestSent event.
72897
+ */
71964
72898
  interface Model$RequestSentEventParameters {
71965
72899
  /**
71966
72900
  * The url which is sent to the back end
@@ -77136,62 +78070,103 @@ declare namespace sap {
77136
78070
  */
77137
78071
  Sequential = "Sequential",
77138
78072
  }
77139
-
78073
+ /**
78074
+ * Event object of the Binding#AggregatedDataStateChange event.
78075
+ */
77140
78076
  type Binding$AggregatedDataStateChangeEvent = sap.ui.base.Event<
77141
78077
  Binding$AggregatedDataStateChangeEventParameters,
77142
78078
  Binding
77143
78079
  >;
77144
78080
 
78081
+ /**
78082
+ * Event object of the Binding#change event.
78083
+ */
77145
78084
  type Binding$ChangeEvent = sap.ui.base.Event<
77146
78085
  Binding$ChangeEventParameters,
77147
78086
  Binding
77148
78087
  >;
77149
78088
 
78089
+ /**
78090
+ * Event object of the Binding#dataReceived event.
78091
+ */
77150
78092
  type Binding$DataReceivedEvent = sap.ui.base.Event<
77151
78093
  Binding$DataReceivedEventParameters,
77152
78094
  Binding
77153
78095
  >;
77154
78096
 
78097
+ /**
78098
+ * Event object of the Binding#dataRequested event.
78099
+ */
77155
78100
  type Binding$DataRequestedEvent = sap.ui.base.Event<
77156
78101
  Binding$DataRequestedEventParameters,
77157
78102
  Binding
77158
78103
  >;
77159
78104
 
78105
+ /**
78106
+ * Event object of the Binding#DataStateChange event.
78107
+ */
77160
78108
  type Binding$DataStateChangeEvent = sap.ui.base.Event<
77161
78109
  Binding$DataStateChangeEventParameters,
77162
78110
  Binding
77163
78111
  >;
77164
78112
 
78113
+ /**
78114
+ * Event object of the ListBinding#filter event.
78115
+ *
78116
+ * @deprecated (since 1.11) - use the `change` event. It now contains a parameter `(reason : "filter")`
78117
+ * when a filter event is fired.
78118
+ */
77165
78119
  type ListBinding$FilterEvent = sap.ui.base.Event<
77166
78120
  ListBinding$FilterEventParameters,
77167
78121
  ListBinding
77168
78122
  >;
77169
78123
 
78124
+ /**
78125
+ * Event object of the ListBinding#sort event.
78126
+ *
78127
+ * @deprecated (since 1.11) - use the `change` event. It now contains a parameter `(reason : "sort")` when
78128
+ * a sorter event is fired.
78129
+ */
77170
78130
  type ListBinding$SortEvent = sap.ui.base.Event<
77171
78131
  ListBinding$SortEventParameters,
77172
78132
  ListBinding
77173
78133
  >;
77174
78134
 
78135
+ /**
78136
+ * Event object of the Model#parseError event.
78137
+ */
77175
78138
  type Model$ParseErrorEvent = sap.ui.base.Event<
77176
78139
  Model$ParseErrorEventParameters,
77177
78140
  Model
77178
78141
  >;
77179
78142
 
78143
+ /**
78144
+ * Event object of the Model#propertyChange event.
78145
+ */
77180
78146
  type Model$PropertyChangeEvent = sap.ui.base.Event<
77181
78147
  Model$PropertyChangeEventParameters,
77182
78148
  Model
77183
78149
  >;
77184
78150
 
78151
+ /**
78152
+ * Event object of the Model#requestCompleted event.
78153
+ */
77185
78154
  type Model$RequestCompletedEvent = sap.ui.base.Event<
77186
78155
  Model$RequestCompletedEventParameters,
77187
78156
  Model
77188
78157
  >;
77189
78158
 
78159
+ /**
78160
+ * Event object of the Model#requestFailed event.
78161
+ */
77190
78162
  type Model$RequestFailedEvent = sap.ui.base.Event<
77191
78163
  Model$RequestFailedEventParameters,
77192
78164
  Model
77193
78165
  >;
77194
78166
 
78167
+ /**
78168
+ * Event object of the Model#requestSent event.
78169
+ */
77195
78170
  type Model$RequestSentEvent = sap.ui.base.Event<
77196
78171
  Model$RequestSentEventParameters,
77197
78172
  Model
@@ -78041,6 +79016,9 @@ declare namespace sap {
78041
79016
 
78042
79017
  namespace test {
78043
79018
  namespace actions {
79019
+ /**
79020
+ * Describes the settings that can be provided to the Action constructor.
79021
+ */
78044
79022
  interface $ActionSettings extends sap.ui.base.$ManagedObjectSettings {
78045
79023
  /**
78046
79024
  * Use this only if the target property or the default of the action does not work for your control. The
@@ -78054,8 +79032,14 @@ declare namespace sap {
78054
79032
  idSuffix?: string | sap.ui.base.ManagedObject.PropertyBindingInfo;
78055
79033
  }
78056
79034
 
79035
+ /**
79036
+ * Describes the settings that can be provided to the Drag constructor.
79037
+ */
78057
79038
  interface $DragSettings extends sap.ui.test.actions.$ActionSettings {}
78058
79039
 
79040
+ /**
79041
+ * Describes the settings that can be provided to the Drop constructor.
79042
+ */
78059
79043
  interface $DropSettings extends sap.ui.test.actions.$ActionSettings {
78060
79044
  /**
78061
79045
  * name of the droppable aggregation, whose root to use as drop target. This makes sense only for some controls,
@@ -78086,6 +79070,9 @@ declare namespace sap {
78086
79070
  | `{${string}}`;
78087
79071
  }
78088
79072
 
79073
+ /**
79074
+ * Describes the settings that can be provided to the EnterText constructor.
79075
+ */
78089
79076
  interface $EnterTextSettings
78090
79077
  extends sap.ui.test.actions.$ActionSettings {
78091
79078
  /**
@@ -78118,6 +79105,9 @@ declare namespace sap {
78118
79105
  | `{${string}}`;
78119
79106
  }
78120
79107
 
79108
+ /**
79109
+ * Describes the settings that can be provided to the Press constructor.
79110
+ */
78121
79111
  interface $PressSettings extends sap.ui.test.actions.$ActionSettings {
78122
79112
  /**
78123
79113
  * If it is set to `true`, the Alt Key modifier will be used
@@ -78172,6 +79162,9 @@ declare namespace sap {
78172
79162
  | `{${string}}`;
78173
79163
  }
78174
79164
 
79165
+ /**
79166
+ * Describes the settings that can be provided to the Scroll constructor.
79167
+ */
78175
79168
  interface $ScrollSettings extends sap.ui.test.actions.$ActionSettings {
78176
79169
  x?:
78177
79170
  | int
@@ -79424,6 +80417,9 @@ declare namespace sap {
79424
80417
  }
79425
80418
 
79426
80419
  namespace matchers {
80420
+ /**
80421
+ * Describes the settings that can be provided to the AggregationContainsPropertyEqual constructor.
80422
+ */
79427
80423
  interface $AggregationContainsPropertyEqualSettings
79428
80424
  extends sap.ui.test.matchers.$MatcherSettings {
79429
80425
  /**
@@ -79447,6 +80443,9 @@ declare namespace sap {
79447
80443
  | `{${string}}`;
79448
80444
  }
79449
80445
 
80446
+ /**
80447
+ * Describes the settings that can be provided to the AggregationEmpty constructor.
80448
+ */
79450
80449
  interface $AggregationEmptySettings
79451
80450
  extends sap.ui.test.matchers.$MatcherSettings {
79452
80451
  /**
@@ -79455,6 +80454,9 @@ declare namespace sap {
79455
80454
  name?: string | sap.ui.base.ManagedObject.PropertyBindingInfo;
79456
80455
  }
79457
80456
 
80457
+ /**
80458
+ * Describes the settings that can be provided to the AggregationFilled constructor.
80459
+ */
79458
80460
  interface $AggregationFilledSettings
79459
80461
  extends sap.ui.test.matchers.$MatcherSettings {
79460
80462
  /**
@@ -79463,6 +80465,9 @@ declare namespace sap {
79463
80465
  name?: string | sap.ui.base.ManagedObject.PropertyBindingInfo;
79464
80466
  }
79465
80467
 
80468
+ /**
80469
+ * Describes the settings that can be provided to the AggregationLengthEquals constructor.
80470
+ */
79466
80471
  interface $AggregationLengthEqualsSettings
79467
80472
  extends sap.ui.test.matchers.$MatcherSettings {
79468
80473
  /**
@@ -79479,6 +80484,9 @@ declare namespace sap {
79479
80484
  | `{${string}}`;
79480
80485
  }
79481
80486
 
80487
+ /**
80488
+ * Describes the settings that can be provided to the BindingPath constructor.
80489
+ */
79482
80490
  interface $BindingPathSettings
79483
80491
  extends sap.ui.test.matchers.$MatcherSettings {
79484
80492
  /**
@@ -79518,6 +80526,9 @@ declare namespace sap {
79518
80526
  | `{${string}}`;
79519
80527
  }
79520
80528
 
80529
+ /**
80530
+ * Describes the settings that can be provided to the I18NText constructor.
80531
+ */
79521
80532
  interface $I18NTextSettings
79522
80533
  extends sap.ui.test.matchers.$MatcherSettings {
79523
80534
  /**
@@ -79552,9 +80563,15 @@ declare namespace sap {
79552
80563
  | `{${string}}`;
79553
80564
  }
79554
80565
 
80566
+ /**
80567
+ * Describes the settings that can be provided to the Interactable constructor.
80568
+ */
79555
80569
  interface $InteractableSettings
79556
80570
  extends sap.ui.test.matchers.$MatcherSettings {}
79557
80571
 
80572
+ /**
80573
+ * Describes the settings that can be provided to the LabelFor constructor.
80574
+ */
79558
80575
  interface $LabelForSettings
79559
80576
  extends sap.ui.test.matchers.$MatcherSettings {
79560
80577
  /**
@@ -79586,8 +80603,14 @@ declare namespace sap {
79586
80603
  propertyName?: string | sap.ui.base.ManagedObject.PropertyBindingInfo;
79587
80604
  }
79588
80605
 
80606
+ /**
80607
+ * Describes the settings that can be provided to the Matcher constructor.
80608
+ */
79589
80609
  interface $MatcherSettings extends sap.ui.base.$ManagedObjectSettings {}
79590
80610
 
80611
+ /**
80612
+ * Describes the settings that can be provided to the PropertyStrictEquals constructor.
80613
+ */
79591
80614
  interface $PropertyStrictEqualsSettings
79592
80615
  extends sap.ui.test.matchers.$MatcherSettings {
79593
80616
  /**