@openui5/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 +49 -40
- 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 module "sap/f/library" {
|
|
4
4
|
export interface IShellBar {
|
|
@@ -154484,6 +154484,9 @@ declare module "sap/m/upload/UploadSet" {
|
|
|
154484
154484
|
* attach them to your application.
|
|
154485
154485
|
* This control builds on the {@link sap.m.UploadCollection} control, providing better handling of headers
|
|
154486
154486
|
* and requests, unified behavior of instant and deferred uploads, as well as improved progress indication.
|
|
154487
|
+
* We now ensure that the control handles item insertion and deletion if the items aggregation is not bound
|
|
154488
|
+
* to a model. It allows the connected model to not only manage the insertion and deletion updates but it
|
|
154489
|
+
* also helps to avoid template-related issues and ensures better data handling.
|
|
154487
154490
|
*
|
|
154488
154491
|
* @since 1.63
|
|
154489
154492
|
*/
|
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
|
/**
|
|
@@ -21749,6 +21749,11 @@ declare module "sap/ui/core/delegate/ScrollEnablement" {
|
|
|
21749
21749
|
* Native scrolling does not need content wrapper. In this case, ID of the container element should be provided.
|
|
21750
21750
|
*/
|
|
21751
21751
|
scrollContainerId?: string;
|
|
21752
|
+
/**
|
|
21753
|
+
* if true, the delegate event listeners are called before the event listeners of the element; default is
|
|
21754
|
+
* "false".
|
|
21755
|
+
*/
|
|
21756
|
+
callBefore?: boolean;
|
|
21752
21757
|
}
|
|
21753
21758
|
);
|
|
21754
21759
|
|
|
@@ -50647,10 +50652,10 @@ declare module "sap/ui/model/analytics/AnalyticalBinding" {
|
|
|
50647
50652
|
*/
|
|
50648
50653
|
oContext: Context,
|
|
50649
50654
|
/**
|
|
50650
|
-
* Parameters, specifying the aggregation level for which contexts shall be fetched or
|
|
50651
|
-
*
|
|
50655
|
+
* Parameters, specifying the aggregation level for which contexts shall be fetched or the index of the
|
|
50656
|
+
* first child entry to return from the parent contexts
|
|
50652
50657
|
*/
|
|
50653
|
-
mParameters
|
|
50658
|
+
mParameters?:
|
|
50654
50659
|
| {
|
|
50655
50660
|
/**
|
|
50656
50661
|
* Level number for oContext, because it might occur at multiple levels; context with group ID `"/"` has
|
|
@@ -50762,7 +50767,7 @@ declare module "sap/ui/model/analytics/AnalyticalBinding" {
|
|
|
50762
50767
|
* value can be set to define the parameter `startIndex` as described in this parameter list. In this case,
|
|
50763
50768
|
* the function parameters `iLength`, `iNumberOfExpandedLevels` and `iThreshold` become mandatory.
|
|
50764
50769
|
*/
|
|
50765
|
-
mParameters
|
|
50770
|
+
mParameters?:
|
|
50766
50771
|
| {
|
|
50767
50772
|
/**
|
|
50768
50773
|
* Number of entries to return at and after the given start index; defaults to the model's size limit, see
|
|
@@ -54376,11 +54381,11 @@ declare module "sap/ui/model/ClientTreeBinding" {
|
|
|
54376
54381
|
*/
|
|
54377
54382
|
getCount(): number | undefined;
|
|
54378
54383
|
/**
|
|
54379
|
-
* Return node contexts for the tree
|
|
54384
|
+
* Return node contexts for the tree.
|
|
54380
54385
|
*
|
|
54381
54386
|
* @ui5-protected Do not call from applications (only from related classes in the framework)
|
|
54382
54387
|
*
|
|
54383
|
-
* @returns the
|
|
54388
|
+
* @returns the context's array
|
|
54384
54389
|
*/
|
|
54385
54390
|
getNodeContexts(
|
|
54386
54391
|
/**
|
|
@@ -54388,42 +54393,44 @@ declare module "sap/ui/model/ClientTreeBinding" {
|
|
|
54388
54393
|
*/
|
|
54389
54394
|
oContext: Context,
|
|
54390
54395
|
/**
|
|
54391
|
-
* the
|
|
54396
|
+
* the index from which to start the retrieval of contexts
|
|
54392
54397
|
*/
|
|
54393
|
-
iStartIndex
|
|
54398
|
+
iStartIndex?: int,
|
|
54394
54399
|
/**
|
|
54395
|
-
* determines how many contexts to retrieve beginning from the start index.
|
|
54400
|
+
* determines how many contexts to retrieve, beginning from the start index. Defaults to the model's size
|
|
54401
|
+
* limit; see {@link sap.ui.model.Model#setSizeLimit}.
|
|
54396
54402
|
*/
|
|
54397
|
-
iLength
|
|
54403
|
+
iLength?: int
|
|
54398
54404
|
): Context[];
|
|
54399
54405
|
/**
|
|
54400
|
-
* Return root contexts for the tree
|
|
54406
|
+
* Return root contexts for the tree.
|
|
54401
54407
|
*
|
|
54402
54408
|
* @ui5-protected Do not call from applications (only from related classes in the framework)
|
|
54403
54409
|
*
|
|
54404
|
-
* @returns the
|
|
54410
|
+
* @returns the context's array
|
|
54405
54411
|
*/
|
|
54406
54412
|
getRootContexts(
|
|
54407
54413
|
/**
|
|
54408
|
-
* the
|
|
54414
|
+
* the index from which to start the retrieval of contexts
|
|
54409
54415
|
*/
|
|
54410
|
-
iStartIndex
|
|
54416
|
+
iStartIndex?: int,
|
|
54411
54417
|
/**
|
|
54412
|
-
* determines how many contexts to retrieve beginning from the start index.
|
|
54418
|
+
* determines how many contexts to retrieve, beginning from the start index. Defaults to the model's size
|
|
54419
|
+
* limit; see {@link sap.ui.model.Model#setSizeLimit}.
|
|
54413
54420
|
*/
|
|
54414
|
-
iLength
|
|
54415
|
-
):
|
|
54421
|
+
iLength?: int
|
|
54422
|
+
): Context[];
|
|
54416
54423
|
/**
|
|
54417
54424
|
* Returns if the node has child nodes.
|
|
54418
54425
|
*
|
|
54419
54426
|
*
|
|
54420
|
-
* @returns true if node has children
|
|
54427
|
+
* @returns `true` if the node has children
|
|
54421
54428
|
*/
|
|
54422
54429
|
hasChildren(
|
|
54423
54430
|
/**
|
|
54424
54431
|
* the context element of the node
|
|
54425
54432
|
*/
|
|
54426
|
-
oContext:
|
|
54433
|
+
oContext: Context
|
|
54427
54434
|
): boolean;
|
|
54428
54435
|
/**
|
|
54429
54436
|
* Sorts the contexts of this ClientTreeBinding. The tree will be sorted level by level. So the nodes are
|
|
@@ -77457,6 +77464,8 @@ declare module "sap/ui/model/TreeBinding" {
|
|
|
77457
77464
|
|
|
77458
77465
|
import Model from "sap/ui/model/Model";
|
|
77459
77466
|
|
|
77467
|
+
import Context from "sap/ui/model/Context";
|
|
77468
|
+
|
|
77460
77469
|
import Filter from "sap/ui/model/Filter";
|
|
77461
77470
|
|
|
77462
77471
|
import Sorter from "sap/ui/model/Sorter";
|
|
@@ -77465,8 +77474,6 @@ declare module "sap/ui/model/TreeBinding" {
|
|
|
77465
77474
|
|
|
77466
77475
|
import Metadata from "sap/ui/base/Metadata";
|
|
77467
77476
|
|
|
77468
|
-
import Context from "sap/ui/model/Context";
|
|
77469
|
-
|
|
77470
77477
|
/**
|
|
77471
77478
|
* The TreeBinding is a specific binding for trees in the model, which can be used to populate Trees.
|
|
77472
77479
|
*/
|
|
@@ -77490,7 +77497,7 @@ declare module "sap/ui/model/TreeBinding" {
|
|
|
77490
77497
|
/**
|
|
77491
77498
|
* Context object for this binding (optional)
|
|
77492
77499
|
*/
|
|
77493
|
-
oContext?:
|
|
77500
|
+
oContext?: Context,
|
|
77494
77501
|
/**
|
|
77495
77502
|
* The filters to be used initially with type {@link sap.ui.model.FilterType.Application}; call {@link #filter }
|
|
77496
77503
|
* to replace them
|
|
@@ -77499,7 +77506,7 @@ declare module "sap/ui/model/TreeBinding" {
|
|
|
77499
77506
|
/**
|
|
77500
77507
|
* Additional model specific parameters (optional)
|
|
77501
77508
|
*/
|
|
77502
|
-
mParameters?:
|
|
77509
|
+
mParameters?: object,
|
|
77503
77510
|
/**
|
|
77504
77511
|
* The sorters used initially; call {@link #sort} to replace them
|
|
77505
77512
|
*/
|
|
@@ -77591,7 +77598,7 @@ declare module "sap/ui/model/TreeBinding" {
|
|
|
77591
77598
|
sFilterType?: FilterType | keyof typeof FilterType
|
|
77592
77599
|
): void;
|
|
77593
77600
|
/**
|
|
77594
|
-
* Returns the number of child nodes of a specific context
|
|
77601
|
+
* Returns the number of child nodes of a specific context.
|
|
77595
77602
|
*
|
|
77596
77603
|
*
|
|
77597
77604
|
* @returns the number of children
|
|
@@ -77600,7 +77607,7 @@ declare module "sap/ui/model/TreeBinding" {
|
|
|
77600
77607
|
/**
|
|
77601
77608
|
* the context element of the node
|
|
77602
77609
|
*/
|
|
77603
|
-
oContext:
|
|
77610
|
+
oContext: Context
|
|
77604
77611
|
): int;
|
|
77605
77612
|
/**
|
|
77606
77613
|
* Returns the count of entries in the tree, or `undefined` if it is unknown. If the tree is filtered, the
|
|
@@ -77616,7 +77623,7 @@ declare module "sap/ui/model/TreeBinding" {
|
|
|
77616
77623
|
*/
|
|
77617
77624
|
getCount(): number | undefined;
|
|
77618
77625
|
/**
|
|
77619
|
-
* Returns the current value of the bound target
|
|
77626
|
+
* Returns the current value of the bound target.
|
|
77620
77627
|
*
|
|
77621
77628
|
*
|
|
77622
77629
|
* @returns the array of child contexts for the given node
|
|
@@ -77627,41 +77634,43 @@ declare module "sap/ui/model/TreeBinding" {
|
|
|
77627
77634
|
*/
|
|
77628
77635
|
oContext: Context,
|
|
77629
77636
|
/**
|
|
77630
|
-
* the
|
|
77637
|
+
* the index from which to start the retrieval of contexts
|
|
77631
77638
|
*/
|
|
77632
|
-
iStartIndex
|
|
77639
|
+
iStartIndex?: int,
|
|
77633
77640
|
/**
|
|
77634
|
-
* determines how many contexts to retrieve beginning from the start index.
|
|
77641
|
+
* determines how many contexts to retrieve, beginning from the start index. Defaults to the model's size
|
|
77642
|
+
* limit; see {@link sap.ui.model.Model#setSizeLimit}.
|
|
77635
77643
|
*/
|
|
77636
|
-
iLength
|
|
77644
|
+
iLength?: int
|
|
77637
77645
|
): Context[];
|
|
77638
77646
|
/**
|
|
77639
|
-
* Returns the current value of the bound target
|
|
77647
|
+
* Returns the current value of the bound target.
|
|
77640
77648
|
*
|
|
77641
77649
|
*
|
|
77642
77650
|
* @returns the array of child contexts for the root node
|
|
77643
77651
|
*/
|
|
77644
77652
|
getRootContexts(
|
|
77645
77653
|
/**
|
|
77646
|
-
* the
|
|
77654
|
+
* the index from which to start the retrieval of contexts
|
|
77647
77655
|
*/
|
|
77648
|
-
iStartIndex
|
|
77656
|
+
iStartIndex?: int,
|
|
77649
77657
|
/**
|
|
77650
|
-
* determines how many contexts to retrieve beginning from the start index.
|
|
77658
|
+
* determines how many contexts to retrieve, beginning from the start index. Defaults to the model's size
|
|
77659
|
+
* limit; see {@link sap.ui.model.Model#setSizeLimit}.
|
|
77651
77660
|
*/
|
|
77652
|
-
iLength
|
|
77653
|
-
):
|
|
77661
|
+
iLength?: int
|
|
77662
|
+
): Context[];
|
|
77654
77663
|
/**
|
|
77655
|
-
* Returns if the node has child nodes
|
|
77664
|
+
* Returns `true` if the node has child nodes.
|
|
77656
77665
|
*
|
|
77657
77666
|
*
|
|
77658
|
-
* @returns true if node has children
|
|
77667
|
+
* @returns `true` if the node has children
|
|
77659
77668
|
*/
|
|
77660
77669
|
hasChildren(
|
|
77661
77670
|
/**
|
|
77662
77671
|
* the context element of the node
|
|
77663
77672
|
*/
|
|
77664
|
-
oContext:
|
|
77673
|
+
oContext: Context
|
|
77665
77674
|
): boolean;
|
|
77666
77675
|
/**
|
|
77667
77676
|
* 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";
|
|
@@ -712,7 +712,9 @@ declare module "sap/ui/mdc/DefaultTypeMap" {
|
|
|
712
712
|
/**
|
|
713
713
|
* Generic {@link module:sap/ui/mdc/util/TypeMap TypeMap} configuration for simple use cases.
|
|
714
714
|
*
|
|
715
|
-
* **Note:**
|
|
715
|
+
* **Note:** The modules of all data types registered in a `TypeMap` must be loaded in advance.
|
|
716
|
+
* **Note:** This {@link module:sap/ui/mdc/util/TypeMap TypeMap} implementation contains the following
|
|
717
|
+
* types:
|
|
716
718
|
*
|
|
717
719
|
*
|
|
718
720
|
* - {@link sap.ui.model.type.Boolean} (alias `Boolean`)
|
|
@@ -1701,7 +1703,8 @@ declare module "sap/ui/mdc/odata/TypeMap" {
|
|
|
1701
1703
|
/**
|
|
1702
1704
|
* OData-specific {@link module:sap/ui/mdc/util/TypeMap TypeMap} configuration.
|
|
1703
1705
|
*
|
|
1704
|
-
* **Note:**
|
|
1706
|
+
* **Note:** The modules of all data types registered in a `TypeMap` must be loaded in advance.
|
|
1707
|
+
* **Note:** This `TypeMap` implementation contains the following types:
|
|
1705
1708
|
*
|
|
1706
1709
|
*
|
|
1707
1710
|
* - {@link sap.ui.model.type.Boolean} (alias `Boolean`)
|
|
@@ -1893,7 +1896,8 @@ declare module "sap/ui/mdc/odata/v4/TypeMap" {
|
|
|
1893
1896
|
/**
|
|
1894
1897
|
* ODataV4-specific {@link module:sap/ui/mdc/util/TypeMap TypeMap} configuration.
|
|
1895
1898
|
*
|
|
1896
|
-
* **Note:**
|
|
1899
|
+
* **Note:** The modules of all data types registered in a `TypeMap` must be loaded in advance.
|
|
1900
|
+
* **Note:** This `TypeMap` implementation contains the following types including ODataV4-specific configuration:
|
|
1897
1901
|
*
|
|
1898
1902
|
*
|
|
1899
1903
|
* - {@link sap.ui.model.type.Boolean} (alias `Boolean`)
|
|
@@ -2220,6 +2224,8 @@ declare module "sap/ui/mdc/util/TypeMap" {
|
|
|
2220
2224
|
* Configuration class for type handling in delegates. Allows mapping of model types to {@link sap.ui.mdc.enums.BaseType }
|
|
2221
2225
|
* and enables model-specific type configuration.
|
|
2222
2226
|
*
|
|
2227
|
+
* **Note:** The modules of all data types registered in a `TypeMap` must be loaded in advance.
|
|
2228
|
+
*
|
|
2223
2229
|
* @since 1.114.0
|
|
2224
2230
|
*/
|
|
2225
2231
|
interface TypeMap {
|
|
@@ -2303,8 +2309,6 @@ declare module "sap/ui/mdc/util/TypeMap" {
|
|
|
2303
2309
|
/**
|
|
2304
2310
|
* Gets a data type class based on a given name.
|
|
2305
2311
|
*
|
|
2306
|
-
* **Note:** The module of the data type needs to be loaded before.
|
|
2307
|
-
*
|
|
2308
2312
|
*
|
|
2309
2313
|
* @returns Corresponding data type class
|
|
2310
2314
|
*/
|
|
@@ -2718,7 +2722,7 @@ declare module "sap/ui/mdc/ValueHelpDelegate" {
|
|
|
2718
2722
|
* This might be extended with payload-dependent filters.
|
|
2719
2723
|
*
|
|
2720
2724
|
* @since 1.101.0
|
|
2721
|
-
* @deprecated
|
|
2725
|
+
* @deprecated (since 1.118) - replaced by {@link module:sap/ui/mdc/ValueHelpDelegate.findConditionsForContext findConditionsForContext}.
|
|
2722
2726
|
*
|
|
2723
2727
|
* @returns `true` if item is selected
|
|
2724
2728
|
*/
|
|
@@ -7788,7 +7792,8 @@ declare module "sap/ui/mdc/Field" {
|
|
|
7788
7792
|
*
|
|
7789
7793
|
* Do not use the `conditions` property, use the `value` and `additionalValue` properties instead.
|
|
7790
7794
|
*
|
|
7791
|
-
* @deprecated -
|
|
7795
|
+
* @deprecated (since 1.54) - this property is not supported for the `Field`. Use the `value` property and
|
|
7796
|
+
* `additionalValue` property to bind the control.
|
|
7792
7797
|
*
|
|
7793
7798
|
* @returns Reference to `this` to allow method chaining
|
|
7794
7799
|
*/
|
|
@@ -7861,7 +7866,8 @@ declare module "sap/ui/mdc/Field" {
|
|
|
7861
7866
|
*
|
|
7862
7867
|
* Do not use the `conditions` property, use the `value` and `additionalValue` properties instead.
|
|
7863
7868
|
*
|
|
7864
|
-
* @deprecated -
|
|
7869
|
+
* @deprecated (since 1.54) - this property is not supported for the `Field`. Use the `value` property and
|
|
7870
|
+
* `additionalValue` property to bind the control.
|
|
7865
7871
|
*
|
|
7866
7872
|
* @returns Conditions of the field
|
|
7867
7873
|
*/
|
|
@@ -7874,7 +7880,8 @@ declare module "sap/ui/mdc/Field" {
|
|
|
7874
7880
|
* **Note:** If the `value` property is bound to a model using a type, this type is used. In this case the
|
|
7875
7881
|
* value of the `dataType` property is ignored.
|
|
7876
7882
|
*
|
|
7877
|
-
* @deprecated -
|
|
7883
|
+
* @deprecated (since 1.54) - this property is not supported for the `Field`. The type in the binding to
|
|
7884
|
+
* the `value` property is used.
|
|
7878
7885
|
*
|
|
7879
7886
|
* @returns Value of property `dataType`
|
|
7880
7887
|
*/
|
|
@@ -7887,8 +7894,8 @@ declare module "sap/ui/mdc/Field" {
|
|
|
7887
7894
|
* **Note:** If the `value` property is bound to a model using a type, this type is used. In this case the
|
|
7888
7895
|
* values of the `dataType` property and the `dataTypeConstraints` property are ignored.
|
|
7889
7896
|
*
|
|
7890
|
-
* @deprecated
|
|
7891
|
-
* used.
|
|
7897
|
+
* @deprecated (since 1.54) - this property is not supported for the `Field`. The `Constraints` of the type
|
|
7898
|
+
* in the binding to the `value` property is used.
|
|
7892
7899
|
*
|
|
7893
7900
|
* @returns Value of property `dataTypeConstraints`
|
|
7894
7901
|
*/
|
|
@@ -7901,8 +7908,8 @@ declare module "sap/ui/mdc/Field" {
|
|
|
7901
7908
|
* **Note:** If the `value` property is bound to a model using a type, this type is used. In this case the
|
|
7902
7909
|
* values of the `dataType` property and the `dataTypeFormatOptions` property are ignored.
|
|
7903
7910
|
*
|
|
7904
|
-
* @deprecated
|
|
7905
|
-
* used.
|
|
7911
|
+
* @deprecated (since 1.54) - this property is not supported for the `Field`. The `FormatOptions` of the
|
|
7912
|
+
* type in the binding to the `value` property is used.
|
|
7906
7913
|
*
|
|
7907
7914
|
* @returns Value of property `dataTypeFormatOptions`
|
|
7908
7915
|
*/
|
|
@@ -7942,7 +7949,8 @@ declare module "sap/ui/mdc/Field" {
|
|
|
7942
7949
|
*
|
|
7943
7950
|
* Do not use the `conditions` property, use the `value` and `additionalValue` properties instead.
|
|
7944
7951
|
*
|
|
7945
|
-
* @deprecated -
|
|
7952
|
+
* @deprecated (since 1.54) - this property is not supported for the `Field`. Use the `value` property and
|
|
7953
|
+
* `additionalValue` property to bind the control.
|
|
7946
7954
|
*
|
|
7947
7955
|
* @returns Reference to `this` to allow method chaining
|
|
7948
7956
|
*/
|
|
@@ -7960,7 +7968,8 @@ declare module "sap/ui/mdc/Field" {
|
|
|
7960
7968
|
* **Note:** If the `value` property is bound to a model using a type, this type is used. In this case the
|
|
7961
7969
|
* value of the `dataType` property is ignored.
|
|
7962
7970
|
*
|
|
7963
|
-
* @deprecated -
|
|
7971
|
+
* @deprecated (since 1.54) - this property is not supported for the `Field`. The type in the binding to
|
|
7972
|
+
* the `value` property is used.
|
|
7964
7973
|
*
|
|
7965
7974
|
* @returns Reference to `this` to allow method chaining
|
|
7966
7975
|
*/
|
|
@@ -7978,8 +7987,8 @@ declare module "sap/ui/mdc/Field" {
|
|
|
7978
7987
|
* **Note:** If the `value` property is bound to a model using a type, this type is used. In this case the
|
|
7979
7988
|
* values of the `dataType` property and the `dataTypeConstraints` property are ignored.
|
|
7980
7989
|
*
|
|
7981
|
-
* @deprecated
|
|
7982
|
-
* used.
|
|
7990
|
+
* @deprecated (since 1.54) - this property is not supported for the `Field`. The `Constraints` of the type
|
|
7991
|
+
* in the binding to the `value` property is used.
|
|
7983
7992
|
*
|
|
7984
7993
|
* @returns Reference to `this` to allow method chaining
|
|
7985
7994
|
*/
|
|
@@ -7997,8 +8006,8 @@ declare module "sap/ui/mdc/Field" {
|
|
|
7997
8006
|
* **Note:** If the `value` property is bound to a model using a type, this type is used. In this case the
|
|
7998
8007
|
* values of the `dataType` property and the `dataTypeFormatOptions` property are ignored.
|
|
7999
8008
|
*
|
|
8000
|
-
* @deprecated
|
|
8001
|
-
* used.
|
|
8009
|
+
* @deprecated (since 1.54) - this property is not supported for the `Field`. The `FormatOptions` of the
|
|
8010
|
+
* type in the binding to the `value` property is used.
|
|
8002
8011
|
*
|
|
8003
8012
|
* @returns Reference to `this` to allow method chaining
|
|
8004
8013
|
*/
|
|
@@ -8011,7 +8020,7 @@ declare module "sap/ui/mdc/Field" {
|
|
|
8011
8020
|
/**
|
|
8012
8021
|
* This property must not be set for the `Field`
|
|
8013
8022
|
*
|
|
8014
|
-
* @deprecated
|
|
8023
|
+
* @deprecated (since 1.54) - this property is not supported for the `Field`.
|
|
8015
8024
|
*
|
|
8016
8025
|
* @returns `this` to allow method chaining.
|
|
8017
8026
|
*/
|
|
@@ -8051,7 +8060,8 @@ declare module "sap/ui/mdc/Field" {
|
|
|
8051
8060
|
*
|
|
8052
8061
|
* Do not use the `conditions` property, use the `value` and `additionalValue` properties instead.
|
|
8053
8062
|
*
|
|
8054
|
-
* @deprecated -
|
|
8063
|
+
* @deprecated (since 1.54) - this property is not supported for the `Field`. Use the `value` property and
|
|
8064
|
+
* `additionalValue` property to bind the control.
|
|
8055
8065
|
*
|
|
8056
8066
|
* @returns Reference to `this` to allow method chaining
|
|
8057
8067
|
*/
|
|
@@ -13752,7 +13762,8 @@ declare module "sap/ui/mdc/MultiValueField" {
|
|
|
13752
13762
|
*
|
|
13753
13763
|
* Do not use the `conditions` property, use the `value` and `additionalValue` properties instead.
|
|
13754
13764
|
*
|
|
13755
|
-
* @deprecated -
|
|
13765
|
+
* @deprecated (since 1.93) - this property is not supported for the `MultiValueField`. Use the `items`
|
|
13766
|
+
* aggregation to bind the control.
|
|
13756
13767
|
*
|
|
13757
13768
|
* @returns Reference to `this` to allow method chaining
|
|
13758
13769
|
*/
|
|
@@ -13820,7 +13831,8 @@ declare module "sap/ui/mdc/MultiValueField" {
|
|
|
13820
13831
|
*
|
|
13821
13832
|
* Do not use the `conditions` property, use the `items` aggregation instead.
|
|
13822
13833
|
*
|
|
13823
|
-
* @deprecated -
|
|
13834
|
+
* @deprecated (since 1.54) - this property is not supported for the `MultiValueField`. Use the `items`
|
|
13835
|
+
* aggregation to bind the control.
|
|
13824
13836
|
*
|
|
13825
13837
|
* @returns conditions of the field
|
|
13826
13838
|
*/
|
|
@@ -13833,7 +13845,8 @@ declare module "sap/ui/mdc/MultiValueField" {
|
|
|
13833
13845
|
* **Note:** If the `items` aggregation is bound to a model using a type, this type is used. In this case
|
|
13834
13846
|
* the value of the `dataType` property is ignored.
|
|
13835
13847
|
*
|
|
13836
|
-
* @deprecated
|
|
13848
|
+
* @deprecated (since 1.93) - this property is not supported for the `MultiValueField`. The type in the
|
|
13849
|
+
* binding to the `items` aggregation is used.
|
|
13837
13850
|
*
|
|
13838
13851
|
* @returns Value of property `dataType`
|
|
13839
13852
|
*/
|
|
@@ -13846,8 +13859,8 @@ declare module "sap/ui/mdc/MultiValueField" {
|
|
|
13846
13859
|
* **Note:** If the `items` aggregation is bound to a model using a type, this type is used. In this case
|
|
13847
13860
|
* the values of the `dataType` property and the `dataTypeConstraints` property are ignored.
|
|
13848
13861
|
*
|
|
13849
|
-
* @deprecated -
|
|
13850
|
-
* used.
|
|
13862
|
+
* @deprecated (since 1.93) - this property is not supported for the `MultiValueField`. The type in the
|
|
13863
|
+
* binding to the `items` aggregation is used.
|
|
13851
13864
|
*
|
|
13852
13865
|
* @returns Value of property `dataTypeConstraints`
|
|
13853
13866
|
*/
|
|
@@ -13860,8 +13873,8 @@ declare module "sap/ui/mdc/MultiValueField" {
|
|
|
13860
13873
|
* **Note:** If the `items` aggregation is bound to a model using a type, this type is used. In this case
|
|
13861
13874
|
* the values of the `dataType` property and the `dataTypeFormatOptions` property are ignored.
|
|
13862
13875
|
*
|
|
13863
|
-
* @deprecated -
|
|
13864
|
-
* used.
|
|
13876
|
+
* @deprecated (since 1.93) - this property is not supported for the `MultiValueField`. The type in the
|
|
13877
|
+
* binding to the `items` aggregation is used.
|
|
13865
13878
|
*
|
|
13866
13879
|
* @returns Value of property `dataTypeFormatOptions`
|
|
13867
13880
|
*/
|
|
@@ -13904,7 +13917,7 @@ declare module "sap/ui/mdc/MultiValueField" {
|
|
|
13904
13917
|
/**
|
|
13905
13918
|
* Gets current value of property {@link #getMultipleLines multipleLines}.
|
|
13906
13919
|
*
|
|
13907
|
-
* @deprecated -
|
|
13920
|
+
* @deprecated (since 1.93) - this property is not supported for the `MultiValueField`.
|
|
13908
13921
|
*
|
|
13909
13922
|
* @returns Value for property `multipleLines`
|
|
13910
13923
|
*/
|
|
@@ -13966,7 +13979,8 @@ declare module "sap/ui/mdc/MultiValueField" {
|
|
|
13966
13979
|
*
|
|
13967
13980
|
* Do not use the `conditions` property, use the `items` aggregation instead.
|
|
13968
13981
|
*
|
|
13969
|
-
* @deprecated -
|
|
13982
|
+
* @deprecated (since 1.54) - this property is not supported for the `MultiValueField`. Use the `items`
|
|
13983
|
+
* aggregation to bind the control.
|
|
13970
13984
|
*
|
|
13971
13985
|
* @returns Reference to `this` to allow method chaining
|
|
13972
13986
|
*/
|
|
@@ -13983,7 +13997,8 @@ declare module "sap/ui/mdc/MultiValueField" {
|
|
|
13983
13997
|
* **Note:** If the `items` aggregation is bound to a model using a type, this type is used. In this case
|
|
13984
13998
|
* the value of the `dataType` property is ignored.
|
|
13985
13999
|
*
|
|
13986
|
-
* @deprecated
|
|
14000
|
+
* @deprecated (since 1.93) - this property is not supported for the `MultiValueField`. The type in the
|
|
14001
|
+
* binding to the `items` aggregation is used.
|
|
13987
14002
|
*
|
|
13988
14003
|
* @returns Reference to `this` to allow method chaining
|
|
13989
14004
|
*/
|
|
@@ -14001,7 +14016,8 @@ declare module "sap/ui/mdc/MultiValueField" {
|
|
|
14001
14016
|
* **Note:** If the `items` aggregation is bound to a model using a type, this type is used. In this case
|
|
14002
14017
|
* the values of the `dataType` property and the `dataTypeConstraints` property are ignored.
|
|
14003
14018
|
*
|
|
14004
|
-
* @deprecated
|
|
14019
|
+
* @deprecated (since 1.93) - this property is not supported for the `MultiValueField`. The type in the
|
|
14020
|
+
* binding to the `items` aggregation is used.
|
|
14005
14021
|
*
|
|
14006
14022
|
* @returns Reference to `this` to allow method chaining
|
|
14007
14023
|
*/
|
|
@@ -14019,7 +14035,8 @@ declare module "sap/ui/mdc/MultiValueField" {
|
|
|
14019
14035
|
* **Note:** If the `items` aggregation is bound to a model using a type, this type is used. In this case
|
|
14020
14036
|
* the values of the `dataType` property and the `dataTypeFormatOptions` property are ignored.
|
|
14021
14037
|
*
|
|
14022
|
-
* @deprecated
|
|
14038
|
+
* @deprecated (since 1.93) - this property is not supported for the `MultiValueField`. The type in the
|
|
14039
|
+
* binding to the `items` aggregation is used.
|
|
14023
14040
|
*
|
|
14024
14041
|
* @returns Reference to `this` to allow method chaining
|
|
14025
14042
|
*/
|
|
@@ -14064,7 +14081,7 @@ declare module "sap/ui/mdc/MultiValueField" {
|
|
|
14064
14081
|
/**
|
|
14065
14082
|
* This property must not be set for the `MultiValueField` control.
|
|
14066
14083
|
*
|
|
14067
|
-
* @deprecated
|
|
14084
|
+
* @deprecated (since 1.93) - this property is not supported for the `MultiValueField` control.
|
|
14068
14085
|
*
|
|
14069
14086
|
* @returns `this` to allow method chaining.
|
|
14070
14087
|
*/
|
|
@@ -14077,7 +14094,7 @@ declare module "sap/ui/mdc/MultiValueField" {
|
|
|
14077
14094
|
/**
|
|
14078
14095
|
* Sets a new value for property {@link #getMultipleLines multipleLines}.
|
|
14079
14096
|
*
|
|
14080
|
-
* @deprecated -
|
|
14097
|
+
* @deprecated (since 1.93) - this property is not supported for the `MultiValueField`.
|
|
14081
14098
|
*
|
|
14082
14099
|
* @returns Reference to `this` to allow method chaining
|
|
14083
14100
|
*/
|
|
@@ -14092,7 +14109,8 @@ declare module "sap/ui/mdc/MultiValueField" {
|
|
|
14092
14109
|
*
|
|
14093
14110
|
* Do not use the `conditions` property, use the `value` and `additionalValue` properties instead.
|
|
14094
14111
|
*
|
|
14095
|
-
* @deprecated -
|
|
14112
|
+
* @deprecated (since 1.93) - this property is not supported for the `MultiValueField`. Use the `items`
|
|
14113
|
+
* aggregation to bind the control.
|
|
14096
14114
|
*
|
|
14097
14115
|
* @returns Reference to `this` to allow method chaining
|
|
14098
14116
|
*/
|
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