@openui5/types 1.136.3 → 1.139.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,4 +1,4 @@
1
- // For Library Version: 1.136.3
1
+ // For Library Version: 1.139.0
2
2
 
3
3
  declare module "sap/ui/mdc/AggregationBaseDelegate" {
4
4
  import BaseDelegate from "sap/ui/mdc/BaseDelegate";
@@ -1076,7 +1076,11 @@ declare module "sap/ui/mdc/field/FieldBaseDelegate" {
1076
1076
  /**
1077
1077
  * Type of the value
1078
1078
  */
1079
- oType: Type
1079
+ oType: Type,
1080
+ /**
1081
+ * If `true`, the connected control could be left empty (without conditions)
1082
+ */
1083
+ bEmptyAllowed: boolean
1080
1084
  ): string | ValueHelpItem | Promise<string | ValueHelpItem>;
1081
1085
  /**
1082
1086
  * Determines the description for a given key.
@@ -1140,7 +1144,11 @@ declare module "sap/ui/mdc/field/FieldBaseDelegate" {
1140
1144
  /**
1141
1145
  * Type of the value
1142
1146
  */
1143
- oType: Type
1147
+ oType: Type,
1148
+ /**
1149
+ * If `true`, the connected control could be left empty (without conditions)
1150
+ */
1151
+ bEmptyAllowed: boolean
1144
1152
  ): string | ValueHelpItem | Promise<string | ValueHelpItem>;
1145
1153
  /**
1146
1154
  * Determines the description for a given key.
@@ -1204,7 +1212,11 @@ declare module "sap/ui/mdc/field/FieldBaseDelegate" {
1204
1212
  /**
1205
1213
  * Type of the value
1206
1214
  */
1207
- oType: Type
1215
+ oType: Type,
1216
+ /**
1217
+ * If `true`, the connected control could be left empty (without conditions)
1218
+ */
1219
+ bEmptyAllowed: boolean
1208
1220
  ): string | ValueHelpItem | Promise<string | ValueHelpItem>;
1209
1221
  /**
1210
1222
  * Determines the description for a given key.
@@ -1264,7 +1276,11 @@ declare module "sap/ui/mdc/field/FieldBaseDelegate" {
1264
1276
  /**
1265
1277
  * Type of the value
1266
1278
  */
1267
- oType: Type
1279
+ oType: Type,
1280
+ /**
1281
+ * If `true`, the connected control could be left empty (without conditions)
1282
+ */
1283
+ bEmptyAllowed: boolean
1268
1284
  ): string | ValueHelpItem | Promise<string | ValueHelpItem>;
1269
1285
  /**
1270
1286
  * Determines the key, description, and payload of a user input.
@@ -1842,6 +1858,7 @@ declare module "sap/ui/mdc/odata/v4/TableDelegate" {
1842
1858
 
1843
1859
  import {
1844
1860
  default as Table,
1861
+ ComplexPropertyInfo,
1845
1862
  PropertyInfo as PropertyInfo1,
1846
1863
  } from "sap/ui/mdc/Table";
1847
1864
 
@@ -1903,7 +1920,7 @@ declare module "sap/ui/mdc/odata/v4/TableDelegate" {
1903
1920
  * Instance of the table
1904
1921
  */
1905
1922
  oTable: Table
1906
- ): Promise<PropertyInfo[]>;
1923
+ ): Promise<Array<PropertyInfo | ComplexPropertyInfo>>;
1907
1924
  /**
1908
1925
  * Returns the keys of properties that should always be included in the result of the collection requested
1909
1926
  * from the back end. This information is applied when updating the table's binding.
@@ -1993,31 +2010,7 @@ declare module "sap/ui/mdc/odata/v4/TableDelegate" {
1993
2010
  };
1994
2011
 
1995
2012
  /**
1996
- * An object literal describing a data property in the context of a {@link sap.ui.mdc.Table} with {@link module:sap/ui/mdc/odata/v4/TableDelegate sap/ui/mdc/odata/v4/TableDelegate}.
1997
- *
1998
- * When specifying the `PropertyInfo` objects in the {@link sap.ui.mdc.Table#getPropertyInfo propertyInfo }
1999
- * property, the following attributes need to be specified:
2000
- * - `key`
2001
- * - `path`
2002
- * - `dataType`
2003
- * - `formatOptions`
2004
- * - `constraints`
2005
- * - `maxConditions`
2006
- * - `caseSensitive`
2007
- * - `visualSettings.widthCalculation`
2008
- * - `propertyInfos`
2009
- * - `groupable`
2010
- * - `isKey`
2011
- * - `unit`
2012
- * - `text`
2013
- * - `aggregatable`
2014
- * - `extension.technicallyGroupable`
2015
- * - `extension.technicallyAggregatable`
2016
- *
2017
- * If the property is complex, the following attributes need to be specified:
2018
- * - `key`
2019
- * - `visualSettings.widthCalculation`
2020
- * - `propertyInfos` (all referenced properties must be specified)
2013
+ * An object literal describing a data property in the context of an {@link sap.ui.mdc.Table} with {@link module:sap/ui/mdc/odata/v4/TableDelegate sap/ui/mdc/odata/v4/TableDelegate}.
2021
2014
  */
