@sapui5/types 1.124.2 → 1.125.1
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/index.d.ts +1 -0
- package/types/sap.apf.d.ts +1 -1
- package/types/sap.ca.ui.d.ts +1 -1
- package/types/sap.chart.d.ts +1 -1
- package/types/sap.collaboration.d.ts +1 -1
- package/types/sap.esh.search.ui.d.ts +1 -1
- package/types/sap.f.d.ts +1 -1
- package/types/sap.fe.base.d.ts +9 -0
- package/types/sap.fe.core.d.ts +6 -16
- package/types/sap.fe.macros.d.ts +658 -102
- package/types/sap.fe.navigation.d.ts +1 -1
- package/types/sap.fe.placeholder.d.ts +1 -1
- package/types/sap.fe.plugins.managecache.d.ts +1 -1
- package/types/sap.fe.templates.d.ts +1 -1
- package/types/sap.fe.test.d.ts +1 -1
- package/types/sap.fe.tools.d.ts +1 -1
- package/types/sap.feedback.ui.d.ts +1 -1
- package/types/sap.gantt.d.ts +368 -323
- package/types/sap.insights.d.ts +1 -1
- package/types/sap.m.d.ts +313 -248
- package/types/sap.makit.d.ts +1 -1
- package/types/sap.me.d.ts +1 -1
- package/types/sap.ndc.d.ts +1 -1
- package/types/sap.ovp.d.ts +1 -1
- package/types/sap.rules.ui.d.ts +1 -1
- package/types/sap.sac.df.d.ts +1 -1
- package/types/sap.suite.ui.commons.d.ts +8 -9
- package/types/sap.suite.ui.generic.template.d.ts +1 -4
- package/types/sap.suite.ui.microchart.d.ts +19 -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.comp.d.ts +112 -38
- package/types/sap.ui.core.d.ts +119 -79
- package/types/sap.ui.dt.d.ts +1 -1
- package/types/sap.ui.export.d.ts +1 -1
- package/types/sap.ui.fl.d.ts +4 -39
- package/types/sap.ui.generic.app.d.ts +1 -1
- package/types/sap.ui.generic.template.d.ts +1 -1
- package/types/sap.ui.integration.d.ts +6 -1
- package/types/sap.ui.layout.d.ts +1 -1
- package/types/sap.ui.mdc.d.ts +41 -28
- package/types/sap.ui.richtexteditor.d.ts +1 -1
- 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 +29 -21
- 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.vbm.d.ts +1 -1
- package/types/sap.ui.vk.d.ts +1 -1
- package/types/sap.ui.vtm.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.uiext.inbox.d.ts +1 -1
- package/types/sap.ushell.d.ts +51 -111
- package/types/sap.ushell_abap.d.ts +1 -1
- package/types/sap.uxap.d.ts +1 -1
- package/types/sap.viz.d.ts +1 -1
- package/types/sap.webanalytics.core.d.ts +1 -1
- package/types/sap.zen.commons.d.ts +1 -1
- package/types/sap.zen.crosstab.d.ts +1 -1
- package/types/sap.zen.dsh.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.125.0
|
|
283
283
|
|
|
284
284
|
declare module "sap/base/assert" {
|
|
285
285
|
/**
|
|
@@ -15152,7 +15152,11 @@ declare module "sap/ui/core/Component" {
|
|
|
15152
15152
|
*/
|
|
15153
15153
|
export default abstract class Component extends ManagedObject {
|
|
15154
15154
|
/**
|
|
15155
|
-
*
|
|
15155
|
+
* As `Component` is an abstract base class for components, applications should not call the constructor.
|
|
15156
|
+
* For many use cases the static {@link #.create Component.create} factory can be used to instantiate a
|
|
15157
|
+
* `Component`. Depending on the requirements, the framework also provides other ways to instantiate a `Component`,
|
|
15158
|
+
* documented under the {@link https://ui5.sap.com/#/topic/958ead51e2e94ab8bcdc90fb7e9d53d0 "Component" }
|
|
15159
|
+
* chapter.
|
|
15156
15160
|
*
|
|
15157
15161
|
* The set of allowed entries in the `mSettings` object depends on the concrete subclass and is described
|
|
15158
15162
|
* there. See {@link sap.ui.core.Component} for a general description of this argument.
|
|
@@ -15171,7 +15175,11 @@ declare module "sap/ui/core/Component" {
|
|
|
15171
15175
|
mSettings?: $ComponentSettings
|
|
15172
15176
|
);
|
|
15173
15177
|
/**
|
|
15174
|
-
*
|
|
15178
|
+
* As `Component` is an abstract base class for components, applications should not call the constructor.
|
|
15179
|
+
* For many use cases the static {@link #.create Component.create} factory can be used to instantiate a
|
|
15180
|
+
* `Component`. Depending on the requirements, the framework also provides other ways to instantiate a `Component`,
|
|
15181
|
+
* documented under the {@link https://ui5.sap.com/#/topic/958ead51e2e94ab8bcdc90fb7e9d53d0 "Component" }
|
|
15182
|
+
* chapter.
|
|
15175
15183
|
*
|
|
15176
15184
|
* The set of allowed entries in the `mSettings` object depends on the concrete subclass and is described
|
|
15177
15185
|
* there. See {@link sap.ui.core.Component} for a general description of this argument.
|
|
@@ -19363,22 +19371,28 @@ declare module "sap/ui/core/Core" {
|
|
|
19363
19371
|
import Interface from "sap/ui/base/Interface";
|
|
19364
19372
|
|
|
19365
19373
|
/**
|
|
19366
|
-
* Core
|
|
19374
|
+
* Singleton Core instance of the SAP UI Library.
|
|
19367
19375
|
*
|
|
19368
|
-
*
|
|
19376
|
+
* The module export of `sap/ui/core/Core` is **not** a class, but the singleton Core instance itself. The
|
|
19377
|
+
* `sap.ui.core.Core` class itself must not be instantiated, except by the framework itself.
|
|
19369
19378
|
*
|
|
19370
|
-
* The Core provides a {@link #ready ready function} to execute code after the
|
|
19379
|
+
* The Core provides a {@link #ready ready function} to execute code after the Core was booted.
|
|
19371
19380
|
*
|
|
19372
19381
|
* Example:
|
|
19373
19382
|
* ```javascript
|
|
19374
19383
|
*
|
|
19375
19384
|
*
|
|
19376
|
-
*
|
|
19385
|
+
* sap.ui.require(["sap/ui/core/Core"], async function(Core) {
|
|
19386
|
+
*
|
|
19387
|
+
* // Usage of a callback function
|
|
19388
|
+
* Core.ready(function() {
|
|
19377
19389
|
* ...
|
|
19378
|
-
*
|
|
19390
|
+
* });
|
|
19379
19391
|
*
|
|
19380
|
-
*
|
|
19381
|
-
*
|
|
19392
|
+
* // Usage of Core.ready() as a Promise
|
|
19393
|
+
* await Core.ready();
|
|
19394
|
+
* ...
|
|
19395
|
+
* });
|
|
19382
19396
|
*
|
|
19383
19397
|
* ```
|
|
19384
19398
|
*/
|
|
@@ -20739,7 +20753,8 @@ declare module "sap/ui/core/Core" {
|
|
|
20739
20753
|
*/
|
|
20740
20754
|
notifyContentDensityChanged(): void;
|
|
20741
20755
|
/**
|
|
20742
|
-
* Returns a Promise that resolves if the Core is initialized.
|
|
20756
|
+
* Returns a Promise that resolves if the Core is initialized. Additionally, a callback function can be
|
|
20757
|
+
* passed, for use cases where using Promises is not an option.
|
|
20743
20758
|
*
|
|
20744
20759
|
* @since 1.118.0
|
|
20745
20760
|
*
|
|
@@ -23346,17 +23361,20 @@ declare module "sap/ui/core/dnd/DropInfo" {
|
|
|
23346
23361
|
/**
|
|
23347
23362
|
* Fires event {@link #event:dragOver dragOver} to attached listeners.
|
|
23348
23363
|
*
|
|
23364
|
+
* Listeners may prevent the default action of this event by calling the `preventDefault` method on the
|
|
23365
|
+
* event object. The return value of this method indicates whether the default action should be executed.
|
|
23366
|
+
*
|
|
23349
23367
|
* @since 1.56
|
|
23350
23368
|
* @ui5-protected Do not call from applications (only from related classes in the framework)
|
|
23351
23369
|
*
|
|
23352
|
-
* @returns
|
|
23370
|
+
* @returns Whether or not to prevent the default action
|
|
23353
23371
|
*/
|
|
23354
23372
|
fireDragOver(
|
|
23355
23373
|
/**
|
|
23356
23374
|
* Parameters to pass along with the event
|
|
23357
23375
|
*/
|
|
23358
23376
|
mParameters?: DropInfo$DragOverEventParameters
|
|
23359
|
-
):
|
|
23377
|
+
): boolean;
|
|
23360
23378
|
/**
|
|
23361
23379
|
* Fires event {@link #event:drop drop} to attached listeners.
|
|
23362
23380
|
*
|
|
@@ -23555,6 +23573,13 @@ declare module "sap/ui/core/dnd/DropInfo" {
|
|
|
23555
23573
|
*/
|
|
23556
23574
|
dragSession?: DragSession;
|
|
23557
23575
|
|
|
23576
|
+
/**
|
|
23577
|
+
* The calculated position of the drop action relative to the `target`
|
|
23578
|
+
*/
|
|
23579
|
+
dropPosition?:
|
|
23580
|
+
| dnd.RelativeDropPosition
|
|
23581
|
+
| keyof typeof dnd.RelativeDropPosition;
|
|
23582
|
+
|
|
23558
23583
|
/**
|
|
23559
23584
|
* The underlying browser event
|
|
23560
23585
|
*/
|
|
@@ -45563,7 +45588,11 @@ declare module "sap/ui/core/UIComponent" {
|
|
|
45563
45588
|
*/
|
|
45564
45589
|
export default abstract class UIComponent extends Component {
|
|
45565
45590
|
/**
|
|
45566
|
-
*
|
|
45591
|
+
* As `UIComponent` is an abstract base class for UI components, applications should not call the constructor.
|
|
45592
|
+
* For many use cases the static {@link sap.ui.core.Component.create Component.create} factory can be used
|
|
45593
|
+
* to instantiate a `UIComponent`. Depending on the requirements, the framework also provides other ways
|
|
45594
|
+
* to instantiate a `UIComponent`, documented under the {@link https://ui5.sap.com/#/topic/958ead51e2e94ab8bcdc90fb7e9d53d0 "Component" }
|
|
45595
|
+
* chapter.
|
|
45567
45596
|
*
|
|
45568
45597
|
* The set of allowed entries in the `mSettings` object depends on the concrete subclass and is described
|
|
45569
45598
|
* there. See {@link sap.ui.core.Component} for a general description of this argument.
|
|
@@ -45579,7 +45608,11 @@ declare module "sap/ui/core/UIComponent" {
|
|
|
45579
45608
|
mSettings?: $UIComponentSettings
|
|
45580
45609
|
);
|
|
45581
45610
|
/**
|
|
45582
|
-
*
|
|
45611
|
+
* As `UIComponent` is an abstract base class for UI components, applications should not call the constructor.
|
|
45612
|
+
* For many use cases the static {@link sap.ui.core.Component.create Component.create} factory can be used
|
|
45613
|
+
* to instantiate a `UIComponent`. Depending on the requirements, the framework also provides other ways
|
|
45614
|
+
* to instantiate a `UIComponent`, documented under the {@link https://ui5.sap.com/#/topic/958ead51e2e94ab8bcdc90fb7e9d53d0 "Component" }
|
|
45615
|
+
* chapter.
|
|
45583
45616
|
*
|
|
45584
45617
|
* The set of allowed entries in the `mSettings` object depends on the concrete subclass and is described
|
|
45585
45618
|
* there. See {@link sap.ui.core.Component} for a general description of this argument.
|
|
@@ -47251,7 +47284,7 @@ declare module "sap/ui/core/util/MockServer" {
|
|
|
47251
47284
|
/**
|
|
47252
47285
|
* Class to mock http requests made to a remote server supporting the OData V2 REST protocol.
|
|
47253
47286
|
*/
|
|
47254
|
-
export default class MockServer extends ManagedObject {
|
|
47287
|
+
export default abstract class MockServer extends ManagedObject {
|
|
47255
47288
|
/**
|
|
47256
47289
|
* Creates a mocked server. This helps to mock some back-end calls, e.g. for OData V2/JSON Models or simple
|
|
47257
47290
|
* XHR calls, without changing the application code. This class can also be used for qunit tests.
|
|
@@ -56053,9 +56086,11 @@ declare module "sap/ui/model/json/JSONModel" {
|
|
|
56053
56086
|
/**
|
|
56054
56087
|
* Constructor for a new JSONModel.
|
|
56055
56088
|
*
|
|
56056
|
-
*
|
|
56057
|
-
*
|
|
56058
|
-
*
|
|
56089
|
+
* When observation is activated, the application can directly change the JS objects without the need to
|
|
56090
|
+
* call {@link sap.ui.model.json.JSONModel#setData}, {@link sap.ui.model.json.JSONModel#setProperty} or
|
|
56091
|
+
* {@link sap.ui.model.Model#refresh}. **Note:** Observation only works for existing properties in the JSON
|
|
56092
|
+
* model. Newly added or removed properties and newly added or removed array entries, for example, are not
|
|
56093
|
+
* detected.
|
|
56059
56094
|
*/
|
|
56060
56095
|
constructor(
|
|
56061
56096
|
/**
|
|
@@ -56063,7 +56098,7 @@ declare module "sap/ui/model/json/JSONModel" {
|
|
|
56063
56098
|
*/
|
|
56064
56099
|
oData?: object | string,
|
|
56065
56100
|
/**
|
|
56066
|
-
* Whether to observe the JSON data for property changes
|
|
56101
|
+
* Whether to observe the JSON data for property changes
|
|
56067
56102
|
*/
|
|
56068
56103
|
bObserve?: boolean
|
|
56069
56104
|
);
|
|
@@ -56134,13 +56169,9 @@ declare module "sap/ui/model/json/JSONModel" {
|
|
|
56134
56169
|
oContext?: Context
|
|
56135
56170
|
): any | null | undefined;
|
|
56136
56171
|
/**
|
|
56137
|
-
*
|
|
56138
|
-
* browser security restrictions, most "Ajax" requests are subject to the same origin
|
|
56139
|
-
* can not successfully retrieve data from a different domain, subdomain, or protocol.
|
|
56140
|
-
*
|
|
56141
|
-
* Note: To send a JSON object in the body of a "POST" request to load the model data, `oParameters` has
|
|
56142
|
-
* to be the JSON-stringified value of the object to be sent, and `mHeaders` has to contain a `"Content-Type"`
|
|
56143
|
-
* property with the value `"application/json;charset=utf-8"`.
|
|
56172
|
+
* Load JSON-encoded data from the server using a GET HTTP request and store the resulting JSON data in
|
|
56173
|
+
* the model. Note: Due to browser security restrictions, most "Ajax" requests are subject to the same origin
|
|
56174
|
+
* policy, the request can not successfully retrieve data from a different domain, subdomain, or protocol.
|
|
56144
56175
|
*
|
|
56145
56176
|
*
|
|
56146
56177
|
* @returns in case bAsync is set to true a Promise is returned; this promise resolves/rejects based on
|
|
@@ -56148,16 +56179,15 @@ declare module "sap/ui/model/json/JSONModel" {
|
|
|
56148
56179
|
*/
|
|
56149
56180
|
loadData(
|
|
56150
56181
|
/**
|
|
56151
|
-
* A string containing the URL to which the request is sent
|
|
56182
|
+
* A string containing the URL to which the request is sent.
|
|
56152
56183
|
*/
|
|
56153
56184
|
sURL: string,
|
|
56154
56185
|
/**
|
|
56155
|
-
*
|
|
56156
|
-
*
|
|
56157
|
-
*
|
|
56158
|
-
*
|
|
56159
|
-
*
|
|
56160
|
-
* Otherwise, the resulting string is added to the request body.
|
|
56186
|
+
* A map or string that is sent to the server with the request. If the value of this parameter is a string,
|
|
56187
|
+
* it must already be url-encoded. If the value of this parameter is an object (map), it is converted to
|
|
56188
|
+
* a string and then url-encoded. The resulting string is appended to the URL if the HTTP request method
|
|
56189
|
+
* cannot have a request body, e.g. for a GET request. Otherwise, the resulting string is added to the request
|
|
56190
|
+
* body.
|
|
56161
56191
|
*/
|
|
56162
56192
|
oParameters?: object | string,
|
|
56163
56193
|
/**
|
|
@@ -56167,7 +56197,8 @@ declare module "sap/ui/model/json/JSONModel" {
|
|
|
56167
56197
|
*/
|
|
56168
56198
|
bAsync?: boolean,
|
|
56169
56199
|
/**
|
|
56170
|
-
* The
|
|
56200
|
+
* The type of request to make ("POST" or "GET"), default is "GET". Note: Other HTTP request methods, such
|
|
56201
|
+
* as PUT and DELETE, can also be used here, but they are not supported by all browsers.
|
|
56171
56202
|
*/
|
|
56172
56203
|
sType?: string,
|
|
56173
56204
|
/**
|
|
@@ -67264,8 +67295,8 @@ declare module "sap/ui/model/odata/v2/ODataModel" {
|
|
|
67264
67295
|
*/
|
|
67265
67296
|
useBatch?: boolean;
|
|
67266
67297
|
/**
|
|
67267
|
-
*
|
|
67268
|
-
*
|
|
67298
|
+
* If set to `true`, the user credentials are included in a cross-origin request. **Note:** This only works
|
|
67299
|
+
* if all requests are asynchronous.
|
|
67269
67300
|
*/
|
|
67270
67301
|
withCredentials?: boolean;
|
|
67271
67302
|
/**
|
|
@@ -69326,7 +69357,7 @@ declare module "sap/ui/model/odata/v2/ODataModel" {
|
|
|
69326
69357
|
/**
|
|
69327
69358
|
* Paths to be reset; if no array is passed, all changes are reset
|
|
69328
69359
|
*/
|
|
69329
|
-
aPath?:
|
|
69360
|
+
aPath?: string[],
|
|
69330
69361
|
/**
|
|
69331
69362
|
* Whether also deferred requests are taken into account so that they are aborted
|
|
69332
69363
|
*/
|
|
@@ -70973,9 +71004,9 @@ declare module "sap/ui/model/odata/v4/Context" {
|
|
|
70973
71004
|
* depending on this context become unresolved, but no attempt is made to restore these bindings in case
|
|
70974
71005
|
* of reset or failure.
|
|
70975
71006
|
*
|
|
70976
|
-
*
|
|
70977
|
-
* is supported
|
|
70978
|
-
*
|
|
71007
|
+
* Since 1.125.0, deleting a node in a recursive hierarchy (see {@link sap.ui.model.odata.v4.ODataListBinding#setAggregation})
|
|
71008
|
+
* is supported. As a precondition, the context must not be both {@link #setKeepAlive kept-alive} and hidden
|
|
71009
|
+
* (for example due to a filter), and the group ID must not have {@link sap.ui.model.odata.v4.SubmitMode.API}.
|
|
70979
71010
|
* Such a deletion is not a pending change.
|
|
70980
71011
|
* See:
|
|
70981
71012
|
* #hasPendingChanges
|
|
@@ -71285,7 +71316,7 @@ declare module "sap/ui/model/odata/v4/Context" {
|
|
|
71285
71316
|
* not be shown anymore due to the search or filter criteria. If the latter happens to this context, its
|
|
71286
71317
|
* {@link #getIndex index} becomes `undefined`.
|
|
71287
71318
|
*
|
|
71288
|
-
* @
|
|
71319
|
+
* @since 1.125.0
|
|
71289
71320
|
*
|
|
71290
71321
|
* @returns A promise which is resolved without a defined result when the move is finished, or rejected
|
|
71291
71322
|
* in case of an error
|
|
@@ -71296,12 +71327,12 @@ declare module "sap/ui/model/odata/v4/Context" {
|
|
|
71296
71327
|
*/
|
|
71297
71328
|
oParameters: {
|
|
71298
71329
|
/**
|
|
71299
|
-
* The next sibling's context, or `null` to turn this node into the last sibling
|
|
71300
|
-
*
|
|
71330
|
+
* The next sibling's context, or `null` to turn this node into the last sibling. Omitting the sibling moves
|
|
71331
|
+
* this node to a position determined by the server.
|
|
71301
71332
|
*/
|
|
71302
71333
|
nextSibling?: Context | null;
|
|
71303
71334
|
/**
|
|
71304
|
-
* The new parent's context, or
|
|
71335
|
+
* The new parent's context, or `null` to turn this node into a root node
|
|
71305
71336
|
*/
|
|
71306
71337
|
parent: Context | null;
|
|
71307
71338
|
}
|
|
@@ -72570,14 +72601,19 @@ declare module "sap/ui/model/odata/v4/ODataListBinding" {
|
|
|
72570
72601
|
* has been read or if the system query option `$count` is `true` and the binding has processed at least
|
|
72571
72602
|
* one request.
|
|
72572
72603
|
*
|
|
72573
|
-
*
|
|
72574
|
-
* but not collapsed) is supported
|
|
72575
|
-
*
|
|
72576
|
-
*
|
|
72577
|
-
*
|
|
72578
|
-
*
|
|
72579
|
-
*
|
|
72580
|
-
*
|
|
72604
|
+
* Since 1.125.0, creating a new child beneath an existing and visible parent node (which must either be
|
|
72605
|
+
* a leaf or expanded, but not collapsed) is supported in case of a recursive hierarchy (see {@link #setAggregation}).
|
|
72606
|
+
* The parent node must be identified via an {@link sap.ui.model.odata.v4.Context} instance given as `oInitialData["@$ui5.node.parent"]`
|
|
72607
|
+
* (which is immediately removed from the new child's data). It can be `null` or absent when creating a
|
|
72608
|
+
* new root node. `bSkipRefresh` must be set, but both `bAtEnd` and `bInactive` must not be set. No other
|
|
72609
|
+
* creation or {@link sap.ui.model.odata.v4.Context#move move} must be pending, and no other modification
|
|
72610
|
+
* (including collapse of some ancestor node) must happen while this creation is pending! When using the
|
|
72611
|
+
* `createInPlace` parameter (see {@link #setAggregation}, @experimental as of version 1.125.0), the new
|
|
72612
|
+
* {@link sap.ui.model.odata.v4.Context#isTransient transient} child is hidden until it becomes {@link sap.ui.model.odata.v4.Context#created created},
|
|
72613
|
+
* and then it is shown at a position determined by the back end and the current sort order. The position
|
|
72614
|
+
* of the new child can be retrieved by using its {@link sap.ui.model.odata.v4.Context#getIndex index}.
|
|
72615
|
+
* If the created child does not become part of the hierarchy due to the search or filter criteria, the
|
|
72616
|
+
* context will be destroyed and its {@link sap.ui.model.odata.v4.Context#getIndex index} is set to `undefined`.
|
|
72581
72617
|
*
|
|
72582
72618
|
* @since 1.43.0
|
|
72583
72619
|
*
|
|
@@ -72765,7 +72801,7 @@ declare module "sap/ui/model/odata/v4/ODataListBinding" {
|
|
|
72765
72801
|
getAggregation(
|
|
72766
72802
|
/**
|
|
72767
72803
|
* Whether to additionally return the "$"-prefixed values described below which obviously cannot be given
|
|
72768
|
-
* back to the setter (
|
|
72804
|
+
* back to the setter (since 1.125.0). They are retrieved from the pair of "Org.OData.Aggregation.V1.RecursiveHierarchy"
|
|
72769
72805
|
* and "com.sap.vocabularies.Hierarchy.v1.RecursiveHierarchy" annotations at this binding's entity type,
|
|
72770
72806
|
* identified via the `hierarchyQualifier` given to {@link #setAggregation}.
|
|
72771
72807
|
* "$DistanceFromRoot" holds the path to the property which provides the raw value for "@$ui5.node.level"
|
|
@@ -73218,14 +73254,13 @@ declare module "sap/ui/model/odata/v4/ODataListBinding" {
|
|
|
73218
73254
|
* An object holding the information needed for data aggregation; see also OData
|
|
73219
73255
|
* Extension for Data Aggregation Version 4.0. Since 1.76.0, `undefined` can be used to remove the data
|
|
73220
73256
|
* aggregation object, which allows to set `$apply` explicitly afterwards. `null` is not supported.
|
|
73221
|
-
* Since 1.89.0, the deprecated property `"grandTotal like 1.84" : true` can be used to turn on the
|
|
73222
|
-
* of grand totals like in 1.84.0, using aggregates of aggregates and thus allowing to filter by
|
|
73223
|
-
* properties while grand totals are needed. Beware that methods like "average" or "countdistinct"
|
|
73224
|
-
* compatible with this approach, and it cannot be combined with group levels.
|
|
73225
|
-
* Since 1.
|
|
73226
|
-
* is the leading property that decides between those two use cases
|
|
73227
|
-
*
|
|
73228
|
-
* for read-only hierarchies.
|
|
73257
|
+
* Since 1.89.0, the **deprecated** property `"grandTotal like 1.84" : true` can be used to turn on the
|
|
73258
|
+
* handling of grand totals like in 1.84.0, using aggregates of aggregates and thus allowing to filter by
|
|
73259
|
+
* aggregated properties while grand totals are needed. Beware that methods like "average" or "countdistinct"
|
|
73260
|
+
* are not compatible with this approach, and it cannot be combined with group levels.
|
|
73261
|
+
* Since 1.117.0, either a read-only recursive hierarchy or pure data aggregation is supported, but no
|
|
73262
|
+
* mix; `hierarchyQualifier` is the leading property that decides between those two use cases. Since 1.125.0,
|
|
73263
|
+
* maintenance of a recursive hierarchy is supported.
|
|
73229
73264
|
*/
|
|
73230
73265
|
oAggregation?: {
|
|
73231
73266
|
/**
|
|
@@ -73245,12 +73280,17 @@ declare module "sap/ui/model/odata/v4/ODataListBinding" {
|
|
|
73245
73280
|
* `CASE WHEN MIN(Unit) = MAX(Unit) THEN MIN(Unit) END`)
|
|
73246
73281
|
*/
|
|
73247
73282
|
aggregate?: object;
|
|
73283
|
+
/**
|
|
73284
|
+
* Whether created nodes are shown in place at the position specified by the service (@experimental as of
|
|
73285
|
+
* version 1.125.0); only the value `true` is allowed. Otherwise, created nodes are displayed out of place
|
|
73286
|
+
* as the first child of their parent.
|
|
73287
|
+
*/
|
|
73288
|
+
createInPlace?: boolean;
|
|
73248
73289
|
/**
|
|
73249
73290
|
* The number (as a positive integer) of different levels initially available without calling {@link sap.ui.model.odata.v4.Context#expand }
|
|
73250
|
-
* (
|
|
73251
|
-
*
|
|
73252
|
-
*
|
|
73253
|
-
* to expand all levels (`1E16` is recommended inside XML views for simplicity).
|
|
73291
|
+
* (since 1.117.0), supported only if a `hierarchyQualifier` is given. Root nodes are on the first level.
|
|
73292
|
+
* By default, only root nodes are available; they are not yet expanded. Since 1.120.0, `expandTo >= Number.MAX_SAFE_INTEGER`
|
|
73293
|
+
* can be used to expand all levels (`1E16` is recommended inside XML views for simplicity).
|
|
73254
73294
|
*/
|
|
73255
73295
|
expandTo?: number;
|
|
73256
73296
|
/**
|
|
@@ -73275,12 +73315,10 @@ declare module "sap/ui/model/odata/v4/ODataListBinding" {
|
|
|
73275
73315
|
groupLevels?: string[];
|
|
73276
73316
|
/**
|
|
73277
73317
|
* The qualifier for the pair of "Org.OData.Aggregation.V1.RecursiveHierarchy" and "com.sap.vocabularies.Hierarchy.v1.RecursiveHierarchy"
|
|
73278
|
-
* annotations at this binding's entity type (
|
|
73279
|
-
*
|
|
73280
|
-
*
|
|
73281
|
-
*
|
|
73282
|
-
* "$search", the `vGroup` parameter of {@link sap.ui.model.Sorter} (since 1.107.0), shared
|
|
73283
|
-
* requests (since 1.108.0).
|
|
73318
|
+
* annotations at this binding's entity type (since 1.117.0). If present, a recursive hierarchy without
|
|
73319
|
+
* data aggregation is defined, and the only other supported properties are `createInPlace`, `expandTo`,
|
|
73320
|
+
* and `search`. A recursive hierarchy cannot be combined with:
|
|
73321
|
+
* "$search", the `vGroup` parameter of {@link sap.ui.model.Sorter}, shared requests.
|
|
73284
73322
|
*/
|
|
73285
73323
|
hierarchyQualifier?: string;
|
|
73286
73324
|
/**
|
|
@@ -74122,7 +74160,7 @@ declare module "sap/ui/model/odata/v4/ODataMetaModel" {
|
|
|
74122
74160
|
* must refer to a function in `mParameters.scope` in case of a relative name starting with a dot, which
|
|
74123
74161
|
* is stripped before lookup; see the `<template:alias>` instruction for XML Templating. In case of an
|
|
74124
74162
|
* absolute name, it is searched in `mParameters.scope` first and then in the global namespace. (Using the
|
|
74125
|
-
* global namespace is deprecated as of version 1.120.3). The names "requestCurrencyCodes" and "requestUnitsOfMeasure"
|
|
74163
|
+
* global namespace is **deprecated** as of version 1.120.3). The names "requestCurrencyCodes" and "requestUnitsOfMeasure"
|
|
74126
74164
|
* default to {@link #requestCurrencyCodes} and {@link #requestUnitsOfMeasure} resp. if not present in `mParameters.scope`.
|
|
74127
74165
|
* This function is called with the current object (or primitive value) and additional details and returns
|
|
74128
74166
|
* the result of this {@link #requestObject} call. The additional details are given as an object with the
|
|
@@ -74231,8 +74269,8 @@ declare module "sap/ui/model/odata/v4/ODataMetaModel" {
|
|
|
74231
74269
|
/**
|
|
74232
74270
|
* Scope for lookup of aliases for computed annotations (since 1.43.0) as a map from alias to a module (like
|
|
74233
74271
|
* `{AH : AnnotationHelper}`) or function (like `{format : AnnotationHelper.format}`); the alias must not
|
|
74234
|
-
* contain a dot. Since 1.120.3 looking up a computed annotation via its global name is deprecated
|
|
74235
|
-
* use this scope instead.
|
|
74272
|
+
* contain a dot. Since 1.120.3 looking up a computed annotation via its global name is **deprecated**;
|
|
74273
|
+
* always use this scope instead.
|
|
74236
74274
|
*/
|
|
74237
74275
|
scope?: Record<string, object | Function>;
|
|
74238
74276
|
}
|
|
@@ -74549,10 +74587,10 @@ declare module "sap/ui/model/odata/v4/ODataModel" {
|
|
|
74549
74587
|
*/
|
|
74550
74588
|
supportReferences?: boolean;
|
|
74551
74589
|
/**
|
|
74590
|
+
* **deprecated:** As of Version 1.110.0, this parameter is obsolete; see also {@link https://ui5.sap.com/#/topic/648e360fa22d46248ca783dc6eb44531 Data Reuse }
|
|
74552
74591
|
* (Controls synchronization between different bindings which refer to the same data for the case data changes
|
|
74553
74592
|
* in one binding. Must be set to 'None' which means bindings are not synchronized at all; all other values
|
|
74554
|
-
* are not supported and lead to an error.)
|
|
74555
|
-
* see also {@link https://ui5.sap.com/#/topic/648e360fa22d46248ca783dc6eb44531 Data Reuse}
|
|
74593
|
+
* are not supported and lead to an error.)
|
|
74556
74594
|
*/
|
|
74557
74595
|
synchronizationMode?: string;
|
|
74558
74596
|
/**
|
|
@@ -75043,7 +75081,7 @@ declare module "sap/ui/model/odata/v4/ODataModel" {
|
|
|
75043
75081
|
* are not supported.
|
|
75044
75082
|
*
|
|
75045
75083
|
* It is possible to create binding contexts pointing to metadata. A '##' is recognized as separator in
|
|
75046
|
-
* the resolved path and splits it into two parts; note that '#' may also be used as separator but is deprecated
|
|
75084
|
+
* the resolved path and splits it into two parts; note that '#' may also be used as separator but is **deprecated**
|
|
75047
75085
|
* since 1.51. The part before the separator is transformed into a metadata context (see {@link sap.ui.model.odata.v4.ODataMetaModel#getMetaContext}).
|
|
75048
75086
|
* The part following the separator is then interpreted relative to this metadata context, even if it starts
|
|
75049
75087
|
* with a '/'; a trailing '/' is allowed here, see {@link sap.ui.model.odata.v4.ODataMetaModel#requestObject }
|
|
@@ -76545,7 +76583,7 @@ declare module "sap/ui/model/resource/ResourceModel" {
|
|
|
76545
76583
|
*/
|
|
76546
76584
|
activeTerminologies?: string[];
|
|
76547
76585
|
/**
|
|
76548
|
-
*
|
|
76586
|
+
* **Deprecated as of Version 1.125**; always use asynchronous loading for performance reasons
|
|
76549
76587
|
*/
|
|
76550
76588
|
async?: boolean;
|
|
76551
76589
|
/**
|
|
@@ -87736,6 +87774,8 @@ declare namespace sap {
|
|
|
87736
87774
|
|
|
87737
87775
|
"sap/ui/model/DataState": undefined;
|
|
87738
87776
|
|
|
87777
|
+
"sap/ui/model/FieldHelp": undefined;
|
|
87778
|
+
|
|
87739
87779
|
"sap/ui/model/Filter": undefined;
|
|
87740
87780
|
|
|
87741
87781
|
"sap/ui/model/FilterOperator": undefined;
|
package/types/sap.ui.dt.d.ts
CHANGED
package/types/sap.ui.export.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.125.0
|
|
2
2
|
|
|
3
3
|
declare module "sap/ui/fl/library" {}
|
|
4
4
|
|
|
@@ -1469,49 +1469,12 @@ declare module "sap/ui/fl/write/_internal/fieldExtensibility/MultiTenantABAPExte
|
|
|
1469
1469
|
}
|
|
1470
1470
|
|
|
1471
1471
|
declare module "sap/ui/fl/write/_internal/fieldExtensibility/SingleTenantABAPExtensibilityVariant" {
|
|
1472
|
-
import ABAPExtensibilityVariant from "sap/ui/fl/write/_internal/fieldExtensibility/ABAPExtensibilityVariant";
|
|
1473
|
-
|
|
1474
|
-
import Metadata from "sap/ui/base/Metadata";
|
|
1475
|
-
|
|
1476
1472
|
/**
|
|
1477
1473
|
* Extension variant for ABAP single tenant environnments (via so called Custom Fields)
|
|
1478
1474
|
*
|
|
1479
1475
|
* @since 1.87
|
|
1480
1476
|
*/
|
|
1481
|
-
interface SingleTenantABAPExtensibilityVariant
|
|
1482
|
-
extends ABAPExtensibilityVariant {
|
|
1483
|
-
/**
|
|
1484
|
-
* Creates a new subclass of class sap.ui.fl.write._internal.fieldExtensibility.SingleTenantABAPExtensibilityVariant
|
|
1485
|
-
* with name `sClassName` and enriches it with the information contained in `oClassInfo`.
|
|
1486
|
-
*
|
|
1487
|
-
* `oClassInfo` might contain the same kind of information as described in {@link sap.ui.fl.write._internal.fieldExtensibility.ABAPExtensibilityVariant.extend}.
|
|
1488
|
-
*
|
|
1489
|
-
*
|
|
1490
|
-
* @returns Created class / constructor function
|
|
1491
|
-
*/
|
|
1492
|
-
extend(
|
|
1493
|
-
/**
|
|
1494
|
-
* Name of the class being created
|
|
1495
|
-
*/
|
|
1496
|
-
sClassName: string,
|
|
1497
|
-
/**
|
|
1498
|
-
* Object literal with information about the class
|
|
1499
|
-
*/
|
|
1500
|
-
oClassInfo?: object,
|
|
1501
|
-
/**
|
|
1502
|
-
* Constructor function for the metadata object; if not given, it defaults to the metadata implementation
|
|
1503
|
-
* used by this class
|
|
1504
|
-
*/
|
|
1505
|
-
FNMetaImpl?: Function
|
|
1506
|
-
): Function;
|
|
1507
|
-
/**
|
|
1508
|
-
* Returns a metadata object for class sap.ui.fl.write._internal.fieldExtensibility.SingleTenantABAPExtensibilityVariant.
|
|
1509
|
-
*
|
|
1510
|
-
*
|
|
1511
|
-
* @returns Metadata object describing this class
|
|
1512
|
-
*/
|
|
1513
|
-
getMetadata(): Metadata;
|
|
1514
|
-
}
|
|
1477
|
+
interface SingleTenantABAPExtensibilityVariant {}
|
|
1515
1478
|
const SingleTenantABAPExtensibilityVariant: SingleTenantABAPExtensibilityVariant;
|
|
1516
1479
|
export default SingleTenantABAPExtensibilityVariant;
|
|
1517
1480
|
}
|
|
@@ -1619,6 +1582,8 @@ declare namespace sap {
|
|
|
1619
1582
|
|
|
1620
1583
|
"sap/ui/fl/apply/_internal/flexState/DataSelector": undefined;
|
|
1621
1584
|
|
|
1585
|
+
"sap/ui/fl/apply/_internal/flexState/FlexObjectState": undefined;
|
|
1586
|
+
|
|
1622
1587
|
"sap/ui/fl/apply/_internal/flexState/FlexState": undefined;
|
|
1623
1588
|
|
|
1624
1589
|
"sap/ui/fl/apply/_internal/flexState/InitialPrepareFunctions": undefined;
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
// For Library Version: 1.
|
|
1
|
+
// For Library Version: 1.125.0
|
|
2
2
|
|
|
3
3
|
declare module "sap/ui/integration/library" {
|
|
4
4
|
import { URI } from "sap/ui/core/library";
|
|
@@ -750,6 +750,11 @@ declare module "sap/ui/integration/widgets/Card" {
|
|
|
750
750
|
* Description
|
|
751
751
|
*/
|
|
752
752
|
description?: string;
|
|
753
|
+
/**
|
|
754
|
+
* Path to a custom image to be shown on the place of the regular illustration. Relative to the card base
|
|
755
|
+
* URL.
|
|
756
|
+
*/
|
|
757
|
+
imageSrc?: string;
|
|
753
758
|
/**
|
|
754
759
|
* Response object in case of a network error
|
|
755
760
|
*/
|
package/types/sap.ui.layout.d.ts
CHANGED