@sapui5/ts-types-esm 1.127.1 → 1.128.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.
Files changed (67) hide show
  1. package/package.json +1 -1
  2. package/types/sap.apf.d.ts +1 -1
  3. package/types/sap.ca.ui.d.ts +1 -1
  4. package/types/sap.chart.d.ts +1 -1
  5. package/types/sap.collaboration.d.ts +1 -1
  6. package/types/sap.cux.home.d.ts +221 -22
  7. package/types/sap.esh.search.ui.d.ts +1 -1
  8. package/types/sap.f.d.ts +1414 -225
  9. package/types/sap.fe.base.d.ts +1 -1
  10. package/types/sap.fe.core.d.ts +13 -28
  11. package/types/sap.fe.ina.d.ts +1 -1
  12. package/types/sap.fe.macros.d.ts +7 -1
  13. package/types/sap.fe.navigation.d.ts +1 -1
  14. package/types/sap.fe.placeholder.d.ts +1 -1
  15. package/types/sap.fe.plugins.managecache.d.ts +1 -1
  16. package/types/sap.fe.templates.d.ts +14 -3
  17. package/types/sap.fe.test.d.ts +3 -3
  18. package/types/sap.fe.tools.d.ts +1 -1
  19. package/types/sap.feedback.ui.d.ts +1 -1
  20. package/types/sap.gantt.d.ts +123 -64
  21. package/types/sap.insights.d.ts +24 -1
  22. package/types/sap.m.d.ts +327 -26
  23. package/types/sap.makit.d.ts +1 -1
  24. package/types/sap.me.d.ts +1 -1
  25. package/types/sap.ndc.d.ts +1 -1
  26. package/types/sap.ovp.d.ts +1 -1
  27. package/types/sap.rules.ui.d.ts +1 -1
  28. package/types/sap.sac.df.d.ts +110 -29
  29. package/types/sap.suite.ui.commons.d.ts +1 -1
  30. package/types/sap.suite.ui.generic.template.d.ts +1 -1
  31. package/types/sap.suite.ui.microchart.d.ts +1 -1
  32. package/types/sap.tnt.d.ts +1 -1
  33. package/types/sap.ui.codeeditor.d.ts +10 -4
  34. package/types/sap.ui.commons.d.ts +1 -1
  35. package/types/sap.ui.comp.d.ts +997 -4
  36. package/types/sap.ui.core.d.ts +48 -28
  37. package/types/sap.ui.dt.d.ts +1 -1
  38. package/types/sap.ui.export.d.ts +1 -1
  39. package/types/sap.ui.fl.d.ts +10 -4
  40. package/types/sap.ui.generic.app.d.ts +1 -1
  41. package/types/sap.ui.generic.template.d.ts +1 -1
  42. package/types/sap.ui.integration.d.ts +55 -5
  43. package/types/sap.ui.layout.d.ts +5 -5
  44. package/types/sap.ui.mdc.d.ts +426 -212
  45. package/types/sap.ui.richtexteditor.d.ts +1 -1
  46. package/types/sap.ui.rta.d.ts +1 -1
  47. package/types/sap.ui.suite.d.ts +1 -1
  48. package/types/sap.ui.support.d.ts +1 -1
  49. package/types/sap.ui.table.d.ts +91 -23
  50. package/types/sap.ui.testrecorder.d.ts +1 -1
  51. package/types/sap.ui.unified.d.ts +624 -1
  52. package/types/sap.ui.ux3.d.ts +1 -1
  53. package/types/sap.ui.vbm.d.ts +1 -1
  54. package/types/sap.ui.vk.d.ts +48 -23
  55. package/types/sap.ui.vtm.d.ts +1 -1
  56. package/types/sap.ui.webc.common.d.ts +1 -1
  57. package/types/sap.ui.webc.fiori.d.ts +1 -1
  58. package/types/sap.ui.webc.main.d.ts +1 -1
  59. package/types/sap.uiext.inbox.d.ts +1 -1
  60. package/types/sap.ushell.d.ts +16 -8
  61. package/types/sap.ushell_abap.d.ts +1 -1
  62. package/types/sap.uxap.d.ts +44 -1
  63. package/types/sap.viz.d.ts +1 -1
  64. package/types/sap.webanalytics.core.d.ts +1 -1
  65. package/types/sap.zen.commons.d.ts +1 -1
  66. package/types/sap.zen.crosstab.d.ts +1 -1
  67. package/types/sap.zen.dsh.d.ts +1 -1
@@ -1,4 +1,4 @@
1
- // For Library Version: 1.127.0
1
+ // For Library Version: 1.128.0
2
2
 