2022
2015
  export type PropertyInfo = PropertyInfo1 & {
2023
2016
  /**
@@ -2099,7 +2092,11 @@ declare module "sap/ui/mdc/odata/v4/TypeMap" {
2099
2092
  declare module "sap/ui/mdc/TableDelegate" {
2100
2093
  import AggregationBaseDelegate from "sap/ui/mdc/AggregationBaseDelegate";
2101
2094
 
2102
- import { default as Table, PropertyInfo } from "sap/ui/mdc/Table";
2095
+ import {
2096
+ default as Table,
2097
+ PropertyInfo,
2098
+ ComplexPropertyInfo,
2099
+ } from "sap/ui/mdc/Table";
2103
2100
 
2104
2101
  import Column from "sap/ui/mdc/table/Column";
2105
2102
 
@@ -2208,13 +2205,13 @@ declare module "sap/ui/mdc/TableDelegate" {
2208
2205
  *
2209
2206
  * By default, this method returns a `Promise` that resolves with an empty array.
2210
2207
  *
2211
- * **Note:** The result of this function must be kept stable throughout the lifecycle of your application.
2212
- * Any changes of the returned values might result in undesired effects.
2213
- *
2214
- * **Note**: Existing properties (set via `sap.ui.mdc.Table#setPropertyInfo`) must not be removed and their
2215
- * attributes must not be changed during the {@link module:sap/ui/mdc/TableDelegate.fetchProperties fetchProperties }
2216
- * callback. Otherwise validation errors might occur whenever personalization-related control features (such
2217
- * as the opening of any personalization dialog) are activated.
2208
+ * **Note:**
2209
+ * - The result of this function must be kept stable throughout the lifecycle of your application. Any
2210
+ * changes of the returned values might result in undesired effects.
2211
+ * - Existing properties (set via `sap.ui.mdc.Table#setPropertyInfo`) must not be removed and their attributes
2212
+ * must not be changed during the {@link module:sap/ui/mdc/TableDelegate.fetchProperties fetchProperties }
2213
+ * callback. Otherwise validation errors might occur whenever personalization-related control features (such
2214
+ * as the opening of any personalization dialog) are activated.
2218
2215
  *
2219
2216
  * @ui5-protected Do not call from applications (only from related classes in the framework)
2220
2217
  *
@@ -2225,7 +2222,7 @@ declare module "sap/ui/mdc/TableDelegate" {
2225
2222
  * Instance of the table
2226
2223
  */
2227
2224
  oTable: Table
2228
- ): Promise<PropertyInfo[]>;
2225
+ ): Promise<Array<PropertyInfo | ComplexPropertyInfo>>;
2229
2226
  /**
2230
2227
  * Formats the title text of a group header row of the table.
2231
2228
  *
@@ -2674,6 +2671,135 @@ declare module "sap/ui/mdc/util/TypeMap" {
2674
2671
  export default TypeMap;
2675
2672
  }
2676
2673
 
2674
+ declare module "sap/ui/mdc/valuehelp/RequestShowContainerDefault" {
2675
+ import ValueHelp from "sap/ui/mdc/ValueHelp";
2676
+
2677
+ import Container from "sap/ui/mdc/valuehelp/base/Container";
2678
+
2679
+ /**
2680
+ * This object contains default behavior for opening `ValueHelp` {@link sap.ui.mdc.valuehelp.base.Container containers }
2681
+ * in the context of interaction on connected controls. Please also see {@link module:sap/ui/mdc/ValueHelpDelegate.requestShowContainer requestShowContainer}
2682
+ *
2683
+ * @since 1.137
2684
+ */
2685
+ interface RequestShowContainerDefault {
2686
+ /**
2687
+ * Default behavior for {@link sap.ui.mdc.enums.RequestShowContainerReason.Filter RequestShowContainerReason.Filter}.
2688
+ *
2689
+ * On desktop, prevent showing FilterableListContent without given filterValue. On desktop, check ListContent
2690
+ * for available data. Show all other content without further checks.
2691
+ *
2692
+ *
2693
+ * @returns `true`, if the value help should trigger opening
2694
+ */
2695
+ Filter(
2696
+ /**
2697
+ * The `ValueHelp` control instance
2698
+ */
2699
+ oValueHelp: ValueHelp,
2700
+ /**
2701
+ * Container instance
2702
+ */
2703
+ oContainer: Container
2704
+ ): Promise<boolean>;
2705
+ /**
2706
+ * Default behavior for {@link sap.ui.mdc.enums.RequestShowContainerReason.Focus RequestShowContainerReason.Focus}.
2707
+ *
2708
+ * By default, a container is not shown in response to focus events, as it cannot be determined whether
2709
+ * the event was triggered by user interaction or programmatically.
2710
+ *
2711
+ *
2712
+ * @returns `true`, if the value help should trigger opening
2713
+ */
2714
+ Focus(
2715
+ /**
2716
+ * The `ValueHelp` control instance
2717
+ */
2718
+ oValueHelp: ValueHelp,
2719
+ /**
2720
+ * Container instance
2721
+ */
2722
+ oContainer: Container
2723
+ ): Promise<boolean>;
2724
+ /**
2725
+ * Default behavior for {@link sap.ui.mdc.enums.RequestShowContainerReason.Navigate RequestShowContainerReason.Navigate}.
2726
+ *
2727
+ * Preloads delegate content. By default, a container is not shown in response to navigation.
2728
+ *
2729
+ *
2730
+ * @returns `true`, if the value help should trigger opening
2731
+ */
2732
+ Navigate(
2733
+ /**
2734
+ * The `ValueHelp` control instance
2735
+ */
2736
+ oValueHelp: ValueHelp,
2737
+ /**
2738
+ * Container instance
2739
+ */
2740
+ oContainer: Container
2741
+ ): Promise<boolean>;
2742
+ /**
2743
+ * Default behavior for {@link sap.ui.mdc.enums.RequestShowContainerReason.Tap RequestShowContainerReason.Tap}.
2744
+ *
2745
+ * On phones, return true for multi-select usage or if the container is not used as a valuehelp. At last,
2746
+ * check if the content is a non-boolean, unfiltered fixed list.
2747
+ *
2748
+ *
2749
+ * @returns `true`, if the value help should trigger opening
2750
+ */
2751
+ Tap(
2752
+ /**
2753
+ * The `ValueHelp` control instance
2754
+ */
2755
+ oValueHelp: ValueHelp,
2756
+ /**
2757
+ * Container instance
2758
+ */
2759
+ oContainer: Container
2760
+ ): Promise<boolean>;
2761
+ /**
2762
+ * Default behavior for {@link sap.ui.mdc.enums.RequestShowContainerReason.Typing RequestShowContainerReason.Typing}.
2763
+ *
2764
+ * Preloads delegate content. On phones, return false for single-select usage or if the container is used
2765
+ * as a valuehelp. At last, check content's search support.
2766
+ *
2767
+ *
2768
+ * @returns `true`, if the value help should trigger opening
2769
+ */
2770
+ Typing(
2771
+ /**
2772
+ * The `ValueHelp` control instance
2773
+ */
2774
+ oValueHelp: ValueHelp,
2775
+ /**
2776
+ * Container instance
2777
+ */
2778
+ oContainer: Container
2779
+ ): Promise<boolean>;
2780
+ /**
2781
+ * Default behavior for {@link sap.ui.mdc.enums.RequestShowContainerReason.ValueHelpRequest RequestShowContainerReason.ValueHelpRequest}.
2782
+ *
2783
+ * By default, a dialog-like container should be shown on `ValueHelpRequest` events.
2784
+ *
2785
+ *
2786
+ * @returns `true`, if the value help should trigger opening
2787
+ */
2788
+ ValueHelpRequest(
2789
+ /**
2790
+ * The `ValueHelp` control instance
2791
+ */
2792
+ oValueHelp: ValueHelp,
2793
+ /**
2794
+ * Container instance
2795
+ */
2796
+ oContainer: Container
2797
+ ): Promise<boolean>;
2798
+ }
2799
+ const RequestShowContainerDefault: RequestShowContainerDefault;
2800
+ export default RequestShowContainerDefault;
2801
+ }
2802
+
2677
2803
  declare module "sap/ui/mdc/ValueHelpDelegate" {
2678
2804
  import BaseDelegate from "sap/ui/mdc/BaseDelegate";
2679
2805
 
@@ -2706,6 +2832,8 @@ declare module "sap/ui/mdc/ValueHelpDelegate" {
2706
2832
 
2707
2833
  import Container from "sap/ui/mdc/valuehelp/base/Container";
2708
2834
 
2835
+ import RequestShowContainerReason from "sap/ui/mdc/enums/RequestShowContainerReason";
2836
+
2709
2837
  import { AggregationBindingInfo } from "sap/ui/base/ManagedObject";
2710
2838
 
2711
2839
  /**
@@ -3098,6 +3226,32 @@ declare module "sap/ui/mdc/ValueHelpDelegate" {
3098
3226
  */
3099
3227
  oConfig?: /* was: sap.ui.mdc.valuehelp.base.ConnectConfig */ any
3100
3228
  ): void;
3229
+ /**
3230
+ * Determines if a value help container is to be opened on user interaction, navigation, or configuration
3231
+ * changes. **Note:** This method can be called repeatedly with various {@link {sap.ui.mdc.enums.RequestShowContainerReason reasons }
3232
+ * depending on the given {@link sap.ui.mdc.valuehelp.base.Container container}.
3233
+ *
3234
+ * @since 1.136
3235
+ * @ui5-protected Do not call from applications (only from related classes in the framework)
3236
+ *
3237
+ * @returns `true`, if the value help is to be triggered
3238
+ */
3239
+ requestShowContainer(
3240
+ /**
3241
+ * The `ValueHelp` control instance
3242
+ */
3243
+ oValueHelp: ValueHelp,
3244
+ /**
3245
+ * Container instance
3246
+ */
3247
+ oContainer: Container,
3248
+ /**
3249
+ * Reason for the request
3250
+ */
3251
+ sRequestShowContainerReason:
3252
+ | RequestShowContainerReason
3253
+ | keyof typeof RequestShowContainerReason
3254
+ ): Promise<boolean>;
3101
3255
  /**
3102
3256
  * Requests additional content for the value help.
3103
3257
  *
@@ -3135,6 +3289,7 @@ declare module "sap/ui/mdc/ValueHelpDelegate" {
3135
3289
  * Currently this is only supported for the type-ahead container.
3136
3290
  *
3137
3291
  * @since 1.121.0
3292
+ * @deprecated As of version 1.137. replaced by {@link module:sap/ui/mdc/ValueHelpDelegate.requestShowContainer}.
3138
3293
  *
3139
3294
  * @returns If `true`, the value help is opened when user clicks into the connected field control
3140
3295
  */
@@ -3156,6 +3311,7 @@ declare module "sap/ui/mdc/ValueHelpDelegate" {
3156
3311
  * Currently this is only supported for the type-ahead container.
3157
3312
  *
3158
3313
  * @since 1.121.0
3314
+ * @deprecated As of version 1.137. replaced by {@link module:sap/ui/mdc/ValueHelpDelegate.requestShowContainer}.
3159
3315
  *
3160
3316
  * @returns If `true`, the value help is opened when user focuses on the connected field control
3161
3317
  */
@@ -3177,6 +3333,7 @@ declare module "sap/ui/mdc/ValueHelpDelegate" {
3177
3333
  * is returned.
3178
3334
  *
3179
3335
  * @since 1.110.0
3336
+ * @deprecated As of version 1.137. replaced by {@link module:sap/ui/mdc/ValueHelpDelegate.requestShowContainer}.
3180
3337
  *
3181
3338
  * @returns Boolean or `Promise` that resolves into a `boolean` indicating the desired behavior
3182
3339
  */
@@ -3657,24 +3814,27 @@ declare module "sap/ui/mdc/library" {
3657
3814
  /**
3658
3815
  * Defines if the typeahead container desires to be opened whenever a user clicks on a connected control
3659
3816
  *
3817
+ * @deprecated As of version 1.137. with no replacement.
3660
3818
  *
3661
3819
  * @returns If `true`, the value help should open when user clicks into the connected field control
3662
3820
  */
3663
- shouldOpenOnClick(): Promise<boolean>;
3821
+ shouldOpenOnClick?(): Promise<boolean>;
3664
3822
  /**
3665
3823
  * Defines if the typeahead container desires to be opened whenever a user focuses a connected control
3666
3824
  *
3825
+ * @deprecated As of version 1.137. with no replacement.
3667
3826
  *
3668
3827
  * @returns If `true`, the value help should open when user focuses the connected field control
3669
3828
  */
3670
- shouldOpenOnFocus(): Promise<boolean>;
3829
+ shouldOpenOnFocus?(): Promise<boolean>;
3671
3830
  /**
3672
3831
  * Defines if the typeahead containers values can be navigated without visibly opening the help
3673
3832
  *
3833
+ * @deprecated As of version 1.137. with no replacement.
3674
3834
  *
3675
3835
  * @returns If `true`, the value help should open when user used the arrow keys in the connected field control
3676
3836
  */
3677
- shouldOpenOnNavigate(): boolean;
3837
+ shouldOpenOnNavigate?(): boolean;
3678
3838
  }
3679
3839
 
3680
3840
  /**
@@ -3763,17 +3923,19 @@ declare module "sap/ui/mdc/library" {
3763
3923
  * Defines if the typeahead content desires opening the typeahead whenever a user clicks on a connected
3764
3924
  * control
3765
3925
  *
3926
+ * @deprecated As of version 1.137. with no replacement.
3766
3927
  *
3767
3928
  * @returns If `true`, the value help should open when user clicks into the connected field control
3768
3929
  */
3769
- shouldOpenOnClick(): boolean;
3930
+ shouldOpenOnClick?(): boolean;
3770
3931
  /**
3771
3932
  * Defines if the typeahead containers values can be navigated without visibly opening the help
3772
3933
  *
3934
+ * @deprecated As of version 1.137. with no replacement.
3773
3935
  *
3774
3936
  * @returns If `true`, the value help should open when user used the arrow keys in the connected field control
3775
3937
  */
3776
- shouldOpenOnNavigate(): boolean;
3938
+ shouldOpenOnNavigate?(): boolean;
3777
3939
  }
3778
3940
  }
3779
3941
  }
