@openui5/types 1.116.0 → 1.117.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -1,8 +1,10 @@
1
- // For Library Version: 1.116.0
1
+ // For Library Version: 1.117.0
2
2
 
3
3
  declare module "sap/ui/mdc/BaseDelegate" {
4
4
  import Control from "sap/ui/mdc/Control";
5
5
 
6
+ import TypeMap from "sap/ui/mdc/util/TypeMap";
7
+
6
8
  /**
7
9
  * @since 1.79.0
8
10
  *
@@ -10,8 +12,8 @@ declare module "sap/ui/mdc/BaseDelegate" {
10
12
  *
11
13
  *
12
14
  * All delegate implementations for MDC controls must be derived directly or indirectly from this entity.
13
- * Applications should implement {@link sap.ui.mdc.BaseDelegate.getTypeMap getTypeMap} to provide type mappings
14
- * based on their model usage. Please also see the following extensible presets: {@link sap.ui.mdc.DefaultTypeMap},
15
+ * Applications should implement {@link module:sap/ui/mdc/BaseDelegate.getTypeMap getTypeMap} to provide
16
+ * type mappings based on their model usage. Please also see the following extensible presets: {@link sap.ui.mdc.DefaultTypeMap},
15
17
  * {@link sap.ui.mdc.odata.TypeMap}, {@link sap.ui.mdc.odata.v4.TypeMap}
16
18
  */
17
19
  interface BaseDelegate {
@@ -28,7 +30,7 @@ declare module "sap/ui/mdc/BaseDelegate" {
28
30
  * Delegate payload object
29
31
  */
30
32
  oControl: Control
31
- ): /* was: sap.ui.mdc.util.TypeMap */ any;
33
+ ): TypeMap;
32
34
  }
33
35
  const BaseDelegate: BaseDelegate;
34
36
  export default BaseDelegate;
@@ -1168,7 +1170,16 @@ declare module "sap/ui/mdc/odata/v4/TableDelegate" {
1168
1170
  /**
1169
1171
  * The binding instance of the table
1170
1172
  */
1171
- oBinding?: ListBinding
1173
+ oBinding?: ListBinding,
1174
+ /**
1175
+ * Additional settings
1176
+ */
1177
+ mSettings?: {
1178
+ /**
1179
+ * Indicates that the binding has to be refreshed even if `oBindingInfo` has not been changed
1180
+ */
1181
+ forceRefresh?: boolean;
1182
+ }
1172
1183
  ): void;
1173
1184
  }
1174
1185
  const TableDelegate: TableDelegate;
@@ -1382,7 +1393,16 @@ declare module "sap/ui/mdc/TableDelegate" {
1382
1393
  /**
1383
1394
  * The binding instance of the table
1384
1395
  */
1385
- oBinding?: ListBinding
1396
+ oBinding?: ListBinding,
1397
+ /**
1398
+ * Additional settings
1399
+ */
1400
+ mSettings?: {
1401
+ /**
1402
+ * Indicates that the binding has to be refreshed even if `oBindingInfo` has not been changed
1403
+ */
1404
+ forceRefresh?: boolean;
1405
+ }
1386
1406
  ): void;
1387
1407
  /**
1388
1408
  * @ui5-protected Do not call from applications (only from related classes in the framework)
@@ -1426,6 +1446,11 @@ declare module "sap/ui/mdc/util/TypeMap" {
1426
1446
  */
1427
1447
  export(): any[];
1428
1448
  /**
1449
+ * Converts a value into a string using a designated type.
1450
+ *
1451
+ * The value is not checked for validity. The used values must be compatible with the used basic type.
1452
+ *
1453
+ * **Note:** Number types are not converted, the number conversion is done by the SAPUI5 Flexibility handling.
1429
1454
  *
1430
1455
  * @returns converted value
1431
1456
  */
@@ -1452,6 +1477,11 @@ declare module "sap/ui/mdc/util/TypeMap" {
1452
1477
  */
1453
1478
  freeze(): void;
1454
1479
  /**
1480
+ * To determine which internal controls to render, the {@link sap.ui.mdc.Field Field}, {@link sap.ui.mdc.MultiValueField MultiValueField},
1481
+ * or {@link sap.ui.mdc.FilterField FilterField} controls need to know if the type represents a date, a
1482
+ * number, or another {@link sap.ui.mdc.enums.BaseType BaseType}.
1483
+ *
1484
+ * As default, `String` is returned.
1455
1485
  *
1456
1486
  * @returns output `Date`, `DateTime` or `Time`...
1457
1487
  */
@@ -1470,6 +1500,7 @@ declare module "sap/ui/mdc/util/TypeMap" {
1470
1500
  oConstraints: object
1471
1501
  ): BaseType | keyof typeof BaseType;
1472
1502
  /**
1503
+ * Convenience method to retrieve the `BaseType` for a given {@link sap.ui.model.SimpleType SimpleType}.
1473
1504
  *
1474
1505
  * @returns output `Date`, `DateTime` or `Time`...
1475
1506
  */
@@ -1478,8 +1509,11 @@ declare module "sap/ui/mdc/util/TypeMap" {
1478
1509
  * Given type string or {@link sap.ui.model.SimpleType}
1479
1510
  */
1480
1511
  oType: SimpleType
1481
- ): string;
1512
+ ): BaseType | keyof typeof BaseType;
1482
1513
  /**
1514
+ * Returns a data type class based on a given name.
1515
+ *
1516
+ * **Note:** The module of the data type needs to be loaded before.
1483
1517
  *
1484
1518
  * @returns creates returns a dataType class
1485
1519
  */
@@ -1490,6 +1524,7 @@ declare module "sap/ui/mdc/util/TypeMap" {
1490
1524
  sDataType: string
1491
1525
  ): SimpleType;
1492
1526
  /**
1527
+ * Returns the data type class name for a given name or alias.
1493
1528
  *
1494
1529
  * @returns Data type name
1495
1530
  */
@@ -1500,6 +1535,7 @@ declare module "sap/ui/mdc/util/TypeMap" {
1500
1535
  sType: string
1501
1536
  ): string;
1502
1537
  /**
1538
+ * Returns a data type instance based on a given object path, `FormatOptions`, and `Constraints`.
1503
1539
  *
1504
1540
  * @returns creates returns an instance of the resolved dataType
1505
1541
  */
@@ -1522,6 +1558,7 @@ declare module "sap/ui/mdc/util/TypeMap" {
1522
1558
  oOptions?: object
1523
1559
  ): SimpleType;
