@openui5/ts-types 1.124.7 → 1.124.9
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 +1 -1
- package/types/sap.f.d.ts +1 -1
- package/types/sap.m.d.ts +4 -1
- package/types/sap.tnt.d.ts +1 -1
- package/types/sap.ui.codeeditor.d.ts +1 -1
- package/types/sap.ui.commons.d.ts +1 -1
- package/types/sap.ui.core.d.ts +47 -38
- package/types/sap.ui.dt.d.ts +1 -1
- package/types/sap.ui.fl.d.ts +1 -1
- package/types/sap.ui.integration.d.ts +1 -1
- package/types/sap.ui.layout.d.ts +1 -1
- package/types/sap.ui.mdc.d.ts +55 -37
- package/types/sap.ui.rta.d.ts +1 -1
- package/types/sap.ui.suite.d.ts +1 -1
- package/types/sap.ui.support.d.ts +1 -1
- package/types/sap.ui.table.d.ts +1 -1
- package/types/sap.ui.testrecorder.d.ts +1 -1
- package/types/sap.ui.unified.d.ts +1 -1
- package/types/sap.ui.ux3.d.ts +1 -1
- package/types/sap.ui.webc.common.d.ts +1 -1
- package/types/sap.ui.webc.fiori.d.ts +1 -1
- package/types/sap.ui.webc.main.d.ts +1 -1
- package/types/sap.uxap.d.ts +1 -1
package/package.json
CHANGED
package/types/sap.f.d.ts
CHANGED
package/types/sap.m.d.ts
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
// For Library Version: 1.124.
|
|
1
|
+
// For Library Version: 1.124.9
|
|
2
2
|
|
|
3
3
|
declare namespace sap {
|
|
4
4
|
/**
|
|
@@ -21220,6 +21220,9 @@ declare namespace sap {
|
|
|
21220
21220
|
* attach them to your application.
|
|
21221
21221
|
* This control builds on the {@link sap.m.UploadCollection} control, providing better handling of headers
|
|
21222
21222
|
* and requests, unified behavior of instant and deferred uploads, as well as improved progress indication.
|
|
21223
|
+
* We now ensure that the control handles item insertion and deletion if the items aggregation is not bound
|
|
21224
|
+
* to a model. It allows the connected model to not only manage the insertion and deletion updates but it
|
|
21225
|
+
* also helps to avoid template-related issues and ensures better data handling.
|
|
21223
21226
|
*
|
|
21224
21227
|
* @since 1.63
|
|
21225
21228
|
*/
|
package/types/sap.tnt.d.ts
CHANGED
package/types/sap.ui.core.d.ts
CHANGED
|
@@ -279,7 +279,7 @@ declare namespace sap {
|
|
|
279
279
|
"sap/ui/thirdparty/qunit-2": undefined;
|
|
280
280
|
}
|
|
281
281
|
}
|
|
282
|
-
// For Library Version: 1.124.
|
|
282
|
+
// For Library Version: 1.124.9
|
|
283
283
|
|
|
284
284
|
declare module "sap/base/assert" {
|
|
285
285
|
/**
|
|
@@ -15675,6 +15675,11 @@ declare namespace sap {
|
|
|
15675
15675
|
* Native scrolling does not need content wrapper. In this case, ID of the container element should be provided.
|
|
15676
15676
|
*/
|
|
15677
15677
|
scrollContainerId?: string;
|
|
15678
|
+
/**
|
|
15679
|
+
* if true, the delegate event listeners are called before the event listeners of the element; default is
|
|
15680
|
+
* "false".
|
|
15681
|
+
*/
|
|
15682
|
+
callBefore?: boolean;
|
|
15678
15683
|
}
|
|
15679
15684
|
);
|
|
15680
15685
|
|
|
@@ -53572,10 +53577,10 @@ declare namespace sap {
|
|
|
53572
53577
|
*/
|
|
53573
53578
|
oContext: sap.ui.model.Context,
|
|
53574
53579
|
/**
|
|
53575
|
-
* Parameters, specifying the aggregation level for which contexts shall be fetched or
|
|
53576
|
-
*
|
|
53580
|
+
* Parameters, specifying the aggregation level for which contexts shall be fetched or the index of the
|
|
53581
|
+
* first child entry to return from the parent contexts
|
|
53577
53582
|
*/
|
|
53578
|
-
mParameters
|
|
53583
|
+
mParameters?:
|
|
53579
53584
|
| {
|
|
53580
53585
|
/**
|
|
53581
53586
|
* Level number for oContext, because it might occur at multiple levels; context with group ID `"/"` has
|
|
@@ -53687,7 +53692,7 @@ declare namespace sap {
|
|
|
53687
53692
|
* value can be set to define the parameter `startIndex` as described in this parameter list. In this case,
|
|
53688
53693
|
* the function parameters `iLength`, `iNumberOfExpandedLevels` and `iThreshold` become mandatory.
|
|
53689
53694
|
*/
|
|
53690
|
-
mParameters
|
|
53695
|
+
mParameters?:
|
|
53691
53696
|
| {
|
|
53692
53697
|
/**
|
|
53693
53698
|
* Number of entries to return at and after the given start index; defaults to the model's size limit, see
|
|
@@ -75247,11 +75252,11 @@ declare namespace sap {
|
|
|
75247
75252
|
*/
|
|
75248
75253
|
getCount(): number | undefined;
|
|
75249
75254
|
/**
|
|
75250
|
-
* Return node contexts for the tree
|
|
75255
|
+
* Return node contexts for the tree.
|
|
75251
75256
|
*
|
|
75252
75257
|
* @ui5-protected Do not call from applications (only from related classes in the framework)
|
|
75253
75258
|
*
|
|
75254
|
-
* @returns the
|
|
75259
|
+
* @returns the context's array
|
|
75255
75260
|
*/
|
|
75256
75261
|
getNodeContexts(
|
|
75257
75262
|
/**
|
|
@@ -75259,42 +75264,44 @@ declare namespace sap {
|
|
|
75259
75264
|
*/
|
|
75260
75265
|
oContext: sap.ui.model.Context,
|
|
75261
75266
|
/**
|
|
75262
|
-
* the
|
|
75267
|
+
* the index from which to start the retrieval of contexts
|
|
75263
75268
|
*/
|
|
75264
|
-
iStartIndex
|
|
75269
|
+
iStartIndex?: int,
|
|
75265
75270
|
/**
|
|
75266
|
-
* determines how many contexts to retrieve beginning from the start index.
|
|
75271
|
+
* determines how many contexts to retrieve, beginning from the start index. Defaults to the model's size
|
|
75272
|
+
* limit; see {@link sap.ui.model.Model#setSizeLimit}.
|
|
75267
75273
|
*/
|
|
75268
|
-
iLength
|
|
75274
|
+
iLength?: int
|
|
75269
75275
|
): sap.ui.model.Context[];
|
|
75270
75276
|
/**
|
|
75271
|
-
* Return root contexts for the tree
|
|
75277
|
+
* Return root contexts for the tree.
|
|
75272
75278
|
*
|
|
75273
75279
|
* @ui5-protected Do not call from applications (only from related classes in the framework)
|
|
75274
75280
|
*
|
|
75275
|
-
* @returns the
|
|
75281
|
+
* @returns the context's array
|
|
75276
75282
|
*/
|
|
75277
75283
|
getRootContexts(
|
|
75278
75284
|
/**
|
|
75279
|
-
* the
|
|
75285
|
+
* the index from which to start the retrieval of contexts
|
|
75280
75286
|
*/
|
|
75281
|
-
iStartIndex
|
|
75287
|
+
iStartIndex?: int,
|
|
75282
75288
|
/**
|
|
75283
|
-
* determines how many contexts to retrieve beginning from the start index.
|
|
75289
|
+
* determines how many contexts to retrieve, beginning from the start index. Defaults to the model's size
|
|
75290
|
+
* limit; see {@link sap.ui.model.Model#setSizeLimit}.
|
|
75284
75291
|
*/
|
|
75285
|
-
iLength
|
|
75286
|
-
):
|
|
75292
|
+
iLength?: int
|
|
75293
|
+
): sap.ui.model.Context[];
|
|
75287
75294
|
/**
|
|
75288
75295
|
* Returns if the node has child nodes.
|
|
75289
75296
|
*
|
|
75290
75297
|
*
|
|
75291
|
-
* @returns true if node has children
|
|
75298
|
+
* @returns `true` if the node has children
|
|
75292
75299
|
*/
|
|
75293
75300
|
hasChildren(
|
|
75294
75301
|
/**
|
|
75295
75302
|
* the context element of the node
|
|
75296
75303
|
*/
|
|
75297
|
-
oContext:
|
|
75304
|
+
oContext: sap.ui.model.Context
|
|
75298
75305
|
): boolean;
|
|
75299
75306
|
/**
|
|
75300
75307
|
* Sorts the contexts of this ClientTreeBinding. The tree will be sorted level by level. So the nodes are
|
|
@@ -78754,7 +78761,7 @@ declare namespace sap {
|
|
|
78754
78761
|
/**
|
|
78755
78762
|
* Context object for this binding (optional)
|
|
78756
78763
|
*/
|
|
78757
|
-
oContext?:
|
|
78764
|
+
oContext?: sap.ui.model.Context,
|
|
78758
78765
|
/**
|
|
78759
78766
|
* The filters to be used initially with type {@link sap.ui.model.FilterType.Application}; call {@link #filter }
|
|
78760
78767
|
* to replace them
|
|
@@ -78763,7 +78770,7 @@ declare namespace sap {
|
|
|
78763
78770
|
/**
|
|
78764
78771
|
* Additional model specific parameters (optional)
|
|
78765
78772
|
*/
|
|
78766
|
-
mParameters?:
|
|
78773
|
+
mParameters?: object,
|
|
78767
78774
|
/**
|
|
78768
78775
|
* The sorters used initially; call {@link #sort} to replace them
|
|
78769
78776
|
*/
|
|
@@ -78855,7 +78862,7 @@ declare namespace sap {
|
|
|
78855
78862
|
sFilterType?: sap.ui.model.FilterType
|
|
78856
78863
|
): void;
|
|
78857
78864
|
/**
|
|
78858
|
-
* Returns the number of child nodes of a specific context
|
|
78865
|
+
* Returns the number of child nodes of a specific context.
|
|
78859
78866
|
*
|
|
78860
78867
|
*
|
|
78861
78868
|
* @returns the number of children
|
|
@@ -78864,7 +78871,7 @@ declare namespace sap {
|
|
|
78864
78871
|
/**
|
|
78865
78872
|
* the context element of the node
|
|
78866
78873
|
*/
|
|
78867
|
-
oContext:
|
|
78874
|
+
oContext: sap.ui.model.Context
|
|
78868
78875
|
): int;
|
|
78869
78876
|
/**
|
|
78870
78877
|
* Returns the count of entries in the tree, or `undefined` if it is unknown. If the tree is filtered, the
|
|
@@ -78880,7 +78887,7 @@ declare namespace sap {
|
|
|
78880
78887
|
*/
|
|
78881
78888
|
getCount(): number | undefined;
|
|
78882
78889
|
/**
|
|
78883
|
-
* Returns the current value of the bound target
|
|
78890
|
+
* Returns the current value of the bound target.
|
|
78884
78891
|
*
|
|
78885
78892
|
*
|
|
78886
78893
|
* @returns the array of child contexts for the given node
|
|
@@ -78891,41 +78898,43 @@ declare namespace sap {
|
|
|
78891
78898
|
*/
|
|
78892
78899
|
oContext: sap.ui.model.Context,
|
|
78893
78900
|
/**
|
|
78894
|
-
* the
|
|
78901
|
+
* the index from which to start the retrieval of contexts
|
|
78895
78902
|
*/
|
|
78896
|
-
iStartIndex
|
|
78903
|
+
iStartIndex?: int,
|
|
78897
78904
|
/**
|
|
78898
|
-
* determines how many contexts to retrieve beginning from the start index.
|
|
78905
|
+
* determines how many contexts to retrieve, beginning from the start index. Defaults to the model's size
|
|
78906
|
+
* limit; see {@link sap.ui.model.Model#setSizeLimit}.
|
|
78899
78907
|
*/
|
|
78900
|
-
iLength
|
|
78908
|
+
iLength?: int
|
|
78901
78909
|
): sap.ui.model.Context[];
|
|
78902
78910
|
/**
|
|
78903
|
-
* Returns the current value of the bound target
|
|
78911
|
+
* Returns the current value of the bound target.
|
|
78904
78912
|
*
|
|
78905
78913
|
*
|
|
78906
78914
|
* @returns the array of child contexts for the root node
|
|
78907
78915
|
*/
|
|
78908
78916
|
getRootContexts(
|
|
78909
78917
|
/**
|
|
78910
|
-
* the
|
|
78918
|
+
* the index from which to start the retrieval of contexts
|
|
78911
78919
|
*/
|
|
78912
|
-
iStartIndex
|
|
78920
|
+
iStartIndex?: int,
|
|
78913
78921
|
/**
|
|
78914
|
-
* determines how many contexts to retrieve beginning from the start index.
|
|
78922
|
+
* determines how many contexts to retrieve, beginning from the start index. Defaults to the model's size
|
|
78923
|
+
* limit; see {@link sap.ui.model.Model#setSizeLimit}.
|
|
78915
78924
|
*/
|
|
78916
|
-
iLength
|
|
78917
|
-
):
|
|
78925
|
+
iLength?: int
|
|
78926
|
+
): sap.ui.model.Context[];
|
|
78918
78927
|
/**
|
|
78919
|
-
* Returns if the node has child nodes
|
|
78928
|
+
* Returns `true` if the node has child nodes.
|
|
78920
78929
|
*
|
|
78921
78930
|
*
|
|
78922
|
-
* @returns true if node has children
|
|
78931
|
+
* @returns `true` if the node has children
|
|
78923
78932
|
*/
|
|
78924
78933
|
hasChildren(
|
|
78925
78934
|
/**
|
|
78926
78935
|
* the context element of the node
|
|
78927
78936
|
*/
|
|
78928
|
-
oContext:
|
|
78937
|
+
oContext: sap.ui.model.Context
|
|
78929
78938
|
): boolean;
|
|
78930
78939
|
/**
|
|
78931
78940
|
* Sorts the tree according to the sorter definitions.
|
package/types/sap.ui.dt.d.ts
CHANGED
package/types/sap.ui.fl.d.ts
CHANGED
package/types/sap.ui.layout.d.ts
CHANGED
package/types/sap.ui.mdc.d.ts
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
// For Library Version: 1.124.
|
|
1
|
+
// For Library Version: 1.124.9
|
|
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:**
|
|
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:**
|
|
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`)
|
|
@@ -1755,7 +1758,8 @@ declare module "sap/ui/mdc/odata/v4/TypeMap" {
|
|
|
1755
1758
|
/**
|
|
1756
1759
|
* ODataV4-specific {@link module:sap/ui/mdc/util/TypeMap TypeMap} configuration.
|
|
1757
1760
|
*
|
|
1758
|
-
* **Note:**
|
|
1761
|
+
* **Note:** The modules of all data types registered in a `TypeMap` must be loaded in advance.
|
|
1762
|
+
* **Note:** This `TypeMap` implementation contains the following types including ODataV4-specific configuration:
|
|
1759
1763
|
*
|
|
1760
1764
|
*
|
|
1761
1765
|
* - {@link sap.ui.model.type.Boolean} (alias `Boolean`)
|
|
@@ -2065,6 +2069,8 @@ declare module "sap/ui/mdc/util/TypeMap" {
|
|
|
2065
2069
|
* Configuration class for type handling in delegates. Allows mapping of model types to {@link sap.ui.mdc.enums.BaseType }
|
|
2066
2070
|
* and enables model-specific type configuration.
|
|
2067
2071
|
*
|
|
2072
|
+
* **Note:** The modules of all data types registered in a `TypeMap` must be loaded in advance.
|
|
2073
|
+
*
|
|
2068
2074
|
* @since 1.114.0
|
|
2069
2075
|
*/
|
|
2070
2076
|
interface TypeMap {
|
|
@@ -2148,8 +2154,6 @@ declare module "sap/ui/mdc/util/TypeMap" {
|
|
|
2148
2154
|
/**
|
|
2149
2155
|
* Gets a data type class based on a given name.
|
|
2150
2156
|
*
|
|
2151
|
-
* **Note:** The module of the data type needs to be loaded before.
|
|
2152
|
-
*
|
|
2153
2157
|
*
|
|
2154
2158
|
* @returns Corresponding data type class
|
|
2155
2159
|
*/
|
|
@@ -2540,7 +2544,7 @@ declare module "sap/ui/mdc/ValueHelpDelegate" {
|
|
|
2540
2544
|
* This might be extended with payload-dependent filters.
|
|
2541
2545
|
*
|
|
2542
2546
|
* @since 1.101.0
|
|
2543
|
-
* @deprecated
|
|
2547
|
+
* @deprecated (since 1.118) - replaced by {@link module:sap/ui/mdc/ValueHelpDelegate.findConditionsForContext findConditionsForContext}.
|
|
2544
2548
|
*
|
|
2545
2549
|
* @returns `true` if item is selected
|
|
2546
2550
|
*/
|
|
@@ -21328,7 +21332,8 @@ declare namespace sap {
|
|
|
21328
21332
|
*
|
|
21329
21333
|
* Do not use the `conditions` property, use the `value` and `additionalValue` properties instead.
|
|
21330
21334
|
*
|
|
21331
|
-
* @deprecated -
|
|
21335
|
+
* @deprecated (since 1.54) - this property is not supported for the `Field`. Use the `value` property and
|
|
21336
|
+
* `additionalValue` property to bind the control.
|
|
21332
21337
|
*
|
|
21333
21338
|
* @returns Reference to `this` to allow method chaining
|
|
21334
21339
|
*/
|
|
@@ -21401,7 +21406,8 @@ declare namespace sap {
|
|
|
21401
21406
|
*
|
|
21402
21407
|
* Do not use the `conditions` property, use the `value` and `additionalValue` properties instead.
|
|
21403
21408
|
*
|
|
21404
|
-
* @deprecated -
|
|
21409
|
+
* @deprecated (since 1.54) - this property is not supported for the `Field`. Use the `value` property and
|
|
21410
|
+
* `additionalValue` property to bind the control.
|
|
21405
21411
|
*
|
|
21406
21412
|
* @returns Conditions of the field
|
|
21407
21413
|
*/
|
|
@@ -21414,7 +21420,8 @@ declare namespace sap {
|
|
|
21414
21420
|
* **Note:** If the `value` property is bound to a model using a type, this type is used. In this case the
|
|
21415
21421
|
* value of the `dataType` property is ignored.
|
|
21416
21422
|
*
|
|
21417
|
-
* @deprecated -
|
|
21423
|
+
* @deprecated (since 1.54) - this property is not supported for the `Field`. The type in the binding to
|
|
21424
|
+
* the `value` property is used.
|
|
21418
21425
|
*
|
|
21419
21426
|
* @returns Value of property `dataType`
|
|
21420
21427
|
*/
|
|
@@ -21427,8 +21434,8 @@ declare namespace sap {
|
|
|
21427
21434
|
* **Note:** If the `value` property is bound to a model using a type, this type is used. In this case the
|
|
21428
21435
|
* values of the `dataType` property and the `dataTypeConstraints` property are ignored.
|
|
21429
21436
|
*
|
|
21430
|
-
* @deprecated
|
|
21431
|
-
* used.
|
|
21437
|
+
* @deprecated (since 1.54) - this property is not supported for the `Field`. The `Constraints` of the type
|
|
21438
|
+
* in the binding to the `value` property is used.
|
|
21432
21439
|
*
|
|
21433
21440
|
* @returns Value of property `dataTypeConstraints`
|
|
21434
21441
|
*/
|
|
@@ -21441,8 +21448,8 @@ declare namespace sap {
|
|
|
21441
21448
|
* **Note:** If the `value` property is bound to a model using a type, this type is used. In this case the
|
|
21442
21449
|
* values of the `dataType` property and the `dataTypeFormatOptions` property are ignored.
|
|
21443
21450
|
*
|
|
21444
|
-
* @deprecated
|
|
21445
|
-
* used.
|
|
21451
|
+
* @deprecated (since 1.54) - this property is not supported for the `Field`. The `FormatOptions` of the
|
|
21452
|
+
* type in the binding to the `value` property is used.
|
|
21446
21453
|
*
|
|
21447
21454
|
* @returns Value of property `dataTypeFormatOptions`
|
|
21448
21455
|
*/
|
|
@@ -21482,7 +21489,8 @@ declare namespace sap {
|
|
|
21482
21489
|
*
|
|
21483
21490
|
* Do not use the `conditions` property, use the `value` and `additionalValue` properties instead.
|
|
21484
21491
|
*
|
|
21485
|
-
* @deprecated -
|
|
21492
|
+
* @deprecated (since 1.54) - this property is not supported for the `Field`. Use the `value` property and
|
|
21493
|
+
* `additionalValue` property to bind the control.
|
|
21486
21494
|
*
|
|
21487
21495
|
* @returns Reference to `this` to allow method chaining
|
|
21488
21496
|
*/
|
|
@@ -21500,7 +21508,8 @@ declare namespace sap {
|
|
|
21500
21508
|
* **Note:** If the `value` property is bound to a model using a type, this type is used. In this case the
|
|
21501
21509
|
* value of the `dataType` property is ignored.
|
|
21502
21510
|
*
|
|
21503
|
-
* @deprecated -
|
|
21511
|
+
* @deprecated (since 1.54) - this property is not supported for the `Field`. The type in the binding to
|
|
21512
|
+
* the `value` property is used.
|
|
21504
21513
|
*
|
|
21505
21514
|
* @returns Reference to `this` to allow method chaining
|
|
21506
21515
|
*/
|
|
@@ -21518,8 +21527,8 @@ declare namespace sap {
|
|
|
21518
21527
|
* **Note:** If the `value` property is bound to a model using a type, this type is used. In this case the
|
|
21519
21528
|
* values of the `dataType` property and the `dataTypeConstraints` property are ignored.
|
|
21520
21529
|
*
|
|
21521
|
-
* @deprecated
|
|
21522
|
-
* used.
|
|
21530
|
+
* @deprecated (since 1.54) - this property is not supported for the `Field`. The `Constraints` of the type
|
|
21531
|
+
* in the binding to the `value` property is used.
|
|
21523
21532
|
*
|
|
21524
21533
|
* @returns Reference to `this` to allow method chaining
|
|
21525
21534
|
*/
|
|
@@ -21537,8 +21546,8 @@ declare namespace sap {
|
|
|
21537
21546
|
* **Note:** If the `value` property is bound to a model using a type, this type is used. In this case the
|
|
21538
21547
|
* values of the `dataType` property and the `dataTypeFormatOptions` property are ignored.
|
|
21539
21548
|
*
|
|
21540
|
-
* @deprecated
|
|
21541
|
-
* used.
|
|
21549
|
+
* @deprecated (since 1.54) - this property is not supported for the `Field`. The `FormatOptions` of the
|
|
21550
|
+
* type in the binding to the `value` property is used.
|
|
21542
21551
|
*
|
|
21543
21552
|
* @returns Reference to `this` to allow method chaining
|
|
21544
21553
|
*/
|
|
@@ -21551,7 +21560,7 @@ declare namespace sap {
|
|
|
21551
21560
|
/**
|
|
21552
21561
|
* This property must not be set for the `Field`
|
|
21553
21562
|
*
|
|
21554
|
-
* @deprecated
|
|
21563
|
+
* @deprecated (since 1.54) - this property is not supported for the `Field`.
|
|
21555
21564
|
*
|
|
21556
21565
|
* @returns `this` to allow method chaining.
|
|
21557
21566
|
*/
|
|
@@ -21591,7 +21600,8 @@ declare namespace sap {
|
|
|
21591
21600
|
*
|
|
21592
21601
|
* Do not use the `conditions` property, use the `value` and `additionalValue` properties instead.
|
|
21593
21602
|
*
|
|
21594
|
-
* @deprecated -
|
|
21603
|
+
* @deprecated (since 1.54) - this property is not supported for the `Field`. Use the `value` property and
|
|
21604
|
+
* `additionalValue` property to bind the control.
|
|
21595
21605
|
*
|
|
21596
21606
|
* @returns Reference to `this` to allow method chaining
|
|
21597
21607
|
*/
|
|
@@ -22548,7 +22558,8 @@ declare namespace sap {
|
|
|
22548
22558
|
*
|
|
22549
22559
|
* Do not use the `conditions` property, use the `value` and `additionalValue` properties instead.
|
|
22550
22560
|
*
|
|
22551
|
-
* @deprecated -
|
|
22561
|
+
* @deprecated (since 1.93) - this property is not supported for the `MultiValueField`. Use the `items`
|
|
22562
|
+
* aggregation to bind the control.
|
|
22552
22563
|
*
|
|
22553
22564
|
* @returns Reference to `this` to allow method chaining
|
|
22554
22565
|
*/
|
|
@@ -22616,7 +22627,8 @@ declare namespace sap {
|
|
|
22616
22627
|
*
|
|
22617
22628
|
* Do not use the `conditions` property, use the `items` aggregation instead.
|
|
22618
22629
|
*
|
|
22619
|
-
* @deprecated -
|
|
22630
|
+
* @deprecated (since 1.54) - this property is not supported for the `MultiValueField`. Use the `items`
|
|
22631
|
+
* aggregation to bind the control.
|
|
22620
22632
|
*
|
|
22621
22633
|
* @returns conditions of the field
|
|
22622
22634
|
*/
|
|
@@ -22629,7 +22641,8 @@ declare namespace sap {
|
|
|
22629
22641
|
* **Note:** If the `items` aggregation is bound to a model using a type, this type is used. In this case
|
|
22630
22642
|
* the value of the `dataType` property is ignored.
|
|
22631
22643
|
*
|
|
22632
|
-
* @deprecated
|
|
22644
|
+
* @deprecated (since 1.93) - this property is not supported for the `MultiValueField`. The type in the
|
|
22645
|
+
* binding to the `items` aggregation is used.
|
|
22633
22646
|
*
|
|
22634
22647
|
* @returns Value of property `dataType`
|
|
22635
22648
|
*/
|
|
@@ -22642,8 +22655,8 @@ declare namespace sap {
|
|
|
22642
22655
|
* **Note:** If the `items` aggregation is bound to a model using a type, this type is used. In this case
|
|
22643
22656
|
* the values of the `dataType` property and the `dataTypeConstraints` property are ignored.
|
|
22644
22657
|
*
|
|
22645
|
-
* @deprecated -
|
|
22646
|
-
* used.
|
|
22658
|
+
* @deprecated (since 1.93) - this property is not supported for the `MultiValueField`. The type in the
|
|
22659
|
+
* binding to the `items` aggregation is used.
|
|
22647
22660
|
*
|
|
22648
22661
|
* @returns Value of property `dataTypeConstraints`
|
|
22649
22662
|
*/
|
|
@@ -22656,8 +22669,8 @@ declare namespace sap {
|
|
|
22656
22669
|
* **Note:** If the `items` aggregation is bound to a model using a type, this type is used. In this case
|
|
22657
22670
|
* the values of the `dataType` property and the `dataTypeFormatOptions` property are ignored.
|
|
22658
22671
|
*
|
|
22659
|
-
* @deprecated -
|
|
22660
|
-
* used.
|
|
22672
|
+
* @deprecated (since 1.93) - this property is not supported for the `MultiValueField`. The type in the
|
|
22673
|
+
* binding to the `items` aggregation is used.
|
|
22661
22674
|
*
|
|
22662
22675
|
* @returns Value of property `dataTypeFormatOptions`
|
|
22663
22676
|
*/
|
|
@@ -22700,7 +22713,7 @@ declare namespace sap {
|
|
|
22700
22713
|
/**
|
|
22701
22714
|
* Gets current value of property {@link #getMultipleLines multipleLines}.
|
|
22702
22715
|
*
|
|
22703
|
-
* @deprecated -
|
|
22716
|
+
* @deprecated (since 1.93) - this property is not supported for the `MultiValueField`.
|
|
22704
22717
|
*
|
|
22705
22718
|
* @returns Value for property `multipleLines`
|
|
22706
22719
|
*/
|
|
@@ -22762,7 +22775,8 @@ declare namespace sap {
|
|
|
22762
22775
|
*
|
|
22763
22776
|
* Do not use the `conditions` property, use the `items` aggregation instead.
|
|
22764
22777
|
*
|
|
22765
|
-
* @deprecated -
|
|
22778
|
+
* @deprecated (since 1.54) - this property is not supported for the `MultiValueField`. Use the `items`
|
|
22779
|
+
* aggregation to bind the control.
|
|
22766
22780
|
*
|
|
22767
22781
|
* @returns Reference to `this` to allow method chaining
|
|
22768
22782
|
*/
|
|
@@ -22779,7 +22793,8 @@ declare namespace sap {
|
|
|
22779
22793
|
* **Note:** If the `items` aggregation is bound to a model using a type, this type is used. In this case
|
|
22780
22794
|
* the value of the `dataType` property is ignored.
|
|
22781
22795
|
*
|
|
22782
|
-
* @deprecated
|
|
22796
|
+
* @deprecated (since 1.93) - this property is not supported for the `MultiValueField`. The type in the
|
|
22797
|
+
* binding to the `items` aggregation is used.
|
|
22783
22798
|
*
|
|
22784
22799
|
* @returns Reference to `this` to allow method chaining
|
|
22785
22800
|
*/
|
|
@@ -22797,7 +22812,8 @@ declare namespace sap {
|
|
|
22797
22812
|
* **Note:** If the `items` aggregation is bound to a model using a type, this type is used. In this case
|
|
22798
22813
|
* the values of the `dataType` property and the `dataTypeConstraints` property are ignored.
|
|
22799
22814
|
*
|
|
22800
|
-
* @deprecated
|
|
22815
|
+
* @deprecated (since 1.93) - this property is not supported for the `MultiValueField`. The type in the
|
|
22816
|
+
* binding to the `items` aggregation is used.
|
|
22801
22817
|
*
|
|
22802
22818
|
* @returns Reference to `this` to allow method chaining
|
|
22803
22819
|
*/
|
|
@@ -22815,7 +22831,8 @@ declare namespace sap {
|
|
|
22815
22831
|
* **Note:** If the `items` aggregation is bound to a model using a type, this type is used. In this case
|
|
22816
22832
|
* the values of the `dataType` property and the `dataTypeFormatOptions` property are ignored.
|
|
22817
22833
|
*
|
|
22818
|
-
* @deprecated
|
|
22834
|
+
* @deprecated (since 1.93) - this property is not supported for the `MultiValueField`. The type in the
|
|
22835
|
+
* binding to the `items` aggregation is used.
|
|
22819
22836
|
*
|
|
22820
22837
|
* @returns Reference to `this` to allow method chaining
|
|
22821
22838
|
*/
|
|
@@ -22860,7 +22877,7 @@ declare namespace sap {
|
|
|
22860
22877
|
/**
|
|
22861
22878
|
* This property must not be set for the `MultiValueField` control.
|
|
22862
22879
|
*
|
|
22863
|
-
* @deprecated
|
|
22880
|
+
* @deprecated (since 1.93) - this property is not supported for the `MultiValueField` control.
|
|
22864
22881
|
*
|
|
22865
22882
|
* @returns `this` to allow method chaining.
|
|
22866
22883
|
*/
|
|
@@ -22873,7 +22890,7 @@ declare namespace sap {
|
|
|
22873
22890
|
/**
|
|
22874
22891
|
* Sets a new value for property {@link #getMultipleLines multipleLines}.
|
|
22875
22892
|
*
|
|
22876
|
-
* @deprecated -
|
|
22893
|
+
* @deprecated (since 1.93) - this property is not supported for the `MultiValueField`.
|
|
22877
22894
|
*
|
|
22878
22895
|
* @returns Reference to `this` to allow method chaining
|
|
22879
22896
|
*/
|
|
@@ -22888,7 +22905,8 @@ declare namespace sap {
|
|
|
22888
22905
|
*
|
|
22889
22906
|
* Do not use the `conditions` property, use the `value` and `additionalValue` properties instead.
|
|
22890
22907
|
*
|
|
22891
|
-
* @deprecated -
|
|
22908
|
+
* @deprecated (since 1.93) - this property is not supported for the `MultiValueField`. Use the `items`
|
|
22909
|
+
* aggregation to bind the control.
|
|
22892
22910
|
*
|
|
22893
22911
|
* @returns Reference to `this` to allow method chaining
|
|
22894
22912
|
*/
|
package/types/sap.ui.rta.d.ts
CHANGED
package/types/sap.ui.suite.d.ts
CHANGED
package/types/sap.ui.table.d.ts
CHANGED
package/types/sap.ui.ux3.d.ts
CHANGED
package/types/sap.uxap.d.ts
CHANGED