@sapui5/types 1.115.1 → 1.117.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 +5 -3
- package/package.json +1 -1
- package/types/index.d.ts +10 -3
- package/types/sap.apf.d.ts +47 -40
- package/types/sap.ca.ui.d.ts +255 -161
- package/types/sap.chart.d.ts +31 -52
- package/types/sap.collaboration.d.ts +34 -38
- package/types/sap.esh.search.ui.d.ts +118 -109
- package/types/sap.f.d.ts +196 -276
- package/types/sap.fe.core.d.ts +151 -15
- package/types/sap.fe.macros.d.ts +181 -54
- package/types/sap.fe.placeholder.d.ts +1 -1
- package/types/sap.fe.plugins.optimisticBatch.d.ts +3 -0
- 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 +1406 -2521
- package/types/sap.insights.d.ts +250 -4
- package/types/sap.landvisz.d.ts +112 -67
- package/types/sap.m.d.ts +2202 -2899
- package/types/sap.makit.d.ts +22 -43
- package/types/sap.me.d.ts +38 -68
- package/types/sap.ndc.d.ts +41 -39
- package/types/sap.ovp.d.ts +10 -83
- package/types/sap.rules.ui.d.ts +50 -51
- package/types/sap.sac.df.d.ts +100 -12
- package/types/sap.suite.ui.commons.d.ts +1511 -1233
- package/types/sap.suite.ui.generic.template.d.ts +5 -8
- package/types/sap.suite.ui.microchart.d.ts +72 -123
- package/types/sap.tnt.d.ts +64 -29
- package/types/sap.ui.codeeditor.d.ts +11 -17
- package/types/sap.ui.commons.d.ts +278 -422
- package/types/sap.ui.comp.d.ts +830 -948
- package/types/sap.ui.core.d.ts +1160 -1090
- package/types/sap.ui.dt.d.ts +1 -1
- package/types/sap.ui.export.d.ts +201 -12
- package/types/sap.ui.fl.d.ts +24 -74
- package/types/sap.ui.generic.app.d.ts +39 -43
- package/types/sap.ui.generic.template.d.ts +1 -1
- package/types/sap.ui.integration.d.ts +192 -100
- package/types/sap.ui.layout.d.ts +100 -69
- package/types/sap.ui.mdc.d.ts +1100 -913
- package/types/sap.ui.richtexteditor.d.ts +18 -30
- package/types/sap.ui.rta.d.ts +1 -1
- package/types/sap.ui.suite.d.ts +9 -15
- package/types/sap.ui.support.d.ts +1 -1
- package/types/sap.ui.table.d.ts +140 -192
- package/types/sap.ui.testrecorder.d.ts +1 -1
- package/types/sap.ui.unified.d.ts +277 -501
- package/types/sap.ui.ux3.d.ts +263 -504
- package/types/sap.ui.vbm.d.ts +691 -541
- package/types/sap.ui.vk.d.ts +1916 -1834
- package/types/sap.ui.vtm.d.ts +428 -329
- package/types/sap.ui.webc.common.d.ts +1 -1
- package/types/sap.ui.webc.fiori.d.ts +864 -342
- package/types/sap.ui.webc.main.d.ts +4337 -1135
- package/types/sap.uiext.inbox.d.ts +50 -92
- package/types/sap.ushell.d.ts +275 -309
- package/types/sap.ushell_abap.d.ts +1 -1
- package/types/sap.uxap.d.ts +51 -91
- package/types/sap.viz.d.ts +523 -959
- package/types/sap.webanalytics.core.d.ts +1 -1
- package/types/sap.zen.commons.d.ts +7 -12
- package/types/sap.zen.crosstab.d.ts +4 -7
- package/types/sap.zen.dsh.d.ts +154 -157
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
// For Library Version: 1.
|
|
1
|
+
// For Library Version: 1.117.0
|
|
2
2
|
|
|
3
3
|
declare module "sap/ui/generic/app/library" {
|
|
4
4
|
export namespace navigation {
|
|
@@ -10,7 +10,7 @@ declare module "sap/ui/generic/app/library" {
|
|
|
10
10
|
*/
|
|
11
11
|
enum NavType {
|
|
12
12
|
/**
|
|
13
|
-
* @
|
|
13
|
+
* @ui5-protected DO NOT USE IN APPLICATIONS (only for related classes in the framework)
|
|
14
14
|
*
|
|
15
15
|
* Passing iapp-state data within xapp state in addition to existing values
|
|
16
16
|
*/
|
|
@@ -104,12 +104,12 @@ declare module "sap/ui/generic/app/ApplicationController" {
|
|
|
104
104
|
import TransactionController from "sap/ui/generic/app/transaction/TransactionController";
|
|
105
105
|
|
|
106
106
|
/**
|
|
107
|
-
* @
|
|
108
|
-
* @
|
|
107
|
+
* @since 1.32.0
|
|
108
|
+
* @experimental (since 1.32.0)
|
|
109
109
|
*
|
|
110
110
|
* Application Controller.
|
|
111
111
|
*/
|
|
112
|
-
class ApplicationController extends BaseController {
|
|
112
|
+
export default class ApplicationController extends BaseController {
|
|
113
113
|
/**
|
|
114
114
|
* Constructor for application controller.
|
|
115
115
|
*/
|
|
@@ -154,7 +154,7 @@ declare module "sap/ui/generic/app/ApplicationController" {
|
|
|
154
154
|
*/
|
|
155
155
|
static getMetadata(): Metadata;
|
|
156
156
|
/**
|
|
157
|
-
* @
|
|
157
|
+
* @experimental (since 1.32.0)
|
|
158
158
|
*
|
|
159
159
|
* Frees all resources claimed during the life-time of this instance.
|
|
160
160
|
*/
|
|
@@ -192,8 +192,8 @@ declare module "sap/ui/generic/app/ApplicationController" {
|
|
|
192
192
|
mAdditionalParameters: Record<string, any>
|
|
193
193
|
): Promise<any>;
|
|
194
194
|
/**
|
|
195
|
-
* @
|
|
196
|
-
* @
|
|
195
|
+
* @since 1.38
|
|
196
|
+
* @experimental
|
|
197
197
|
*
|
|
198
198
|
* Creates a context for an action call (OData function import)
|
|
199
199
|
*
|
|
@@ -249,7 +249,7 @@ declare module "sap/ui/generic/app/ApplicationController" {
|
|
|
249
249
|
}
|
|
250
250
|
): Promise<any>;
|
|
251
251
|
/**
|
|
252
|
-
* @
|
|
252
|
+
* @experimental (since 1.32.0)
|
|
253
253
|
*
|
|
254
254
|
* Notifies the application controller of a change of a property. Please note that the method is not meant
|
|
255
255
|
* for productive use currently. It is experimental.
|
|
@@ -267,7 +267,7 @@ declare module "sap/ui/generic/app/ApplicationController" {
|
|
|
267
267
|
oContext: object
|
|
268
268
|
): Promise<any>;
|
|
269
269
|
/**
|
|
270
|
-
* @
|
|
270
|
+
* @experimental (since 1.32.0)
|
|
271
271
|
*
|
|
272
272
|
* Registers a change for the given group id.
|
|
273
273
|
*/
|
|
@@ -278,7 +278,7 @@ declare module "sap/ui/generic/app/ApplicationController" {
|
|
|
278
278
|
sGroupId: string
|
|
279
279
|
): void;
|
|
280
280
|
/**
|
|
281
|
-
* @
|
|
281
|
+
* @experimental (since 1.32.0)
|
|
282
282
|
*
|
|
283
283
|
* Registers the given view with the Application Controller.
|
|
284
284
|
*/
|
|
@@ -289,10 +289,11 @@ declare module "sap/ui/generic/app/ApplicationController" {
|
|
|
289
289
|
oView: View
|
|
290
290
|
): void;
|
|
291
291
|
}
|
|
292
|
-
export default ApplicationController;
|
|
293
292
|
}
|
|
294
293
|
|
|
295
294
|
declare module "sap/ui/generic/app/navigation/service/NavError" {
|
|
295
|
+
import NavError1 from "sap/fe/navigation/NavError";
|
|
296
|
+
|
|
296
297
|
import Metadata from "sap/ui/base/Metadata";
|
|
297
298
|
|
|
298
299
|
/**
|
|
@@ -300,7 +301,7 @@ declare module "sap/ui/generic/app/navigation/service/NavError" {
|
|
|
300
301
|
*
|
|
301
302
|
* An object that provides error handling information during runtime.
|
|
302
303
|
*/
|
|
303
|
-
|
|
304
|
+
export default class NavError extends NavError1 {
|
|
304
305
|
/**
|
|
305
306
|
* Accepts an object literal `mSettings` that defines initial property values, aggregated and associated
|
|
306
307
|
* objects as well as event handlers. See {@link sap.ui.base.ManagedObject#constructor} for a general description
|
|
@@ -354,10 +355,11 @@ declare module "sap/ui/generic/app/navigation/service/NavError" {
|
|
|
354
355
|
*/
|
|
355
356
|
getErrorCode(): string;
|
|
356
357
|
}
|
|
357
|
-
export default NavError;
|
|
358
358
|
}
|
|
359
359
|
|
|
360
360
|
declare module "sap/ui/generic/app/navigation/service/NavigationHandler" {
|
|
361
|
+
import NavigationHandler1 from "sap/fe/navigation/NavigationHandler";
|
|
362
|
+
|
|
361
363
|
import ODataModel from "sap/ui/model/odata/v2/ODataModel";
|
|
362
364
|
|
|
363
365
|
import Metadata from "sap/ui/base/Metadata";
|
|
@@ -380,8 +382,7 @@ declare module "sap/ui/generic/app/navigation/service/NavigationHandler" {
|
|
|
380
382
|
* **Note:** This class requires that the UShell {@link sap.ushell.services.CrossApplicationNavigation }
|
|
381
383
|
* is available and initialized.
|
|
382
384
|
*/
|
|
383
|
-
class NavigationHandler
|
|
384
|
-
/* was: sap.fe.navigation.NavigationHandler */ extends Object {
|
|
385
|
+
export default class NavigationHandler extends NavigationHandler1 {
|
|
385
386
|
constructor(
|
|
386
387
|
/**
|
|
387
388
|
* UI5 controller that contains a router and a component; typically the main controller of your application,
|
|
@@ -396,9 +397,9 @@ declare module "sap/ui/generic/app/navigation/service/NavigationHandler" {
|
|
|
396
397
|
);
|
|
397
398
|
|
|
398
399
|
/**
|
|
399
|
-
* @
|
|
400
|
+
* @since 1.60.2
|
|
400
401
|
* @deprecated (since 1.83.0)
|
|
401
|
-
* @
|
|
402
|
+
* @ui5-protected Do not call from applications (only from related classes in the framework)
|
|
402
403
|
*
|
|
403
404
|
* The method creates a context url based on provided data. This context url can either be used as {@link sap.ui.generic.app.navigation.service.NavigationHandler#setParameterContextUrl ParameterContextUrl }
|
|
404
405
|
* or {@link sap.ui.generic.app.navigation.service.NavigationHandler#setFilterContextUrl FilterContextUrl}
|
|
@@ -1173,7 +1174,7 @@ declare module "sap/ui/generic/app/navigation/service/NavigationHandler" {
|
|
|
1173
1174
|
sAppStateKey: string
|
|
1174
1175
|
): void;
|
|
1175
1176
|
/**
|
|
1176
|
-
* @
|
|
1177
|
+
* @since 1.60.0
|
|
1177
1178
|
* @deprecated (since 1.83.0)
|
|
1178
1179
|
*
|
|
1179
1180
|
* Sets the model that is used for verification of sensitive information. If the model is not set, the unnamed
|
|
@@ -1295,10 +1296,11 @@ declare module "sap/ui/generic/app/navigation/service/NavigationHandler" {
|
|
|
1295
1296
|
bImmediateHashReplace?: boolean
|
|
1296
1297
|
): Object;
|
|
1297
1298
|
}
|
|
1298
|
-
export default NavigationHandler;
|
|
1299
1299
|
}
|
|
1300
1300
|
|
|
1301
1301
|
declare module "sap/ui/generic/app/navigation/service/PresentationVariant" {
|
|
1302
|
+
import PresentationVariant1 from "sap/fe/navigation/PresentationVariant";
|
|
1303
|
+
|
|
1302
1304
|
import Metadata from "sap/ui/base/Metadata";
|
|
1303
1305
|
|
|
1304
1306
|
/**
|
|
@@ -1308,8 +1310,7 @@ declare module "sap/ui/generic/app/navigation/service/PresentationVariant" {
|
|
|
1308
1310
|
* is created whose ID has been set to `""`. Passing a JSON-serialized string complying to the Selection
|
|
1309
1311
|
* Variant Specification will parse it, and the newly created instance will contain the same information.
|
|
1310
1312
|
*/
|
|
1311
|
-
class PresentationVariant
|
|
1312
|
-
/* was: sap.fe.navigation.PresentationVariant */ extends Object {
|
|
1313
|
+
export default class PresentationVariant extends PresentationVariant1 {
|
|
1313
1314
|
constructor(
|
|
1314
1315
|
/**
|
|
1315
1316
|
* If of type `string`, the selection variant is JSON-formatted; if of type `object`, the object represents
|
|
@@ -1486,10 +1487,11 @@ declare module "sap/ui/generic/app/navigation/service/PresentationVariant" {
|
|
|
1486
1487
|
*/
|
|
1487
1488
|
static toJSONString(): string;
|
|
1488
1489
|
}
|
|
1489
|
-
export default PresentationVariant;
|
|
1490
1490
|
}
|
|
1491
1491
|
|
|
1492
1492
|
declare module "sap/ui/generic/app/navigation/service/SelectionVariant" {
|
|
1493
|
+
import SelectionVariant1 from "sap/fe/navigation/SelectionVariant";
|
|
1494
|
+
|
|
1493
1495
|
import Metadata from "sap/ui/base/Metadata";
|
|
1494
1496
|
|
|
1495
1497
|
/**
|
|
@@ -1499,8 +1501,7 @@ declare module "sap/ui/generic/app/navigation/service/SelectionVariant" {
|
|
|
1499
1501
|
* is created whose ID has been set to `""`. Passing a JSON-serialized string complying to the Selection
|
|
1500
1502
|
* Variant Specification will parse it, and the newly created instance will contain the same information.
|
|
1501
1503
|
*/
|
|
1502
|
-
class SelectionVariant
|
|
1503
|
-
/* was: sap.fe.navigation.SelectionVariant */ extends Object {
|
|
1504
|
+
export default class SelectionVariant extends SelectionVariant1 {
|
|
1504
1505
|
constructor(
|
|
1505
1506
|
/**
|
|
1506
1507
|
* If of type `string`, the selection variant is JSON-formatted; if of type `object`, the object represents
|
|
@@ -1854,7 +1855,6 @@ declare module "sap/ui/generic/app/navigation/service/SelectionVariant" {
|
|
|
1854
1855
|
*/
|
|
1855
1856
|
static toJSONString(): string;
|
|
1856
1857
|
}
|
|
1857
|
-
export default SelectionVariant;
|
|
1858
1858
|
}
|
|
1859
1859
|
|
|
1860
1860
|
declare module "sap/ui/generic/app/transaction/BaseController" {
|
|
@@ -1865,13 +1865,13 @@ declare module "sap/ui/generic/app/transaction/BaseController" {
|
|
|
1865
1865
|
import Metadata from "sap/ui/base/Metadata";
|
|
1866
1866
|
|
|
1867
1867
|
/**
|
|
1868
|
-
* @
|
|
1868
|
+
* @since 1.30.0
|
|
1869
1869
|
*
|
|
1870
1870
|
* Common base class for `sap.ui.generic.app.transaction.TransactionController` and `sap.ui.generic.app.transaction.DraftController`,
|
|
1871
1871
|
* which offers basic functionality to invoke OData functions and actions as well as OData CRUD functions
|
|
1872
1872
|
* in general.
|
|
1873
1873
|
*/
|
|
1874
|
-
class BaseController extends EventProvider {
|
|
1874
|
+
export default class BaseController extends EventProvider {
|
|
1875
1875
|
/**
|
|
1876
1876
|
* Constructor for base class for controller instances.
|
|
1877
1877
|
*/
|
|
@@ -1988,7 +1988,6 @@ declare module "sap/ui/generic/app/transaction/BaseController" {
|
|
|
1988
1988
|
}
|
|
1989
1989
|
): Promise<any>;
|
|
1990
1990
|
}
|
|
1991
|
-
export default BaseController;
|
|
1992
1991
|
}
|
|
1993
1992
|
|
|
1994
1993
|
declare module "sap/ui/generic/app/transaction/DraftContext" {
|
|
@@ -2001,12 +2000,12 @@ declare module "sap/ui/generic/app/transaction/DraftContext" {
|
|
|
2001
2000
|
import Context from "sap/ui/model/Context";
|
|
2002
2001
|
|
|
2003
2002
|
/**
|
|
2004
|
-
* @
|
|
2003
|
+
* @since 1.30.0
|
|
2005
2004
|
*
|
|
2006
2005
|
* The class provides access to information on draft handling that is available in the OData service's metadata
|
|
2007
2006
|
* as it interprets draft-specific annotations.
|
|
2008
2007
|
*/
|
|
2009
|
-
class DraftContext extends BaseObject {
|
|
2008
|
+
export default class DraftContext extends BaseObject {
|
|
2010
2009
|
/**
|
|
2011
2010
|
* Constructor for meta-model access class.
|
|
2012
2011
|
*/
|
|
@@ -2153,7 +2152,7 @@ declare module "sap/ui/generic/app/transaction/DraftContext" {
|
|
|
2153
2152
|
oContext: Context
|
|
2154
2153
|
): boolean;
|
|
2155
2154
|
/**
|
|
2156
|
-
* @
|
|
2155
|
+
* @since 1.38
|
|
2157
2156
|
*
|
|
2158
2157
|
* Checks if the parameter "PreserveChanges" is supported by the edit function. If the edit action is triggered
|
|
2159
2158
|
* with the parameter set to `true` the ABAP application infrastructure will respond with HTTP response
|
|
@@ -2226,7 +2225,6 @@ declare module "sap/ui/generic/app/transaction/DraftContext" {
|
|
|
2226
2225
|
oKeys: object
|
|
2227
2226
|
): boolean;
|
|
2228
2227
|
}
|
|
2229
|
-
export default DraftContext;
|
|
2230
2228
|
}
|
|
2231
2229
|
|
|
2232
2230
|
declare module "sap/ui/generic/app/transaction/DraftController" {
|
|
@@ -2241,7 +2239,7 @@ declare module "sap/ui/generic/app/transaction/DraftController" {
|
|
|
2241
2239
|
import Metadata from "sap/ui/base/Metadata";
|
|
2242
2240
|
|
|
2243
2241
|
/**
|
|
2244
|
-
* @
|
|
2242
|
+
* @since 1.30.0
|
|
2245
2243
|
*
|
|
2246
2244
|
* Gives access to runtime draft handling for applications. Assuming state-less communication, each single
|
|
2247
2245
|
* data modification request (or change set in an OData $batch request) is a "mini-transaction", which saves
|
|
@@ -2255,7 +2253,7 @@ declare module "sap/ui/generic/app/transaction/DraftController" {
|
|
|
2255
2253
|
* handling is provided to notify client implementations of error situations. The event `fatalError` is
|
|
2256
2254
|
* thrown, if fatal errors occur during execution of OData requests.
|
|
2257
2255
|
*/
|
|
2258
|
-
class DraftController extends BaseController {
|
|
2256
|
+
export default class DraftController extends BaseController {
|
|
2259
2257
|
/**
|
|
2260
2258
|
* Constructor for a new draft controller instance.
|
|
2261
2259
|
*/
|
|
@@ -2419,7 +2417,7 @@ declare module "sap/ui/generic/app/transaction/DraftController" {
|
|
|
2419
2417
|
*/
|
|
2420
2418
|
getDraftContext(): DraftContext;
|
|
2421
2419
|
/**
|
|
2422
|
-
* @
|
|
2420
|
+
* @since 1.32.0
|
|
2423
2421
|
*
|
|
2424
2422
|
* Retrieves a possibly existing draft entity for the given active entity using the binding context of the
|
|
2425
2423
|
* active entity from the back-end.
|
|
@@ -2433,7 +2431,7 @@ declare module "sap/ui/generic/app/transaction/DraftController" {
|
|
|
2433
2431
|
oContext: Context
|
|
2434
2432
|
): Promise<any>;
|
|
2435
2433
|
/**
|
|
2436
|
-
* @
|
|
2434
|
+
* @since 1.32.0
|
|
2437
2435
|
*
|
|
2438
2436
|
* Checks whether an entity has an active entity associated.
|
|
2439
2437
|
*
|
|
@@ -2497,7 +2495,6 @@ declare module "sap/ui/generic/app/transaction/DraftController" {
|
|
|
2497
2495
|
oContext: Context
|
|
2498
2496
|
): Promise<any>;
|
|
2499
2497
|
}
|
|
2500
|
-
export default DraftController;
|
|
2501
2498
|
}
|
|
2502
2499
|
|
|
2503
2500
|
declare module "sap/ui/generic/app/transaction/TransactionController" {
|
|
@@ -2512,7 +2509,7 @@ declare module "sap/ui/generic/app/transaction/TransactionController" {
|
|
|
2512
2509
|
import Metadata from "sap/ui/base/Metadata";
|
|
2513
2510
|
|
|
2514
2511
|
/**
|
|
2515
|
-
* @
|
|
2512
|
+
* @since 1.30.0
|
|
2516
2513
|
*
|
|
2517
2514
|
* Assuming state-less communication, each single data modification request (or change set in an OData $batch
|
|
2518
2515
|
* request) is a "mini-transaction", which saves data to the database. The class allows you to submit changes,
|
|
@@ -2523,7 +2520,7 @@ declare module "sap/ui/generic/app/transaction/TransactionController" {
|
|
|
2523
2520
|
* are provided to notify client implementations of error situations. The event `fatalError` is thrown,
|
|
2524
2521
|
* if fatal errors occur during execution of OData requests.
|
|
2525
2522
|
*/
|
|
2526
|
-
class TransactionController extends BaseController {
|
|
2523
|
+
export default class TransactionController extends BaseController {
|
|
2527
2524
|
/**
|
|
2528
2525
|
* Constructor for a new transaction controller instance.
|
|
2529
2526
|
*/
|
|
@@ -2581,8 +2578,8 @@ declare module "sap/ui/generic/app/transaction/TransactionController" {
|
|
|
2581
2578
|
*/
|
|
2582
2579
|
static getMetadata(): Metadata;
|
|
2583
2580
|
/**
|
|
2584
|
-
* @
|
|
2585
|
-
* @
|
|
2581
|
+
* @since 1.38
|
|
2582
|
+
* @experimental
|
|
2586
2583
|
*
|
|
2587
2584
|
* Submits changes to the backend system and deletes a group of entities in the backend system. These entities
|
|
2588
2585
|
* can be both draft or active entities.
|
|
@@ -2664,7 +2661,6 @@ declare module "sap/ui/generic/app/transaction/TransactionController" {
|
|
|
2664
2661
|
aContextToBeUpdated: any[]
|
|
2665
2662
|
): Promise<any>;
|
|
2666
2663
|
}
|
|
2667
|
-
export default TransactionController;
|
|
2668
2664
|
}
|
|
2669
2665
|
|
|
2670
2666
|
declare namespace sap {
|