1524
1560
  /**
1561
+ * Returns a type mapping configuration object for a given type string or {@link sap.ui.model.SimpleType SimpleType}.
1525
1562
  *
1526
1563
  * @returns output returns typeConfig object
1527
1564
  */
@@ -1546,9 +1583,14 @@ declare module "sap/ui/mdc/util/TypeMap" {
1546
1583
  /**
1547
1584
  * TypeMap to import
1548
1585
  */
1549
- oTypeMap: /* was: sap.ui.mdc.util.TypeMap */ any
1586
+ oTypeMap: TypeMap
1550
1587
  ): void;
1551
1588
  /**
1589
+ * Converts a string into a type-based value.
1590
+ *
1591
+ * The value is not checked for validity. The used values must be compatible with the used basic type.
1592
+ *
1593
+ * **Note:** Number types are not converted, the number conversion is done by the SAPUI5 Flexibility handling.
1552
1594
  *
1553
1595
  * @returns converted value
1554
1596
  */
@@ -4100,7 +4142,10 @@ declare module "sap/ui/mdc/Chart" {
4100
4142
  | keyof typeof SelectionDetailsActionLevel;
4101
4143
  }
4102
4144
 
4103
- export type Chart$SelectionDetailsActionPressedEvent = Event<Chart$SelectionDetailsActionPressedEventParameters>;
4145
+ export type Chart$SelectionDetailsActionPressedEvent = Event<
4146
+ Chart$SelectionDetailsActionPressedEventParameters,
4147
+ Chart
4148
+ >;
4104
4149
  }
4105
4150
 