3
3
  declare module "sap/ui/mdc/AggregationBaseDelegate" {
4
4
  import BaseDelegate from "sap/ui/mdc/BaseDelegate";
@@ -235,6 +235,11 @@ declare module "sap/ui/mdc/ChartDelegate" {
235
235
  * **Note:** The result of this function must be kept stable throughout the lifecycle of your application.
236
236
  * Any changes of the returned values might result in undesired effects.
237
237
  *
238
+ * **Note**: Existing properties (set via `sap.ui.mdc.Chart#setPropertyInfo`) must not be removed and their
239
+ * attributes must not be changed during the {@link module:sap/ui/mdc/ChartDelegate.fetchProperties fetchProperties }
240
+ * callback. Otherwise validation errors might occur whenever personalization-related control features (such
241
+ * as the opening of any personalization dialog) are activated.
242
+ *
238
243
  *
239
244
  * @returns Array of the property infos that is used within the chart
240
245
  */
@@ -743,8 +748,11 @@ declare module "sap/ui/mdc/field/FieldBaseDelegate" {
743
748
 
744
749
  import ContentMode from "sap/ui/mdc/enums/ContentMode";
745
750
 
751
+ import UI5Element from "sap/ui/core/Element";
752
+
746
753
  import {
747
754
  default as ValueHelp,
755
+ ValueHelpItem,
748
756
  ItemForValueConfiguration,
749
757
  } from "sap/ui/mdc/ValueHelp";
750
758
 
@@ -871,7 +879,7 @@ declare module "sap/ui/mdc/field/FieldBaseDelegate" {
871
879
  * @since 1.124.0
872
880
  * @ui5-protected Do not call from applications (only from related classes in the framework)
873
881
  *
874
- * @returns Array containing the created controls
882
+ * @returns Array containing the created controls and the default value help, if needed
875
883
  */
876
884
  createContent(
877
885
  /**
@@ -885,8 +893,12 @@ declare module "sap/ui/mdc/field/FieldBaseDelegate" {
885
893
  /**
886
894
  * ID of the internal control to be created.
887
895
  */
888
- sId: string
889
- ): Promise<Control[]>;
896
+ sId: string,
897
+ /**
898
+ * If set, a default value help should be provided.
899
+ */
900
+ bProvideDefaultValueHelp: boolean
901
+ ): Promise<UI5Element[]>;
890
902
  /**
891
903
  * Determines the text for the autocomplete functionality.
892
904
  *
@@ -962,7 +974,7 @@ declare module "sap/ui/mdc/field/FieldBaseDelegate" {
962
974
  */
963
975
  oField: FieldBase,
964
976
  /**
965
- * Field help assigned to the {@link sap.ui.mdc.Field Field}, {@link sap.ui.mdc.FilterField FilterField},
977
+ * Value help assigned to the {@link sap.ui.mdc.Field Field}, {@link sap.ui.mdc.FilterField FilterField},
966
978
  * or {@link sap.ui.mdc.MultiValueField MultiValueField} control
967
979
  */
968
980
  oValueHelp: ValueHelp,
@@ -984,13 +996,13 @@ declare module "sap/ui/mdc/field/FieldBaseDelegate" {
984
996
  */
985
997
  oBindingContext: Context,
986
998
  /**
987
- * `ConditionModel`, if bound to one - NO LONGER USED
999
+ * NO LONGER USED
988
1000
  */
989
- oConditionModel: undefined,
1001
+ oDoNotUse: undefined,
990
1002
  /**
991
- * Name of the `ConditionModel`, if bound to one - NO LONGER USED
1003
+ * NO LONGER USED
992
1004
  */
993
- sConditionModelName: undefined,
1005
+ sDoNotUse: undefined,
994
1006
  /**
995
1007
  * Additional context information for this key
996
1008
  */
@@ -1003,10 +1015,7 @@ declare module "sap/ui/mdc/field/FieldBaseDelegate" {
1003
1015
  * Type of the value
1004
1016
  */
1005
1017
  oType: Type
1006
- ):
1007
- | string
1008
- | /* was: sap.ui.mdc.valuehelp.ValueHelpItem */ any
1009
- | Promise<string | /* was: sap.ui.mdc.valuehelp.ValueHelpItem */ any>;
1018
+ ): string | ValueHelpItem | Promise<string | ValueHelpItem>;
1010
1019
  /**
1011
1020
  * Determines the description for a given key.
1012
1021
  * By default, this method calls the {@link sap.ui.mdc.ValueHelp#getItemForValue getItemForValue} function
@@ -1033,7 +1042,7 @@ declare module "sap/ui/mdc/field/FieldBaseDelegate" {
1033
1042
  */
1034
1043
  oField: FieldBase,
1035
1044
  /**
1036
- * Field help assigned to the {@link sap.ui.mdc.Field Field}, {@link sap.ui.mdc.FilterField FilterField},
1045
+ * Value help assigned to the {@link sap.ui.mdc.Field Field}, {@link sap.ui.mdc.FilterField FilterField},
1037
1046
  * or {@link sap.ui.mdc.MultiValueField MultiValueField} control
1038
1047
  */
1039
1048
  oValueHelp: ValueHelp,
@@ -1055,9 +1064,9 @@ declare module "sap/ui/mdc/field/FieldBaseDelegate" {
1055
1064
  */
1056
1065
  oBindingContext: Context,
1057
1066
  /**
1058
- * `ConditionModel`, if bound to one - NO LONGER USED
1067
+ * NO LONGER USED
1059
1068
  */
1060
- oConditionModel: undefined,
1069
+ oDoNotUse: undefined,
1061
1070
  /**
1062
1071
  * Additional context information for this key
1063
1072
  */
@@ -1070,10 +1079,7 @@ declare module "sap/ui/mdc/field/FieldBaseDelegate" {
1070
1079
  * Type of the value
1071
1080
  */
1072
1081
  oType: Type
1073
- ):
1074
- | string
1075
- | /* was: sap.ui.mdc.valuehelp.ValueHelpItem */ any
1076
- | Promise<string | /* was: sap.ui.mdc.valuehelp.ValueHelpItem */ any>;
1082
+ ): string | ValueHelpItem | Promise<string | ValueHelpItem>;
1077
1083
  /**
1078
1084
  * Determines the description for a given key.
1079
1085
  * By default, this method calls the {@link sap.ui.mdc.ValueHelp#getItemForValue getItemForValue} function
@@ -1100,7 +1106,7 @@ declare module "sap/ui/mdc/field/FieldBaseDelegate" {
1100
1106
  */
1101
1107
  oField: FieldBase,
1102
1108
  /**
1103
- * Field help assigned to the {@link sap.ui.mdc.Field Field}, {@link sap.ui.mdc.FilterField FilterField},
1109
+ * Value help assigned to the {@link sap.ui.mdc.Field Field}, {@link sap.ui.mdc.FilterField FilterField},
1104
1110
  * or {@link sap.ui.mdc.MultiValueField MultiValueField} control
1105
1111
  */
1106
1112
  oValueHelp: ValueHelp,
@@ -1122,9 +1128,9 @@ declare module "sap/ui/mdc/field/FieldBaseDelegate" {
1122
1128
  */
1123
1129
  oBindingContext: Context,
1124
1130
  /**
1125
- * Name of the `ConditionModel`, if bound to one - NO LONGER USED
1131
+ * NO LONGER USED
1126
1132
  */
1127
- sConditionModelName: undefined,
1133
+ sDoNotUse: undefined,
1128
1134
  /**
1129
1135
  * Additional context information for this key
1130
1136
  */
@@ -1137,10 +1143,7 @@ declare module "sap/ui/mdc/field/FieldBaseDelegate" {
1137
1143
  * Type of the value
1138
1144
  */
1139
1145
  oType: Type
1140
- ):
1141
- | string
1142
- | /* was: sap.ui.mdc.valuehelp.ValueHelpItem */ any
1143
- | Promise<string | /* was: sap.ui.mdc.valuehelp.ValueHelpItem */ any>;
1146
+ ): string | ValueHelpItem | Promise<string | ValueHelpItem>;
1144
1147
  /**
1145
1148
  * Determines the description for a given key.
1146
1149
  * By default, this method calls the {@link sap.ui.mdc.ValueHelp#getItemForValue getItemForValue} function
@@ -1167,7 +1170,7 @@ declare module "sap/ui/mdc/field/FieldBaseDelegate" {
1167
1170
  */
1168
1171
  oField: FieldBase,
1169
1172
  /**
1170
- * Field help assigned to the {@link sap.ui.mdc.Field Field}, {@link sap.ui.mdc.FilterField FilterField},
1173
+ * Value help assigned to the {@link sap.ui.mdc.Field Field}, {@link sap.ui.mdc.FilterField FilterField},
1171
1174
  * or {@link sap.ui.mdc.MultiValueField MultiValueField} control
1172
1175
  */
1173
1176
  oValueHelp: ValueHelp,
@@ -1200,10 +1203,7 @@ declare module "sap/ui/mdc/field/FieldBaseDelegate" {
1200
1203
  * Type of the value
1201
1204
  */
1202
1205
  oType: Type
1203
- ):
1204
- | string
1205
- | /* was: sap.ui.mdc.valuehelp.ValueHelpItem */ any
1206
- | Promise<string | /* was: sap.ui.mdc.valuehelp.ValueHelpItem */ any>;
1206
+ ): string | ValueHelpItem | Promise<string | ValueHelpItem>;
1207
1207
  /**
1208
1208
  * Determines the key, description, and payload of a user input.
1209
1209
  * By default, this method calls the {@link sap.ui.mdc.ValueHelp#getItemForValue getItemForValue} function
@@ -1224,7 +1224,7 @@ declare module "sap/ui/mdc/field/FieldBaseDelegate" {
1224
1224
  */
1225
1225
  oField: FieldBase,
1226
1226
  /**
1227
- * Field help assigned to the {@link sap.ui.mdc.Field Field}, {@link sap.ui.mdc.FilterField FilterField},
1227
+ * Value help assigned to the {@link sap.ui.mdc.Field Field}, {@link sap.ui.mdc.FilterField FilterField},
1228
1228
  * or {@link sap.ui.mdc.MultiValueField MultiValueField} control
1229
1229
  */
1230
1230
  oValueHelp: ValueHelp,
@@ -1232,9 +1232,37 @@ declare module "sap/ui/mdc/field/FieldBaseDelegate" {
1232
1232
  * Configuration
1233
1233
  */
1234
1234
  oConfig?: ItemForValueConfiguration
1235
- ): /* was: sap.ui.mdc.valuehelp.ValueHelpItem */
1236
- | any
1237
- | Promise</* was: sap.ui.mdc.valuehelp.ValueHelpItem */ any>;
1235
+ ): ValueHelpItem | Promise<ValueHelpItem>;
1236
+ /**
1237
+ * Returns the index of a condition in an array of conditions.
1238
+ *
1239
+ * This function is called when a `Condition` is created by user input or value help selection to determine
1240
+ * if a similar `Condition` already exists. This is done to prevent duplicates.
1241
+ *
1242
+ * By default, if a `ValueHelp` exists, the `ValueHelp` logic is used to compare each condition. (See {@link module:sap/ui/mdc/ValueHelpDelegate.compareConditions ValueHelpDelegate.compareConditions})
1243
+ *
1244
+ * @ui5-protected Do not call from applications (only from related classes in the framework)
1245
+ *
1246
+ * @returns Index of the condition, -1 if not found
1247
+ */
1248
+ indexOfCondition(
1249
+ /**
1250
+ * `Field` control instance
1251
+ */
1252
+ oField: FieldBase,
1253
+ /**
1254
+ * Value help assigned to the `Field` or `FilterField` control
1255
+ */
1256
+ oValueHelp: ValueHelp,
1257
+ /**
1258
+ * Condition to check
1259
+ */
1260
+ oCondition: ConditionObject,
1261
+ /**
1262
+ * Array of conditions
1263
+ */
1264
+ aConditions: ConditionObject[]
1265
+ ): int;
1238
1266
  /**
1239
1267
  * Checks if entered text matches text found from value help
1240
1268
  *
@@ -1464,6 +1492,11 @@ declare module "sap/ui/mdc/FilterBarDelegate" {
1464
1492
  * **Note:** The result of this function must be kept stable throughout the lifecycle of your application.
1465
1493
  * Any changes of the returned values might result in undesired effects.
1466
1494
  *
1495
+ * **Note**: Existing properties (set via `sap.ui.mdc.filterbar.FilterBarBase#setPropertyInfo`) must not
1496
+ * be removed and their attributes must not be changed during the {@link module:sap/ui/mdc/FilterBarDelegate.fetchProperties fetchProperties }
1497
+ * callback. Otherwise validation errors might occur whenever personalization-related control features (such
1498
+ * as the opening of any personalization dialog) are activated.
1499
+ *
1467
1500
  *
1468
1501
  * @returns `Promise` that resolves into an array of property info objects
1469
1502
  */
@@ -1611,11 +1644,7 @@ declare module "sap/ui/mdc/LinkDelegate" {
1611
1644
  /**
1612
1645
  * Binding context of the `Link` control
1613
1646
  */
1614
- oBindingContext: Context | null | undefined,
1615
- /**
1616
- * InfoLog of the `Link` control
1617
- */
1618
- oInfoLog: /* was: sap.ui.mdc.link.Log */ any
1647
+ oBindingContext: Context | null | undefined
1619
1648
  ): Promise<null | LinkItem[]>;
1620
1649
  /**
1621
1650
  * Calculates and returns the type of link that is displayed.
@@ -1824,9 +1853,9 @@ declare module "sap/ui/mdc/odata/v4/TableDelegate" {
1824
1853
  */
1825
1854
  getInResultPropertyKeys(
1826
1855
  /**
1827
- * of the table
1856
+ * Instance of the table
1828
1857
  */
1829
- Instance: Table
1858
+ oTable: Table
1830
1859
  ): string[];
1831
1860
  /**
1832
1861
  * Updates the binding of the table with the binding info object returned from {@link module:sap/ui/mdc/TableDelegate.updateBindingInfo updateBindingInfo}.
@@ -2029,6 +2058,11 @@ declare module "sap/ui/mdc/TableDelegate" {
2029
2058
  * **Note:** The result of this function must be kept stable throughout the lifecycle of your application.
2030
2059
  * Any changes of the returned values might result in undesired effects.
2031
2060
  *
2061
+ * **Note**: Existing properties (set via `sap.ui.mdc.Table#setPropertyInfo`) must not be removed and their
2062
+ * attributes must not be changed during the {@link module:sap/ui/mdc/TableDelegate.fetchProperties fetchProperties }
2063
+ * callback. Otherwise validation errors might occur whenever personalization-related control features (such
2064
+ * as the opening of any personalization dialog) are activated.
2065
+ *
2032
2066
  * @ui5-protected Do not call from applications (only from related classes in the framework)
2033
2067
  *
2034
2068
  * @returns A `Promise` that resolves with the property information
@@ -2456,6 +2490,8 @@ declare module "sap/ui/mdc/ValueHelpDelegate" {
2456
2490
 
2457
2491
  import Content from "sap/ui/mdc/valuehelp/base/Content";
2458
2492
 
2493
+ import ValueHelpSelectionType from "sap/ui/mdc/enums/ValueHelpSelectionType";
2494
+
2459
2495
  import ValueHelpPropagationReason from "sap/ui/mdc/enums/ValueHelpPropagationReason";
2460
2496
 
2461
2497
  import Container from "sap/ui/mdc/valuehelp/base/Container";
@@ -2620,8 +2656,9 @@ declare module "sap/ui/mdc/ValueHelpDelegate" {
2620
2656
  /**
2621
2657
  * Returns filters that are used when updating the binding of the `ValueHelp`.
2622
2658
  * By default, this method returns a set of {@link sap.ui.model.Filter Filters} originating from an available
2623
- * {@link sap.ui.mdc.FilterBar FilterBar}, the delegate's own {@link #getFilterConditions}, and/or the {@link sap.ui.mdc.valuehelp.base.FilterableListContent#getFilterFields filterFields }
2624
- * configuration of the given {@link sap.ui.mdc.valuehelp.base.FilterableListContent FilterableListContent}.
2659
+ * {@link sap.ui.mdc.FilterBar FilterBar}, the delegate's own {@link module:sap/ui/mdc/ValueHelpDelegate.getFilterConditions getFilterConditions},
2660
+ * and/or the {@link sap.ui.mdc.valuehelp.base.FilterableListContent#getFilterFields filterFields} configuration
2661
+ * of the given {@link sap.ui.mdc.valuehelp.base.FilterableListContent FilterableListContent}.
2625
2662
  *
2626
2663
  * @since 1.121
2627
2664
  * @ui5-protected Do not call from applications (only from related classes in the framework)
@@ -2645,14 +2682,15 @@ declare module "sap/ui/mdc/ValueHelpDelegate" {
2645
2682
  * By default, this method searches and returns an entry from a set of relevant contexts of the given {@link sap.ui.mdc.valuehelp.base.ListContent ListContent}.
2646
2683
  *
2647
2684
  * To determine which columns are relevant for the search, the currently active displayMode {@link sap.ui.mdc.enums.FieldDisplay Display }
2648
- * of the connected control will be used. While a 'Value' configuration will lead to a 'key'-only search,
2649
- * 'DescriptionValue' leads to searching 'description' first and 'key' afterwards. Other modes work accordingly.
2685
+ * of the connected control will be used. While a `Value` configuration will lead to a 'key'-only search,
2686
+ * `DescriptionValue` leads to searching the description first and the key afterwards. Other modes work
2687
+ * the same way.
2650
2688
  *
2651
2689
  * For each relevant column all items are searched for an exact match first and again with a startsWith
2652
2690
  * filter afterwards, if necessary.
2653
2691
  *
2654
- * If the caseSensitive property is disabled, the letter case of the user's input and the corresponding
2655
- * column value are completely ignored. Whichever entry comes first, wins.
2692
+ * If the `caseSensitive` property is disabled, whichever entry comes first, wins, whether the user's input
2693
+ * is in lowercase or uppercase letters.
2656
2694
  *
2657
2695
  * {@link sap.ui.mdc.valuehelp.base.ListContent ListContent}
2658
2696
  *
@@ -2732,9 +2770,9 @@ declare module "sap/ui/mdc/ValueHelpDelegate" {
2732
2770
  ): boolean;
2733
2771
  /**
2734
2772
  * Determines is the filtering used for type-ahead is case sensitive.
2735
- * By default the value of the {@link sap.ui.mdc.base.ListContent#getCaseSensitive CaseSensitive} property
2736
- * of the content instance is returned. If `$search` or other methods are used this might depend on the
2737
- * backend logic.
2773
+ * By default the value of the {@link sap.ui.mdc.valuehelp.base.ListContent#getCaseSensitive CaseSensitive }
2774
+ * property of the content instance is returned. If `$search` or other methods are used this might depend
2775
+ * on the backend logic.
2738
2776
  *
2739
2777
  * @since 1.121.0
2740
2778
  *
@@ -2778,7 +2816,7 @@ declare module "sap/ui/mdc/ValueHelpDelegate" {
2778
2816
  *
2779
2817
  * @since 1.101.0
2780
2818
  *
2781
- * @returns oRestult Selection event configuration object
2819
+ * @returns oResult Selection event configuration object
2782
2820
  */
2783
2821
  modifySelectionBehaviour(
2784
2822
  /**
@@ -2796,11 +2834,11 @@ declare module "sap/ui/mdc/ValueHelpDelegate" {
2796
2834
  /**
2797
2835
  * Type of the selection change (add, remove)
2798
2836
  */
2799
- type: /* was: sap.ui.mdc.enums.ValueHelpSelectionType */ any;
2837
+ type: ValueHelpSelectionType | keyof typeof ValueHelpSelectionType;
2800
2838
  /**
2801
- * Array of changed conditions with structure {@link sap.ui.mdc.condition.ConditionObject ConditionObject}
2839
+ * Array of changed conditions
2802
2840
  */
2803
- conditions: object[];
2841
+ conditions: ConditionObject[];
2804
2842
  }
2805
2843
  ): object;