@@ -6278,6 +6440,9 @@ declare module "sap/ui/mdc/condition/FilterOperatorUtil" {
6278
6440
  interface FilterOperatorUtil {
6279
6441
  /**
6280
6442
  * Adds an operator to the list of known operators.
6443
+ *
6444
+ * **Note:** For application-specific operators, use an application-specific name to prevent conflicts with
6445
+ * different applications.
6281
6446
  */
6282
6447
  addOperator(
6283
6448
  /**
@@ -6300,6 +6465,9 @@ declare module "sap/ui/mdc/condition/FilterOperatorUtil" {
6300
6465
  ): void;
6301
6466
  /**
6302
6467
  * Adds an array of operators to the list of known operators.
6468
+ *
6469
+ * **Note:** For application-specific operators, use an application-specific name to prevent conflicts with
6470
+ * different applications.
6303
6471
  */
6304
6472
  addOperators(
6305
6473
  /**
@@ -6465,6 +6633,8 @@ declare module "sap/ui/mdc/condition/Operator" {
6465
6633
  /**
6466
6634
  * Alias names based on {@link sap.ui.mdc.enums.BaseType BaseType}, used to map to {@link sap.m.DynamicDateOption DynamicDateOption }
6467
6635
  * if {@link sap.m.DynamicDateRange DynamicDateRange} is used to visualize the filter
6636
+ * For example, if an operator must use the `DATE` option if used for a date type and the `DATETIME` option
6637
+ * if used for a date/time type, the `alias` needs to be configured as `{Date: "DATE", DateTime: "DATETIME"}`.
6468
6638
  */
6469
6639
  alias?: object;
6470
6640
  /**
@@ -6524,9 +6694,17 @@ declare module "sap/ui/mdc/condition/Operator" {
6524
6694
  * This text is only needed if there any language dependent text should be shown on the token, like "Next
6525
6695
  * 5 days". (In this case `#tokenText#` is used in `tokenFormat`, `tokenTest`, or `tokenParse`.) For operators
6526
6696
  * just showing the value and a operator symbol, no token text is needed.
6527
- * If the token text is not given, the `longText` is used.
6697
+ * If the token text is not given, the `longText` is used. If `tokenTextForTypes` is provided for a special
6698
+ * type, this one will be used for the corresponding type.
6528
6699
  */
6529
6700
  tokenText?: string;
6701
+ /**
6702
+ * Object holding String representation of the operator as a token text for single basic types.
6703
+ * This text is shown in a single-value field as text or a multi-value field as token.
6704
+ * This is needed if the text depends on the used data type. For example the "equal" operator should be
6705
+ * named "Not Specified (empty)" if a date or time type is used.
6706
+ */
6707
+ tokenTextForTypes?: object;
6530
6708
  /**
6531
6709
  * Object holding String representation of the operator as a long text for single basic types.
6532
6710
  * This text is shown in the operator dropdown of the value help.
@@ -6611,6 +6789,7 @@ declare module "sap/ui/mdc/condition/Operator" {
6611
6789
  * to 3, 4....
6612
6790
  * group: {id : 10, text: "new group at the end"} - adds a new group with id 10 and text "new group as
6613
6791
  * the end" to the end of all groups
6792
+ * **Note:** The ids 900-999 are reserved for internal mdc usage, please use ids outside this range
6614
6793
  */
6615
6794
  id: string;
6616
6795
  /**
@@ -6618,6 +6797,11 @@ declare module "sap/ui/mdc/condition/Operator" {
6618
6797
  */
6619
6798
  text?: string;
6620
6799
  };
6800
+ /**
6801
+ * Additional group settings for the operator depending on the type. For every type a group object can be
6802
+ * defined.
6803
+ */
6804
+ groupsForTypes?: object;
6621
6805
  /**
6622
6806
  * Function to determine the text copied into clipboard
6623
6807
  */
@@ -7394,6 +7578,12 @@ declare module "sap/ui/mdc/enums/ContentMode" {
7394
7578
  * Edit mode for operator dependent controls This is used for single value and only one operator.
7395
7579
  */
7396
7580
  EditOperator = "EditOperator",
7581
+ /**
7582
+ * Edit mode for single value field that is rendered as `Select` control
7583
+ *
7584
+ * @since 1.138
7585
+ */
7586
+ EditSelect = "EditSelect",
7397
7587
  }
7398
7588
  export default ContentMode;
7399
7589
  }
@@ -9190,6 +9380,10 @@ declare module "sap/ui/mdc/field/ConditionsType" {
9190
9380
  * If set, the input and output might contain multiple lines
9191
9381
  */
9192
9382
  multipleLines?: boolean;
9383
+ /**
9384
+ * If `true`, the connected control could be left empty (without conditions)
9385
+ */
9386
+ emptyAllowed?: boolean;
9193
9387
  },
9194
9388
  /**
9195
9389
  * Value constraints
@@ -9431,6 +9625,10 @@ declare module "sap/ui/mdc/field/ConditionType" {
9431
9625
  * If set, the input and output might contain multiple lines
9432
9626
  */
9433
9627
  multipleLines?: boolean;
9628
+ /**
9629
+ * If `true`, the connected control could be left empty (without conditions)
9630
+ */
9631
+ emptyAllowed?: boolean;
9434
9632
  },
9435
9633
  /**
9436
9634
  * Value constraints
@@ -9673,6 +9871,10 @@ declare module "sap/ui/mdc/field/DynamicDateRangeConditionsType" {
9673
9871
  * If set, the input and output might contain multiple lines
9674
9872
  */
9675
9873
  multipleLines?: boolean;
9874
+ /**
9875
+ * If `true`, the connected control could be left empty (without conditions)
9876
+ */
9877
+ emptyAllowed?: boolean;
9676
9878
  },
9677
9879
  /**
9678
9880
  * Value constraints
@@ -10259,6 +10461,25 @@ declare module "sap/ui/mdc/field/FieldBase" {
10259
10461
  * @returns BaseType
10260
10462
  */
10261
10463
  getBaseType(): BaseType;
10464
+ /**
10465
+ * Creates parameter for a `ParseError`, `ValidationError` or `ValidationSuccess` event based on the corresponding
10466
+ * event fired on the inner control.
10467
+ *
10468
+ * The basic implementation just adds the element and error information. The `property` and `type` information
10469
+ * must be added by the inheriting control. If no binding for the corresponding property exists `null` must
10470
+ * be returned, as the event must only be fired if there is a binding.
10471
+ *
10472
+ * @since 1.138.0
10473
+ * @ui5-protected Do not call from applications (only from related classes in the framework)
10474
+ *
10475
+ * @returns parameters for the new event
10476
+ */
10477
+ getBindingEventParameter(
10478
+ /**
10479
+ * original event fired on inner control
10480
+ */
10481
+ oEvent: Event
10482
+ ): object;
10262
10483
  /**
10263
10484
  * Gets current value of property {@link #getConditions conditions}.
10264
10485
  *
@@ -10652,6 +10873,20 @@ declare module "sap/ui/mdc/field/FieldBase" {
10652
10873
  * @returns Value of property `valueState`
10653
10874
  */
10654
10875
  getValueState(): ValueState;
10876
+ /**
10877
+ * Gets the ValueState for content controls
10878
+ *
10879
+ * @since 1.138.0
10880
+ * @ui5-protected Do not call from applications (only from related classes in the framework)
10881
+ *
10882
+ * @returns value state information for content control
10883
+ */
10884
+ getValueStateForContent(
10885
+ /**
10886
+ * Id of the content control or Id of the field itself
10887
+ */
10888
+ sContentId: string
10889
+ ): object;
10655
10890
  /**
10656
10891
  * Gets current value of property {@link #getValueStateText valueStateText}.
10657
10892
  *
@@ -10707,6 +10942,15 @@ declare module "sap/ui/mdc/field/FieldBase" {
10707
10942
  * @returns `true` if there is a pending user input
10708
10943
  */
10709
10944
  hasPendingUserInput(): boolean;
10945
+ /**
10946
+ * Return `true` if at least one content control has a own value state
10947
+ *
10948
+ * @since 1.138.0
10949
+ * @ui5-protected Do not call from applications (only from related classes in the framework)
10950
+ *
10951
+ * @returns `true` if at least one content control has a own value state
10952
+ */
10953
+ hasValueStateForContent(): boolean;
10710
10954
  /**
10711
10955
  * Initializes internal data-types and dependent objects.
10712
10956
  *
@@ -10805,6 +11049,13 @@ declare module "sap/ui/mdc/field/FieldBase" {
10805
11049
  */
10806
11050
  bRemoveUIMessage: boolean
10807
11051
  ): void;
11052
+ /**
11053
+ * Resets the ValueState for content controls
11054
+ *
11055
+ * @since 1.138.0
11056
+ * @ui5-protected Do not call from applications (only from related classes in the framework)
11057
+ */
11058
+ resetValueStateForAllContent(): void;
10808
11059
  /**
10809
11060
  * Sets a new value for property {@link #getConditions conditions}.
10810
11061
  *
@@ -11227,6 +11478,26 @@ declare module "sap/ui/mdc/field/FieldBase" {
11227
11478
  */