4106
4151
  declare module "sap/ui/mdc/chart/ChartImplementationContainer" {
@@ -4903,8 +4948,8 @@ declare module "sap/ui/mdc/condition/Condition" {
4903
4948
  /**
4904
4949
  * @since 1.61.0
4905
4950
  *
4906
- * Utilities to create conditions to be used in {@link sap.ui.mdc.FilterField FilterField}, {@link sap.ui.mdc.FilterBar FilterBar }
4907
- * or {@link sap.ui.mdc.condition.ConditionModel ConditionModel}
4951
+ * Utilities to create conditions to be used in {@link sap.ui.mdc.FilterField FilterField}, {@link sap.ui.mdc.FilterBar FilterBar},
4952
+ * or {@link sap.ui.mdc.condition.ConditionModel ConditionModel}.
4908
4953
  */
4909
4954
  interface Condition {
4910
4955
  /**
@@ -4931,7 +4976,7 @@ declare module "sap/ui/mdc/condition/Condition" {
4931
4976
  oOutParameters: object,
4932
4977
  /**
4933
4978
  * If set to `ConditionValidated.Validated`, the condition is validated (by the field help) and not shown
4934
- * in the `DefineConditionPanel` control
4979
+ * in the {@link sap.ui.mdc.valuehelp.content.Conditions Conditions} content
4935
4980
  */
4936
4981
  sValidated: ConditionValidated | keyof typeof ConditionValidated,
4937
4982
  /**
@@ -4959,7 +5004,7 @@ declare module "sap/ui/mdc/condition/Condition" {
4959
5004
  oInParameters: object,
4960
5005
  /**
4961
5006
  * If set to `ConditionValidated.Validated`, the condition is validated (by the field help) and not shown
4962
- * in the `DefineConditionPanel` control
5007
+ * in the {@link sap.ui.mdc.valuehelp.content.Conditions Conditions} content
4963
5008
  */
4964
5009
  sValidated: ConditionValidated | keyof typeof ConditionValidated,
4965
5010
  /**
@@ -4987,7 +5032,7 @@ declare module "sap/ui/mdc/condition/Condition" {
4987
5032
  oOutParameters: object,
4988
5033
  /**
4989
5034
  * If set to `ConditionValidated.Validated`, the condition is validated (by the field help) and not shown
4990
- * in the `DefineConditionPanel` control
5035
+ * in the {@link sap.ui.mdc.valuehelp.content.Conditions Conditions} content
4991
5036
  */
4992
5037
  sValidated: ConditionValidated | keyof typeof ConditionValidated,
4993
5038
  /**
@@ -5011,7 +5056,7 @@ declare module "sap/ui/mdc/condition/Condition" {
5011
5056
  aValues: any[],
5012
5057
  /**
5013
5058
  * If set to `ConditionValidated.Validated`, the condition is validated (by the field help) and not shown
5014
- * in the `DefineConditionPanel` control
5059
+ * in the {@link sap.ui.mdc.valuehelp.content.Conditions Conditions} content
5015
5060
  */
5016
5061
  sValidated: ConditionValidated | keyof typeof ConditionValidated,
5017
5062
  /**
@@ -5077,12 +5122,12 @@ declare module "sap/ui/mdc/condition/Condition" {
5077
5122
  */
5078
5123
  outParameters?: object;
5079
5124
  /**
5080
- * If set, the condition is empty (used as dummy condition in {@link sap.ui.mdc.valuehelp.base.DefineConditionPanel DefineConditionPanel})
5125
+ * If set, the condition is empty (used as initially empty condition in {@link sap.ui.mdc.valuehelp.content.Conditions Conditions})
5081
5126
  */
5082
5127
  isEmpty?: boolean;
5083
5128
  /**
5084
5129
  * If set to `ConditionValidated.Validated`, the condition is validated (by the value help) and not shown
5085
- * in the {@link sap.ui.mdc.valuehelp.base.DefineConditionPanel DefineConditionPanel} control
5130
+ * in the {@link sap.ui.mdc.valuehelp.content.Conditions Conditions} content
5086
5131
  */
5087
5132
  validated: ConditionValidated | keyof typeof ConditionValidated;
5088
5133
  /**
@@ -5362,7 +5407,7 @@ declare module "sap/ui/mdc/condition/Operator" {
5362
5407
  */
5363
5408
  isEmpty?: Function;
5364
5409
  /**
5365
- * Function to create a control to be used in {@link sap.ui.mdc.valuehelp.base.DefineConditionPanel DefineConditionPanel}
5410
+ * Function to create a control to be used in {@link sap.ui.mdc.valuehelp.content.Conditions Conditions}
5366
5411
  */
5367
5412
  createControl?: Function;
5368
5413
  /**
@@ -5535,8 +5580,12 @@ declare module "sap/ui/mdc/Control" {
5535
5580
  $ControlSettings as $ControlSettings1,
5536
5581
  } from "sap/ui/core/Control";
5537
5582
 
5583
+ import BaseDelegate from "sap/ui/mdc/BaseDelegate";
5584
+
5538
5585
  import ElementMetadata from "sap/ui/core/ElementMetadata";
5539
5586
 
5587
+ import TypeMap from "sap/ui/mdc/util/TypeMap";
5588
+
5540
5589
  import { PropertyBindingInfo } from "sap/ui/base/ManagedObject";
5541
5590
 
5542
5591
  /**
@@ -5586,7 +5635,7 @@ declare module "sap/ui/mdc/Control" {
5586
5635
  *
5587
5636
  * @returns Returns a `Promise` reflecting the delegate initialization
5588
5637
  */
5589
- static awaitControlDelegate(): Promise</* was: sap.ui.mdc.BaseDelegate */ any>;
5638
+ static awaitControlDelegate(): Promise<BaseDelegate>;
5590
5639
  /**
5591
5640
  * @ui5-protected Do not call from applications (only from related classes in the framework)
5592
5641
  *
@@ -5640,7 +5689,7 @@ declare module "sap/ui/mdc/Control" {
5640
5689
  *
5641
5690
  * @returns `typeUtil` made available by a delegate module
5642
5691
  */
5643
- static getControlDelegate(): /* was: sap.ui.mdc.BaseDelegate */ any;
5692
+ static getControlDelegate(): BaseDelegate;
5644
5693
  /**
5645
5694
  * Returns a metadata object for class sap.ui.mdc.Control.
5646
5695
  *
@@ -5666,18 +5715,16 @@ declare module "sap/ui/mdc/Control" {
5666
5715
  *
5667
5716
  * @returns `TypeMap` object
5668
5717
  */
5669
- static getTypeMap(): /* was: sap.ui.mdc.util.TypeMap */ any;
5718
+ static getTypeMap(): TypeMap;
5670
5719
  /**
5671
- * @deprecated - (since 1.115.0) - please see {@link #getTypeMap}
5720
+ * @deprecated (since 1.115.0) - please see {@link #getTypeMap}
5672
5721
  * @ui5-protected Do not call from applications (only from related classes in the framework)
5673
5722
  *
5674
5723
  * Returns the `typeUtil` made available by a delegate module.
5675
5724
  *
5676
5725
  * @returns `TypeUtil` object
5677
5726
  */
5678
- static getTypeUtil(): /* was: sap.ui.mdc.util.TypeUtil */
5679
- | any
5680
- | /* was: sap.ui.mdc.util.TypeMap */ any;
5727
+ static getTypeUtil(): /* was: sap.ui.mdc.util.TypeUtil */ any | TypeMap;
5681
5728
  /**
5682
5729
  * @ui5-protected Do not call from applications (only from related classes in the framework)
5683
5730
  *
@@ -5689,8 +5736,8 @@ declare module "sap/ui/mdc/Control" {
5689
5736
  /**
5690
5737
  * Preloaded delegate module
5691
5738
  */
5692
- oPreloadedModule?: /* was: sap.ui.mdc.BaseDelegate */ any
5693
- ): Promise</* was: sap.ui.mdc.BaseDelegate */ any>;
5739
+ oPreloadedModule?: BaseDelegate
5740
+ ): Promise<BaseDelegate>;
5694
5741
  /**
5695
5742
  * @ui5-protected Do not call from applications (only from related classes in the framework)
5696
5743
  *
@@ -5774,8 +5821,12 @@ declare module "sap/ui/mdc/Element" {
5774
5821
  $ElementSettings as $ElementSettings1,
5775
5822
  } from "sap/ui/core/Element";
5776
5823
 
5824
+ import BaseDelegate from "sap/ui/mdc/BaseDelegate";
5825
+
5777
5826
  import ElementMetadata from "sap/ui/core/ElementMetadata";
5778
5827
 
5828
+ import TypeMap from "sap/ui/mdc/util/TypeMap";
5829
+
5779
5830
  import { PropertyBindingInfo } from "sap/ui/base/ManagedObject";
5780
5831
 
5781
5832
  /**
@@ -5825,7 +5876,7 @@ declare module "sap/ui/mdc/Element" {
5825
5876
  *
5826
5877
  * @returns Returns a `Promise` reflecting the delegate initialization
5827
5878
  */
5828
- static awaitControlDelegate(): Promise</* was: sap.ui.mdc.BaseDelegate */ any>;
5879
+ static awaitControlDelegate(): Promise<BaseDelegate>;
5829
5880
  /**
5830
5881
  * @ui5-protected Do not call from applications (only from related classes in the framework)
5831
5882
  *
@@ -5879,7 +5930,7 @@ declare module "sap/ui/mdc/Element" {
5879
5930
  *
5880
5931
  * @returns `typeUtil` made available by a delegate module
5881
5932
  */
5882
- static getControlDelegate(): /* was: sap.ui.mdc.BaseDelegate */ any;
5933
+ static getControlDelegate(): BaseDelegate;
5883
5934
  /**
5884
5935
  * Returns a metadata object for class sap.ui.mdc.Element.
5885
5936
  *
@@ -5905,18 +5956,16 @@ declare module "sap/ui/mdc/Element" {
5905
5956
  *
5906
5957
  * @returns `TypeMap` object
5907
5958
  */
5908
- static getTypeMap(): /* was: sap.ui.mdc.util.TypeMap */ any;
5959
+ static getTypeMap(): TypeMap;
5909
5960
  /**
5910
- * @deprecated - (since 1.115.0) - please see {@link #getTypeMap}
5961
+ * @deprecated (since 1.115.0) - please see {@link #getTypeMap}
5911
5962
  * @ui5-protected Do not call from applications (only from related classes in the framework)
5912
5963
  *
5913
5964
  * Returns the `typeUtil` made available by a delegate module.
5914
5965
  *
5915
5966
  * @returns `TypeUtil` object
5916
5967
  */
5917
- static getTypeUtil(): /* was: sap.ui.mdc.util.TypeUtil */
5918
- | any
5919
- | /* was: sap.ui.mdc.util.TypeMap */ any;
5968
+ static getTypeUtil(): /* was: sap.ui.mdc.util.TypeUtil */ any | TypeMap;
5920
5969
  /**
5921
5970
  * @ui5-protected Do not call from applications (only from related classes in the framework)
5922
5971
  *
@@ -5928,8 +5977,8 @@ declare module "sap/ui/mdc/Element" {
5928
5977
  /**
5929
5978
  * Preloaded delegate module
5930
5979
  */
5931
- oPreloadedModule?: /* was: sap.ui.mdc.BaseDelegate */ any
5932
- ): Promise</* was: sap.ui.mdc.BaseDelegate */ any>;
5980
+ oPreloadedModule?: BaseDelegate
5981
+ ): Promise<BaseDelegate>;
5933
5982
  /**
5934
5983
  * @ui5-protected Do not call from applications (only from related classes in the framework)
5935
5984
  *
@@ -6825,7 +6874,7 @@ declare module "sap/ui/mdc/Field" {
6825
6874
  promise?: Promise<any>;
6826
6875
  }
6827
6876
 
6828
- export type Field$ChangeEvent = Event<Field$ChangeEventParameters>;
6877
+ export type Field$ChangeEvent = Event<Field$ChangeEventParameters, Field>;
6829
6878
  }
6830
6879
 
6831
6880
  declare module "sap/ui/mdc/field/ConditionsType" {
@@ -7409,6 +7458,8 @@ declare module "sap/ui/mdc/field/FieldBase" {
7409
7458
 
7410
7459
  import { PropertyBindingInfo } from "sap/ui/base/ManagedObject";
7411
7460
 
7461
+ import { ConditionObject } from "sap/ui/mdc/condition/Condition";
7462
+
7412
7463
  import BaseType from "sap/ui/mdc/enums/BaseType";
7413
7464
 
7414
7465
  import FieldDisplay from "sap/ui/mdc/enums/FieldDisplay";
@@ -7426,7 +7477,7 @@ declare module "sap/ui/mdc/field/FieldBase" {
7426
7477
  /**
7427
7478
  * @since 1.58.0
7428
7479
  *
7429
- * The `FieldBase` control is the base class for the {@link sap.ui.mdc.Field Field}, {@link sap.ui.mdc.MultiValueField MultiValueField }
7480
+ * The `FieldBase` control is the base class for the {@link sap.ui.mdc.Field Field}, {@link sap.ui.mdc.MultiValueField MultiValueField},
7430
7481
  * and {@link sap.ui.mdc.FilterField FilterField} controls. It must not be used stand-alone.
7431
7482
  */
