@openui5/ts-types 1.127.2 → 1.127.4

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.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@openui5/ts-types",
3
- "version": "1.127.2",
3
+ "version": "1.127.4",
4
4
  "description": "OpenUI5 TypeScript Definitions",
5
5
  "homepage": "https://openui5.org",
6
6
  "author": "SAP SE (https://www.sap.com)",
package/types/sap.f.d.ts CHANGED
@@ -1,4 +1,4 @@
1
- // For Library Version: 1.127.2
1
+ // For Library Version: 1.127.4
2
2
 
3
3
  declare namespace sap {
4
4
  /**
package/types/sap.m.d.ts CHANGED
@@ -1,4 +1,4 @@
1
- // For Library Version: 1.127.2
1
+ // For Library Version: 1.127.4
2
2
 
3
3
  declare namespace sap {
4
4
  /**
@@ -1,4 +1,4 @@
1
- // For Library Version: 1.127.2
1
+ // For Library Version: 1.127.4
2
2
 
3
3
  declare namespace sap {
4
4
  /**
@@ -1,4 +1,4 @@
1
- // For Library Version: 1.127.2
1
+ // For Library Version: 1.127.4
2
2
 
3
3
  declare namespace sap {
4
4
  namespace ui {
@@ -1,4 +1,4 @@
1
- // For Library Version: 1.127.2
1
+ // For Library Version: 1.127.4
2
2
 
3
3
  declare namespace sap {
4
4
  namespace ui {
@@ -279,7 +279,7 @@ declare namespace sap {
279
279
  "sap/ui/thirdparty/qunit-2": undefined;
280
280
  }
281
281
  }
282
- // For Library Version: 1.127.2
282
+ // For Library Version: 1.127.4
283
283
 
284
284
  declare module "sap/base/assert" {
285
285
  /**
@@ -15714,6 +15714,11 @@ declare namespace sap {
15714
15714
  * Native scrolling does not need content wrapper. In this case, ID of the container element should be provided.
15715
15715
  */
15716
15716
  scrollContainerId?: string;
15717
+ /**
15718
+ * if true, the delegate event listeners are called before the event listeners of the element; default is
15719
+ * "false".
15720
+ */
15721
+ callBefore?: boolean;
15717
15722
  }
15718
15723
  );
15719
15724
 