2806
2844
  /**
@@ -3404,7 +3442,7 @@ declare module "sap/ui/mdc/Chart" {
3404
3442
 
3405
3443
  /**
3406
3444
  * The `Chart` control creates a chart based on metadata and the configuration specified.
3407
- * **Note:** The inner chart needs to be assigned `ChartDelegate`.
3445
+ * **Note:** The inner chart needs to be created inside the `ChartDelegate`.
3408
3446
  *
3409
3447
  * @since 1.88
3410
3448
  * @experimental (since 1.88)
@@ -4279,9 +4317,9 @@ declare module "sap/ui/mdc/Chart" {
4279
4317
  */
4280
4318
  unitPath?: object;
4281
4319
  /**
4282
- * The timeUnit type for a TimeDimension
4320
+ * The `timeUnitType` type for a `TimeDimension`. If set, a `TimeDimension` is created instead of a `Dimension`
4283
4321
  */
4284
- timeUnitType?: object;
4322
+ timeUnitType?: string;
4285
4323
  };
4286
4324
 
4287
4325
  /**
@@ -4417,7 +4455,10 @@ declare module "sap/ui/mdc/Chart" {
4417
4455
  * Specifies the chart metadata.
4418
4456
  * **Note:** This property must not be bound.
4419
4457
  * **Note:** This property is exclusively used for handling SAPUI5 flexibility changes. Do not use it otherwise.
4420
- *
4458
+ * **Note**: Existing properties (set via `sap.ui.mdc.Chart#setPropertyInfo`) must not be removed and their
4459
+ * attributes must not be changed during the {@link module:sap/ui/mdc/ChartDelegate.fetchProperties fetchProperties }
4460
+ * callback. Otherwise validation errors might occur whenever personalization-related control features (such
4461
+ * as the opening of any personalization dialog) are activated.
4421
4462
  *
4422
4463
  * **Note**: For more information about the supported inner elements, see {@link sap.ui.mdc.chart.PropertyInfo PropertyInfo}.
4423
4464
  *
@@ -5496,8 +5537,7 @@ declare module "sap/ui/mdc/condition/Condition" {
5496
5537
  import ConditionValidated from "sap/ui/mdc/enums/ConditionValidated";
5497
5538
 
5498
5539
  /**
5499
- * Utilities to create conditions to be used in {@link sap.ui.mdc.FilterField FilterField}, {@link sap.ui.mdc.FilterBar FilterBar},
5500
- * or {@link sap.ui.mdc.condition.ConditionModel ConditionModel}.
5540
+ * Utilities to create conditions to be used in {@link sap.ui.mdc.FilterField FilterField} or {@link sap.ui.mdc.FilterBar FilterBar}.
5501
5541
  *
5502
5542
  * @since 1.61.0
5503
5543
  */