7432
7483
  export default class FieldBase
@@ -7800,7 +7851,25 @@ declare module "sap/ui/mdc/field/FieldBase" {
7800
7851
  *
7801
7852
  * Here inheriting controls need to fire the control-specific change event.
7802
7853
  */
7803
- fireChangeEvent(): void;
7854
+ fireChangeEvent(
7855
+ /**
7856
+ * Current conditions after change
7857
+ */
7858
+ aConditions: ConditionObject[],
7859
+ /**
7860
+ * If `false`, the user input is not valid and leads to an error
7861
+ */
7862
+ bValid: boolean,
7863
+ /**
7864
+ * wrong user input (only set if known)
7865
+ */
7866
+ vWrongValue: any,
7867
+ /**
7868
+ * `Promise` that is resolved if the changed value is determined, as user might enter some description,
7869
+ * and the key neeeds to be determined via back-end request.
7870
+ */
7871
+ oPromise: Promise<any>
7872
+ ): void;
7804
7873
  /**
7805
7874
  * @ui5-protected Do not call from applications (only from related classes in the framework)
7806
7875
  *
@@ -7962,7 +8031,7 @@ declare module "sap/ui/mdc/field/FieldBase" {
7962
8031
  *
7963
8032
  * @returns Array of content controls
7964
8033
  */
7965
- getCurrentContent(): /* was: sap.ui.core.Conterol */ any[];
8034
+ getCurrentContent(): Control1[];
7966
8035
  /**
7967
8036
  * Gets current value of property {@link #getDataType dataType}.
7968
8037
  *
@@ -8249,6 +8318,23 @@ declare module "sap/ui/mdc/field/FieldBase" {
8249
8318
  */
8250
8319
  oEvent: object
8251
8320
  ): void;
8321
+ /**
8322
+ * @since 1.117.0
8323
+ * @ui5-protected Do not call from applications (only from related classes in the framework)
8324
+ *
8325
+ * Returns the user interaction state of the control.
8326
+ *
8327
+ * If the user starts typing or navigates via arrow keys in a value help, the shown value might be updated.
8328
+ * But as long as the user has not left the field or pressed the Enter key, the current user input will
8329
+ * not be validated or updated or an event fired.
8330
+ *
8331
+ * As long as the user is interacting with the field, this function returns `true`. If the user interaction
8332
+ * has been completed because the user has left the field, pressed the Enter key, or chosen a value from
8333
+ * the value help, the function returns `false`.
8334
+ *
8335
+ * @returns `true` if there is a pending user input
8336
+ */
8337
+ hasPendingUserInput(): boolean;
8252
8338
  /**
8253
8339
  * @ui5-protected Do not call from applications (only from related classes in the framework)
8254
8340
  *
@@ -9110,11 +9196,17 @@ declare module "sap/ui/mdc/field/FieldBase" {
9110
9196
  previousValue?: string;
9111
9197
  }
9112
9198
 
9113
- export type FieldBase$LiveChangeEvent = Event<FieldBase$LiveChangeEventParameters>;
9199
+ export type FieldBase$LiveChangeEvent = Event<
9200
+ FieldBase$LiveChangeEventParameters,
9201
+ FieldBase
9202
+ >;
9114
9203
 
9115
9204
  export interface FieldBase$PressEventParameters {}
9116
9205
 
9117
- export type FieldBase$PressEvent = Event<FieldBase$PressEventParameters>;
9206
+ export type FieldBase$PressEvent = Event<
9207
+ FieldBase$PressEventParameters,
9208
+ FieldBase
9209
+ >;
9118
9210
 
9119
9211
  export interface FieldBase$SubmitEventParameters {
9120
9212
  /**
@@ -9125,7 +9217,10 @@ declare module "sap/ui/mdc/field/FieldBase" {
9125
9217
  promise?: Promise<any>;
9126
9218
  }
9127
9219
 
9128
- export type FieldBase$SubmitEvent = Event<FieldBase$SubmitEventParameters>;
9220
+ export type FieldBase$SubmitEvent = Event<
9221
+ FieldBase$SubmitEventParameters,
9222
+ FieldBase
9223
+ >;
9129
9224
  }
9130
9225
 
9131
9226
  declare module "sap/ui/mdc/field/FieldInfoBase" {
@@ -9133,12 +9228,12 @@ declare module "sap/ui/mdc/field/FieldInfoBase" {
9133
9228
 
9134
9229
  import Event from "sap/ui/base/Event";
9135
9230
 
9231
+ import Control from "sap/ui/core/Control";
9232
+
9136
9233
  import { DirectLinkObject } from "sap/ui/mdc/Link";
9137
9234
 
9138
9235
  import ElementMetadata from "sap/ui/core/ElementMetadata";
9139
9236
 
9140
- import Control from "sap/ui/core/Control";
9141
-
9142
9237
  /**
9143
9238
  * @since 1.54.0
9144
9239
  *
@@ -9381,7 +9476,7 @@ declare module "sap/ui/mdc/field/FieldInfoBase" {
9381
9476
  * Function returning the `Popover` control that is created in `createPopover`
9382
9477
  */
