@openui5/ts-types 1.138.0 → 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.
- package/README.md +1 -1
- package/package.json +1 -1
- package/types/sap.f.d.ts +5 -5
- package/types/sap.m.d.ts +480 -19
- 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 +113 -31
- 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 +45 -8
- package/types/sap.ui.layout.d.ts +1 -1
- package/types/sap.ui.mdc.d.ts +16 -2
- 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/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.
|
|
282
|
+
// For Library Version: 1.139.0
|
|
283
283
|
|
|
284
284
|
declare module "sap/base/assert" {
|
|
285
285
|
/**
|
|
@@ -11460,7 +11460,11 @@ declare namespace sap {
|
|
|
11460
11460
|
/**
|
|
11461
11461
|
* Qualified name of the type to retrieve
|
|
11462
11462
|
*/
|
|
11463
|
-
sTypeName: string
|
|
11463
|
+
sTypeName: string,
|
|
11464
|
+
/**
|
|
11465
|
+
* Metadata of the property
|
|
11466
|
+
*/
|
|
11467
|
+
oProperty?: /* was: sap.ui.base.ManagedObject.MetaOptions.Property */ any
|
|
11464
11468
|
): sap.ui.base.DataType | undefined;
|
|
11465
11469
|
/**
|
|
11466
11470
|
* Registers an enum under the given name. With version 2.0, registering an enum becomes mandatory when
|
|
@@ -18853,7 +18857,8 @@ declare namespace sap {
|
|
|
18853
18857
|
*/
|
|
18854
18858
|
groupingBaseSize?: int;
|
|
18855
18859
|
/**
|
|
18856
|
-
* defines whether grouping is enabled (grouping separators are shown)
|
|
18860
|
+
* defines whether grouping is enabled (grouping separators are shown). **Note:** Grouping is disabled if
|
|
18861
|
+
* the `groupingSize` format option is set to a non-positive value.
|
|
18857
18862
|
*/
|
|
18858
18863
|
groupingEnabled?: boolean;
|
|
18859
18864
|
/**
|
|
@@ -18862,7 +18867,8 @@ declare namespace sap {
|
|
|
18862
18867
|
*/
|
|
18863
18868
|
groupingSeparator?: string;
|
|
18864
18869
|
/**
|
|
18865
|
-
* defines the grouping size in digits; the default is `3`.
|
|
18870
|
+
* defines the grouping size in digits; the default is `3`. **Note:** If this format option is set to a
|
|
18871
|
+
* non-positive value, grouping will be disabled entirely.
|
|
18866
18872
|
*/
|
|
18867
18873
|
groupingSize?: int;
|
|
18868
18874
|
/**
|
|
@@ -19032,7 +19038,8 @@ declare namespace sap {
|
|
|
19032
19038
|
*/
|
|
19033
19039
|
groupingBaseSize?: int;
|
|
19034
19040
|
/**
|
|
19035
|
-
* defines whether grouping is enabled (grouping separators are shown)
|
|
19041
|
+
* defines whether grouping is enabled (grouping separators are shown). **Note:** Grouping is disabled if
|
|
19042
|
+
* the `groupingSize` format option is set to a non-positive value.
|
|
19036
19043
|
*/
|
|
19037
19044
|
groupingEnabled?: boolean;
|
|
19038
19045
|
/**
|
|
@@ -19041,7 +19048,8 @@ declare namespace sap {
|
|
|
19041
19048
|
*/
|
|
19042
19049
|
groupingSeparator?: string;
|
|
19043
19050
|
/**
|
|
19044
|
-
* defines the grouping size in digits; the default is `3`.
|
|
19051
|
+
* defines the grouping size in digits; the default is `3`. **Note:** If this format option is set to a
|
|
19052
|
+
* non-positive value, grouping will be disabled entirely.
|
|
19045
19053
|
*/
|
|
19046
19054
|
groupingSize?: int;
|
|
19047
19055
|
/**
|
|
@@ -19195,7 +19203,8 @@ declare namespace sap {
|
|
|
19195
19203
|
*/
|
|
19196
19204
|
groupingBaseSize?: int;
|
|
19197
19205
|
/**
|
|
19198
|
-
* defines whether grouping is enabled (grouping separators are shown)
|
|
19206
|
+
* defines whether grouping is enabled (grouping separators are shown). **Note:** Grouping is disabled if
|
|
19207
|
+
* the `groupingSize` format option is set to a non-positive value.
|
|
19199
19208
|
*/
|
|
19200
19209
|
groupingEnabled?: boolean;
|
|
19201
19210
|
/**
|
|
@@ -19204,7 +19213,8 @@ declare namespace sap {
|
|
|
19204
19213
|
*/
|
|
19205
19214
|
groupingSeparator?: string;
|
|
19206
19215
|
/**
|
|
19207
|
-
* defines the grouping size in digits; the default is `3`.
|
|
19216
|
+
* defines the grouping size in digits; the default is `3`. **Note:** If this format option is set to a
|
|
19217
|
+
* non-positive value, grouping will be disabled entirely.
|
|
19208
19218
|
*/
|
|
19209
19219
|
groupingSize?: int;
|
|
19210
19220
|
/**
|
|
@@ -19353,7 +19363,8 @@ declare namespace sap {
|
|
|
19353
19363
|
*/
|
|
19354
19364
|
groupingBaseSize?: int;
|
|
19355
19365
|
/**
|
|
19356
|
-
* defines whether grouping is enabled (grouping separators are shown)
|
|
19366
|
+
* defines whether grouping is enabled (grouping separators are shown). **Note:** Grouping is disabled if
|
|
19367
|
+
* the `groupingSize` format option is set to a non-positive value.
|
|
19357
19368
|
*/
|
|
19358
19369
|
groupingEnabled?: boolean;
|
|
19359
19370
|
/**
|
|
@@ -19362,7 +19373,8 @@ declare namespace sap {
|
|
|
19362
19373
|
*/
|
|
19363
19374
|
groupingSeparator?: string;
|
|
19364
19375
|
/**
|
|
19365
|
-
* defines the grouping size in digits; the default is `3`.
|
|
19376
|
+
* defines the grouping size in digits; the default is `3`. **Note:** If this format option is set to a
|
|
19377
|
+
* non-positive value, grouping will be disabled entirely.
|
|
19366
19378
|
*/
|
|
19367
19379
|
groupingSize?: int;
|
|
19368
19380
|
/**
|
|
@@ -19523,7 +19535,8 @@ declare namespace sap {
|
|
|
19523
19535
|
*/
|
|
19524
19536
|
groupingBaseSize?: int;
|
|
19525
19537
|
/**
|
|
19526
|
-
* defines whether grouping is enabled (grouping separators are shown)
|
|
19538
|
+
* defines whether grouping is enabled (grouping separators are shown). **Note:** Grouping is disabled if
|
|
19539
|
+
* the `groupingSize` format option is set to a non-positive value.
|
|
19527
19540
|
*/
|
|
19528
19541
|
groupingEnabled?: boolean;
|
|
19529
19542
|
/**
|
|
@@ -19532,7 +19545,8 @@ declare namespace sap {
|
|
|
19532
19545
|
*/
|
|
19533
19546
|
groupingSeparator?: string;
|
|
19534
19547
|
/**
|
|
19535
|
-
* defines the grouping size in digits; the default is `3`.
|
|
19548
|
+
* defines the grouping size in digits; the default is `3`. **Note:** If this format option is set to a
|
|
19549
|
+
* non-positive value, grouping will be disabled entirely.
|
|
19536
19550
|
*/
|
|
19537
19551
|
groupingSize?: int;
|
|
19538
19552
|
/**
|
|
@@ -54884,6 +54898,43 @@ declare namespace sap {
|
|
|
54884
54898
|
*/
|
|
54885
54899
|
mParameters?: object
|
|
54886
54900
|
);
|
|
54901
|
+
|
|
54902
|
+
/**
|
|
54903
|
+
* Creates a new subclass of class sap.ui.model.json.JSONPropertyBinding with name `sClassName` and enriches
|
|
54904
|
+
* it with the information contained in `oClassInfo`.
|
|
54905
|
+
*
|
|
54906
|
+
* `oClassInfo` might contain the same kind of information as described in {@link sap.ui.model.ClientPropertyBinding.extend}.
|
|
54907
|
+
*
|
|
54908
|
+
* @ui5-protected Do not call from applications (only from related classes in the framework)
|
|
54909
|
+
*
|
|
54910
|
+
* @returns Created class / constructor function
|
|
54911
|
+
*/
|
|
54912
|
+
static extend<T extends Record<string, unknown>>(
|
|
54913
|
+
/**
|
|
54914
|
+
* Name of the class being created
|
|
54915
|
+
*/
|
|
54916
|
+
sClassName: string,
|
|
54917
|
+
/**
|
|
54918
|
+
* Object literal with information about the class
|
|
54919
|
+
*/
|
|
54920
|
+
oClassInfo?: sap.ClassInfo<
|
|
54921
|
+
T,
|
|
54922
|
+
sap.ui.model.json.JSONPropertyBinding
|
|
54923
|
+
>,
|
|
54924
|
+
/**
|
|
54925
|
+
* Constructor function for the metadata object; if not given, it defaults to the metadata implementation
|
|
54926
|
+
* used by this class
|
|
54927
|
+
*/
|
|
54928
|
+
FNMetaImpl?: Function
|
|
54929
|
+
): Function;
|
|
54930
|
+
/**
|
|
54931
|
+
* Returns a metadata object for class sap.ui.model.json.JSONPropertyBinding.
|
|
54932
|
+
*
|
|
54933
|
+
* @ui5-protected Do not call from applications (only from related classes in the framework)
|
|
54934
|
+
*
|
|
54935
|
+
* @returns Metadata object describing this class
|
|
54936
|
+
*/
|
|
54937
|
+
static getMetadata(): sap.ui.base.Metadata;
|
|
54887
54938
|
}
|
|
54888
54939
|
/**
|
|
54889
54940
|
* Tree binding implementation for JSON format.
|
|
@@ -58653,6 +58704,10 @@ declare namespace sap {
|
|
|
58653
58704
|
* A valid cache key
|
|
58654
58705
|
*/
|
|
58655
58706
|
cacheKey?: string;
|
|
58707
|
+
/**
|
|
58708
|
+
* If set to `true`, the user credentials are included in a cross-origin request
|
|
58709
|
+
*/
|
|
58710
|
+
withCredentials?: boolean;
|
|
58656
58711
|
}
|
|
58657
58712
|
);
|
|
58658
58713
|
/**
|
|
@@ -63836,8 +63891,8 @@ declare namespace sap {
|
|
|
63836
63891
|
/**
|
|
63837
63892
|
* Returns the value for the given path relative to this context. The function allows access to the complete
|
|
63838
63893
|
* data the context points to (if `sPath` is "") or any part thereof. The data is a JSON structure as described
|
|
63839
|
-
* in "
|
|
63840
|
-
*
|
|
63894
|
+
* in "OData JSON Format Version 4.0".
|
|
63895
|
+
* Note that the function clones the result. Modify values via {@link sap.ui.model.odata.v4.ODataPropertyBinding#setValue}.
|
|
63841
63896
|
*
|
|
63842
63897
|
* Returns `undefined` if the data is not (yet) available; no request is initiated. Use {@link #requestObject }
|
|
63843
63898
|
* for asynchronous access.
|
|
@@ -64125,7 +64180,8 @@ declare namespace sap {
|
|
|
64125
64180
|
/**
|
|
64126
64181
|
* Returns a promise on the value for the given path relative to this context. The function allows access
|
|
64127
64182
|
* to the complete data the context points to (if `sPath` is "") or any part thereof. The data is a JSON
|
|
64128
|
-
* structure as described in
|
|
64183
|
+
* structure as described in "OData
|
|
64184
|
+
* JSON Format Version 4.0". Note that the function clones the result. Modify values via {@link #setProperty}.
|
|
64129
64185
|
*
|
|
64130
64186
|
* The header context of a list binding only delivers `$count` and `@$ui5.context.isSelected` (wrapped in
|
|
64131
64187
|
* an object if `sPath` is "").
|
|
@@ -64890,7 +64946,8 @@ declare namespace sap {
|
|
|
64890
64946
|
/**
|
|
64891
64947
|
* Returns a promise on the value for the given path relative to this binding. The function allows access
|
|
64892
64948
|
* to the complete data the binding points to (if `sPath` is "") or any part thereof. The data is a JSON
|
|
64893
|
-
* structure as described in
|
|
64949
|
+
* structure as described in "OData
|
|
64950
|
+
* JSON Format Version 4.0". Note that the function clones the result. Modify values via {@link sap.ui.model.odata.v4.Context#setProperty}.
|
|
64894
64951
|
*
|
|
64895
64952
|
* If you want {@link #requestObject} to read fresh data, call `oBinding.refresh()` first.
|
|
64896
64953
|
* See:
|
|
@@ -65955,7 +66012,8 @@ declare namespace sap {
|
|
|
65955
66012
|
*/
|
|
65956
66013
|
resume(): void;
|
|
65957
66014
|
/**
|
|
65958
|
-
* Sets a new data aggregation object and derives the system query option `$apply` implicitly from it.
|
|
66015
|
+
* Sets a new data aggregation object and derives the system query option `$apply` implicitly from it. If
|
|
66016
|
+
* the aggregation is unchanged, nothing happens.
|
|
65959
66017
|
* See:
|
|
65960
66018
|
* #getAggregation
|
|
65961
66019
|
*
|
|
@@ -65999,7 +66057,9 @@ declare namespace sap {
|
|
|
65999
66057
|
* The number (as a positive integer) of different levels initially available without calling {@link sap.ui.model.odata.v4.Context#expand }
|
|
66000
66058
|
* (since 1.117.0), supported only if a `hierarchyQualifier` is given. Root nodes are on the first level.
|
|
66001
66059
|
* By default, only root nodes are available; they are not yet expanded. Since 1.120.0, `expandTo >= Number.MAX_SAFE_INTEGER`
|
|
66002
|
-
* can be used to expand all levels (`1E16` is recommended inside XML views for simplicity).
|
|
66060
|
+
* can be used to expand all levels (`1E16` is recommended inside XML views for simplicity). Since 1.139.0,
|
|
66061
|
+
* {@link #getAggregation} returns `expandTo : Number.MAX_SAFE_INTEGER` instead of values greater than this.
|
|
66062
|
+
* These differences do not count as changes.
|
|
66003
66063
|
*/
|
|
66004
66064
|
expandTo?: number;
|
|
66005
66065
|
/**
|
|
@@ -77163,9 +77223,11 @@ declare namespace sap {
|
|
|
77163
77223
|
* sensitive or not. Client models filter case insensitive compared to the OData models which filter case
|
|
77164
77224
|
* sensitive by default. See particular model documentation for details.
|
|
77165
77225
|
*
|
|
77166
|
-
* The filter operators {@link sap.ui.model.FilterOperator.Any "Any"}
|
|
77226
|
+
* The filter operators {@link sap.ui.model.FilterOperator.Any "Any"}, {@link sap.ui.model.FilterOperator.All "All"},
|
|
77227
|
+
* {@link sap.ui.model.FilterOperator.NotAny "NotAny"}, and {@link sap.ui.model.FilterOperator.NotAll "NotAll" }
|
|
77167
77228
|
* are only supported in V4 OData models. When creating a filter instance with these filter operators, the
|
|
77168
|
-
*
|
|
77229
|
+
* `variable` argument only accepts a string identifier, and the `condition` argument must be another filter
|
|
77230
|
+
* instance.
|
|
77169
77231
|
*/
|
|
77170
77232
|
constructor(
|
|
77171
77233
|
/**
|
|
@@ -77206,12 +77268,14 @@ declare namespace sap {
|
|
|
77206
77268
|
*/
|
|
77207
77269
|
value2?: any;
|
|
77208
77270
|
/**
|
|
77209
|
-
* The variable name used in lambda operators ({@link sap.ui.model.FilterOperator.Any "Any"}
|
|
77271
|
+
* The variable name used in the lambda operators ({@link sap.ui.model.FilterOperator.Any "Any"}, {@link sap.ui.model.FilterOperator.All "All"},
|
|
77272
|
+
* {@link sap.ui.model.FilterOperator.NotAny "NotAny"}, and {@link sap.ui.model.FilterOperator.NotAll "NotAll"})
|
|
77210
77273
|
*/
|
|
77211
77274
|
variable?: string;
|
|
77212
77275
|
/**
|
|
77213
|
-
* A filter instance which will be used as the condition for lambda operators ({@link sap.ui.model.FilterOperator.Any "Any"
|
|
77214
|
-
*
|
|
77276
|
+
* A filter instance which will be used as the condition for lambda operators ({@link sap.ui.model.FilterOperator.Any "Any"},
|
|
77277
|
+
* {@link sap.ui.model.FilterOperator.All "All"}, {@link sap.ui.model.FilterOperator.NotAny "NotAny"}, and
|
|
77278
|
+
* {@link sap.ui.model.FilterOperator.NotAll "NotAll"})
|
|
77215
77279
|
*/
|
|
77216
77280
|
condition?: sap.ui.model.Filter;
|
|
77217
77281
|
/**
|
|
@@ -79885,10 +79949,8 @@ declare namespace sap {
|
|
|
79885
79949
|
enum FilterOperator {
|
|
79886
79950
|
/**
|
|
79887
79951
|
* Used to filter a list based on filter criteria that are defined in a nested filter for dependent subitems.
|
|
79888
|
-
* `All` returns a list of
|
|
79889
|
-
* the nested filter.
|
|
79890
|
-
* to the list of orders the customer placed in the past. The filter returns a list of those customers that
|
|
79891
|
-
* **always** ordered a specific product.
|
|
79952
|
+
* `All` returns a list of all items for which it is **true** that all dependent subitems match the filter
|
|
79953
|
+
* criteria of the nested filter. This means that **every** dependent subitem matches the filter criteria.
|
|
79892
79954
|
*
|
|
79893
79955
|
* This filter operator is only supported in OData V4 models.
|
|
79894
79956
|
*
|
|
@@ -79897,10 +79959,8 @@ declare namespace sap {
|
|
|
79897
79959
|
All = "All",
|
|
79898
79960
|
/**
|
|
79899
79961
|
* Used to filter a list based on filter criteria that are defined in a nested filter for dependent subitems.
|
|
79900
|
-
* `Any` returns a list of
|
|
79901
|
-
* of the nested filter.
|
|
79902
|
-
* to the list of orders the customer placed in the past. The filter returns a list of those customers that
|
|
79903
|
-
* **at least once** ordered a specific product.
|
|
79962
|
+
* `Any` returns a list of all items for which **at least one** dependent subitem matches the filter criteria
|
|
79963
|
+
* of the nested filter.
|
|
79904
79964
|
*
|
|
79905
79965
|
* This filter operator is only supported in OData V4 models.
|
|
79906
79966
|
*
|
|
@@ -79968,6 +80028,28 @@ declare namespace sap {
|
|
|
79968
80028
|
* FilterOperator not equals
|
|
79969
80029
|
*/
|
|
79970
80030
|
NE = "NE",
|
|
80031
|
+
/**
|
|
80032
|
+
* Used to filter a list based on filter criteria that are defined in a nested filter for dependent subitems.
|
|
80033
|
+
* `NotAll` returns a list of all items for which it is **false** that all dependent subitems match the
|
|
80034
|
+
* filter criteria of the nested filter. This means that **at least one** dependent subitem does not match
|
|
80035
|
+
* the filter criteria.
|
|
80036
|
+
*
|
|
80037
|
+
* This filter operator is only supported in OData V4 models.
|
|
80038
|
+
*
|
|
80039
|
+
* @since 1.139.0
|
|
80040
|
+
*/
|
|
80041
|
+
NotAll = "NotAll",
|
|
80042
|
+
/**
|
|
80043
|
+
* Used to filter a list based on filter criteria that are defined in a nested filter for dependent subitems.
|
|
80044
|
+
* `NotAny` returns a list of all items for which **none** of the dependent subitems match the filter criteria
|
|
80045
|
+
* of the nested filter. If no filter condition is given, `NotAny` returns all items that do not have any
|
|
80046
|
+
* dependent subitems (i.e., for which the collection is empty).
|
|
80047
|
+
*
|
|
80048
|
+
* This filter operator is only supported in OData V4 models.
|
|
80049
|
+
*
|
|
80050
|
+
* @since 1.139.0
|
|
80051
|
+
*/
|
|
80052
|
+
NotAny = "NotAny",
|
|
79971
80053
|
/**
|
|
79972
80054
|
* FilterOperator not contains
|
|
79973
80055
|
*
|
package/types/sap.ui.dt.d.ts
CHANGED
package/types/sap.ui.fl.d.ts
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
// For Library Version: 1.
|
|
1
|
+
// For Library Version: 1.139.0
|
|
2
2
|
|
|
3
3
|
declare namespace sap {
|
|
4
4
|
namespace ui {
|
|
@@ -609,9 +609,15 @@ declare namespace sap {
|
|
|
609
609
|
| sap.ui.integration.ActionDefinition
|
|
610
610
|
): sap.ui.integration.ActionDefinition | null;
|
|
611
611
|
/**
|
|
612
|
-
* Performs an
|
|
612
|
+
* Performs an asynchronous network request using the specified request settings, enabling dynamic bindings
|
|
613
|
+
* to card configurations, such as CSRF tokens, destinations, and parameters. If the request is successful,
|
|
614
|
+
* it returns a Promise that resolves with the response data.
|
|
615
|
+
*
|
|
616
|
+
* If an error occurs during the request, the Promise will reject with a {@link sap.ui.integration.CardRequestError}.
|
|
617
|
+
*
|
|
618
|
+
* For more details on card data handling and request settings see [Card Explorer Data Section]{@link https://ui5.sap.com/test-resources/sap/ui/integration/demokit/cardExplorer/webapp/index.html#/learn/features/data}.
|
|
613
619
|
*
|
|
614
|
-
* @
|
|
620
|
+
* @since 1.79
|
|
615
621
|
*
|
|
616
622
|
* @returns Resolves when the request is successful, rejects otherwise.
|
|
617
623
|
*/
|
|
@@ -660,7 +666,8 @@ declare namespace sap {
|
|
|
660
666
|
*/
|
|
661
667
|
headers?: object;
|
|
662
668
|
/**
|
|
663
|
-
* Indicates whether cross-site requests should be made using credentials.
|
|
669
|
+
* Indicates whether cross-site requests should be made using credentials. Same-origin requests are always
|
|
670
|
+
* made using credentials.
|
|
664
671
|
*/
|
|
665
672
|
withCredentials?: boolean;
|
|
666
673
|
}
|
|
@@ -1948,9 +1955,15 @@ declare namespace sap {
|
|
|
1948
1955
|
*/
|
|
1949
1956
|
removeAllActionDefinitions(): sap.ui.integration.ActionDefinition[];
|
|
1950
1957
|
/**
|
|
1951
|
-
* Performs an
|
|
1958
|
+
* Performs an asynchronous network request using the specified request settings, enabling dynamic bindings
|
|
1959
|
+
* to card configurations, such as CSRF tokens, destinations, and parameters. If the request is successful,
|
|
1960
|
+
* it returns a Promise that resolves with the response data.
|
|
1952
1961
|
*
|
|
1953
|
-
*
|
|
1962
|
+
* If an error occurs during the request, the Promise will reject with a {@link sap.ui.integration.CardRequestError}.
|
|
1963
|
+
*
|
|
1964
|
+
* For more details on card data handling and request settings see [Card Explorer Data Section]{@link https://ui5.sap.com/test-resources/sap/ui/integration/demokit/cardExplorer/webapp/index.html#/learn/features/data}.
|
|
1965
|
+
*
|
|
1966
|
+
* @since 1.79
|
|
1954
1967
|
*
|
|
1955
1968
|
* @returns Resolves when the request is successful, rejects otherwise.
|
|
1956
1969
|
*/
|
|
@@ -1999,7 +2012,8 @@ declare namespace sap {
|
|
|
1999
2012
|
*/
|
|
2000
2013
|
headers?: object;
|
|
2001
2014
|
/**
|
|
2002
|
-
* Indicates whether cross-site requests should be made using credentials.
|
|
2015
|
+
* Indicates whether cross-site requests should be made using credentials. Same-origin requests are always
|
|
2016
|
+
* made using credentials.
|
|
2003
2017
|
*/
|
|
2004
2018
|
withCredentials?: boolean;
|
|
2005
2019
|
}
|
|
@@ -4578,7 +4592,7 @@ declare namespace sap {
|
|
|
4578
4592
|
Off = "Off",
|
|
4579
4593
|
}
|
|
4580
4594
|
/**
|
|
4581
|
-
* Settings for blocking message that
|
|
4595
|
+
* Settings for blocking message that occurred in a {@link sap.ui.integration.widgets.Card}
|
|
4582
4596
|
*
|
|
4583
4597
|
* @experimental As of version 1.114.
|
|
4584
4598
|
*/
|
|
@@ -4670,6 +4684,29 @@ declare namespace sap {
|
|
|
4670
4684
|
actions: any[];
|
|
4671
4685
|
};
|
|
4672
4686
|
|
|
4687
|
+
/**
|
|
4688
|
+
* Settings for card request error.
|
|
4689
|
+
*
|
|
4690
|
+
* **Note:** For backward compatibility, the object can also be accessed as an array with the properties
|
|
4691
|
+
* in the order - message, response, and responseText.
|
|
4692
|
+
*
|
|
4693
|
+
* @experimental As of version 1.139.
|
|
4694
|
+
*/
|
|
4695
|
+
type CardRequestError = {
|
|
4696
|
+
/**
|
|
4697
|
+
* The error message
|
|
4698
|
+
*/
|
|
4699
|
+
message: string;
|
|
4700
|
+
/**
|
|
4701
|
+
* The response object
|
|
4702
|
+
*/
|
|
4703
|
+
response: object;
|
|
4704
|
+
/**
|
|
4705
|
+
* The response text
|
|
4706
|
+
*/
|
|
4707
|
+
responseText: string;
|
|
4708
|
+
};
|
|
4709
|
+
|
|
4673
4710
|
/**
|
|
4674
4711
|
* Event object of the ActionDefinition#press event.
|
|
4675
4712
|
*/
|
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.
|
|
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";
|
|
@@ -4587,9 +4587,17 @@ declare namespace sap {
|
|
|
4587
4587
|
* This text is only needed if there any language dependent text should be shown on the token, like "Next
|
|
4588
4588
|
* 5 days". (In this case `#tokenText#` is used in `tokenFormat`, `tokenTest`, or `tokenParse`.) For operators
|
|
4589
4589
|
* just showing the value and a operator symbol, no token text is needed.
|
|
4590
|
-
* If the token text is not given, the `longText` is used.
|
|
4590
|
+
* If the token text is not given, the `longText` is used. If `tokenTextForTypes` is provided for a special
|
|
4591
|
+
* type, this one will be used for the corresponding type.
|
|
4591
4592
|
*/
|
|
4592
4593
|
tokenText?: string;
|
|
4594
|
+
/**
|
|
4595
|
+
* Object holding String representation of the operator as a token text for single basic types.
|
|
4596
|
+
* This text is shown in a single-value field as text or a multi-value field as token.
|
|
4597
|
+
* This is needed if the text depends on the used data type. For example the "equal" operator should be
|
|
4598
|
+
* named "Not Specified (empty)" if a date or time type is used.
|
|
4599
|
+
*/
|
|
4600
|
+
tokenTextForTypes?: object;
|
|
4593
4601
|
/**
|
|
4594
4602
|
* Object holding String representation of the operator as a long text for single basic types.
|
|
4595
4603
|
* This text is shown in the operator dropdown of the value help.
|
|
@@ -4674,6 +4682,7 @@ declare namespace sap {
|
|
|
4674
4682
|
* to 3, 4....
|
|
4675
4683
|
* group: {id : 10, text: "new group at the end"} - adds a new group with id 10 and text "new group as
|
|
4676
4684
|
* the end" to the end of all groups
|
|
4685
|
+
* **Note:** The ids 900-999 are reserved for internal mdc usage, please use ids outside this range
|
|
4677
4686
|
*/
|
|
4678
4687
|
id: string;
|
|
4679
4688
|
/**
|
|
@@ -4681,6 +4690,11 @@ declare namespace sap {
|
|
|
4681
4690
|
*/
|
|
4682
4691
|
text?: string;
|
|
4683
4692
|
};
|
|
4693
|
+
/**
|
|
4694
|
+
* Additional group settings for the operator depending on the type. For every type a group object can be
|
|
4695
|
+
* defined.
|
|
4696
|
+
*/
|
|
4697
|
+
groupsForTypes?: object;
|
|
4684
4698
|
/**
|
|
4685
4699
|
* Function to determine the text copied into clipboard
|
|
4686
4700
|
*/
|
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