@@ -53798,10 +53803,10 @@ declare namespace sap {
53798
53803
  */
53799
53804
  oContext: sap.ui.model.Context,
53800
53805
  /**
53801
- * Parameters, specifying the aggregation level for which contexts shall be fetched or (legacy signature
53802
- * variant) index of first child entry to return from the parent context (zero-based)
53806
+ * Parameters, specifying the aggregation level for which contexts shall be fetched or the index of the
53807
+ * first child entry to return from the parent contexts
53803
53808
  */
53804
- mParameters:
53809
+ mParameters?:
53805
53810
  | {
53806
53811
  /**
53807
53812
  * Level number for oContext, because it might occur at multiple levels; context with group ID `"/"` has
@@ -53913,7 +53918,7 @@ declare namespace sap {
53913
53918
  * value can be set to define the parameter `startIndex` as described in this parameter list. In this case,
53914
53919
  * the function parameters `iLength`, `iNumberOfExpandedLevels` and `iThreshold` become mandatory.
53915
53920
  */
53916
- mParameters:
53921
+ mParameters?:
53917
53922
  | {
53918
53923
  /**
53919
53924
  * Number of entries to return at and after the given start index; defaults to the model's size limit, see
@@ -75498,11 +75503,11 @@ declare namespace sap {
75498
75503
  */
75499
75504
  getCount(): number | undefined;
75500
75505
  /**
75501
- * Return node contexts for the tree
75506
+ * Return node contexts for the tree.
75502
75507
  *
75503
75508
  * @ui5-protected Do not call from applications (only from related classes in the framework)
75504
75509
  *
75505
- * @returns the contexts array
75510
+ * @returns the context's array
75506
75511
  */
75507
75512
  getNodeContexts(
75508
75513
  /**
@@ -75510,42 +75515,44 @@ declare namespace sap {
75510
75515
  */
75511
75516
  oContext: sap.ui.model.Context,
75512
75517
  /**
75513
- * the startIndex where to start the retrieval of contexts
75518
+ * the index from which to start the retrieval of contexts
75514
75519
  */
75515
- iStartIndex: int,
75520
+ iStartIndex?: int,
75516
75521
  /**
75517
- * determines how many contexts to retrieve beginning from the start index.
75522
+ * determines how many contexts to retrieve, beginning from the start index. Defaults to the model's size
75523
+ * limit; see {@link sap.ui.model.Model#setSizeLimit}.
75518
75524
  */
75519
- iLength: int
75525
+ iLength?: int
75520
75526
  ): sap.ui.model.Context[];
75521
75527
  /**
75522
- * Return root contexts for the tree
75528
+ * Return root contexts for the tree.
75523
75529
  *
75524
75530
  * @ui5-protected Do not call from applications (only from related classes in the framework)
75525
75531
  *
75526
- * @returns the contexts array
75532
+ * @returns the context's array
75527
75533
  */
75528
75534
  getRootContexts(
75529
75535
  /**
75530
- * the startIndex where to start the retrieval of contexts
75536
+ * the index from which to start the retrieval of contexts
75531
75537
  */
75532
- iStartIndex: int,
75538
+ iStartIndex?: int,
75533
75539
  /**
75534
- * determines how many contexts to retrieve beginning from the start index.
75540
+ * determines how many contexts to retrieve, beginning from the start index. Defaults to the model's size
75541
+ * limit; see {@link sap.ui.model.Model#setSizeLimit}.
75535
75542
  */
75536
- iLength: int
75537
- ): object[];
75543
+ iLength?: int
75544
+ ): sap.ui.model.Context[];
75538
75545
  /**
75539
75546
  * Returns if the node has child nodes.
75540
75547
  *
75541
75548
  *
75542
- * @returns true if node has children
75549
+ * @returns `true` if the node has children
75543
75550
  */
75544
75551
  hasChildren(
75545
75552
  /**
75546
75553
  * the context element of the node
75547
75554
  */
75548
- oContext: object
75555
+ oContext: sap.ui.model.Context
75549
75556
  ): boolean;
75550
75557
  /**
75551
75558
  * Sorts the contexts of this ClientTreeBinding. The tree will be sorted level by level. So the nodes are
@@ -79005,7 +79012,7 @@ declare namespace sap {
79005
79012
  /**
79006
79013
  * Context object for this binding (optional)
79007
79014
  */
79008
- oContext?: object,
79015
+ oContext?: sap.ui.model.Context,
79009
79016
  /**
79010
79017
  * The filters to be used initially with type {@link sap.ui.model.FilterType.Application}; call {@link #filter }
79011
79018
  * to replace them
@@ -79014,7 +79021,7 @@ declare namespace sap {
79014
79021
  /**
79015
79022
  * Additional model specific parameters (optional)
79016
79023
  */
79017
- mParameters?: string,
79024
+ mParameters?: object,
79018
79025
  /**
79019
79026
  * The sorters used initially; call {@link #sort} to replace them
79020
79027
  */
@@ -79106,7 +79113,7 @@ declare namespace sap {
79106
79113
  sFilterType?: sap.ui.model.FilterType
79107
79114
  ): void;
79108
79115
  /**
79109
- * Returns the number of child nodes of a specific context
79116
+ * Returns the number of child nodes of a specific context.
79110
79117
  *
79111
79118
  *
79112
79119
  * @returns the number of children
@@ -79115,7 +79122,7 @@ declare namespace sap {
79115
79122
  /**
79116
79123
  * the context element of the node
79117
79124
  */
79118
- oContext: Object
79125
+ oContext: sap.ui.model.Context
79119
79126
  ): int;
79120
79127
  /**
79121
79128
  * Returns the count of entries in the tree, or `undefined` if it is unknown. If the tree is filtered, the
@@ -79131,7 +79138,7 @@ declare namespace sap {
79131
79138
  */
79132
79139
  getCount(): number | undefined;
79133
79140
  /**
79134
- * Returns the current value of the bound target
79141
+ * Returns the current value of the bound target.
79135
79142
  *
79136
79143
  *
79137
79144
  * @returns the array of child contexts for the given node
@@ -79142,41 +79149,43 @@ declare namespace sap {
79142
79149
  */
79143
79150
  oContext: sap.ui.model.Context,
79144
79151
  /**
79145
- * the startIndex where to start the retrieval of contexts
79152
+ * the index from which to start the retrieval of contexts
79146
79153
  */
79147
- iStartIndex: int,
79154
+ iStartIndex?: int,
79148
79155
  /**
79149
- * determines how many contexts to retrieve beginning from the start index.
79156
+ * determines how many contexts to retrieve, beginning from the start index. Defaults to the model's size
79157
+ * limit; see {@link sap.ui.model.Model#setSizeLimit}.
79150
79158
  */
79151
- iLength: int
79159
+ iLength?: int
79152
79160
  ): sap.ui.model.Context[];