9383
9478
  fnGetAutoClosedControl?: Function
9384
- ): Promise</* was: sap.ui.Control */ any>;
9479
+ ): Promise<Control>;
9385
9480
  /**
9386
9481
  * Returns a `Promise` resolving into an {@link sap.ui.mdc.link.DirectLinkObject} containing the `href`
9387
9482
  * and `target` of a direct navigation link. Returns a `Promise` resolving into null if there is no direct
@@ -9439,11 +9534,17 @@ declare module "sap/ui/mdc/field/FieldInfoBase" {
9439
9534
 
9440
9535
  export interface FieldInfoBase$DataUpdateEventParameters {}
9441
9536
 
9442
- export type FieldInfoBase$DataUpdateEvent = Event<FieldInfoBase$DataUpdateEventParameters>;
9537
+ export type FieldInfoBase$DataUpdateEvent = Event<
9538
+ FieldInfoBase$DataUpdateEventParameters,
9539
+ FieldInfoBase
9540
+ >;
9443
9541
 
9444
9542
  export interface FieldInfoBase$PopoverAfterOpenEventParameters {}
9445
9543
 
9446
- export type FieldInfoBase$PopoverAfterOpenEvent = Event<FieldInfoBase$PopoverAfterOpenEventParameters>;
9544
+ export type FieldInfoBase$PopoverAfterOpenEvent = Event<
9545
+ FieldInfoBase$PopoverAfterOpenEventParameters,
9546
+ FieldInfoBase
9547
+ >;
9447
9548
  }
9448
9549
 
9449
9550
  declare module "sap/ui/mdc/field/MultiValueFieldDelegate" {
@@ -9847,8 +9948,6 @@ declare module "sap/ui/mdc/filterbar/FilterBarBase" {
9847
9948
 
9848
9949
  import FilterField from "sap/ui/mdc/FilterField";
9849
9950
 
9850
- import Event from "sap/ui/base/Event";
9851
-
9852
9951
  import FilterBarValidationStatus from "sap/ui/mdc/enums/FilterBarValidationStatus";
9853
9952
 
9854
9953
  import ElementMetadata from "sap/ui/core/ElementMetadata";
@@ -9862,6 +9961,8 @@ declare module "sap/ui/mdc/filterbar/FilterBarBase" {
9862
9961
  AggregationBindingInfo,
9863
9962
  } from "sap/ui/base/ManagedObject";
9864
9963
 
9964
+ import Event from "sap/ui/base/Event";
9965
+
9865
9966
  /**
9866
9967
  * @since 1.80.0
9867
9968
  *
@@ -10014,7 +10115,7 @@ declare module "sap/ui/mdc/filterbar/FilterBarBase" {
10014
10115
  /**
10015
10116
  * The function to be called when the event occurs
10016
10117
  */
10017
- fnFunction: (p1: Event) => void,
10118
+ fnFunction: (p1: FilterBarBase$SearchEvent) => void,
10018
10119
  /**
10019
10120
  * Context object to call the event handler with. Defaults to this `sap.ui.mdc.filterbar.FilterBarBase`
10020
10121
  * itself
@@ -10037,7 +10138,7 @@ declare module "sap/ui/mdc/filterbar/FilterBarBase" {
10037
10138
  /**
10038
10139
  * The function to be called when the event occurs
10039
10140
  */
10040
- fnFunction: (p1: Event) => void,
10141
+ fnFunction: (p1: FilterBarBase$SearchEvent) => void,
10041
10142
  /**
10042
10143
  * Context object to call the event handler with. Defaults to this `sap.ui.mdc.filterbar.FilterBarBase`
10043
10144
  * itself
@@ -10092,7 +10193,7 @@ declare module "sap/ui/mdc/filterbar/FilterBarBase" {
10092
10193
  /**
10093
10194
  * The function to be called, when the event occurs
10094
10195
  */
10095
- fnFunction: (p1: Event) => void,
10196
+ fnFunction: (p1: FilterBarBase$SearchEvent) => void,
10096
10197
  /**
10097
10198
  * Context object on which the given function had to be called
10098
10199
  */
@@ -10122,7 +10223,7 @@ declare module "sap/ui/mdc/filterbar/FilterBarBase" {
10122
10223
  /**
10123
10224
  * Parameters to pass along with the event
10124
10225
  */
10125
- mParameters?: object
10226
+ mParameters?: FilterBarBase$SearchEventParameters
10126
10227
  ): this;
10127
10228
  /**
10128
10229
  * Returns the labels of all filters with a value assignment.
@@ -10620,7 +10721,7 @@ declare module "sap/ui/mdc/filterbar/FilterBarBase" {
10620
10721
  * **Note**: This event should never be executed programmatically. It is triggered internally by the filter
10621
10722
  * bar after a `triggerSearch` has been executed
10622
10723
  */
10623
- search?: (oEvent: Event) => void;
10724
+ search?: (oEvent: FilterBarBase$SearchEvent) => void;
10624
10725
 
10625
10726
  /**
10626
10727
  * This event is fired after either a filter value or the visibility of a filter item has been changed.
@@ -10645,11 +10746,28 @@ declare module "sap/ui/mdc/filterbar/FilterBarBase" {
10645
10746
  filtersTextExpanded?: string;
10646
10747
  }
10647
10748
 
10648
- export type FilterBarBase$FiltersChangedEvent = Event<FilterBarBase$FiltersChangedEventParameters>;
10749
+ export type FilterBarBase$FiltersChangedEvent = Event<
10750
+ FilterBarBase$FiltersChangedEventParameters,
10751
+ FilterBarBase
10752
+ >;
10649
10753
 
10650
- export interface FilterBarBase$SearchEventParameters {}
10754
+ export interface FilterBarBase$SearchEventParameters {
10755
+ /**
10756
+ * Indicates the initial reason for the search. This can either be:
10757
+ *
10758
+ * - `{@link sap.ui.mdc.enums.ReasonMode.Variant}`: Search is triggered based on variant settings
10759
+ * - `{@link sap.ui.mdc.enums.ReasonMode.Enter}`: Search is triggered based on pressing Enter in a filter
10760
+ * field
10761
+ * - `{@link sap.ui.mdc.enums.ReasonMode.Go}`: Search is triggered based on pressing the Go button
10762
+ * - `{@link sap.ui.mdc.enums.ReasonMode.Unclear}`: Any other reasons for the search
10763
+ */
10764
+ reason?: /* was: sap.ui.mdc.enums.ReasonMode */ any;
10765
+ }
10651
10766
 