11228
11479
  sValueState?: ValueState | keyof typeof ValueState
11229
11480
  ): this;
11481
+ /**
11482
+ * Sets the ValueState for content controls
11483
+ *
11484
+ * @since 1.138.0
11485
+ * @ui5-protected Do not call from applications (only from related classes in the framework)
11486
+ */
11487
+ setValueStateForContent(
11488
+ /**
11489
+ * Id of the content control
11490
+ */
11491
+ sContentId: string,
11492
+ /**
11493
+ * value state
11494
+ */
11495
+ sValueState: ValueState | keyof typeof ValueState,
11496
+ /**
11497
+ * value state text
11498
+ */
11499
+ sValueStateText: string
11500
+ ): void;
11230
11501
  /**
11231
11502
  * Sets a new value for property {@link #getValueStateText valueStateText}.
11232
11503
  *
@@ -15315,7 +15586,10 @@ declare module "sap/ui/mdc/Table" {
15315
15586
 
15316
15587
  import VariantManagement from "sap/ui/fl/variants/VariantManagement";
15317
15588
 
15318
- import { PropertyInfo as PropertyInfo1 } from "sap/ui/mdc/util/PropertyHelper";
15589
+ import {
15590
+ ComplexPropertyInfo as ComplexPropertyInfo1,
15591
+ PropertyInfo as PropertyInfo1,
15592
+ } from "sap/ui/mdc/util/PropertyHelper";
15319
15593
 
15320
15594
  import {
15321
15595
  PropertyBindingInfo,
@@ -15327,7 +15601,7 @@ declare module "sap/ui/mdc/Table" {
15327
15601
  /**
15328
15602
  * A metadata-driven table to simplify the usage of existing tables, such as the `ResponsiveTable` and `GridTable`
15329
15603
  * controls. The metadata needs to be provided via the {@link module:sap/ui/mdc/TableDelegate TableDelegate }
15330
- * implementation as {@link sap.ui.mdc.table.PropertyInfo}.
15604
+ * implementation as {@link sap.ui.mdc.table.PropertyInfo} and {@link sap.ui.mdc.table.ComplexPropertyInfo}.
15331
15605
  *
15332
15606
  * **Note:** Read and write access to internal elements is not permitted. Such elements are, for example,
15333
15607
  * the inner table including its children. This is independent of how access was gained. Internal elements
@@ -15985,9 +16259,8 @@ declare module "sap/ui/mdc/Table" {
15985
16259
  * `false`.
15986
16260
  *
15987
16261
  * **Note:** The {@link sap.m.plugins.CopyProvider#extractData extractData} property of the `CopyProvider`
15988
- * must not be managed by the application.
15989
- * The `CopyProvider` requires a secure context to access the clipboard API. If the context is not secure,
15990
- * the plugin will not be added, and the Copy button will not be generated.
16262
+ * must not be managed by the application. The `CopyProvider` requires a secure context to access the clipboard
16263
+ * API. If the context is not secure, the plugin will not be added, and the Copy button will not be generated.
15991
16264
  *
15992
16265
  * @since 1.114
15993
16266
  */