79153
79161
  /**
79154
- * Returns the current value of the bound target
79162
+ * Returns the current value of the bound target.
79155
79163
  *
79156
79164
  *
79157
79165
  * @returns the array of child contexts for the root node
79158
79166
  */
79159
79167
  getRootContexts(
79160
79168
  /**
79161
- * the startIndex where to start the retrieval of contexts
79169
+ * the index from which to start the retrieval of contexts
79162
79170
  */
79163
- iStartIndex: int,
79171
+ iStartIndex?: int,
79164
79172
  /**
79165
- * determines how many contexts to retrieve beginning from the start index.
79173
+ * determines how many contexts to retrieve, beginning from the start index. Defaults to the model's size
79174
+ * limit; see {@link sap.ui.model.Model#setSizeLimit}.
79166
79175
  */
79167
- iLength: int
79168
- ): any[];
79176
+ iLength?: int
79177
+ ): sap.ui.model.Context[];
79169
79178
  /**
79170
- * Returns if the node has child nodes
79179
+ * Returns `true` if the node has child nodes.
79171
79180
  *
79172
79181
  *
79173
- * @returns true if node has children
79182
+ * @returns `true` if the node has children
79174
79183
  */
79175
79184
  hasChildren(
79176
79185
  /**
79177
79186
  * the context element of the node
79178
79187
  */
79179
- oContext: Object
79188
+ oContext: sap.ui.model.Context
79180
79189
  ): boolean;