10652
- export type FilterBarBase$SearchEvent = Event<FilterBarBase$SearchEventParameters>;
10767
+ export type FilterBarBase$SearchEvent = Event<
10768
+ FilterBarBase$SearchEventParameters,
10769
+ FilterBarBase
10770
+ >;
10653
10771
  }
10654
10772
 
10655
10773
  declare module "sap/ui/mdc/filterbar/IFilterContainer" {
@@ -11536,7 +11654,10 @@ declare module "sap/ui/mdc/FilterField" {
11536
11654
  promise?: boolean;
11537
11655
  }
11538
11656
 
11539
- export type FilterField$ChangeEvent = Event<FilterField$ChangeEventParameters>;
11657
+ export type FilterField$ChangeEvent = Event<
11658
+ FilterField$ChangeEventParameters,
11659
+ FilterField
11660
+ >;
11540
11661
  }
11541
11662
 
11542
11663
  declare module "sap/ui/mdc/Link" {
@@ -12525,7 +12646,10 @@ declare module "sap/ui/mdc/MultiValueField" {
12525
12646
  promise?: Promise<any>;
12526
12647
  }
12527
12648
 
12528
- export type MultiValueField$ChangeEvent = Event<MultiValueField$ChangeEventParameters>;
12649
+ export type MultiValueField$ChangeEvent = Event<
12650
+ MultiValueField$ChangeEventParameters,
12651
+ MultiValueField
12652
+ >;
12529
12653
  }
12530
12654
 