@@ -16004,11 +16277,14 @@ declare module "sap/ui/mdc/Table" {
16004
16277
  * Gets current value of property {@link #getDelegate delegate}.
16005
16278
  *
16006
16279
  * Object related to the `Delegate` module that provides the required APIs to execute model-specific logic.
16007
- * The object has the following properties:
16280
+ *
16281
+ * The object has the following properties:
16008
16282
  * - `name` defines the path to the `Delegate` module. The used delegate module must inherit from {@link module:sap/ui/mdc/TableDelegate TableDelegate}.
16009
16283
  *
16010
16284
  * - `payload` (optional) defines application-specific information that can be used in the given delegate
16011
- * Sample delegate object:
16285
+ *
16286
+ *
16287
+ * Sample delegate object:
16012
16288
  * ```javascript
16013
16289
  * {
16014
16290
  * name: "sap/ui/mdc/TableDelegate",
@@ -16017,8 +16293,7 @@ declare module "sap/ui/mdc/Table" {
16017
16293
  *
16018
16294
  *
16019
16295
  * **Note:** Ensure that the related file can be requested (any required library has to be loaded before
16020
- * that).
16021
- * Do not bind or modify the module. This property can only be configured during control initialization.
16296
+ * that). Do not bind or modify the module. This property can only be configured during control initialization.
16022
16297
  *
16023
16298
  * Default value is `...see text or source`.
16024
16299
  *
@@ -16145,7 +16420,6 @@ declare module "sap/ui/mdc/Table" {
16145
16420
  * Determines whether the toolbar is visible.
16146
16421
  *
16147
16422
  * **Note:** Hiding the toolbar limits the functionality of the table in the following ways:
16148
- *
16149
16423
  * - The `showRowCount` property **must** be set to `false`.
16150
16424
  * - The export **must** be disabled by setting the `enableExport` property to `false`.
16151
16425
  * - For {@link sap.ui.mdc.table.ResponsiveTableType ResponsiveTable}, show and hide details won't be
@@ -16200,11 +16474,11 @@ declare module "sap/ui/mdc/Table" {
16200
16474
  /**
16201
16475
  * Gets current value of property {@link #getP13nMode p13nMode}.
16202
16476
  *
16203
- * Personalization options for the table.
16477
+ * Personalization options for the table. The order of the provided options does not influence their order
16478
+ * on the UI.
16204
16479
  *
16205
16480
  * **Note:** Whether a personalization option is supported depends on the used delegate. Please refer to
16206
- * the documentation of the individual delegates. The order of the provided options does not influence their
16207
- * order on the UI.
16481
+ * the documentation of the individual delegates.
16208
16482
  *
16209
16483
  * Default value is `[]`.
16210
16484
  *
@@ -16292,8 +16566,7 @@ declare module "sap/ui/mdc/Table" {
16292
16566
  * is lower than the number of visible rows, the number of visible rows is used as the `threshold`. If the
16293
16567
  * value is 0, thresholding is disabled.
16294
16568
  *
16295
- * **Note:** This property only takes effect if it is set to a positive integer value. Otherwise the table
16296
- * uses a type-dependent default value.
16569
+ * If the value is -1, a type-dependent default value is used.
16297
16570
  *
16298
16571
  * Default value is `-1`.
16299
16572
  *
@@ -16495,11 +16768,14 @@ declare module "sap/ui/mdc/Table" {
16495
16768
  * Sets a new value for property {@link #getDelegate delegate}.
16496
16769
  *
16497
16770
  * Object related to the `Delegate` module that provides the required APIs to execute model-specific logic.
16498
- * The object has the following properties:
16771
+ *
16772
+ * The object has the following properties:
16499
16773
  * - `name` defines the path to the `Delegate` module. The used delegate module must inherit from {@link module:sap/ui/mdc/TableDelegate TableDelegate}.
16500
16774
  *
16501
16775
  * - `payload` (optional) defines application-specific information that can be used in the given delegate
16502
- * Sample delegate object:
16776
+ *
16777
+ *
16778
+ * Sample delegate object:
16503
16779
  * ```javascript
16504
16780
  * {
16505
16781
  * name: "sap/ui/mdc/TableDelegate",
@@ -16508,8 +16784,7 @@ declare module "sap/ui/mdc/Table" {
16508
16784
  *
16509
16785
  *
16510
16786
  * **Note:** Ensure that the related file can be requested (any required library has to be loaded before
16511
- * that).
16512
- * Do not bind or modify the module. This property can only be configured during control initialization.
16787
+ * that). Do not bind or modify the module. This property can only be configured during control initialization.
16513
16788
  *
16514
16789
  * When called with a value of `null` or `undefined`, the default value of the property will be restored.
16515
16790
  *
@@ -16708,7 +16983,6 @@ declare module "sap/ui/mdc/Table" {
16708
16983
  * Determines whether the toolbar is visible.
16709
16984
  *
16710
16985
  * **Note:** Hiding the toolbar limits the functionality of the table in the following ways:
16711
- *
16712
16986
  * - The `showRowCount` property **must** be set to `false`.
16713
16987
  * - The export **must** be disabled by setting the `enableExport` property to `false`.
16714
16988
  * - For {@link sap.ui.mdc.table.ResponsiveTableType ResponsiveTable}, show and hide details won't be
@@ -16779,11 +17053,11 @@ declare module "sap/ui/mdc/Table" {
16779
17053
  /**
16780
17054
  * Sets a new value for property {@link #getP13nMode p13nMode}.
16781
17055
  *
16782
- * Personalization options for the table.
17056
+ * Personalization options for the table. The order of the provided options does not influence their order
17057
+ * on the UI.
16783
17058
  *
16784
17059
  * **Note:** Whether a personalization option is supported depends on the used delegate. Please refer to
16785
- * the documentation of the individual delegates. The order of the provided options does not influence their
16786
- * order on the UI.
17060
+ * the documentation of the individual delegates.
16787
17061
  *
16788
17062
  * When called with a value of `null` or `undefined`, the default value of the property will be restored.
16789
17063
  *
@@ -16901,8 +17175,7 @@ declare module "sap/ui/mdc/Table" {
16901
17175
  * is lower than the number of visible rows, the number of visible rows is used as the `threshold`. If the
16902
17176
  * value is 0, thresholding is disabled.
16903
17177
  *
16904
- * **Note:** This property only takes effect if it is set to a positive integer value. Otherwise the table
16905
- * uses a type-dependent default value.
17178
+ * If the value is -1, a type-dependent default value is used.
16906
17179
  *
16907
17180
  * When called with a value of `null` or `undefined`, the default value of the property will be restored.
16908
17181
  *
@@ -16980,28 +17253,79 @@ declare module "sap/ui/mdc/Table" {
16980
17253
  ): this;
16981
17254
  }
16982
17255
  /**
16983
- * An object literal describing a data property in the context of an {@link sap.ui.mdc.Table}.
17256
+ * An object literal that describes attributes of a complex data property in the context of an {@link sap.ui.mdc.Table}.
17257
+ * A complex property references other properties in the `propertyInfos` attribute.
16984
17258
  *
16985
- * When specifying the `PropertyInfo` objects in the {@link sap.ui.mdc.Table#getPropertyInfo propertyInfo }
16986
- * property, the following attributes need to be specified:
16987
- * - `key`
16988
- * - `path`
16989
- * - `dataType`
16990
- * - `formatOptions`
16991
- * - `constraints`
16992
- * - `maxConditions`
16993
- * - `caseSensitive`
16994
- * - `visualSettings.widthCalculation`
16995
- * - `propertyInfos`
16996
- * - `groupable`
16997
- * - `isKey`
16998
- * - `unit`
16999
- * - `text`
17259
+ * If a `sap.ui.mdc.table.Column` points to a complex property via its `propertyKey` property, the table
17260
+ * considers all the referenced properties as visible in the column. All referenced properties are taken
17261
+ * into account for certain features, for example, for the column width calculation.
17000
17262
  *
17001
- * If the property is complex, the following attributes need to be specified:
17002
- * - `key`
17003
- * - `visualSettings.widthCalculation`
17004
- * - `propertyInfos` (all referenced properties must be specified)
17263
+ * Some attributes of the referenced properties can be overridden. If, for example, `exportSettings` are
17264
+ * specified for the complex property, the export settings of the referenced properties are ignored. This
17265
+ * can be used to provide a different formatting template, for example.
17266
+ */
17267
+ export type ComplexPropertyInfo = ComplexPropertyInfo1 & {
17268
+ /**
17269
+ * The export settings. Set to `null` to prevent this property from being exported.
17270
+ */
17271
+ exportSettings?: /* was: sap.ui.export.Column */ any | null;
17272
+ /**
17273
+ * The clipboard settings. Set to `null` to prevent this property from being copied to clipboard.
17274
+ */
17275
+ clipboardSettings?: {
17276
+ /**
17277
+ * Defines the formatting template that supports indexed placeholders for referenced properties within curly
17278
+ * brackets, for example, "{0} ({1})".
17279
+ */
17280
+ template?: string;
17281
+ } | null;
17282
+ /**
17283
+ * This object contains all relevant attributes for visual adjustments.
17284
+ */
17285
+ visualSettings?: {
17286
+ /**
17287
+ * Settings for column width calculation. Set to `null` to disable the automatic column width calculation
17288
+ * for this property.
17289
+ */
17290
+ widthCalculation?: {
17291
+ /**
17292
+ * The minimum content width in rem
17293
+ */
17294
+ minWidth?: int;
17295
+ /**
17296
+ * The maximum content width in rem
17297
+ */
17298
+ maxWidth?: int;
17299
+ /**
17300
+ * The default column content width when type check fails
17301
+ */
17302
+ defaultWidth?: int;
17303
+ /**
17304
+ * The additional content width in rem
17305
+ */
17306
+ gap?: float;
17307
+ /**
17308
+ * Whether the label is taken into account
17309
+ */
17310
+ includeLabel?: boolean;
17311
+ /**
17312
+ * Whether the label is truncated
17313
+ */
17314
+ truncateLabel?: boolean;
17315
+ /**
17316
+ * Whether the referenced properties are arranged vertically
17317
+ */
17318
+ verticalArrangement?: boolean;
17319
+ /**
17320
+ * A list of invisible referenced property keys
17321
+ */
17322
+ excludeProperties?: string[];
17323
+ } | null;
17324
+ };
17325
+ };
17326
+
17327
+ /**
17328
+ * An object literal that describes attributes of a data property in the context of an {@link sap.ui.mdc.Table}.
17005
17329
  */
17006
17330
  export type PropertyInfo = PropertyInfo1 & {
17007
17331
  /**
@@ -17031,26 +17355,25 @@ declare module "sap/ui/mdc/Table" {
17031
17355
  */
17032
17356
  text?: string;
17033
17357
  /**
17034
- * Object that contains information about the export settings, see {@link sap.ui.export.Spreadsheet}.
17358
+ * The export settings. Set to `null` to prevent this property from being exported.
17035
17359
  */
17036
- exportSettings?: object;
17360
+ exportSettings?: /* was: sap.ui.export.Column */ any | null;
17037
17361
  /**
17038
- * Object that contains information about the clipboard settings. Setting this value to `null` disables
17039
- * the copy function.
17362
+ * The clipboard settings. Set to `null` prevent this property from being copied to clipboard.
17040
17363
  */
17041
17364
  clipboardSettings?: {
17042
17365
  /**
17043
- * Defines the formatting template that supports indexed placeholders of `propertyInfos` within curly brackets,
17044
- * for example, "{0} ({1})".
17366
+ * Defines the formatting template that supports indexed placeholders, for example, "{0}".
17045
17367
  */
17046
17368
  template?: string;
17047
- };
17369
+ } | null;
17048
17370
  /**
17049
17371
  * This object contains all relevant properties for visual adjustments.
17050
17372
  */
17051
17373
  visualSettings?: {
17052
17374
  /**
17053
- * This object contains all properties and their default values for the column width calculation
17375
+ * Settings for column width calculation. Set to `null` to disable the automatic column width calculation
17376
+ * for this property.
17054
17377
  */
17055
17378
  widthCalculation?: {
17056
17379
  /**
@@ -17070,11 +17393,11 @@ declare module "sap/ui/mdc/Table" {
17070
17393
  */
17071
17394
  gap?: float;
17072
17395
  /**
17073
- * Whether the label should be taken into account
17396
+ * Whether the label is taken into account
17074
17397
  */
17075
17398
  includeLabel?: boolean;
17076
17399
  /**
17077
- * Whether the label should be trucated or not
17400
+ * Whether the label is truncated
17078
17401
  */
17079
17402
  truncateLabel?: boolean;
17080
17403
  /**
@@ -17085,13 +17408,8 @@ declare module "sap/ui/mdc/Table" {
17085
17408
  * A list of invisible referenced property keys
17086
17409
  */
17087
17410
  excludeProperties?: string[];
17088
- };
17411
+ } | null;
17089
17412
  };
17090
- /**
17091
- * The availability of this property makes the `PropertyInfo` a complex `PropertyInfo`. Provides a list
17092
- * of related properties (by key). These related properties must not themselves be complex.
17093
- */
17094
- propertyInfos?: string[];
17095
17413
  };
17096
17414
 
17097
17415
  /**
@@ -17111,11 +17429,11 @@ declare module "sap/ui/mdc/Table" {
17111
17429
  height?: CSSSize | PropertyBindingInfo | `{${string}}`;
17112
17430
 
17113
17431
  /**
17114
- * Personalization options for the table.
17432
+ * Personalization options for the table. The order of the provided options does not influence their order
17433
+ * on the UI.
17115
17434
  *
17116
17435
  * **Note:** Whether a personalization option is supported depends on the used delegate. Please refer to
17117
- * the documentation of the individual delegates. The order of the provided options does not influence their
17118
- * order on the UI.
17436
+ * the documentation of the individual delegates.
17119
17437
  *
17120
17438
  * @since 1.62
17121
17439
  */
@@ -17126,11 +17444,14 @@ declare module "sap/ui/mdc/Table" {
17126
17444
 
17127
17445
  /**
17128
17446
  * Object related to the `Delegate` module that provides the required APIs to execute model-specific logic.
17129
- * The object has the following properties:
17447
+ *
17448
+ * The object has the following properties:
17130
17449
  * - `name` defines the path to the `Delegate` module. The used delegate module must inherit from {@link module:sap/ui/mdc/TableDelegate TableDelegate}.
17131
17450
  *
17132
17451
  * - `payload` (optional) defines application-specific information that can be used in the given delegate
17133
- * Sample delegate object:
17452
+ *
17453
+ *
17454
+ * Sample delegate object:
17134
17455
  * ```javascript
17135
17456
  * {
17136
17457
  * name: "sap/ui/mdc/TableDelegate",
@@ -17139,8 +17460,7 @@ declare module "sap/ui/mdc/Table" {
17139
17460
  *
17140
17461
  *
17141
17462
  * **Note:** Ensure that the related file can be requested (any required library has to be loaded before
17142
- * that).
17143
- * Do not bind or modify the module. This property can only be configured during control initialization.
17463
+ * that). Do not bind or modify the module. This property can only be configured during control initialization.
17144
17464
  */
17145
17465
  delegate?: object | PropertyBindingInfo | `{${string}}`;
17146
17466
 
@@ -17215,8 +17535,7 @@ declare module "sap/ui/mdc/Table" {
17215
17535
  * is lower than the number of visible rows, the number of visible rows is used as the `threshold`. If the
17216
17536
  * value is 0, thresholding is disabled.
17217
17537
  *
17218
- * **Note:** This property only takes effect if it is set to a positive integer value. Otherwise the table
17219
- * uses a type-dependent default value.
17538
+ * If the value is -1, a type-dependent default value is used.
17220
17539
  *
17221
17540
  * @since 1.63
17222
17541
  */
@@ -17225,8 +17544,8 @@ declare module "sap/ui/mdc/Table" {
17225
17544
  /**
17226
17545
  * Defines the sort conditions.
17227
17546
  *
17228
- * **Note:** This property must not be bound.
17229
- * This property is used exclusively for handling SAPUI5 flexibility changes. Do not use it otherwise.
17547
+ * **Note:** This property must not be bound. It is used exclusively for handling SAPUI5 flexibility changes.
17548
+ * Do not use it otherwise.
17230
17549
  *
17231
17550
  * @since 1.73
17232
17551
  */
@@ -17235,8 +17554,8 @@ declare module "sap/ui/mdc/Table" {
17235
17554
  /**
17236
17555
  * Defines the filter conditions.
17237
17556
  *
17238
- * **Note:** This property must not be bound.
17239
- * This property is used exclusively for handling SAPUI5 flexibility changes. Do not use it otherwise.
17557
+ * **Note:** This property must not be bound. It is used exclusively for handling SAPUI5 flexibility changes.
17558
+ * Do not use it otherwise.
17240
17559
  *
17241
17560
  * @since 1.80.0
17242
17561
  */
@@ -17245,8 +17564,8 @@ declare module "sap/ui/mdc/Table" {
17245
17564
  /**
17246
17565
  * Defines the group conditions.
17247
17566
  *
17248
- * **Note:** This property must not be bound.
17249
- * This property is used exclusively for handling SAPUI5 flexibility changes. Do not use it otherwise.
17567
+ * **Note:** This property must not be bound. It is used exclusively for handling SAPUI5 flexibility changes.
17568
+ * Do not use it otherwise.
17250
17569
  *
17251
17570
  * @since 1.87
17252
17571
  */
@@ -17255,8 +17574,8 @@ declare module "sap/ui/mdc/Table" {
17255
17574
  /**
17256
17575
  * Defines the aggregate conditions.
17257
17576
  *
17258
- * **Note:** This property must not be bound.
17259
- * This property is exclusively used for handling SAPUI5 flexibility changes. Do not use it otherwise.
17577
+ * **Note:** This property must not be bound. It is exclusively used for handling SAPUI5 flexibility changes.
17578
+ * Do not use it otherwise.
17260
17579
  *
17261
17580
  * @since 1.87
17262
17581
  */
@@ -17337,24 +17656,23 @@ declare module "sap/ui/mdc/Table" {
17337
17656
  * Specifies the table metadata.
17338
17657
  *
17339
17658
  * Whenever the `TableDelegate` needs to wait for, for example, server-side information to provide the `PropertyInfo`
17340
- * objects, specifying an array of {@link sap.ui.mdc.table.PropertyInfo PropertyInfo} objects here enables
17341
- * the table to speed up the initial setup.
17659
+ * objects, specifying an array of {@link sap.ui.mdc.table.PropertyInfo PropertyInfo} and {@link sap.ui.mdc.table.ComplexPropertyInfo ComplexPropertyInfo }
17660
+ * objects in this property enables the table to speed up the initial setup.
17342
17661
  *
17343
17662
  * Instead of requesting the `PropertyInfo` objects from the `TableDelegate` and waiting for them, the table
17344
17663
  * will use the `PropertyInfo` objects specified here for rendering-specific tasks, e.g. automatic column
17345
17664
  * width calculation, and to trigger the initial data request.
17346
17665
  *
17347
- * To enable the table for these tasks, certain attributes of a `PropertyInfo` must be specified. You can
17348
- * find the list of required attributes in the documentation of the `PropertyInfo`, for example, in {@link sap.ui.mdc.table.PropertyInfo}.
17666
+ * **Note:**
17667
+ * - This property is processed only once during the instantiation of the table. Any subsequent changes
17668
+ * have no effect.
17669
+ * - This property must not be bound.
17670
+ * - This property is used exclusively for SAPUI5 flexibility / Fiori Elements. Do not use it otherwise.
17349
17671
  *
17350
- * This property is processed only once during the instantiation of the table. Any subsequent changes have
17351
- * no effect.
17352
- *
17353
- * **Note**: This property must not be bound. **Note**: This property is used exclusively for SAPUI5 flexibility
17354
- * / Fiori Elements. Do not use it otherwise. **Note**: Existing properties (set via `sap.ui.mdc.Table#setPropertyInfo`)
17355
- * must not be removed and their attributes must not be changed during the {@link module:sap/ui/mdc/TableDelegate.fetchProperties fetchProperties }
17356
- * callback. Otherwise validation errors might occur whenever personalization-related control features (such
17357
- * as the opening of any personalization dialog) are activated.
17672
+ * - Existing properties (set via `sap.ui.mdc.Table#setPropertyInfo`) must not be removed and their attributes
17673
+ * must not be changed during the {@link module:sap/ui/mdc/TableDelegate.fetchProperties fetchProperties }
17674
+ * callback. Otherwise validation errors might occur whenever personalization-related control features (such
17675
+ * as the opening of any personalization dialog) are activated.
17358
17676
  *
17359
17677
  * @since 1.111
17360
17678
  */
@@ -17364,7 +17682,6 @@ declare module "sap/ui/mdc/Table" {
17364
17682
  * Determines whether the toolbar is visible.
17365
17683
  *
17366
17684
  * **Note:** Hiding the toolbar limits the functionality of the table in the following ways:
17367
- *
17368
17685
  * - The `showRowCount` property **must** be set to `false`.
17369
17686
  * - The export **must** be disabled by setting the `enableExport` property to `false`.
17370
17687
  * - For {@link sap.ui.mdc.table.ResponsiveTableType ResponsiveTable}, show and hide details won't be
@@ -17455,9 +17772,8 @@ declare module "sap/ui/mdc/Table" {
17455
17772
  * `false`.
17456
17773
  *
17457
17774
  * **Note:** The {@link sap.m.plugins.CopyProvider#extractData extractData} property of the `CopyProvider`
17458
- * must not be managed by the application.
17459
- * The `CopyProvider` requires a secure context to access the clipboard API. If the context is not secure,
17460
- * the plugin will not be added, and the Copy button will not be generated.
17775
+ * must not be managed by the application. The `CopyProvider` requires a secure context to access the clipboard
17776
+ * API. If the context is not secure, the plugin will not be added, and the Copy button will not be generated.
17461
17777
  *
17462
17778
  * @since 1.114
17463
17779
  */
@@ -17829,10 +18145,11 @@ declare module "sap/ui/mdc/table/Column" {
17829
18145
  /**
17830
18146
  * Gets current value of property {@link #getRequired required}.
17831
18147
  *
17832
- * Indicates whether the content of the column is required. **Note:** The table only takes care of announcing
17833
- * the state of the column header as defined by the `required` property. The application needs to take care
17834
- * of the screen reader announcement of the state of the table cells, for example, by setting the `required`
17835
- * property to `true` for `sap.m.Input`.
18148
+ * Indicates whether the content of the column is required.
18149
+ *
18150
+ * **Note:** The table only takes care of announcing the state of the column header as defined by the `required`
18151
+ * property. The application needs to take care of the screen reader announcement of the state of the table
18152
+ * cells, for example, by setting the `required` property to `true` for `sap.m.Input`.
17836
18153
  *
17837
18154
  * Default value is `false`.
17838
18155
  *
@@ -18014,10 +18331,11 @@ declare module "sap/ui/mdc/table/Column" {
18014
18331
  /**
18015
18332
  * Sets a new value for property {@link #getRequired required}.
18016
18333
  *
18017
- * Indicates whether the content of the column is required. **Note:** The table only takes care of announcing
18018
- * the state of the column header as defined by the `required` property. The application needs to take care
18019
- * of the screen reader announcement of the state of the table cells, for example, by setting the `required`
18020
- * property to `true` for `sap.m.Input`.
18334
+ * Indicates whether the content of the column is required.
18335
+ *
18336
+ * **Note:** The table only takes care of announcing the state of the column header as defined by the `required`
18337
+ * property. The application needs to take care of the screen reader announcement of the state of the table
18338
+ * cells, for example, by setting the `required` property to `true` for `sap.m.Input`.
18021
18339
  *
18022
18340
  * When called with a value of `null` or `undefined`, the default value of the property will be restored.
18023
18341
  *
@@ -18160,10 +18478,11 @@ declare module "sap/ui/mdc/table/Column" {
18160
18478
  propertyKey?: string | PropertyBindingInfo;
18161
18479
 
18162
18480
  /**
18163
- * Indicates whether the content of the column is required. **Note:** The table only takes care of announcing
18164
- * the state of the column header as defined by the `required` property. The application needs to take care
18165
- * of the screen reader announcement of the state of the table cells, for example, by setting the `required`
18166
- * property to `true` for `sap.m.Input`.
18481
+ * Indicates whether the content of the column is required.
18482
+ *
18483
+ * **Note:** The table only takes care of announcing the state of the column header as defined by the `required`
18484
+ * property. The application needs to take care of the screen reader announcement of the state of the table
18485
+ * cells, for example, by setting the `required` property to `true` for `sap.m.Input`.
18167
18486
  */
18168
18487
  required?: boolean | PropertyBindingInfo | `{${string}}`;
18169
18488
 
@@ -19213,11 +19532,9 @@ declare module "sap/ui/mdc/table/GridTableType" {
19213
19532
  /**
19214
19533
  * Gets current value of property {@link #getRowCount rowCount}.
19215
19534
  *
19216
- * Row count of the inner table.
19217
- * This property specifies the minimum row count if `sap.ui.mdc.enums.TableRowCountMode.Auto` is used.
19218
- * This property specifies the row count if `sap.ui.mdc.enums.TableRowCountMode.Interactive` or `sap.ui.mdc.enums.TableRowCountMode.Fixed`
19219
- * is used.
19220
- *
19535
+ * Row count of the inner table. This property specifies the minimum row count if `sap.ui.mdc.enums.TableRowCountMode.Auto`
19536
+ * is used. This property specifies the row count if `sap.ui.mdc.enums.TableRowCountMode.Interactive` or
19537
+ * `sap.ui.mdc.enums.TableRowCountMode.Fixed` is used.
19221
19538
  *
19222
19539
  * Default value is `10`.
19223
19540
  *
@@ -19327,11 +19644,9 @@ declare module "sap/ui/mdc/table/GridTableType" {
19327
19644
  /**
19328
19645
  * Sets a new value for property {@link #getRowCount rowCount}.
19329
19646
  *
19330
- * Row count of the inner table.
19331
- * This property specifies the minimum row count if `sap.ui.mdc.enums.TableRowCountMode.Auto` is used.
19332
- * This property specifies the row count if `sap.ui.mdc.enums.TableRowCountMode.Interactive` or `sap.ui.mdc.enums.TableRowCountMode.Fixed`
19333
- * is used.
19334
- *
19647
+ * Row count of the inner table. This property specifies the minimum row count if `sap.ui.mdc.enums.TableRowCountMode.Auto`
19648
+ * is used. This property specifies the row count if `sap.ui.mdc.enums.TableRowCountMode.Interactive` or
19649
+ * `sap.ui.mdc.enums.TableRowCountMode.Fixed` is used.
19335
19650
  *
19336
19651
  * When called with a value of `null` or `undefined`, the default value of the property will be restored.
19337
19652
  *
@@ -19450,10 +19765,9 @@ declare module "sap/ui/mdc/table/GridTableType" {
19450
19765
  | `{${string}}`;
19451
19766
 
19452
19767
  /**
19453
- * Row count of the inner table.
19454
- * This property specifies the minimum row count if `sap.ui.mdc.enums.TableRowCountMode.Auto` is used.
19455
- * This property specifies the row count if `sap.ui.mdc.enums.TableRowCountMode.Interactive` or `sap.ui.mdc.enums.TableRowCountMode.Fixed`
19456
- * is used.
19768
+ * Row count of the inner table. This property specifies the minimum row count if `sap.ui.mdc.enums.TableRowCountMode.Auto`
19769
+ * is used. This property specifies the row count if `sap.ui.mdc.enums.TableRowCountMode.Interactive` or
19770
+ * `sap.ui.mdc.enums.TableRowCountMode.Fixed` is used.
19457
19771
  */
19458
19772
  rowCount?: int | PropertyBindingInfo | `{${string}}`;
19459
19773
 
@@ -20461,9 +20775,8 @@ declare module "sap/ui/mdc/table/RowSettings" {
20461
20775
  *
20462
20776
  * The actions that appear at the end of a row.
20463
20777
  *
20464
- * **Note:** This aggregation cannot be bound with a factory.
20465
- * If the table type is {@link sap.ui.mdc.table.ResponsiveTableType ResponsiveTable}, only the `Navigation`
20466
- * row action type is supported.
20778
+ * **Note:** This aggregation cannot be bound with a factory. If the table type is {@link sap.ui.mdc.table.ResponsiveTableType ResponsiveTable},
20779
+ * only the `Navigation` row action type is supported.
20467
20780
  */
20468
20781
  getRowActions(): RowActionItem[];
20469
20782
  /**
@@ -20619,9 +20932,8 @@ declare module "sap/ui/mdc/table/RowSettings" {
20619
20932
  /**
20620
20933
  * The actions that appear at the end of a row.
20621
20934
  *
20622
- * **Note:** This aggregation cannot be bound with a factory.
20623
- * If the table type is {@link sap.ui.mdc.table.ResponsiveTableType ResponsiveTable}, only the `Navigation`
20624
- * row action type is supported.
20935
+ * **Note:** This aggregation cannot be bound with a factory. If the table type is {@link sap.ui.mdc.table.ResponsiveTableType ResponsiveTable},
20936
+ * only the `Navigation` row action type is supported.
20625
20937
  */
20626
20938
  rowActions?:
20627
20939
  | RowActionItem[]
@@ -20808,31 +21120,36 @@ declare module "sap/ui/mdc/table/TreeTableType" {
20808
21120
 
20809
21121
  declare module "sap/ui/mdc/util/PropertyHelper" {
20810
21122
  /**
20811
- * An object literal describing a data property.
21123
+ * An object literal that describes attributes of a complex data property. A complex property references
21124
+ * other properties in the `propertyInfos` attribute.
20812
21125
  */
20813
- export type PropertyInfo = {
21126
+ export type ComplexPropertyInfo = PropertyInfoBase & {
20814
21127
  /**
20815
- * Unique, stable key for the property. It must only contain characters allowed for IDs, see {@link sap.ui.core.ID}.
20816
- * Does not have to be an existing attribute in the data model or the technical name of an attribute in
20817
- * the data model.
21128
+ * A list of related properties (by key). These related properties must not themselves be complex.
20818
21129
  */
20819
- key: string;
21130
+ propertyInfos: string[];
21131
+ };
21132
+
21133
+ /**
21134
+ * An object literal that describes attributes of a data property.
21135
+ */
21136
+ export type PropertyInfo = PropertyInfoBase & {
20820
21137
  /**
20821
- * The technical path for a data source property.
21138
+ * The name of the data type
20822
21139
  */
20823
- path?: string;
21140
+ dataType: string;
20824
21141
  /**
20825
- * Translatable text that labels the property.
21142
+ * Defines the formatting options for the data type
20826
21143
  */
20827
- label: string;
21144
+ formatOptions?: object;
20828
21145
  /**
20829
- * Translatable text that can optionally be offered as tooltip (For example in a personalization dialog).
21146
+ * Defines the constraints for the data type
20830
21147
  */
20831
- tooltip?: string;
21148
+ constraints?: object;
20832
21149
  /**
20833
- * Whether the property is or can be visible to a user.
21150
+ * The technical path for a data source property
20834
21151
  */
20835
- visible?: boolean;
21152
+ path?: string;
20836
21153
  /**
20837
21154
  * Defines the maximum number of filter conditions for the property. Possible values that can be used:
20838
21155
  *
@@ -20842,29 +21159,39 @@ declare module "sap/ui/mdc/util/PropertyHelper" {
20842
21159
  */
20843
21160
  maxConditions?: int;
20844
21161
  /**
20845
- * The name of the data type
21162
+ * Whether filtering by this property is case-sensitive
20846
21163
  */
20847
- dataType: string;
21164
+ caseSensitive?: boolean;
21165
+ };
21166
+
21167
+ export type PropertyInfoBase = {
20848
21168
  /**
20849
- * Defines the format options for the data type
21169
+ * Unique, stable key for the property. It must only contain characters allowed for IDs, see {@link sap.ui.core.ID}.
21170
+ * Does not have to be an existing attribute in the data model or the technical name of an attribute in
21171
+ * the data model.
20850
21172
  */
20851
- formatOptions?: object;
21173
+ key: string;
20852
21174
  /**
20853
- * Defines the constraints for the data type
21175
+ * Translatable text that labels the property
20854
21176
  */
20855
- constraints?: object;
21177
+ label: string;
20856
21178
  /**
20857
- * Key of the group the property is inside. Used to visually group properties in personalization dialogs.
21179
+ * Translatable text that can optionally be offered as tooltip, for example, in a personalization dialog
21180
+ */
21181
+ tooltip?: string;
21182
+ /**
21183
+ * Whether the property is or can be visible to a user
21184
+ */
21185
+ visible?: boolean;
21186
+ /**
21187
+ * Key of the group in which the property is located. Used to visually group properties in personalization
21188
+ * dialogs.
20858
21189
  */
20859
21190
  group?: string;
20860
21191
  /**
20861
21192
  * Translatable text of the group.
20862
21193
  */
20863
21194
  groupLabel?: string;
20864
- /**
20865
- * Whether filtering by this property is case-sensitive.
20866
- */
20867
- caseSensitive?: boolean;
20868
21195
  };
20869
21196
  }
20870
21197
 
@@ -20877,10 +21204,6 @@ declare module "sap/ui/mdc/ValueHelp" {
20877
21204
 
20878
21205
  import ElementMetadata from "sap/ui/core/ElementMetadata";
20879
21206
 
20880
- import Context from "sap/ui/model/Context";
20881
-
20882
- import Control from "sap/ui/core/Control";
20883
-
20884
21207
  import { PropertyBindingInfo } from "sap/ui/base/ManagedObject";
20885
21208
 
20886
21209
  import Container from "sap/ui/mdc/valuehelp/base/Container";
@@ -21344,67 +21667,7 @@ declare module "sap/ui/mdc/ValueHelp" {
21344
21667
  /**
21345
21668
  * Configuration object type to determine a `ValueHelpItem` for a given value.
21346
21669
  */
21347
- export type ItemForValueConfiguration = {
21348
- /**
21349
- * Value as entered by user
21350
- */
21351
- value: any;
21352
- /**
21353
- * Value parsed by type of key to match the data type of the key
21354
- */
21355
- parsedValue?: any;
21356
- /**
21357
- * Value parsed by type of description to match the data type of the description
21358
- */
21359
- parsedDescription?: any;
21360
- /**
21361
- * Contextual information provided by the `payload` or `inParameters`/`outParameters` of the condition.
21362
- * This is only filled if the description needs to be determined for an existing condition.
21363
- */
21364
- context?: {
21365
- /**
21366
- * In parameters of the current condition (`inParameters` are not used any longer, but it might be filled
21367
- * in older conditions stored in variants.)
21368
- */
21369
- inParameter?: object;
21370
- /**
21371
- * Out parameters of the current condition (`outParameters` are not used any longer, but it might be filled
21372
- * in older conditions stored in variants.)
21373
- */
21374
- outParameter?: object;
21375
- /**
21376
- * Payload of the current condition
21377
- */
21378
- payload?: object;
21379
- };
21380
- /**
21381
- * `BindingContext` of the checked field. Inside a table, the `ValueHelp` element might be connected to
21382
- * a different row.
21383
- */
21384
- bindingContext?: Context;
21385
- /**
21386
- * If set, the value help checks only if there is an item with the given key. This is set to `false` if
21387
- * the value cannot be a valid key because of type validation.
21388
- */
21389
- checkKey: boolean;
21390
- /**
21391
- * If set, the value help checks only if there is an item with the given description. This is set to `false`
21392
- * if only the key is used in the field.
21393
- */
21394
- checkDescription: boolean;
21395
- /**
21396
- * If set, the check is done case-sensitively
21397
- */
21398
- caseSensitive?: boolean;
21399
- /**
21400
- * If set, only exact matches and no suggestions are requested
21401
- */
21402
- exactMatch?: boolean;
21403
- /**
21404
- * Instance of the calling control
21405
- */
21406
- control: Control;
21407
- };
21670
+ export type ItemForValueConfiguration = (emptyAllowed?: boolean) => object;
21408
21671
 
21409
21672
  /**
21410
21673
  * Configuration object type for normalized definition of a `ValueHelpItem`.
@@ -22238,27 +22501,6 @@ declare module "sap/ui/mdc/valuehelp/base/Container" {
22238
22501
  * @since 1.127.0
22239
22502
  */
22240
22503
  setVisualFocus(): void;
22241
- /**
22242
- * Defines if the typeahead container desires to be opened whenever a user clicks on a connected control
22243
- *
22244
- *
22245
- * @returns If `true`, the value help should open when user clicks into the connected field control
22246
- */
22247
- shouldOpenOnClick(): Promise<boolean>;
22248
- /**
22249
- * Defines if the typeahead container desires to be opened whenever a user focuses a connected control
22250
- *
22251
- *
22252
- * @returns If `true`, the value help should open when user focuses the connected field control
22253
- */
22254
- shouldOpenOnFocus(): Promise<boolean>;
22255
- /**
22256
- * Defines if the typeahead containers values can be navigated without visibly opening the help
22257
- *
22258
- *
22259
- * @returns If `true`, the value help should open when user used the arrow keys in the connected field control
22260
- */
22261
- shouldOpenOnNavigate(): boolean;
22262
22504
  /**
22263
22505
  * Unbinds the content from the container.
22264
22506
  *
@@ -22957,21 +23199,6 @@ declare module "sap/ui/mdc/valuehelp/base/Content" {
22957
23199
  * @since 1.127.0
22958
23200
  */
22959
23201
  setVisualFocus(): void;
22960
- /**
22961
- * Defines if the typeahead content desires opening the typeahead whenever a user clicks on a connected
22962
- * control
22963
- *
22964
- *
22965
- * @returns If `true`, the value help should open when user clicks into the connected field control
22966
- */
22967
- shouldOpenOnClick(): boolean;
22968
- /**
22969
- * Defines if the typeahead containers values can be navigated without visibly opening the help
22970
- *
22971
- *
22972
- * @returns If `true`, the value help should open when user used the arrow keys in the connected field control
22973
- */
22974
- shouldOpenOnNavigate(): boolean;
22975
23202
  }
22976
23203
  /**
22977
23204
  * Describes the settings that can be provided to the Content constructor.
@@ -24096,6 +24323,20 @@ declare module "sap/ui/mdc/valuehelp/content/FixedList" {
24096
24323
  * @returns Reference to `this` in order to allow method chaining
24097
24324
  */
24098
24325
  destroyItems(): this;
24326
+ /**
24327
+ * Gets current value of property {@link #getEmptyText emptyText}.
24328
+ *
24329
+ * If set, an item to clear the selection is added.
24330
+ *
24331
+ * This item is only available if the connected field can be cleared.
24332
+ *
24333
+ * Default value is `empty string`.
24334
+ *
24335
+ * @since 1.138
24336
+ *
24337
+ * @returns Value of property `emptyText`
24338
+ */
24339
+ getEmptyText(): string;
24099
24340
  /**
24100
24341
  * Gets current value of property {@link #getFilterList filterList}.
24101
24342
  *
@@ -24136,6 +24377,19 @@ declare module "sap/ui/mdc/valuehelp/content/FixedList" {
24136
24377
  * **Note:** Icons are currently not supported.
24137
24378
  */
24138
24379
  getItems(): FixedListItem[];
24380
+ /**
24381
+ * Gets current value of property {@link #getRestrictedToFixedValues restrictedToFixedValues}.
24382
+ *
24383
+ * If set, the connected field must not allow other values than the items of the `FixedList`. Free text
24384
+ * must be avoided.
24385
+ *
24386
+ * Default value is `false`.
24387
+ *
24388
+ * @since 1.138
24389
+ *
24390
+ * @returns Value of property `restrictedToFixedValues`
24391
+ */
24392
+ getRestrictedToFixedValues(): boolean;
24139
24393
  /**
24140
24394
  * Checks for the provided `sap.ui.mdc.valuehelp.content.FixedListItem` in the aggregation {@link #getItems items}.
24141
24395
  * and returns its index if found or -1 otherwise.
@@ -24188,6 +24442,27 @@ declare module "sap/ui/mdc/valuehelp/content/FixedList" {
24188
24442
  */
24189
24443
  vItem: int | string | FixedListItem
24190
24444
  ): FixedListItem | null;
24445
+ /**
24446
+ * Sets a new value for property {@link #getEmptyText emptyText}.
24447
+ *
24448
+ * If set, an item to clear the selection is added.
24449
+ *
24450
+ * This item is only available if the connected field can be cleared.
24451
+ *
24452
+ * When called with a value of `null` or `undefined`, the default value of the property will be restored.
24453
+ *
24454
+ * Default value is `empty string`.
24455
+ *
24456
+ * @since 1.138
24457
+ *
24458
+ * @returns Reference to `this` in order to allow method chaining
24459
+ */
24460
+ setEmptyText(
24461
+ /**
24462
+ * New value for property `emptyText`
24463
+ */
24464
+ sEmptyText?: string
24465
+ ): this;
24191
24466
  /**
24192
24467
  * Sets a new value for property {@link #getFilterList filterList}.
24193
24468
  *
@@ -24230,6 +24505,26 @@ declare module "sap/ui/mdc/valuehelp/content/FixedList" {
24230
24505
  */
24231
24506
  bGroupable?: boolean
24232
24507
  ): this;
24508
+ /**
24509
+ * Sets a new value for property {@link #getRestrictedToFixedValues restrictedToFixedValues}.
24510
+ *
24511
+ * If set, the connected field must not allow other values than the items of the `FixedList`. Free text
24512
+ * must be avoided.
24513
+ *
24514
+ * When called with a value of `null` or `undefined`, the default value of the property will be restored.
24515
+ *
24516
+ * Default value is `false`.
24517
+ *
24518
+ * @since 1.138
24519
+ *
24520
+ * @returns Reference to `this` in order to allow method chaining
24521
+ */
24522
+ setRestrictedToFixedValues(
24523
+ /**
24524
+ * New value for property `restrictedToFixedValues`
24525
+ */
24526
+ bRestrictedToFixedValues?: boolean
24527
+ ): this;
24233
24528
  }
24234
24529
  /**
24235
24530
  * Describes the settings that can be provided to the FixedList constructor.
@@ -24251,6 +24546,23 @@ declare module "sap/ui/mdc/valuehelp/content/FixedList" {
24251
24546
  */
24252
24547
  filterList?: boolean | PropertyBindingInfo | `{${string}}`;
24253
24548
 
24549
+ /**
24550
+ * If set, an item to clear the selection is added.
24551
+ *
24552
+ * This item is only available if the connected field can be cleared.
24553
+ *
24554
+ * @since 1.138
24555
+ */
24556
+ emptyText?: string | PropertyBindingInfo;
24557
+
24558
+ /**
24559
+ * If set, the connected field must not allow other values than the items of the `FixedList`. Free text
24560
+ * must be avoided.
24561
+ *
24562
+ * @since 1.138
24563
+ */
24564
+ restrictedToFixedValues?: boolean | PropertyBindingInfo | `{${string}}`;
24565
+
24254
24566
  /**
24255
24567
  * Items of the value help.
24256
24568
  *
@@ -25624,6 +25936,8 @@ declare namespace sap {
25624
25936
 
25625
25937
  "sap/ui/mdc/field/FieldMultiInput": undefined;
25626
25938
 
25939
+ "sap/ui/mdc/field/FieldSelect": undefined;
25940
+
25627
25941
  "sap/ui/mdc/field/ListFieldHelpItem": undefined;
25628
25942
 
25629
25943
  "sap/ui/mdc/field/MultiValueFieldDelegate": undefined;
@@ -25768,6 +26082,8 @@ declare namespace sap {
25768
26082
 
25769
26083
  "sap/ui/mdc/valuehelp/Popover": undefined;
25770
26084
 
26085
+ "sap/ui/mdc/valuehelp/RequestShowContainerDefault": undefined;
26086
+
25771
26087
  "sap/ui/mdc/ValueHelpDelegate": undefined;
25772
26088
  }
25773
26089
  }