79181
79190
  /**
79182
79191
  * Sorts the tree according to the sorter definitions.
@@ -1,4 +1,4 @@
1
- // For Library Version: 1.127.2
1
+ // For Library Version: 1.127.4
2
2
 
3
3
  declare namespace sap {
4
4
  interface IUI5DefineDependencyNames {
@@ -1,4 +1,4 @@
1
- // For Library Version: 1.127.2
1
+ // For Library Version: 1.127.4
2
2
 
3
3
  declare namespace sap {
4
4
  namespace ui {
@@ -1,4 +1,4 @@
1
- // For Library Version: 1.127.2
1
+ // For Library Version: 1.127.4
2
2
 
3
3
  declare namespace sap {
4
4
  namespace ui {
@@ -1,4 +1,4 @@
1
- // For Library Version: 1.127.2
1
+ // For Library Version: 1.127.4
2
2
 
3
3
  declare namespace sap {
4
4
  namespace ui {
@@ -1,4 +1,4 @@
1
- // For Library Version: 1.127.2
1
+ // For Library Version: 1.127.4
2
2
 
3
3
  declare module "sap/ui/mdc/AggregationBaseDelegate" {
4
4
  import BaseDelegate from "sap/ui/mdc/BaseDelegate";
@@ -623,7 +623,9 @@ declare module "sap/ui/mdc/DefaultTypeMap" {
623
623
  /**
624
624
  * Generic {@link module:sap/ui/mdc/util/TypeMap TypeMap} configuration for simple use cases.
625
625
  *
626
- * **Note:** This {@link module:sap/ui/mdc/util/TypeMap TypeMap} implementation contains the following types:
626
+ * **Note:** The modules of all data types registered in a `TypeMap` must be loaded in advance.
627
+ * **Note:** This {@link module:sap/ui/mdc/util/TypeMap TypeMap} implementation contains the following
628
+ * types:
627
629
  *
628
630
  *
629
631
  * - {@link sap.ui.model.type.Boolean} (alias `Boolean`)
@@ -1569,7 +1571,8 @@ declare module "sap/ui/mdc/odata/TypeMap" {
1569
1571
  /**
1570
1572
  * OData-specific {@link module:sap/ui/mdc/util/TypeMap TypeMap} configuration.
1571
1573
  *
1572
- * **Note:** This `TypeMap` implementation contains the following types:
1574
+ * **Note:** The modules of all data types registered in a `TypeMap` must be loaded in advance.
1575
+ * **Note:** This `TypeMap` implementation contains the following types:
1573
1576
  *
1574
1577
  *
1575
1578
  * - {@link sap.ui.model.type.Boolean} (alias `Boolean`)
@@ -1740,7 +1743,8 @@ declare module "sap/ui/mdc/odata/v4/TypeMap" {
1740
1743
  /**
1741
1744
  * ODataV4-specific {@link module:sap/ui/mdc/util/TypeMap TypeMap} configuration.
1742
1745
  *
1743
- * **Note:** This `TypeMap` implementation contains the following types including ODataV4-specific configuration:
1746
+ * **Note:** The modules of all data types registered in a `TypeMap` must be loaded in advance.
1747
+ * **Note:** This `TypeMap` implementation contains the following types including ODataV4-specific configuration:
1744
1748
  *
1745
1749
  *
1746
1750
  * - {@link sap.ui.model.type.Boolean} (alias `Boolean`)
@@ -2050,6 +2054,8 @@ declare module "sap/ui/mdc/util/TypeMap" {
2050
2054
  * Configuration class for type handling in delegates. Allows mapping of model types to {@link sap.ui.mdc.enums.BaseType }
2051
2055
  * and enables model-specific type configuration.
2052
2056
  *
2057
+ * **Note:** The modules of all data types registered in a `TypeMap` must be loaded in advance.
2058
+ *
2053
2059
  * @since 1.114.0
2054
2060
  */