@@ -5526,7 +5566,7 @@ declare module "sap/ui/mdc/condition/Condition" {
5526
5566
  */
5527
5567
  oOutParameters: object,
5528
5568
  /**
5529
- * If set to `ConditionValidated.Validated`, the condition is validated (by the field help) and not shown
5569
+ * If set to `ConditionValidated.Validated`, the condition is validated (by the value help) and not shown
5530
5570
  * in the {@link sap.ui.mdc.valuehelp.content.Conditions Conditions} content
5531
5571
  */
5532
5572
  sValidated: ConditionValidated | keyof typeof ConditionValidated,
@@ -5555,7 +5595,7 @@ declare module "sap/ui/mdc/condition/Condition" {
5555
5595
  */
5556
5596
  oInParameters: object,
5557
5597
  /**
5558
- * If set to `ConditionValidated.Validated`, the condition is validated (by the field help) and not shown
5598
+ * If set to `ConditionValidated.Validated`, the condition is validated (by the value help) and not shown
5559
5599
  * in the {@link sap.ui.mdc.valuehelp.content.Conditions Conditions} content
5560
5600
  */
5561
5601
  sValidated: ConditionValidated | keyof typeof ConditionValidated,
@@ -5584,7 +5624,7 @@ declare module "sap/ui/mdc/condition/Condition" {
5584
5624
  */
5585
5625
  oOutParameters: object,
5586
5626
  /**
5587
- * If set to `ConditionValidated.Validated`, the condition is validated (by the field help) and not shown
5627
+ * If set to `ConditionValidated.Validated`, the condition is validated (by the value help) and not shown
5588
5628
  * in the {@link sap.ui.mdc.valuehelp.content.Conditions Conditions} content
5589
5629
  */
5590
5630
  sValidated: ConditionValidated | keyof typeof ConditionValidated,
@@ -5609,7 +5649,7 @@ declare module "sap/ui/mdc/condition/Condition" {
5609
5649
  */
5610
5650
  aValues: any[],
5611
5651
  /**
5612
- * If set to `ConditionValidated.Validated`, the condition is validated (by the field help) and not shown
5652
+ * If set to `ConditionValidated.Validated`, the condition is validated (by the value help) and not shown
5613
5653
  * in the {@link sap.ui.mdc.valuehelp.content.Conditions Conditions} content
5614
5654
  */
5615
5655
  sValidated: ConditionValidated | keyof typeof ConditionValidated,
@@ -5629,9 +5669,9 @@ declare module "sap/ui/mdc/condition/Condition" {
5629
5669
  */
5630
5670
  createItemCondition(
5631
5671
  /**
5632
- * Operator for the condition
5672
+ * Key value for the condition
5633
5673
  */
5634
- sKey: string,
5674
+ vKey: any,
5635
5675
  /**
5636
5676
  * Description of the operator
5637
5677
  */
@@ -5663,7 +5703,7 @@ declare module "sap/ui/mdc/condition/Condition" {
5663
5703
  operator: string;
5664
5704
  /**
5665
5705
  * Array of values of the condition. Depending on the `operator`, this contains one or more entries. The
5666
- * entries are sored in internal format regarding the used data type.
5706
+ * entries are stored in an internal format regarding the used data type.
5667
5707
  */
5668
5708
  values: any[];
5669
5709
  /**
@@ -5815,15 +5855,15 @@ declare module "sap/ui/mdc/condition/FilterOperatorUtil" {
5815
5855
  ): void;
5816
5856
  /**
5817
5857
  * Removes all given operators from the list of known operators.
5858
+ *
5859
+ * **Note**: `aOperators` can be the name of an {@link sap.ui.mdc.condition.Operator Operator}, the instance
5860
+ * itself, or multiple operators inside an array.
5818
5861
  */
5819
5862
  removeOperators(
5820
5863
  /**
5821
5864
  * Array of operators
5822
- *
5823
- * **Note**: `aOperators` can be the name of an {@link sap.ui.mdc.condition.Operator Operator}, the instance
5824
- * itself, or multiple operators inside an array.
5825
5865
  */
5826
- aOperators: Operator[]
5866
+ aOperators: Operator[] | Operator | string[]
5827
5867
  ): void;
5828
5868
  /**
5829
5869
  * Sets the default operator for the list of operators for a type.
@@ -5842,6 +5882,11 @@ declare module "sap/ui/mdc/condition/FilterOperatorUtil" {
5842
5882
  ): void;
5843
5883
  /**
5844
5884
  * Adds operators to the list of valid operators for a type.
5885
+ *
5886
+ * **Note**: `aOperators` can be the name of an {@link sap.ui.mdc.condition.Operator Operator}, the instance
5887
+ * itself, or multiple operators inside an array.
5888
+ *
5889
+ * **Note**: `vDefaultOperator` must exist as a valid operator for the type.
5845
5890
  */
5846
5891
  setOperatorsForType(
5847
5892
  /**
@@ -5851,13 +5896,9 @@ declare module "sap/ui/mdc/condition/FilterOperatorUtil" {
5851
5896
  /**
5852
5897
  * Operators
5853
5898
  */
5854
- aOperators: Operator[],
5899
+ aOperators: Operator[] | Operator | string[],
5855
5900
  /**
5856
5901
  * The default operator instance or default operator name
5857
- *
5858
- * **Note**: `aOperators` can be the name of an {@link sap.ui.mdc.condition.Operator Operator}, the instance
5859
- * itself, or multiple operators inside an array. **Note**: `vDefaultOperator` must exist as a valid operator
5860
- * for the type.
5861
5902
  */
5862
5903
  vDefaultOperator: Operator | string
5863
5904
  ): void;
@@ -5892,7 +5933,8 @@ declare module "sap/ui/mdc/condition/Operator" {
5892
5933
  */
5893
5934
  name: string;
5894
5935
  /**
5895
- * Alias names based on `BaseType`, used to map to `DynamicDateOption` if `DynamicDateRange` is used
5936
+ * Alias names based on {@link sap.ui.mdc.enums.BaseType BaseType}, used to map to {@link sap.m.DynamicDateOption DynamicDateOption }
5937
+ * if {@link sap.m.DynamicDateRange DynamicDateRange} is used to visualize the filter
5896
5938
  */
5897
5939
  alias?: object;
5898
5940
  /**
@@ -5942,16 +5984,26 @@ declare module "sap/ui/mdc/condition/Operator" {
5942
5984
  paramTypes?: string[];
5943
5985
  /**
5944
5986
  * String representation of the operator as a long text.
5945
- * If longText is not given , it is looked up in the resource bundle of the `sap.ui.mdc` library by the
5946
- * key `operators.{oConfiguration.name}.longText`
5987
+ * This text is shown in the operator dropdown of the value help.
5988
+ * If `longText` is not given , the `tokenText` is used, replacing the placeholders "{0}" and "{1}" with
5989
+ * "X" and "Y".
5947
5990
  */
5948
5991
  longText?: string;
5949
5992
  /**
5950
5993
  * String representation of the operator as a short text.
5951
- * If the token text is not given, it is looked up in the resource bundle of the `sap.ui.mdc` library by
5952
- * the key `operators.{oConfiguration.name}.tokenText`
5994
+ * This text is only needed if there any language dependent text should be shown on the token, like "Next
5995
+ * 5 days". (In this case `#tokenText#` is used in `tokenFormat`, `tokenTest`, or `tokenParse`.) For operators
5996
+ * just showing the value and a operator symbol, no token text is needed.
5997
+ * If the token text is not given, the `longText` is used.
5953
5998
  */
5954
5999
  tokenText?: string;
6000
+ /**
6001
+ * Object holding String representation of the operator as a long text for single basic types.
6002
+ * This text is shown in the operator dropdown of the value help.
6003
+ * This is needed if the text depends on the used data type. For example the "less than" operator should
6004
+ * be named "before" if a date or time type is used.
6005
+ */
6006
+ longTextForTypes?: object;
5955
6007
  /**
5956
6008
  * Pattern how different {@link sap.ui.mdc.enums.FieldDisplay displayFormats} are rendered
5957
6009
  */
@@ -5997,7 +6049,7 @@ declare module "sap/ui/mdc/condition/Operator" {
5997
6049
  */
5998
6050
  exclude?: boolean;
5999
6051
  /**
6000
- * If set, the user input for this operator needs to be validated using a field help
6052
+ * If set, the user input for this operator needs to be validated using a value help
6001
6053
  */
6002
6054
  validateInput?: boolean;
6003
6055
  /**
@@ -6011,7 +6063,24 @@ declare module "sap/ui/mdc/condition/Operator" {
6011
6063
  */
6012
6064
  group?: {
6013
6065
  /**
6014
- * Group ID for the operator.
6066
+ * Group ID for the operator. The following groups are available for the {@link sap.m.DynamicDateRange DynamicDateRange }
6067
+ * control:
6068
+ *
6069
+ * - 1 - Single Dates
6070
+ * - 2 - Date Ranges
6071
+ * - 3 - Weeks
6072
+ * - 4 - Months
6073
+ * - 5 - Quarters
6074
+ * - 6 - Years See {@link sap.m.DynamicDateRangeGroups DynamicDateRangeGroups}.
6075
+ * This only works for `FilterFields` with custom operators if `maxConditions=1` and no `valueHelp` is
6076
+ * assigned to the `FilterField`. Example:
6077
+ * group: undefined - if group is not specified; default behavior include/exclude group with id 1 and 2
6078
+ * will be created
6079
+ * group: {id : 1} - adds the operator to existing group 1 'Single Dates'
6080
+ * group: {id : 2, text: "new group"} - inserts a new group with id 2. Existing group 2 will be shifted
6081
+ * to 3, 4....
6082
+ * group: {id : 10, text: "new group at the end"} - adds a new group with id 10 and text "new group as
6083
+ * the end" to the end of all groups
6015
6084
  */
6016
6085
  id: string;
6017
6086
  /**
@@ -6020,24 +6089,7 @@ declare module "sap/ui/mdc/condition/Operator" {
6020
6089
  text?: string;
6021
6090
  };
6022
6091
  /**
6023
- * Function to determine the text copied into clipboard The following groups are available for the `DynamicDateRange`
6024
- * control:
6025
- *
6026
- * - 1 - Single Dates
6027
- * - 2 - Date Ranges
6028
- * - 3 - Weeks
6029
- * - 4 - Months
6030
- * - 5 - Quarters
6031
- * - 6 - Years See {@link sap.m.DynamicDateRangeGroups DynamicDateRangeGroups}.
6032
- * This only works for `FilterFields` with custom operators if `maxConditions=1` and no `valueHelp` is
6033
- * assigned to the `FilterField`. Example:
6034
- * group: undefined - if group is not specified; default behavior include/exclude group with id 1 and 2
6035
- * will be created
6036
- * group: {id : 1} - adds the operator to existing group 1 'Single Dates'
6037
- * group: {id : 2, text: "new group"} - inserts a new group with id 2. Existing group 2 will be shifted
6038
- * to 3, 4....
6039
- * group: {id : 10, text: "new group at the end"} - adds a new group with id 10 and text "new group as
6040
- * the end" to the end of all groups
6092
+ * Function to determine the text copied into clipboard
6041
6093
  */
6042
6094
  getTextForCopy?: Function;
6043
6095
  }
@@ -6128,21 +6180,21 @@ declare module "sap/ui/mdc/condition/RangeOperator" {
6128
6180
  export default class RangeOperator extends Operator {
6129
6181
  constructor(
6130
6182
  /**
6131
- * Included all parameters of {@link sap.ui.mdc.condition.Operator Operator} and adds some special ones
6183
+ * Includes all parameters of {@link sap.ui.mdc.condition.Operator Operator} and adds some special ones
6132
6184
  */
6133
6185
  oConfiguration: {
6134
6186
  /**
6135
- * additional array of labels for the values of the operator. Will be shown as placeholder text or label
6136
- * on the value fields.
6187
+ * Additional array of labels for the values of the operator. Will be shown as placeholder text or label
6188
+ * of the value fields.
6137
6189
  */
6138
- label?: string;
6190
+ label?: string[];
6139
6191
  /**
6140
- * function to calculate the date range of the operation. The function returns an array of UniversalDates.
6192
+ * Function to calculate the date range of the operation. The function returns an array of `UniversalDates`.
6141
6193
  * In case of a single `filterOperator` the array can return a single value.
6142
6194
  */
6143
6195
  calcRange: Function;
6144
6196
  /**
6145
- * function to format the date range.
6197
+ * Function to format the date range.
6146
6198
  */
6147
6199
  formatRange?: Function;
6148
6200
  /**
@@ -6779,7 +6831,41 @@ declare module "sap/ui/mdc/enums/ContentMode" {
6779
6831
  *
6780
6832
  * @since 1.115
6781
6833
  */
6782
- enum ContentMode {}
6834
+ enum ContentMode {
6835
+ /**
6836
+ * Display mode for single value
6837
+ */
6838
+ Display = "Display",
6839
+ /**
6840
+ * Display mode for multiline single value
6841
+ */
6842
+ DisplayMultiLine = "DisplayMultiLine",
6843
+ /**
6844
+ * Display mode for multiple values
6845
+ */
6846
+ DisplayMultiValue = "DisplayMultiValue",
6847
+ /**
6848
+ * Edit mode for single value
6849
+ */
6850
+ Edit = "Edit",
6851
+ /**
6852
+ * Edit mode for single value field if a field help is assigned To support field help, in some cases a different
6853
+ * control needs to be rendered.
6854
+ */
6855
+ EditForHelp = "EditForHelp",
6856
+ /**
6857
+ * Edit mode for multiple lines single value
6858
+ */
6859
+ EditMultiLine = "EditMultiLine",
6860
+ /**
6861
+ * Edit mode for multiple values
6862
+ */
6863
+ EditMultiValue = "EditMultiValue",
6864
+ /**
6865
+ * Edit mode for operator dependent controls This is used for single value and only one operator.
6866
+ */
6867
+ EditOperator = "EditOperator",
6868
+ }
6783
6869
  export default ContentMode;
6784
6870
  }
6785
6871
 
@@ -7497,17 +7583,17 @@ declare module "sap/ui/mdc/enums/OperatorName" {
7497
7583
 
7498
7584
  declare module "sap/ui/mdc/enums/OperatorOverwrite" {
7499
7585
  /**
7500
- * Enumeration of the `OperatorOverwrite` in `Operator`.
7586
+ * Enumeration of the {@link sap.ui.mdc.condition.Operator#OperatorOverwrite OperatorOverwrite} in {@link sap.ui.mdc.condition.Operator Operator}.
7501
7587
  *
7502
7588
  * @since 1.115
7503
7589
  */
7504
7590
  enum OperatorOverwrite {
7505
7591
  /**
7506
- * Overwrite the `getTypeText` function of the operator.
7592
+ * Overwrites the `getLongText` function of the operator.
7507
7593
  */
7508
7594
  getLongText = "getLongText",
7509
7595
  /**
7510
- * Overwrite the `getModelFilter` function of the operator.
7596
+ * Overwrites the `getModelFilter` function of the operator.
7511
7597
  */
7512
7598
  getModelFilter = "getModelFilter",
7513
7599
  }
@@ -7538,6 +7624,33 @@ declare module "sap/ui/mdc/enums/OperatorValueType" {
7538
7624
  export default OperatorValueType;
7539
7625
  }
7540
7626
 
7627
+ declare module "sap/ui/mdc/enums/ReasonMode" {
7628
+ /**
7629
+ * Enumeration of the possible reasons for the search event.
7630
+ *
7631
+ * @since 1.115
7632
+ */
7633
+ enum ReasonMode {
7634
+ /**
7635
+ * Enter pressed in filter field.
7636
+ */
7637
+ Enter = "Enter",
7638
+ /**
7639
+ * Go button pressed.
7640
+ */
7641
+ Go = "Go",
7642
+ /**
7643
+ * Used if the mentioned reasons are not applicable.
7644
+ */
7645
+ Unclear = "",
7646
+ /**
7647
+ * The applied variant is marked as Apply Automatically.
7648
+ */
7649
+ Variant = "Variant",
7650
+ }
7651
+ export default ReasonMode;
7652
+ }
7653
+
7541
7654
  declare module "sap/ui/mdc/enums/TableGrowingMode" {
7542
7655
  /**
7543
7656
  * Growing mode of the table.
@@ -7678,7 +7791,8 @@ declare module "sap/ui/mdc/enums/TableType" {
7678
7791
 
7679
7792
  declare module "sap/ui/mdc/enums/ValueHelpPropagationReason" {
7680
7793
  /**
7681
- * Enumeration of the propagation reason in the condition propagation callback of the {@link sap.ui.mdc.ValueHelp ValueHelp}
7794
+ * Enumeration of the propagation reason in the {@link sap.ui.mdc.ValueHelpDelegate#onConditionPropagation condition propagation callback }
7795
+ * of the {@link sap.ui.mdc.ValueHelp ValueHelp}
7682
7796
  *
7683
7797
  * @since 1.115
7684
7798
  */
@@ -7699,6 +7813,29 @@ declare module "sap/ui/mdc/enums/ValueHelpPropagationReason" {
7699
7813
  export default ValueHelpPropagationReason;
7700
7814
  }
7701
7815
 
7816
+ declare module "sap/ui/mdc/enums/ValueHelpSelectionType" {
7817
+ /**
7818
+ * Enumeration of the possible selection types in {@link sap.ui.mdc.ValueHelp ValueHelp}
7819
+ *
7820
+ * @since 1.115
7821
+ */
7822
+ enum ValueHelpSelectionType {
7823
+ /**
7824
+ * The given conditions are just added to the existing ones, if they don't already exist.
7825
+ */
7826
+ Add = "Add",
7827
+ /**
7828
+ * The given conditions are removed.
7829
+ */
7830
+ Remove = "Remove",
7831
+ /**
7832
+ * The given conditions are set and replace the existing ones.
7833
+ */
7834
+ Set = "Set",
7835
+ }
7836
+ export default ValueHelpSelectionType;
7837
+ }
7838
+
7702
7839
  declare module "sap/ui/mdc/Field" {
7703
7840
  import {
7704
7841
  default as FieldBase,
@@ -9416,11 +9553,10 @@ declare module "sap/ui/mdc/field/FieldBase" {
9416
9553
  *
9417
9554
  * Sets the conditions that represent the values of the field.
9418
9555
  *
9419
- * These should be bound to a {@link sap.ui.mdc.condition.ConditionModel ConditionModel} using the corresponding
9420
- * `fieldPath`.
9556
+ * These should be bound to a {@link sap.ui.mdc.FilterBar FilterBar} using the corresponding `propertyPath`.
9421
9557
  *
9422
9558
  * **Note:** For {@link sap.ui.mdc.FilterField FilterField} controls, the `conditions` property must be
9423
- * used to bind {@link sap.ui.mdc.FilterField FilterField} to a {@link sap.ui.mdc.condition.ConditionModel ConditionModel}.
9559
+ * used to bind {@link sap.ui.mdc.FilterField FilterField} to a {@link @link sap.ui.mdc.FilterBar FilterBar}.
9424
9560
  * For example, for a {@link sap.ui.mdc.FilterField FilterField} control inside a {@link sap.ui.mdc.FilterBar FilterBar }
9425
9561
  * control, the binding looks like this:
9426
9562
  * `conditions="{$filters>/conditions/propertyPath}"` with the following data:
@@ -9962,11 +10098,10 @@ declare module "sap/ui/mdc/field/FieldBase" {
9962
10098
  *
9963
10099
  * Sets the conditions that represent the values of the field.
9964
10100
  *
9965
- * These should be bound to a {@link sap.ui.mdc.condition.ConditionModel ConditionModel} using the corresponding
9966
- * `fieldPath`.
10101
+ * These should be bound to a {@link sap.ui.mdc.FilterBar FilterBar} using the corresponding `propertyPath`.
9967
10102
  *
9968
10103
  * **Note:** For {@link sap.ui.mdc.FilterField FilterField} controls, the `conditions` property must be
9969
- * used to bind {@link sap.ui.mdc.FilterField FilterField} to a {@link sap.ui.mdc.condition.ConditionModel ConditionModel}.
10104
+ * used to bind {@link sap.ui.mdc.FilterField FilterField} to a {@link @link sap.ui.mdc.FilterBar FilterBar}.
9970
10105
  * For example, for a {@link sap.ui.mdc.FilterField FilterField} control inside a {@link sap.ui.mdc.FilterBar FilterBar }
9971
10106
  * control, the binding looks like this:
9972
10107
  * `conditions="{$filters>/conditions/propertyPath}"` with the following data:
@@ -10555,11 +10690,10 @@ declare module "sap/ui/mdc/field/FieldBase" {
10555
10690
  /**
10556
10691
  * Sets the conditions that represent the values of the field.
10557
10692
  *
10558
- * These should be bound to a {@link sap.ui.mdc.condition.ConditionModel ConditionModel} using the corresponding
10559
- * `fieldPath`.
10693
+ * These should be bound to a {@link sap.ui.mdc.FilterBar FilterBar} using the corresponding `propertyPath`.
10560
10694
  *
10561
10695
  * **Note:** For {@link sap.ui.mdc.FilterField FilterField} controls, the `conditions` property must be
10562
- * used to bind {@link sap.ui.mdc.FilterField FilterField} to a {@link sap.ui.mdc.condition.ConditionModel ConditionModel}.
10696
+ * used to bind {@link sap.ui.mdc.FilterField FilterField} to a {@link @link sap.ui.mdc.FilterBar FilterBar}.
10563
10697
  * For example, for a {@link sap.ui.mdc.FilterField FilterField} control inside a {@link sap.ui.mdc.FilterBar FilterBar }
10564
10698
  * control, the binding looks like this:
10565
10699
  * `conditions="{$filters>/conditions/propertyPath}"` with the following data:
@@ -11318,8 +11452,6 @@ declare module "sap/ui/mdc/FilterBar" {
11318
11452
 
11319
11453
  import FilterBarP13nMode from "sap/ui/mdc/enums/FilterBarP13nMode";
11320
11454
 
11321
- import FilterField from "sap/ui/mdc/FilterField";
11322
-
11323
11455
  import { PropertyInfo as PropertyInfo1 } from "sap/ui/mdc/util/PropertyHelper";
11324
11456
 
11325
11457
  import { PropertyBindingInfo } from "sap/ui/base/ManagedObject";
@@ -11440,13 +11572,6 @@ declare module "sap/ui/mdc/FilterBar" {
11440
11572
  * @returns Value of property `showClearButton`
11441
11573
  */
11442
11574
  getShowClearButton(): boolean;
11443
- /**
11444
- * Sets the focus on the first filter in error state.
11445
- *
11446
- *
11447
- * @returns The first filter field in error state
11448
- */
11449
- setFocusOnFirstErroneousField(): FilterField | null;
11450
11575
  /**
11451
11576
  * Sets a new value for property {@link #getP13nMode p13nMode}.
11452
11577
  *
@@ -11568,6 +11693,8 @@ declare module "sap/ui/mdc/filterbar/FilterBarBase" {
11568
11693
 
11569
11694
  import Event from "sap/ui/base/Event";
11570
11695
 
11696
+ import ReasonMode from "sap/ui/mdc/enums/ReasonMode";
11697
+
11571
11698
  /**
11572
11699
  * The `FilterBarBase` control is the base for filter displaying controls in MDC.
11573
11700
  *
@@ -12037,6 +12164,13 @@ declare module "sap/ui/mdc/filterbar/FilterBarBase" {
12037
12164
  */
12038
12165
  oDelegate?: object
12039
12166
  ): this;
12167
+ /**
12168
+ * Sets the focus on the first filter in error state.
12169
+ *
12170
+ *
12171
+ * @returns The first filter field in error state
12172
+ */
12173
+ setFocusOnFirstErroneousField(): FilterField | null;
12040
12174
  /**
12041
12175
  * Sets a new value for property {@link #getLiveMode liveMode}.
12042
12176
  *
@@ -12211,7 +12345,10 @@ declare module "sap/ui/mdc/filterbar/FilterBarBase" {
12211
12345
  * **Note**: This property must not be bound.
12212
12346
  * **Note**: This property is used exclusively for SAPUI5 flexibility/ Fiori Elements. Do not use it otherwise.
12213
12347
  * **Node**: Please check {@link sap.ui.mdc.filterbar.PropertyInfo} for more information about the supported
12214
- * inner elements.
12348
+ * inner elements. **Note**: Existing properties (set via `sap.ui.mdc.filterbar.FilterBarBase#setPropertyInfo`)
12349
+ * must not be removed and their attributes must not be changed during the {@link module:sap/ui/mdc/FilterBarDelegate.fetchProperties fetchProperties }
12350
+ * callback. Otherwise validation errors might occur whenever personalization-related control features (such
12351
+ * as the opening of any personalization dialog) are activated.
12215
12352
  *
12216
12353
  * @since 1.97
12217
12354
  */
@@ -12307,7 +12444,7 @@ declare module "sap/ui/mdc/filterbar/FilterBarBase" {
12307
12444
  * - `{@link sap.ui.mdc.enums.ReasonMode.Go}`: Search is triggered based on pressing the Go button
12308
12445
  * - `{@link sap.ui.mdc.enums.ReasonMode.Unclear}`: Any other reasons for the search
12309
12446
  */
12310
- reason?: /* was: sap.ui.mdc.enums.ReasonMode */ any;
12447
+ reason?: ReasonMode;
12311
12448
  }
12312
12449
 
12313
12450
  /**
@@ -12486,9 +12623,9 @@ declare module "sap/ui/mdc/FilterField" {
12486
12623
 
12487
12624
  /**
12488
12625
  * The `FilterField` control is used to filter data based on the conditions. The conditions are managed
12489
- * in the corresponding {@link sap.ui.mdc.condition.ConditionModel ConditionModel}. That is why the `conditions`
12490
- * property must be bound to the related conditions in the {@link sap.ui.mdc.condition.ConditionModel ConditionModel}.
12491
- * The type of this data must be defined in the `dataType` property.
12626
+ * in the corresponding {@link sap.ui.mdc.FilterBar FilterBar}. That is why the `conditions` property must
12627
+ * be bound to the related conditions in the {@link sap.ui.mdc.FilterBar FilterBar}. The type of this data
12628
+ * must be defined in the `dataType` property.
12492
12629
  *
12493
12630
  * Based on the data type settings, a default control is rendered by the `FilterField` as follows:
12494
12631
  *
@@ -12618,7 +12755,7 @@ declare module "sap/ui/mdc/FilterField" {
12618
12755
  * When called, the context of the event handler (its `this`) will be bound to `oListener` if specified,
12619
12756
  * otherwise it will be bound to this `sap.ui.mdc.FilterField` itself.
12620
12757
  *
12621
- * This event is fired when the `value` property of the field is changed.
12758
+ * This event is fired when the `conditions` property of the `FilterField` is changed by a user interaction.
12622
12759
  *
12623
12760
  * **Note** This event is only triggered if the used content control has a change event.
12624
12761
  *
@@ -12646,7 +12783,7 @@ declare module "sap/ui/mdc/FilterField" {
12646
12783
  * When called, the context of the event handler (its `this`) will be bound to `oListener` if specified,
12647
12784
  * otherwise it will be bound to this `sap.ui.mdc.FilterField` itself.
12648
12785
  *
12649
- * This event is fired when the `value` property of the field is changed.
12786
+ * This event is fired when the `conditions` property of the `FilterField` is changed by a user interaction.
12650
12787
  *
12651
12788
  * **Note** This event is only triggered if the used content control has a change event.
12652
12789
  *
@@ -12917,7 +13054,7 @@ declare module "sap/ui/mdc/FilterField" {
12917
13054
  additionalDataType?: object | PropertyBindingInfo | `{${string}}`;
12918
13055
 
12919
13056
  /**
12920
- * This event is fired when the `value` property of the field is changed.
13057
+ * This event is fired when the `conditions` property of the `FilterField` is changed by a user interaction.
12921
13058
  *
12922
13059
  * **Note** This event is only triggered if the used content control has a change event.
12923
13060
  */
@@ -13055,43 +13192,18 @@ declare module "sap/ui/mdc/Link" {
13055
13192
  * @returns Metadata object describing this class
13056
13193
  */
13057
13194
  static getMetadata(): ElementMetadata;
13058
- /**
13059
- * Retrieves the relevant metadata for the panel and returns a property info array.
13060
- *
13061
- * @ui5-protected Do not call from applications (only from related classes in the framework)
13062
- *
13063
- * @returns Array of copied property info
13064
- */
13065
- static retrieveAllMetadata(
13066
- /**
13067
- * Instance of a `Panel` control
13068
- */
13069
- oPanel: /* was: sap.ui.mdc.link.Panel */ any
13070
- ): object[];
13071
- /**
13072
- * Retrieves the items that are initially part of the baseline which is used when a reset is done.
13073
- *
13074
- * @ui5-protected Do not call from applications (only from related classes in the framework)
13075
- *
13076
- * @returns Array containing the `ID` and `visible` property of every {@link sap.ui.mdc.link.LinkItem}
13077
- */
13078
- static retrieveBaseline(
13079
- /**
13080
- * Instance of a `Panel` control
13081
- */
13082
- oPanel: /* was: sap.ui.mdc.link.Panel */ any
13083
- ): BaseLineObject[];
13084
13195
  /**
13085
13196
  * Gets current value of property {@link #getDelegate delegate}.
13086
13197
  *
13087
- * Object related to the `Delegate` module that provides the required APIs to execute model-specific logic.
13198
+ * Object related to the `LinkDelegate` module that provides the required APIs to execute model-specific
13199
+ * logic.
13088
13200
  * The object has the following properties:
13089
- * - `name` defines the path to the `Delegate` module
13201
+ * - `name` defines the path to the `LinkDelegate` module
13090
13202
  * - `payload` (optional) defines application-specific information that can be used in the given delegate
13091
13203
  * Sample delegate object:
13092
13204
  * ```javascript
13093
13205
  * {
13094
- * name: "sap/ui/mdc/BaseDelegate",
13206
+ * name: "sap/ui/mdc/LinkDelegate",
13095
13207
  * payload: {}
13096
13208
  * }```
13097
13209
  * **Note:** Ensure that the related file can be requested (any required library has to be loaded before
@@ -13145,14 +13257,15 @@ declare module "sap/ui/mdc/Link" {
13145
13257
  /**
13146
13258
  * Sets a new value for property {@link #getDelegate delegate}.
13147
13259
  *
13148
- * Object related to the `Delegate` module that provides the required APIs to execute model-specific logic.
13260
+ * Object related to the `LinkDelegate` module that provides the required APIs to execute model-specific
13261
+ * logic.
13149
13262
  * The object has the following properties:
13150
- * - `name` defines the path to the `Delegate` module
13263
+ * - `name` defines the path to the `LinkDelegate` module
13151
13264
  * - `payload` (optional) defines application-specific information that can be used in the given delegate
13152
13265
  * Sample delegate object:
13153
13266
  * ```javascript
13154
13267
  * {
13155
- * name: "sap/ui/mdc/BaseDelegate",
13268
+ * name: "sap/ui/mdc/LinkDelegate",
13156
13269
  * payload: {}
13157
13270
  * }```
13158
13271
  * **Note:** Ensure that the related file can be requested (any required library has to be loaded before
@@ -13272,14 +13385,15 @@ declare module "sap/ui/mdc/Link" {
13272
13385
  enablePersonalization?: boolean | PropertyBindingInfo | `{${string}}`;
13273
13386
 
13274
13387
  /**
13275
- * Object related to the `Delegate` module that provides the required APIs to execute model-specific logic.
13388
+ * Object related to the `LinkDelegate` module that provides the required APIs to execute model-specific
13389
+ * logic.
13276
13390
  * The object has the following properties:
13277
- * - `name` defines the path to the `Delegate` module
13391
+ * - `name` defines the path to the `LinkDelegate` module
13278
13392
  * - `payload` (optional) defines application-specific information that can be used in the given delegate
13279
13393
  * Sample delegate object:
13280
13394
  * ```javascript
13281
13395
  * {
13282
- * name: "sap/ui/mdc/BaseDelegate",
13396
+ * name: "sap/ui/mdc/LinkDelegate",
13283
13397
  * payload: {}
13284
13398
  * }```
13285
13399
  * **Note:** Ensure that the related file can be requested (any required library has to be loaded before
@@ -13299,6 +13413,8 @@ declare module "sap/ui/mdc/Link" {
13299
13413
  declare module "sap/ui/mdc/link/LinkItem" {
13300
13414
  import { default as UI5Element, $ElementSettings } from "sap/ui/core/Element";
13301
13415
 
13416
+ import { URI } from "sap/ui/core/library";
13417
+
13302
13418
  import ElementMetadata from "sap/ui/core/ElementMetadata";
13303
13419
 
13304
13420
  import { PropertyBindingInfo } from "sap/ui/base/ManagedObject";
@@ -13400,7 +13516,7 @@ declare module "sap/ui/mdc/link/LinkItem" {
13400
13516
  *
13401
13517
  * @returns Value of property `icon`
13402
13518
  */
13403
- getIcon(): string;
13519
+ getIcon(): URI;
13404
13520
  /**
13405
13521
  * Gets current value of property {@link #getInitiallyVisible initiallyVisible}.
13406
13522
  *
@@ -13506,7 +13622,7 @@ declare module "sap/ui/mdc/link/LinkItem" {
13506
13622
  /**
13507
13623
  * New value for property `icon`
13508
13624
  */
13509
- sIcon: string
13625
+ sIcon: URI
13510
13626
  ): this;
13511
13627
  /**
13512
13628
  * Sets a new value for property {@link #getInitiallyVisible initiallyVisible}.
@@ -13643,7 +13759,7 @@ declare module "sap/ui/mdc/link/LinkItem" {
13643
13759
  /**
13644
13760
  * Defines the icon of the item.
13645
13761
  */
13646
- icon?: string | PropertyBindingInfo;
13762
+ icon?: URI | PropertyBindingInfo | `{${string}}`;
13647
13763
 
13648
13764
  /**
13649
13765
  * Determines the initial visibility of the `LinkItem`. If set to `true`, the item will appear on the `Popover`
@@ -16387,7 +16503,10 @@ declare module "sap/ui/mdc/Table" {
16387
16503
  * no effect.
16388
16504
  *
16389
16505
  * **Note**: This property must not be bound. **Note**: This property is used exclusively for SAPUI5 flexibility
16390
- * / Fiori Elements. Do not use it otherwise.
16506
+ * / Fiori Elements. Do not use it otherwise. **Note**: Existing properties (set via `sap.ui.mdc.Table#setPropertyInfo`)
16507
+ * must not be removed and their attributes must not be changed during the {@link module:sap/ui/mdc/TableDelegate.fetchProperties fetchProperties }
16508
+ * callback. Otherwise validation errors might occur whenever personalization-related control features (such
16509
+ * as the opening of any personalization dialog) are activated.
16391
16510
  *
16392
16511
  * @since 1.111
16393
16512
  */
@@ -18363,6 +18482,25 @@ declare module "sap/ui/mdc/table/GridTableType" {
18363
18482
  * @returns Value of property `rowCountMode`
18364
18483
  */
18365
18484
  getRowCountMode(): TableRowCountMode | keyof typeof TableRowCountMode;
18485
+ /**
18486
+ * Gets current value of property {@link #getScrollThreshold scrollThreshold}.
18487
+ *
18488
+ * Number of records to be requested from the model when the user scrolls through the table.
18489
+ *
18490
+ * The property defines how many additional (not yet visible) data records from the back-end system are
18491
+ * pre-fetched during scrolling. If the `scrollThreshold` is lower than the number of visible rows, the
18492
+ * number of visible rows is used as the `scrollThreshold`. If the value is 0, thresholding is disabled.
18493
+ *
18494
+ * **Note:** This property only takes effect if it is set to a positive integer value. Otherwise the `threshold`
18495
+ * property is used.
18496
+ *
18497
+ * Default value is `-1`.
18498
+ *
18499
+ * @since 1.128
18500
+ *
18501
+ * @returns Value of property `scrollThreshold`
18502
+ */
18503
+ getScrollThreshold(): int;
18366
18504
  /**
18367
18505
  * Gets current value of property {@link #getSelectionLimit selectionLimit}.
18368
18506
  *
@@ -18451,6 +18589,32 @@ declare module "sap/ui/mdc/table/GridTableType" {
18451
18589
  */
18452
18590
  sRowCountMode?: TableRowCountMode | keyof typeof TableRowCountMode
18453
18591
  ): this;
18592
+ /**
18593
+ * Sets a new value for property {@link #getScrollThreshold scrollThreshold}.
18594
+ *
18595
+ * Number of records to be requested from the model when the user scrolls through the table.
18596
+ *
18597
+ * The property defines how many additional (not yet visible) data records from the back-end system are
18598
+ * pre-fetched during scrolling. If the `scrollThreshold` is lower than the number of visible rows, the
18599
+ * number of visible rows is used as the `scrollThreshold`. If the value is 0, thresholding is disabled.
18600
+ *
18601
+ * **Note:** This property only takes effect if it is set to a positive integer value. Otherwise the `threshold`
18602
+ * property is used.
18603
+ *
18604
+ * When called with a value of `null` or `undefined`, the default value of the property will be restored.
18605
+ *
18606
+ * Default value is `-1`.
18607
+ *
18608
+ * @since 1.128
18609
+ *
18610
+ * @returns Reference to `this` in order to allow method chaining
18611
+ */
18612
+ setScrollThreshold(
18613
+ /**
18614
+ * New value for property `scrollThreshold`
18615
+ */
18616
+ iScrollThreshold?: int
18617
+ ): this;
18454
18618
  /**
18455
18619
  * Sets a new value for property {@link #getSelectionLimit selectionLimit}.
18456
18620
  *
@@ -18541,6 +18705,20 @@ declare module "sap/ui/mdc/table/GridTableType" {
18541
18705
  * Defines the number of fixed columns.
18542
18706
  */
18543
18707
  fixedColumnCount?: int | PropertyBindingInfo | `{${string}}`;
18708
+
18709
+ /**
18710
+ * Number of records to be requested from the model when the user scrolls through the table.
18711
+ *
18712
+ * The property defines how many additional (not yet visible) data records from the back-end system are
18713
+ * pre-fetched during scrolling. If the `scrollThreshold` is lower than the number of visible rows, the
18714
+ * number of visible rows is used as the `scrollThreshold`. If the value is 0, thresholding is disabled.
18715
+ *
18716
+ * **Note:** This property only takes effect if it is set to a positive integer value. Otherwise the `threshold`
18717
+ * property is used.
18718
+ *
18719
+ * @since 1.128
18720
+ */
18721
+ scrollThreshold?: int | PropertyBindingInfo | `{${string}}`;
18544
18722
  }
18545
18723
  }
18546
18724
 
@@ -20180,6 +20358,9 @@ declare module "sap/ui/mdc/ValueHelp" {
20180
20358
  * is found, the user input is set to the field if the used data type allows this. (A type parsing error
20181
20359
  * is shown if the user input adheres to the requirements of the used data type.)
20182
20360
  *
20361
+ * **Note:** The input is validated and compared against the content assigned to the `typeahead` aggregation.
20362
+ * If no content is assigned to the `typeahead` aggregation, the input is not validated.
20363
+ *
20183
20364
  * Default value is `true`.
20184
20365
  *
20185
20366
  *
@@ -20251,6 +20432,9 @@ declare module "sap/ui/mdc/ValueHelp" {
20251
20432
  * is found, the user input is set to the field if the used data type allows this. (A type parsing error
20252
20433
  * is shown if the user input adheres to the requirements of the used data type.)
20253
20434
  *
20435
+ * **Note:** The input is validated and compared against the content assigned to the `typeahead` aggregation.
20436
+ * If no content is assigned to the `typeahead` aggregation, the input is not validated.
20437
+ *
20254
20438
  * When called with a value of `null` or `undefined`, the default value of the property will be restored.
20255
20439
  *
20256
20440
  * Default value is `true`.
@@ -20330,6 +20514,25 @@ declare module "sap/ui/mdc/ValueHelp" {
20330
20514
  control: Control;
20331
20515
  };
20332
20516
 
20517
+ /**
20518
+ * Configuration object type for normalized definition of a `ValueHelpItem`.
20519
+ */
20520
+ export type ValueHelpItem = {
20521
+ /**
20522
+ * Key
20523
+ */
20524
+ key: any;
20525
+ /**
20526
+ * Description
20527
+ */
20528
+ description?: any;
20529
+ /**
20530
+ * Payload of the condition. Set by application. Data needs to be stringified. (as stored and loaded in
20531
+ * variants)
20532
+ */
20533
+ payload?: object;
20534
+ };
20535
+
20333
20536
  /**
20334
20537
  * Describes the settings that can be provided to the ValueHelp constructor.
20335
20538
  */
@@ -20359,6 +20562,9 @@ declare module "sap/ui/mdc/ValueHelp" {
20359
20562
  * If this property is not set, the user input is still checked against the value help. But if no entry
20360
20563
  * is found, the user input is set to the field if the used data type allows this. (A type parsing error
20361
20564
  * is shown if the user input adheres to the requirements of the used data type.)
20565
+ *
20566
+ * **Note:** The input is validated and compared against the content assigned to the `typeahead` aggregation.
20567
+ * If no content is assigned to the `typeahead` aggregation, the input is not validated.
20362
20568
  */
20363
20569
  validateInput?: boolean | PropertyBindingInfo | `{${string}}`;
20364
20570
 
@@ -20606,6 +20812,8 @@ declare module "sap/ui/mdc/valuehelp/base/Container" {
20606
20812
  AggregationBindingInfo,
20607
20813
  } from "sap/ui/base/ManagedObject";
20608
20814
 
20815
+ import ValueHelpSelectionType from "sap/ui/mdc/enums/ValueHelpSelectionType";
20816
+
20609
20817
  /**
20610
20818
  * Container for the {@link sap.ui.mdc.ValueHelp ValueHelp} element.
20611
20819
  *
@@ -21187,7 +21395,7 @@ declare module "sap/ui/mdc/valuehelp/base/Container" {
21187
21395
  /**
21188
21396
  * Type of the selection change (add, remove)
21189
21397
  */
21190
- type?: /* was: sap.ui.mdc.enums.ValueHelpSelectionType */ any;
21398
+ type?: ValueHelpSelectionType | keyof typeof ValueHelpSelectionType;
21191
21399
 
21192
21400
  /**
21193
21401
  * Changed conditions
@@ -21276,6 +21484,8 @@ declare module "sap/ui/mdc/valuehelp/base/Content" {
21276
21484
 
21277
21485
  import Event from "sap/ui/base/Event";
21278
21486
 
21487
+ import ValueHelpSelectionType from "sap/ui/mdc/enums/ValueHelpSelectionType";
21488
+
21279
21489
  /**
21280
21490
  * Content for the {@link sap.ui.mdc.valuehelp.base.Container Container} element.
21281
21491
  *
@@ -21741,7 +21951,7 @@ declare module "sap/ui/mdc/valuehelp/base/Content" {
21741
21951
  /**
21742
21952
  * Type of the selection change (add, remove)
21743
21953
  */
21744
- type?: /* was: sap.ui.mdc.enums.ValueHelpSelectionType */ any;
21954
+ type?: ValueHelpSelectionType | keyof typeof ValueHelpSelectionType;
21745
21955
 
21746
21956
  /**
21747
21957
  * Changed conditions
@@ -21821,8 +22031,6 @@ declare module "sap/ui/mdc/valuehelp/base/FilterableListContent" {
21821
22031
 
21822
22032
  import FilterBar from "sap/ui/mdc/valuehelp/FilterBar";
21823
22033
 
21824
- import Context from "sap/ui/model/Context";
21825
-
21826
22034
  import {
21827
22035
  AggregationBindingInfo,
21828
22036
  PropertyBindingInfo,
@@ -21979,7 +22187,7 @@ declare module "sap/ui/mdc/valuehelp/base/FilterableListContent" {
21979
22187
  *
21980
22188
  * Default value is `empty string`.
21981
22189
  *
21982
- * @deprecated (since 1.120.2) - please see `{@link module:sap/ui/mdc/ValueHelpDelegate.isSearchSupported isSearchSupported}`
22190
+ * @deprecated (since 1.120.2) - replaced by {@link module:sap/ui/mdc/ValueHelpDelegate.isSearchSupported isSearchSupported}
21983
22191
  *
21984
22192
  * @returns Value of property `filterFields`
21985
22193
  */
@@ -21997,23 +22205,6 @@ declare module "sap/ui/mdc/valuehelp/base/FilterableListContent" {
21997
22205
  * @returns Value of property `group`
21998
22206
  */
21999
22207
  getGroup(): string;
22000
- /**
22001
- * Gets an item for a `BindingContext`.
22002
- *
22003
- * @ui5-protected Do not call from applications (only from related classes in the framework)
22004
- *
22005
- * @returns Item object containing `key`, `description`, and `payload`
22006
- */
22007
- getItemFromContext(
22008
- /**
22009
- * BindingContext
22010
- */
22011
- oBindingContext: Context,
22012
- /**
22013
- * Options
22014
- */
22015
- oOptions?: object
22016
- ): object;
22017
22208
  /**
22018
22209
  * Gets current value of property {@link #getKeyPath keyPath}.
22019
22210
  *
@@ -22102,7 +22293,7 @@ declare module "sap/ui/mdc/valuehelp/base/FilterableListContent" {
22102
22293
  *
22103
22294
  * Default value is `empty string`.
22104
22295
  *
22105
- * @deprecated (since 1.120.2) - please see `{@link module:sap/ui/mdc/ValueHelpDelegate.isSearchSupported isSearchSupported}`
22296
+ * @deprecated (since 1.120.2) - replaced by {@link module:sap/ui/mdc/ValueHelpDelegate.isSearchSupported isSearchSupported}
22106
22297
  *
22107
22298
  * @returns Reference to `this` in order to allow method chaining
22108
22299
  */
@@ -22169,7 +22360,7 @@ declare module "sap/ui/mdc/valuehelp/base/FilterableListContent" {
22169
22360
  *
22170
22361
  * If it is empty, no suggestion is available.
22171
22362
  *
22172
- * @deprecated (since 1.120.2) - please see `{@link module:sap/ui/mdc/ValueHelpDelegate.isSearchSupported isSearchSupported}`
22363
+ * @deprecated (since 1.120.2) - replaced by {@link module:sap/ui/mdc/ValueHelpDelegate.isSearchSupported isSearchSupported}
22173
22364
  */
22174
22365
  filterFields?: string | PropertyBindingInfo;
22175
22366
 
@@ -22205,6 +22396,8 @@ declare module "sap/ui/mdc/valuehelp/base/ListContent" {
22205
22396
  $ContentSettings,
22206
22397
  } from "sap/ui/mdc/valuehelp/base/Content";
22207
22398
 
22399
+ import Context from "sap/ui/model/Context";
22400
+
22208
22401
  import ListBinding from "sap/ui/model/ListBinding";
22209
22402
 
22210
22403
  import ElementMetadata from "sap/ui/core/ElementMetadata";
@@ -22305,6 +22498,23 @@ declare module "sap/ui/mdc/valuehelp/base/ListContent" {
22305
22498
  * @returns Content description path
22306
22499
  */
22307
22500
  getDescriptionPath(): string;
22501
+ /**
22502
+ * Gets an item for a `BindingContext`.
22503
+ *
22504
+ * @ui5-protected Do not call from applications (only from related classes in the framework)
22505
+ *
22506
+ * @returns Item object containing `key`, `description`, and `payload`
22507
+ */
22508
+ getItemFromContext(
22509
+ /**
22510
+ * BindingContext
22511
+ */
22512
+ oBindingContext: Context,
22513
+ /**
22514
+ * Options
22515
+ */
22516
+ oOptions?: object
22517
+ ): object;
22308
22518
  /**
22309
22519
  * Gets current keyPath of the content. **Note:** Every listcontent must implement this method.
22310
22520
  *
@@ -22603,10 +22813,14 @@ declare module "sap/ui/mdc/valuehelp/content/Conditions" {
22603
22813
  * Optional `FieldHelp`.
22604
22814
  *
22605
22815
  * This is an association that allows the usage of one `FieldHelp` instance for the value fields for the
22606
- * `Conditions`. **Note:** The value fields on the conditions UI cannot be accessed from outside. The fields
22607
- * are single-value input, and the display is always set to `FieldDisplay.Value`. Only a `ValueHelp>/code>
22608
- * with a TypeAhead` and a single-selection `MTable` can be used. **Note:** For `Boolean`, `Date`,
22609
- * or `Time` types, no `FieldHelp` should be added, but a default `FieldHelp` used instead.
22816
+ * `Conditions`.
22817
+ *
22818
+ * **Note:** The value fields on the conditions UI cannot be accessed from outside. The fields are single-value
22819
+ * input, and the display is always set to `FieldDisplay.Value`. Only a `ValueHelp` with a `TypeAhead` and
22820
+ * a single-selection `MTable` can be used.
22821
+ *
22822
+ * **Note:** For `Boolean`, `Date`, or `Time` types, no `FieldHelp` should be added, but a default `FieldHelp`
22823
+ * used instead.
22610
22824
  *
22611
22825
  * @deprecated (since 1.114.0) - replaced by {@link #setValueHelp valueHelp} association
22612
22826
  */
@@ -22619,8 +22833,8 @@ declare module "sap/ui/mdc/valuehelp/content/Conditions" {
22619
22833
  * `Conditions`.
22620
22834
  *
22621
22835
  * **Note:** The value fields on the conditions UI cannot be accessed from outside. The fields are single-value
22622
- * input, and the display is always set to `FieldDisplay.Value`. Only a `ValueHelp>/code> with a TypeAhead`
22623
- * and a single-selection `MTable` can be used.
22836
+ * input, and the display is always set to `FieldDisplay.Value`. Only a `ValueHelp` with a `TypeAhead` and
22837
+ * a single-selection `MTable` can be used.
22624
22838
  *
22625
22839
  * **Note:** For `Boolean`, `Date`, or `Time` types, no `ValueHelp` should be added, but a default `ValueHelp`
22626
22840
  * used instead.
@@ -23731,7 +23945,7 @@ declare module "sap/ui/mdc/valuehelp/FilterBar" {
23731
23945
  * Sample delegate object:
23732
23946
  * ```javascript
23733
23947
  * {
23734
- * name: "sap/ui/mdc/BaseDelegate",
23948
+ * name: "sap/ui/valuehelp/FilterBarDelegate",
23735
23949
  * payload: {}
23736
23950
  * }```
23737
23951
  * **Note:** Ensure that the related file can be requested (any required library has to be loaded before
@@ -23778,7 +23992,7 @@ declare module "sap/ui/mdc/valuehelp/FilterBar" {
23778
23992
  * Sample delegate object:
23779
23993
  * ```javascript
23780
23994
  * {
23781
- * name: "sap/ui/mdc/BaseDelegate",
23995
+ * name: "sap/ui/valuehelp/FilterBarDelegate",
23782
23996
  * payload: {}
23783
23997
  * }```
23784
23998
  * **Note:** Ensure that the related file can be requested (any required library has to be loaded before
@@ -23849,7 +24063,7 @@ declare module "sap/ui/mdc/valuehelp/FilterBar" {
23849
24063
  * Sample delegate object:
23850
24064
  * ```javascript
23851
24065
  * {
23852
- * name: "sap/ui/mdc/BaseDelegate",
24066
+ * name: "sap/ui/valuehelp/FilterBarDelegate",
23853
24067
  * payload: {}
23854
24068
  * }```
23855
24069
  * **Note:** Ensure that the related file can be requested (any required library has to be loaded before