12531
12655
  declare module "sap/ui/mdc/table/V4AnalyticsPropertyHelper" {
@@ -14811,7 +14935,10 @@ declare module "sap/ui/mdc/Table" {
14811
14935
  filterSettings?: object[];
14812
14936
  }
14813
14937
 
14814
- export type Table$BeforeExportEvent = Event<Table$BeforeExportEventParameters>;
14938
+ export type Table$BeforeExportEvent = Event<
14939
+ Table$BeforeExportEventParameters,
14940
+ Table
14941
+ >;
14815
14942
 
14816
14943
  export interface Table$PasteEventParameters {
14817
14944
  /**
@@ -14821,7 +14948,7 @@ declare module "sap/ui/mdc/Table" {
14821
14948
  data?: string[][];
14822
14949
  }
14823
14950
 
14824
- export type Table$PasteEvent = Event<Table$PasteEventParameters>;
14951
+ export type Table$PasteEvent = Event<Table$PasteEventParameters, Table>;
14825
14952
 
14826
14953
  export interface Table$RowPressEventParameters {
14827
14954
  /**
@@ -14830,7 +14957,7 @@ declare module "sap/ui/mdc/Table" {
14830
14957
  bindingContext?: Context;
14831
14958
  }
14832
14959
 
14833
- export type Table$RowPressEvent = Event<Table$RowPressEventParameters>;
14960
+ export type Table$RowPressEvent = Event<Table$RowPressEventParameters, Table>;
14834
14961
 
14835
14962
  export interface Table$SelectionChangeEventParameters {
14836
14963
  /**
@@ -14839,7 +14966,10 @@ declare module "sap/ui/mdc/Table" {
14839
14966
  selectAll?: boolean;
14840
14967
  }
14841
14968
 
14842
- export type Table$SelectionChangeEvent = Event<Table$SelectionChangeEventParameters>;
14969
+ export type Table$SelectionChangeEvent = Event<
14970
+ Table$SelectionChangeEventParameters,
14971
+ Table
14972
+ >;
14843
14973
  }
14844
14974
 
14845
14975
  declare module "sap/ui/mdc/table/Column" {
@@ -16674,7 +16804,10 @@ declare module "sap/ui/mdc/table/RowActionItem" {
16674
16804
  bindingContext?: Context;
16675
16805
  }
16676
16806
 
16677
- export type RowActionItem$PressEvent = Event<RowActionItem$PressEventParameters>;
16807
+ export type RowActionItem$PressEvent = Event<
16808
+ RowActionItem$PressEventParameters,
16809
+ RowActionItem
16810
+ >;
16678
16811
  }
16679
16812
 
16680
16813
  declare module "sap/ui/mdc/table/RowSettings" {
@@ -18194,11 +18327,17 @@ declare module "sap/ui/mdc/ValueHelp" {
18194
18327
 
18195
18328
  export interface ValueHelp$ClosedEventParameters {}
18196
18329
 
18197
- export type ValueHelp$ClosedEvent = Event<ValueHelp$ClosedEventParameters>;
18330
+ export type ValueHelp$ClosedEvent = Event<
18331
+ ValueHelp$ClosedEventParameters,
18332
+ ValueHelp
18333
+ >;
18198
18334
 
18199
18335
  export interface ValueHelp$DisconnectEventParameters {}
18200
18336
 
18201
- export type ValueHelp$DisconnectEvent = Event<ValueHelp$DisconnectEventParameters>;
18337
+ export type ValueHelp$DisconnectEvent = Event<
18338
+ ValueHelp$DisconnectEventParameters,
18339
+ ValueHelp
18340
+ >;
18202
18341
 
18203
18342
  export interface ValueHelp$NavigatedEventParameters {
18204
18343
  /**
@@ -18219,7 +18358,10 @@ declare module "sap/ui/mdc/ValueHelp" {
18219
18358
  itemId?: string;
18220
18359
  }
18221
18360
 
18222
- export type ValueHelp$NavigatedEvent = Event<ValueHelp$NavigatedEventParameters>;
18361
+ export type ValueHelp$NavigatedEvent = Event<
18362
+ ValueHelp$NavigatedEventParameters,
18363
+ ValueHelp
18364
+ >;
18223
18365
 
18224
18366
  export interface ValueHelp$OpenEventParameters {
18225
18367
  /**
@@ -18228,7 +18370,10 @@ declare module "sap/ui/mdc/ValueHelp" {
18228
18370
  container?: Container;
18229
18371
  }
18230
18372
 
18231
- export type ValueHelp$OpenEvent = Event<ValueHelp$OpenEventParameters>;
18373
+ export type ValueHelp$OpenEvent = Event<
18374
+ ValueHelp$OpenEventParameters,
18375
+ ValueHelp
18376
+ >;
18232
18377
 
18233
18378
  export interface ValueHelp$OpenedEventParameters {
18234
18379
  /**
@@ -18237,7 +18382,10 @@ declare module "sap/ui/mdc/ValueHelp" {
18237
18382
  container?: Container;
18238
18383
  }
18239
18384
 
18240
- export type ValueHelp$OpenedEvent = Event<ValueHelp$OpenedEventParameters>;
18385
+ export type ValueHelp$OpenedEvent = Event<
18386
+ ValueHelp$OpenedEventParameters,
18387
+ ValueHelp
18388
+ >;
18241
18389
 
18242
18390
  export interface ValueHelp$SelectEventParameters {
18243
18391
  /**
@@ -18259,11 +18407,17 @@ declare module "sap/ui/mdc/ValueHelp" {
18259
18407
  close?: boolean;
18260
18408
  }
18261
18409
 
18262
- export type ValueHelp$SelectEvent = Event<ValueHelp$SelectEventParameters>;
18410
+ export type ValueHelp$SelectEvent = Event<
18411
+ ValueHelp$SelectEventParameters,
18412
+ ValueHelp
18413
+ >;
18263
18414
 
18264
18415
  export interface ValueHelp$SwitchToValueHelpEventParameters {}
18265
18416
 
18266
- export type ValueHelp$SwitchToValueHelpEvent = Event<ValueHelp$SwitchToValueHelpEventParameters>;
18417
+ export type ValueHelp$SwitchToValueHelpEvent = Event<
18418
+ ValueHelp$SwitchToValueHelpEventParameters,
18419
+ ValueHelp
18420
+ >;
18267
18421
  }
18268
18422
 
18269
18423
  declare module "sap/ui/mdc/valuehelp/base/Container" {
@@ -19393,11 +19547,17 @@ declare module "sap/ui/mdc/valuehelp/base/Container" {
19393
19547
 
19394
19548
  export interface Container$CancelEventParameters {}
19395
19549
 
19396
- export type Container$CancelEvent = Event<Container$CancelEventParameters>;
19550
+ export type Container$CancelEvent = Event<
19551
+ Container$CancelEventParameters,
19552
+ Container
19553
+ >;
19397
19554
 
19398
19555
  export interface Container$ClosedEventParameters {}
19399
19556
 
19400
- export type Container$ClosedEvent = Event<Container$ClosedEventParameters>;
19557
+ export type Container$ClosedEvent = Event<
19558
+ Container$ClosedEventParameters,
19559
+ Container
19560
+ >;
19401
19561
 
19402
19562
  export interface Container$ConfirmEventParameters {
19403
19563
  /**
@@ -19406,7 +19566,10 @@ declare module "sap/ui/mdc/valuehelp/base/Container" {
19406
19566
  close?: boolean;
19407
19567
  }
19408
19568
 
19409
- export type Container$ConfirmEvent = Event<Container$ConfirmEventParameters>;
19569
+ export type Container$ConfirmEvent = Event<
19570
+ Container$ConfirmEventParameters,
19571
+ Container
19572
+ >;
19410
19573
 
19411
19574
  export interface Container$NavigatedEventParameters {
19412
19575
  /**
@@ -19427,11 +19590,17 @@ declare module "sap/ui/mdc/valuehelp/base/Container" {
19427
19590
  itemId?: string;
19428
19591
  }
19429
19592
 
19430
- export type Container$NavigatedEvent = Event<Container$NavigatedEventParameters>;
19593
+ export type Container$NavigatedEvent = Event<
19594
+ Container$NavigatedEventParameters,
19595
+ Container
19596
+ >;
19431
19597
 
19432
19598
  export interface Container$OpenedEventParameters {}
19433
19599
 
19434
- export type Container$OpenedEvent = Event<Container$OpenedEventParameters>;
19600
+ export type Container$OpenedEvent = Event<
19601
+ Container$OpenedEventParameters,
19602
+ Container
19603
+ >;
19435
19604
 
19436
19605
  export interface Container$RequestDelegateContentEventParameters {
19437
19606
  /**
@@ -19440,11 +19609,17 @@ declare module "sap/ui/mdc/valuehelp/base/Container" {
19440
19609
  contentId?: string;
19441
19610
  }
19442
19611
 
19443
- export type Container$RequestDelegateContentEvent = Event<Container$RequestDelegateContentEventParameters>;
19612
+ export type Container$RequestDelegateContentEvent = Event<
19613
+ Container$RequestDelegateContentEventParameters,
19614
+ Container
19615
+ >;
19444
19616
 
19445
19617
  export interface Container$RequestSwitchToDialogEventParameters {}
19446
19618
 
19447
- export type Container$RequestSwitchToDialogEvent = Event<Container$RequestSwitchToDialogEventParameters>;
19619
+ export type Container$RequestSwitchToDialogEvent = Event<
19620
+ Container$RequestSwitchToDialogEventParameters,
19621
+ Container
19622
+ >;
19448
19623
 
19449
19624
  export interface Container$SelectEventParameters {
19450
19625
  /**
@@ -19460,7 +19635,10 @@ declare module "sap/ui/mdc/valuehelp/base/Container" {
19460
19635
  conditions?: object[];
19461
19636
  }
19462
19637
 
19463
- export type Container$SelectEvent = Event<Container$SelectEventParameters>;
19638
+ export type Container$SelectEvent = Event<
19639
+ Container$SelectEventParameters,
19640
+ Container
19641
+ >;
19464
19642
  }
19465
19643
 
19466
19644
  declare module "sap/ui/mdc/valuehelp/base/Content" {
@@ -19474,6 +19652,8 @@ declare module "sap/ui/mdc/valuehelp/base/Content" {
19474
19652
 
19475
19653
  import ElementMetadata from "sap/ui/core/ElementMetadata";
19476
19654
 
19655
+ import BaseDelegate from "sap/ui/mdc/BaseDelegate";
19656
+
19477
19657
  import ValueHelp from "sap/ui/mdc/ValueHelp";
19478
19658
 
19479
19659
  import { PropertyBindingInfo } from "sap/ui/base/ManagedObject";
@@ -20059,7 +20239,7 @@ declare module "sap/ui/mdc/valuehelp/base/Content" {
20059
20239
  *
20060
20240
  * @returns `Delegate` module
20061
20241
  */
20062
- getValueHelpDelegate(): /* was: sap.ui.mdc.BaseDelegate */ any;
20242
+ getValueHelpDelegate(): BaseDelegate;
20063
20243
  /**
20064
20244
  * @ui5-protected Do not call from applications (only from related classes in the framework)
20065
20245
  *
@@ -20396,7 +20576,10 @@ declare module "sap/ui/mdc/valuehelp/base/Content" {
20396
20576
 
20397
20577
  export interface Content$CancelEventParameters {}
20398
20578
 
20399
- export type Content$CancelEvent = Event<Content$CancelEventParameters>;
20579
+ export type Content$CancelEvent = Event<
20580
+ Content$CancelEventParameters,
20581
+ Content
20582
+ >;
20400
20583
 
20401
20584
  export interface Content$ConfirmEventParameters {
20402
20585
  /**
@@ -20405,7 +20588,10 @@ declare module "sap/ui/mdc/valuehelp/base/Content" {
20405
20588
  close?: boolean;
20406
20589
  }
20407
20590
 
20408
- export type Content$ConfirmEvent = Event<Content$ConfirmEventParameters>;
20591
+ export type Content$ConfirmEvent = Event<
20592
+ Content$ConfirmEventParameters,
20593
+ Content
20594
+ >;
20409
20595
 
20410
20596
  export interface Content$NavigatedEventParameters {
20411
20597
  /**
@@ -20426,11 +20612,17 @@ declare module "sap/ui/mdc/valuehelp/base/Content" {
20426
20612
  itemId?: string;
20427
20613
  }
20428
20614
 
20429
- export type Content$NavigatedEvent = Event<Content$NavigatedEventParameters>;
20615
+ export type Content$NavigatedEvent = Event<
20616
+ Content$NavigatedEventParameters,
20617
+ Content
20618
+ >;
20430
20619
 
20431
20620
  export interface Content$RequestSwitchToDialogEventParameters {}
20432
20621
 
20433
- export type Content$RequestSwitchToDialogEvent = Event<Content$RequestSwitchToDialogEventParameters>;
20622
+ export type Content$RequestSwitchToDialogEvent = Event<
20623
+ Content$RequestSwitchToDialogEventParameters,
20624
+ Content
20625
+ >;
20434
20626
 
20435
20627
  export interface Content$SelectEventParameters {
20436
20628
  /**
@@ -20446,7 +20638,10 @@ declare module "sap/ui/mdc/valuehelp/base/Content" {
20446
20638
  conditions?: object[];
20447
20639
  }
20448
20640
 
20449
- export type Content$SelectEvent = Event<Content$SelectEventParameters>;
20641
+ export type Content$SelectEvent = Event<
20642
+ Content$SelectEventParameters,
20643
+ Content
20644
+ >;
20450
20645
  }
20451
20646
 
20452
20647
  declare module "sap/ui/mdc/valuehelp/base/FilterableListContent" {
@@ -20655,9 +20850,9 @@ declare module "sap/ui/mdc/valuehelp/base/FilterableListContent" {
20655
20850
  /**
20656
20851
  * @ui5-protected Do not call from applications (only from related classes in the framework)
20657
20852
  *
20658
- * Gets the conditions that are selecatble from list content.
20853
+ * Gets the conditions that are selectable from list content.
20659
20854
  *
20660
- * This are validated conditions as other conditions are shown on the {@link sap.ui.mdc.valuehelp.base.DefineConditionPanel DefineConditionPanel}
20855
+ * These are validated conditions as other conditions are shown in the {@link sap.ui.mdc.valuehelp.content.Conditions Conditions}.
20661
20856
  *
20662
20857
  * @returns ListBindingInfo
20663
20858
  */
@@ -21163,11 +21358,10 @@ declare module "sap/ui/mdc/valuehelp/content/Conditions" {
21163
21358
  * Optional `FieldHelp`.
21164
21359
  *
21165
21360
  * This is an association that allows the usage of one `FieldHelp` instance for the value fields for the
21166
- * `Conditions`. **Note:** The value fields on the conditions UI are created by the used `DefineConditionPanel`.
21167
- * They cannot be accessed from outside. The fields are single-value input, and the display is always set
21168
- * to `FieldDisplay.Value`. Only a `ValueHelp>/code> with a TypeAhead` and a single-selection `MTable`
21169
- * can be used. **Note:** For `Boolean`, `Date`, or `Time` types, no `FieldHelp` should be added, but a
21170
- * default `FieldHelp` used instead.
21361
+ * `Conditions`. **Note:** The value fields on the conditions UI cannot be accessed from outside. The fields
21362
+ * are single-value input, and the display is always set to `FieldDisplay.Value`. Only a `ValueHelp>/code>
21363
+ * with a TypeAhead` and a single-selection `MTable` can be used. **Note:** For `Boolean`, `Date`,
21364
+ * or `Time` types, no `FieldHelp` should be added, but a default `FieldHelp` used instead.
21171
21365
  */
21172
21366
  fieldHelp?: ValueHelp | string;
21173
21367
 
@@ -21177,10 +21371,9 @@ declare module "sap/ui/mdc/valuehelp/content/Conditions" {
21177
21371
  * This is an association that allows the usage of one `ValueHelp` instance for the value fields for the
21178
21372
  * `Conditions`.
21179
21373
  *
21180
- * **Note:** The value fields on the conditions UI are created by the used `DefineConditionPanel`. They
21181
- * cannot be accessed from outside. The fields are single-value input, and the display is always set to
21182
- * `FieldDisplay.Value`. Only a `ValueHelp>/code> with a TypeAhead` and a single-selection `MTable`
21183
- * can be used.
21374
+ * **Note:** The value fields on the conditions UI cannot be accessed from outside. The fields are single-value
21375
+ * input, and the display is always set to `FieldDisplay.Value`. Only a `ValueHelp>/code> with a TypeAhead`
21376
+ * and a single-selection `MTable` can be used.
21184
21377
  *
21185
21378
  * **Note:** For `Boolean`, `Date`, or `Time` types, no `ValueHelp` should be added, but a default `ValueHelp`
21186
21379
  * used instead.
@@ -22120,7 +22313,10 @@ declare module "sap/ui/mdc/valuehelp/content/MTable" {
22120
22313
 
22121
22314
  export interface MTable$ContentUpdatedEventParameters {}
22122
22315
 
22123
- export type MTable$ContentUpdatedEvent = Event<MTable$ContentUpdatedEventParameters>;
22316
+ export type MTable$ContentUpdatedEvent = Event<
22317
+ MTable$ContentUpdatedEventParameters,
22318
+ MTable
22319
+ >;
22124
22320
  }
22125
22321
 
22126
22322
  declare module "sap/ui/mdc/valuehelp/Popover" {
@@ -22316,6 +22512,8 @@ declare namespace sap {
22316
22512
 
22317
22513
  "sap/ui/mdc/actiontoolbar/ActionToolbarAction": undefined;
22318
22514
 
22515
+ "sap/ui/mdc/AggregationBaseDelegate": undefined;
22516
+
22319
22517
  "sap/ui/mdc/BaseDelegate": undefined;
22320
22518
 
22321
22519
  "sap/ui/mdc/Chart": undefined;