2055
2061
  interface TypeMap {
@@ -2133,8 +2139,6 @@ declare module "sap/ui/mdc/util/TypeMap" {
2133
2139
  /**
2134
2140
  * Gets a data type class based on a given name.
2135
2141
  *
2136
- * **Note:** The module of the data type needs to be loaded before.
2137
- *
2138
2142
  *
2139
2143
  * @returns Corresponding data type class
2140
2144
  */
@@ -2525,7 +2529,7 @@ declare module "sap/ui/mdc/ValueHelpDelegate" {
2525
2529
  * This might be extended with payload-dependent filters.
2526
2530
  *
2527
2531
  * @since 1.101.0
2528
- * @deprecated - (since 1.118.0) - replaced by {@link module:sap/ui/mdc/ValueHelpDelegate.findConditionsForContext findConditionsForContext}
2532
+ * @deprecated (since 1.118) - replaced by {@link module:sap/ui/mdc/ValueHelpDelegate.findConditionsForContext findConditionsForContext}.
2529
2533
  *
2530
2534
  * @returns `true` if item is selected
2531
2535
  */
@@ -19791,7 +19795,8 @@ declare namespace sap {
19791
19795
  *
19792
19796
  * Do not use the `conditions` property, use the `value` and `additionalValue` properties instead.
19793
19797
  *
19794
- * @deprecated - Not supported, use the `value` property and `additionalValue` property to bind the control.
19798
+ * @deprecated (since 1.54) - this property is not supported for the `Field`. Use the `value` property and
19799
+ * `additionalValue` property to bind the control.
19795
19800
  *
19796
19801
  * @returns Reference to `this` to allow method chaining
19797
19802
  */
@@ -19864,7 +19869,8 @@ declare namespace sap {
19864
19869
  *
19865
19870
  * Do not use the `conditions` property, use the `value` and `additionalValue` properties instead.
19866
19871
  *
19867
- * @deprecated - Not supported, use the `value` property and `additionalValue` property to bind the control.
19872
+ * @deprecated (since 1.54) - this property is not supported for the `Field`. Use the `value` property and
19873
+ * `additionalValue` property to bind the control.
19868
19874
  *
19869
19875
  * @returns Conditions of the field
19870
19876
  */
@@ -19877,7 +19883,8 @@ declare namespace sap {
19877
19883
  * **Note:** If the `value` property is bound to a model using a type, this type is used. In this case the
19878
19884
  * value of the `dataType` property is ignored.
19879
19885
  *
19880
- * @deprecated - Not supported, the type in the binding to the `value` property is used.
19886
+ * @deprecated (since 1.54) - this property is not supported for the `Field`. The type in the binding to
19887
+ * the `value` property is used.
19881
19888
  *
19882
19889
  * @returns Value of property `dataType`
19883
19890
  */
@@ -19890,8 +19897,8 @@ declare namespace sap {
19890
19897
  * **Note:** If the `value` property is bound to a model using a type, this type is used. In this case the
19891
19898
  * values of the `dataType` property and the `dataTypeConstraints` property are ignored.
19892
19899
  *
19893
- * @deprecated - Not supported, the `Constraints` of the type in the binding to the `value` property is
19894
- * used.
19900
+ * @deprecated (since 1.54) - this property is not supported for the `Field`. The `Constraints` of the type
19901
+ * in the binding to the `value` property is used.
19895
19902
  *
19896
19903
  * @returns Value of property `dataTypeConstraints`
19897
19904
  */
@@ -19904,8 +19911,8 @@ declare namespace sap {
19904
19911
  * **Note:** If the `value` property is bound to a model using a type, this type is used. In this case the
19905
19912
  * values of the `dataType` property and the `dataTypeFormatOptions` property are ignored.
19906
19913
  *
19907
- * @deprecated - Not supported, the `FormatOptions` of the type in the binding to the `value` property is
19908
- * used.
19914
+ * @deprecated (since 1.54) - this property is not supported for the `Field`. The `FormatOptions` of the
19915
+ * type in the binding to the `value` property is used.
19909
19916
  *
19910
19917
  * @returns Value of property `dataTypeFormatOptions`
19911
19918
  */
@@ -19945,7 +19952,8 @@ declare namespace sap {
19945
19952
  *
19946
19953
  * Do not use the `conditions` property, use the `value` and `additionalValue` properties instead.
19947
19954
  *
19948
- * @deprecated - Not supported, use the `value` property and `additionalValue` property to bind the control.
19955
+ * @deprecated (since 1.54) - this property is not supported for the `Field`. Use the `value` property and
19956
+ * `additionalValue` property to bind the control.
19949
19957
  *
19950
19958
  * @returns Reference to `this` to allow method chaining
19951
19959
  */
@@ -19963,7 +19971,8 @@ declare namespace sap {
19963
19971
  * **Note:** If the `value` property is bound to a model using a type, this type is used. In this case the
19964
19972
  * value of the `dataType` property is ignored.
19965
19973
  *
19966
- * @deprecated - Not supported, the type in the binding to the `value` property is used.
19974
+ * @deprecated (since 1.54) - this property is not supported for the `Field`. The type in the binding to
19975
+ * the `value` property is used.
19967
19976
  *
19968
19977
  * @returns Reference to `this` to allow method chaining
19969
19978
  */
@@ -19981,8 +19990,8 @@ declare namespace sap {
19981
19990
  * **Note:** If the `value` property is bound to a model using a type, this type is used. In this case the
19982
19991
  * values of the `dataType` property and the `dataTypeConstraints` property are ignored.
19983
19992
  *
19984
- * @deprecated - Not supported, the `Constraints` of the type in the binding to the `value` property is
19985
- * used.
19993
+ * @deprecated (since 1.54) - this property is not supported for the `Field`. The `Constraints` of the type
19994
+ * in the binding to the `value` property is used.
19986
19995
  *
19987
19996
  * @returns Reference to `this` to allow method chaining
19988
19997
  */
@@ -20000,8 +20009,8 @@ declare namespace sap {
20000
20009
  * **Note:** If the `value` property is bound to a model using a type, this type is used. In this case the
20001
20010
  * values of the `dataType` property and the `dataTypeFormatOptions` property are ignored.
20002
20011
  *
20003
- * @deprecated - Not supported, the `FormatOptions` of the type in the binding to the `value` property is
20004
- * used.
20012
+ * @deprecated (since 1.54) - this property is not supported for the `Field`. The `FormatOptions` of the
20013
+ * type in the binding to the `value` property is used.
20005
20014
  *
20006
20015
  * @returns Reference to `this` to allow method chaining
20007
20016
  */
@@ -20014,7 +20023,7 @@ declare namespace sap {
20014
20023
  /**
20015
20024
  * This property must not be set for the `Field`
20016
20025
  *
20017
- * @deprecated - Not supported, this property is not supported for the `Field`.
20026
+ * @deprecated (since 1.54) - this property is not supported for the `Field`.
20018
20027
  *
20019
20028
  * @returns `this` to allow method chaining.
20020
20029
  */
@@ -20054,7 +20063,8 @@ declare namespace sap {
20054
20063
  *
20055
20064
  * Do not use the `conditions` property, use the `value` and `additionalValue` properties instead.
20056
20065
  *
20057
- * @deprecated - Not supported, use the `value` property and `additionalValue` property to bind the control.
20066
+ * @deprecated (since 1.54) - this property is not supported for the `Field`. Use the `value` property and
20067
+ * `additionalValue` property to bind the control.
20058
20068
  *
20059
20069
  * @returns Reference to `this` to allow method chaining
20060
20070
  */
@@ -21011,7 +21021,8 @@ declare namespace sap {
21011
21021
  *
21012
21022
  * Do not use the `conditions` property, use the `value` and `additionalValue` properties instead.
21013
21023
  *
21014
- * @deprecated - Not supported, use the `value` property and `additionalValue` property to bind the control.
21024
+ * @deprecated (since 1.93) - this property is not supported for the `MultiValueField`. Use the `items`
21025
+ * aggregation to bind the control.
21015
21026
  *
21016
21027
  * @returns Reference to `this` to allow method chaining
21017
21028
  */
@@ -21079,7 +21090,8 @@ declare namespace sap {
21079
21090
  *
21080
21091
  * Do not use the `conditions` property, use the `items` aggregation instead.
21081
21092
  *
21082
- * @deprecated - Not supported, use the `items` aggregation to bind the control.
21093
+ * @deprecated (since 1.54) - this property is not supported for the `MultiValueField`. Use the `items`
21094
+ * aggregation to bind the control.
21083
21095
  *
21084
21096
  * @returns conditions of the field
21085
21097
  */
@@ -21092,7 +21104,8 @@ declare namespace sap {
21092
21104
  * **Note:** If the `items` aggregation is bound to a model using a type, this type is used. In this case
21093
21105
  * the value of the `dataType` property is ignored.
21094
21106
  *
21095
- * @deprecated - Not supported, the type in the binding to the `value` property is used.
21107
+ * @deprecated (since 1.93) - this property is not supported for the `MultiValueField`. The type in the
21108
+ * binding to the `items` aggregation is used.
21096
21109
  *
21097
21110
  * @returns Value of property `dataType`
21098
21111
  */
@@ -21105,8 +21118,8 @@ declare namespace sap {
21105
21118
  * **Note:** If the `items` aggregation is bound to a model using a type, this type is used. In this case
21106
21119
  * the values of the `dataType` property and the `dataTypeConstraints` property are ignored.
21107
21120
  *
21108
- * @deprecated - Not supported, the `Constraints` of the type in the binding to the `value` property is
21109
- * used.
21121
+ * @deprecated (since 1.93) - this property is not supported for the `MultiValueField`. The type in the
21122
+ * binding to the `items` aggregation is used.
21110
21123
  *
21111
21124
  * @returns Value of property `dataTypeConstraints`
21112
21125
  */
@@ -21119,8 +21132,8 @@ declare namespace sap {
21119
21132
  * **Note:** If the `items` aggregation is bound to a model using a type, this type is used. In this case
21120
21133
  * the values of the `dataType` property and the `dataTypeFormatOptions` property are ignored.
21121
21134
  *
21122
- * @deprecated - Not supported, the `FormatOptions` of the type in the binding to the `value` property is
21123
- * used.
21135
+ * @deprecated (since 1.93) - this property is not supported for the `MultiValueField`. The type in the
21136
+ * binding to the `items` aggregation is used.
21124
21137
  *
21125
21138
  * @returns Value of property `dataTypeFormatOptions`
21126
21139
  */
@@ -21163,7 +21176,7 @@ declare namespace sap {
21163
21176
  /**
21164
21177
  * Gets current value of property {@link #getMultipleLines multipleLines}.
21165
21178
  *
21166
- * @deprecated - This property is not supported for multi-value fields.
21179
+ * @deprecated (since 1.93) - this property is not supported for the `MultiValueField`.
21167
21180
  *
21168
21181
  * @returns Value for property `multipleLines`
21169
21182
  */
@@ -21225,7 +21238,8 @@ declare namespace sap {
21225
21238
  *
21226
21239
  * Do not use the `conditions` property, use the `items` aggregation instead.
21227
21240
  *
21228
- * @deprecated - Not supported, use the `items` aggregation to bind the control.
21241
+ * @deprecated (since 1.54) - this property is not supported for the `MultiValueField`. Use the `items`
21242
+ * aggregation to bind the control.
21229
21243
  *
21230
21244
  * @returns Reference to `this` to allow method chaining
21231
21245
  */
@@ -21242,7 +21256,8 @@ declare namespace sap {
21242
21256
  * **Note:** If the `items` aggregation is bound to a model using a type, this type is used. In this case
21243
21257
  * the value of the `dataType` property is ignored.
21244
21258
  *
21245
- * @deprecated - Not supported, the type in the binding to the `items` aggregation is used.
21259
+ * @deprecated (since 1.93) - this property is not supported for the `MultiValueField`. The type in the
21260
+ * binding to the `items` aggregation is used.
21246
21261
  *
21247
21262
  * @returns Reference to `this` to allow method chaining
21248
21263
  */
@@ -21260,7 +21275,8 @@ declare namespace sap {
21260
21275
  * **Note:** If the `items` aggregation is bound to a model using a type, this type is used. In this case
21261
21276
  * the values of the `dataType` property and the `dataTypeConstraints` property are ignored.
21262
21277
  *
21263
- * @deprecated - Not supported, the type in the binding to the `items` aggregation is used.
21278
+ * @deprecated (since 1.93) - this property is not supported for the `MultiValueField`. The type in the
21279
+ * binding to the `items` aggregation is used.
21264
21280
  *
21265
21281
  * @returns Reference to `this` to allow method chaining
21266
21282
  */
@@ -21278,7 +21294,8 @@ declare namespace sap {
21278
21294
  * **Note:** If the `items` aggregation is bound to a model using a type, this type is used. In this case
21279
21295
  * the values of the `dataType` property and the `dataTypeFormatOptions` property are ignored.
21280
21296
  *
21281
- * @deprecated - Not supported, the type in the binding to the `items` aggregation is used.
21297
+ * @deprecated (since 1.93) - this property is not supported for the `MultiValueField`. The type in the
21298
+ * binding to the `items` aggregation is used.
21282
21299
  *
21283
21300
  * @returns Reference to `this` to allow method chaining
21284
21301
  */
@@ -21323,7 +21340,7 @@ declare namespace sap {
21323
21340
  /**
21324
21341
  * This property must not be set for the `MultiValueField` control.
21325
21342
  *
21326
- * @deprecated - Not supported, this property is not supported for the `MultiValueField` control.
21343
+ * @deprecated (since 1.93) - this property is not supported for the `MultiValueField` control.
21327
21344
  *
21328
21345
  * @returns `this` to allow method chaining.
21329
21346
  */
@@ -21336,7 +21353,7 @@ declare namespace sap {
21336
21353
  /**
21337
21354
  * Sets a new value for property {@link #getMultipleLines multipleLines}.
21338
21355
  *
21339
- * @deprecated - This property is not supported for multi-value fields.
21356
+ * @deprecated (since 1.93) - this property is not supported for the `MultiValueField`.
21340
21357
  *
21341
21358
  * @returns Reference to `this` to allow method chaining
21342
21359
  */
@@ -21351,7 +21368,8 @@ declare namespace sap {
21351
21368
  *
21352
21369
  * Do not use the `conditions` property, use the `value` and `additionalValue` properties instead.
21353
21370
  *
21354
- * @deprecated - Not supported, use the `value` property and `additionalValue` property to bind the control.
21371
+ * @deprecated (since 1.93) - this property is not supported for the `MultiValueField`. Use the `items`
21372
+ * aggregation to bind the control.
21355
21373
  *
21356
21374
  * @returns Reference to `this` to allow method chaining
21357
21375
  */
@@ -1,4 +1,4 @@
1
- // For Library Version: 1.127.2
1
+ // For Library Version: 1.127.4
2
2
 
3
3
  declare module "sap/ui/rta/api/startAdaptation" {
4
4
  /**
@@ -1,4 +1,4 @@
1
- // For Library Version: 1.127.2
1
+ // For Library Version: 1.127.4
2
2
 
3
3
  declare namespace sap {
4
4
  namespace ui {
@@ -1,4 +1,4 @@
1
- // For Library Version: 1.127.2
1
+ // For Library Version: 1.127.4
2
2
 
3
3
  declare namespace sap {
4
4
  namespace ui {
@@ -1,4 +1,4 @@
1
- // For Library Version: 1.127.2
1
+ // For Library Version: 1.127.4
2
2
 
3
3
  declare namespace sap {
4
4
  namespace ui {
@@ -1,4 +1,4 @@
1
- // For Library Version: 1.127.2
1
+ // For Library Version: 1.127.4
2
2
 
3
3
  declare namespace sap {
4
4
  interface IUI5DefineDependencyNames {
@@ -1,4 +1,4 @@
1
- // For Library Version: 1.127.2
1
+ // For Library Version: 1.127.4
2
2
 
3
3
  declare namespace sap {
4
4
  namespace ui {
@@ -1,4 +1,4 @@
1
- // For Library Version: 1.127.2
1
+ // For Library Version: 1.127.4
2
2
 
3
3
  declare namespace sap {
4
4
  namespace ui {
@@ -1,4 +1,4 @@
1
- // For Library Version: 1.127.2
1
+ // For Library Version: 1.127.4
2
2
 
3
3
  declare namespace sap {
4
4
  namespace ui {
@@ -1,4 +1,4 @@
1
- // For Library Version: 1.127.2
1
+ // For Library Version: 1.127.4
2
2
 
3
3
  declare namespace sap {
4
4
  namespace ui {
@@ -1,4 +1,4 @@
1
- // For Library Version: 1.127.2
1
+ // For Library Version: 1.127.4
2
2
 
3
3
  declare namespace sap {
4
4
  namespace ui {
@@ -1,4 +1,4 @@
1
- // For Library Version: 1.127.2
1
+ // For Library Version: 1.127.4
2
2
 
3
3
  declare namespace sap {
4
4
  /**