@sapui5/types 1.114.0 → 1.115.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 +2 -0
- package/types/sap.apf.d.ts +70 -60
- package/types/sap.ca.ui.d.ts +207 -105
- package/types/sap.chart.d.ts +213 -143
- package/types/sap.collaboration.d.ts +98 -87
- package/types/sap.esh.search.ui.d.ts +92 -2
- package/types/sap.f.d.ts +1780 -1315
- package/types/sap.fe.core.d.ts +78 -205
- package/types/sap.fe.macros.d.ts +120 -10
- package/types/sap.fe.navigation.d.ts +39 -32
- package/types/sap.fe.placeholder.d.ts +3 -0
- package/types/sap.fe.templates.d.ts +16 -292
- package/types/sap.fe.test.d.ts +40 -13
- package/types/sap.fe.tools.d.ts +3 -0
- package/types/sap.feedback.ui.d.ts +1 -1
- package/types/sap.gantt.d.ts +1987 -1251
- package/types/sap.insights.d.ts +1 -1
- package/types/sap.landvisz.d.ts +75 -29
- package/types/sap.m.d.ts +12407 -8461
- package/types/sap.makit.d.ts +88 -28
- package/types/sap.me.d.ts +167 -78
- package/types/sap.ndc.d.ts +115 -42
- package/types/sap.ovp.d.ts +3 -3
- package/types/sap.rules.ui.d.ts +53 -24
- package/types/sap.sac.df.d.ts +11 -8
- package/types/sap.suite.ui.commons.d.ts +2090 -1437
- package/types/sap.suite.ui.generic.template.d.ts +99 -97
- package/types/sap.suite.ui.microchart.d.ts +492 -322
- package/types/sap.tnt.d.ts +173 -95
- package/types/sap.ui.codeeditor.d.ts +61 -39
- package/types/sap.ui.commons.d.ts +1393 -846
- package/types/sap.ui.comp.d.ts +4159 -2878
- package/types/sap.ui.core.d.ts +6286 -3651
- package/types/sap.ui.dt.d.ts +1 -1
- package/types/sap.ui.export.d.ts +76 -53
- package/types/sap.ui.fl.d.ts +160 -100
- package/types/sap.ui.generic.app.d.ts +58 -49
- package/types/sap.ui.generic.template.d.ts +1 -1
- package/types/sap.ui.integration.d.ts +502 -375
- package/types/sap.ui.layout.d.ts +603 -640
- package/types/sap.ui.mdc.d.ts +22208 -140
- package/types/sap.ui.richtexteditor.d.ts +106 -70
- package/types/sap.ui.rta.d.ts +7 -7
- package/types/sap.ui.suite.d.ts +29 -13
- package/types/sap.ui.support.d.ts +15 -16
- package/types/sap.ui.table.d.ts +907 -647
- package/types/sap.ui.testrecorder.d.ts +1 -1
- package/types/sap.ui.unified.d.ts +1765 -1179
- package/types/sap.ui.ux3.d.ts +1472 -807
- package/types/sap.ui.vbm.d.ts +1018 -760
- package/types/sap.ui.vk.d.ts +2858 -1896
- package/types/sap.ui.vtm.d.ts +650 -479
- package/types/sap.ui.webc.common.d.ts +5 -5
- package/types/sap.ui.webc.fiori.d.ts +817 -462
- package/types/sap.ui.webc.main.d.ts +2018 -1096
- package/types/sap.uiext.inbox.d.ts +168 -38
- package/types/sap.ushell.d.ts +738 -429
- package/types/sap.ushell_abap.d.ts +1 -1
- package/types/sap.uxap.d.ts +472 -348
- package/types/sap.viz.d.ts +2203 -835
- package/types/sap.webanalytics.core.d.ts +1 -1
- package/types/sap.zen.commons.d.ts +15 -10
- package/types/sap.zen.crosstab.d.ts +7 -4
- package/types/sap.zen.dsh.d.ts +143 -87
|
@@ -1,35 +1,19 @@
|
|
|
1
1
|
// For Library Version: 1.111.0
|
|
2
2
|
|
|
3
3
|
declare module "sap/fe/templates/ListReport/ExtensionAPI" {
|
|
4
|
-
import
|
|
5
|
-
|
|
6
|
-
import Model from "sap/ui/model/Model";
|
|
7
|
-
|
|
8
|
-
import Context from "sap/ui/model/Context";
|
|
9
|
-
|
|
10
|
-
import UI5Element from "sap/ui/core/Element";
|
|
4
|
+
import ExtensionAPI1 from "sap/fe/core/ExtensionAPI";
|
|
11
5
|
|
|
12
6
|
/**
|
|
13
|
-
* @
|
|
7
|
+
* @since 1.79.0
|
|
14
8
|
*
|
|
15
9
|
* Extension API for list reports in SAP Fiori elements for OData V4.
|
|
16
10
|
* To correctly integrate your app extension coding with SAP Fiori elements, use only the extensionAPI of
|
|
17
11
|
* SAP Fiori elements. Don't access or manipulate controls, properties, models, or other internal objects
|
|
18
12
|
* created by the SAP Fiori elements framework.
|
|
19
13
|
*/
|
|
20
|
-
export default class ExtensionAPI
|
|
21
|
-
/* was: sap.fe.templates.ExtensionAPI */ extends Object {
|
|
14
|
+
export default class ExtensionAPI extends ExtensionAPI1 {
|
|
22
15
|
constructor();
|
|
23
16
|
|
|
24
|
-
/**
|
|
25
|
-
* Add any control as a dependent control to this SAP Fiori elements page.
|
|
26
|
-
*/
|
|
27
|
-
addDependent(
|
|
28
|
-
/**
|
|
29
|
-
* Control to be added as a dependent control
|
|
30
|
-
*/
|
|
31
|
-
oControl: Control
|
|
32
|
-
): void;
|
|
33
17
|
/**
|
|
34
18
|
* This method converts filter conditions to filters.
|
|
35
19
|
*
|
|
@@ -41,12 +25,6 @@ declare module "sap/fe/templates/ListReport/ExtensionAPI" {
|
|
|
41
25
|
*/
|
|
42
26
|
mFilterConditions: any
|
|
43
27
|
): object;
|
|
44
|
-
/**
|
|
45
|
-
* Retrieves the editFlow controller extension for this page.
|
|
46
|
-
*
|
|
47
|
-
* @returns The editFlow controller extension
|
|
48
|
-
*/
|
|
49
|
-
getEditFlow(): /* was: sap.fe.templates.EditFlow */ any;
|
|
50
28
|
/**
|
|
51
29
|
* Provides all the model filters from the filter bar that are currently active
|
|
52
30
|
* along with the search expression.
|
|
@@ -54,96 +32,12 @@ declare module "sap/fe/templates/ListReport/ExtensionAPI" {
|
|
|
54
32
|
* @returns An array of active filters and the search expression.
|
|
55
33
|
*/
|
|
56
34
|
getFilters(): object;
|
|
57
|
-
/**
|
|
58
|
-
* Retrieves the intentBasedNavigation controller extension for this page.
|
|
59
|
-
*
|
|
60
|
-
* @returns The intentBasedNavigation controller extension
|
|
61
|
-
*/
|
|
62
|
-
getIntentBasedNavigation(): /* was: sap.fe.templates.IntentBasedNavigation */ any;
|
|
63
|
-
/**
|
|
64
|
-
* Get access to models managed by SAP Fiori elements.
|
|
65
|
-
*
|
|
66
|
-
* The following models can be accessed:
|
|
67
|
-
*
|
|
68
|
-
*
|
|
69
|
-
* - undefined: the undefined model returns the SAPUI5 OData V4 model bound to this page
|
|
70
|
-
*
|
|
71
|
-
* - i18n / further data models defined in the manifest
|
|
72
|
-
* ui: returns a SAPUI5 JSON model containing UI information.
|
|
73
|
-
* Only the following properties are public and supported:
|
|
74
|
-
*
|
|
75
|
-
*
|
|
76
|
-
* - isEditable: set to true if the application is in edit mode
|
|
77
|
-
*
|
|
78
|
-
*
|
|
79
|
-
* .
|
|
80
|
-
* editMode is deprecated and should not be used anymore. Use isEditable instead.
|
|
81
|
-
*
|
|
82
|
-
* @returns The required model
|
|
83
|
-
*/
|
|
84
|
-
getModel(
|
|
85
|
-
/**
|
|
86
|
-
* Name of the model
|
|
87
|
-
*/
|
|
88
|
-
sModelName?: string
|
|
89
|
-
): Model | undefined;
|
|
90
|
-
/**
|
|
91
|
-
* Retrieves the routing controller extension for this page.
|
|
92
|
-
*
|
|
93
|
-
* @returns The routing controller extension
|
|
94
|
-
*/
|
|
95
|
-
getRouting(): /* was: sap.fe.templates.Routing */ any;
|
|
96
35
|
/**
|
|
97
36
|
* Gets the list entries currently selected for the displayed control.
|
|
98
37
|
*
|
|
99
38
|
* @returns Array containing the selected contexts
|
|
100
39
|
*/
|
|
101
40
|
getSelectedContexts(): any;
|
|
102
|
-
/**
|
|
103
|
-
* Load a fragment and go through the template preprocessor with the current page context.
|
|
104
|
-
*
|
|
105
|
-
* @returns The fragment definition
|
|
106
|
-
*/
|
|
107
|
-
loadFragment(
|
|
108
|
-
/**
|
|
109
|
-
* The settings object
|
|
110
|
-
*/
|
|
111
|
-
mSettings: {
|
|
112
|
-
/**
|
|
113
|
-
* The contextPath to be used for the templating process
|
|
114
|
-
*/
|
|
115
|
-
contextPath: string;
|
|
116
|
-
/**
|
|
117
|
-
* The controller to be attached to the fragment
|
|
118
|
-
*/
|
|
119
|
-
controller: object;
|
|
120
|
-
/**
|
|
121
|
-
* The ID of the fragment itself
|
|
122
|
-
*/
|
|
123
|
-
id: string;
|
|
124
|
-
/**
|
|
125
|
-
* The initial binding context
|
|
126
|
-
*/
|
|
127
|
-
initialBindingContext: Context;
|
|
128
|
-
/**
|
|
129
|
-
* The name of the fragment to be loaded
|
|
130
|
-
*/
|
|
131
|
-
name: string;
|
|
132
|
-
}
|
|
133
|
-
): Promise<UI5Element | UI5Element[]>;
|
|
134
|
-
/**
|
|
135
|
-
* Navigate to another target.
|
|
136
|
-
*/
|
|
137
|
-
navigateToTarget(
|
|
138
|
-
/**
|
|
139
|
-
* Name of the target route
|
|
140
|
-
*/
|
|
141
|
-
sTarget: string,
|
|
142
|
-
/**
|
|
143
|
-
* undefined
|
|
144
|
-
*/
|
|
145
|
-
oContext: Context
|
|
146
|
-
): void;
|
|
147
41
|
/**
|
|
148
42
|
* Refreshes the List Report.
|
|
149
43
|
* This method currently only supports triggering the search (by clicking on the GO button)
|
|
@@ -153,16 +47,7 @@ declare module "sap/fe/templates/ListReport/ExtensionAPI" {
|
|
|
153
47
|
*
|
|
154
48
|
* @returns Resolved once the data is refreshed or rejected if the request failed
|
|
155
49
|
*/
|
|
156
|
-
refresh():
|
|
157
|
-
/**
|
|
158
|
-
* Remove a dependent control from this SAP Fiori elements page.
|
|
159
|
-
*/
|
|
160
|
-
removeDependent(
|
|
161
|
-
/**
|
|
162
|
-
* Control to be added as a dependent control
|
|
163
|
-
*/
|
|
164
|
-
oControl: Control
|
|
165
|
-
): void;
|
|
50
|
+
refresh(): Promise<void>;
|
|
166
51
|
/**
|
|
167
52
|
* Provide an option for showing a custom message in the message strip above the list report table.
|
|
168
53
|
*/
|
|
@@ -170,12 +55,14 @@ declare module "sap/fe/templates/ListReport/ExtensionAPI" {
|
|
|
170
55
|
/**
|
|
171
56
|
* Custom message along with the message type to be set on the table.
|
|
172
57
|
*/
|
|
173
|
-
message: /* was: sap.fe.templates.LRCustomMessage */
|
|
58
|
+
message: /* was: sap.fe.templates.ListReport.LRMessageStrip.LRCustomMessage */
|
|
59
|
+
| any
|
|
60
|
+
| undefined,
|
|
174
61
|
/**
|
|
175
62
|
* The tabKey identifying the table where the custom message is displayed. If tabKey is empty, the message
|
|
176
63
|
* is displayed in all tabs . If tabKey = ['1','2'], the message is displayed in tabs 1 and 2 only
|
|
177
64
|
*/
|
|
178
|
-
tabKey?: string | string[],
|
|
65
|
+
tabKey?: null | string | string[],
|
|
179
66
|
/**
|
|
180
67
|
* A function that is called when the user closes the message bar.
|
|
181
68
|
*/
|
|
@@ -202,54 +89,26 @@ declare module "sap/fe/templates/ListReport/ExtensionAPI" {
|
|
|
202
89
|
*/
|
|
203
90
|
vValues?: boolean | boolean[] | number | number[] | string | string[]
|
|
204
91
|
): Promise<void>;
|
|
205
|
-
/**
|
|
206
|
-
* Triggers an update of the app state.
|
|
207
|
-
* Should be called if the state of a control, or any other state-relevant information, was changed.
|
|
208
|
-
*
|
|
209
|
-
* @returns A promise that resolves with the new app state object.
|
|
210
|
-
*/
|
|
211
|
-
updateAppState(): Promise<object | void>;
|
|
212
92
|
}
|
|
213
93
|
}
|
|
214
94
|
|
|
215
95
|
declare module "sap/fe/templates/ListReport/ListReportController.controller" {
|
|
216
|
-
import
|
|
96
|
+
import PageController from "sap/fe/core/PageController";
|
|
217
97
|
|
|
218
|
-
import
|
|
98
|
+
import ExtensionAPI from "sap/fe/templates/ListReport/ExtensionAPI";
|
|
219
99
|
|
|
220
100
|
/**
|
|
221
101
|
* Controller class for the list report page, used inside an SAP Fiori elements application.
|
|
222
102
|
*/
|
|
223
|
-
export default class ListReportController
|
|
224
|
-
/* was: sap.fe.templates.PageController */ extends Object {
|
|
103
|
+
export default class ListReportController extends PageController {
|
|
225
104
|
constructor();
|
|
226
105
|
|
|
227
|
-
/**
|
|
228
|
-
* @SINCE 1.91.0
|
|
229
|
-
*
|
|
230
|
-
* Returns the current app component.
|
|
231
|
-
*
|
|
232
|
-
* @returns The app component or, if not found, null
|
|
233
|
-
*/
|
|
234
|
-
getAppComponent(): /* was: sap.fe.templates.AppComponent */ any;
|
|
235
106
|
/**
|
|
236
107
|
* Get the extension API for the current page.
|
|
237
108
|
*
|
|
238
109
|
* @returns The extension API.
|
|
239
110
|
*/
|
|
240
|
-
getExtensionAPI():
|
|
241
|
-
/**
|
|
242
|
-
* Convenience method provided by SAP Fiori elements to enable applications to include the view model by
|
|
243
|
-
* name into each controller.
|
|
244
|
-
*
|
|
245
|
-
* @returns The model instance
|
|
246
|
-
*/
|
|
247
|
-
getModel(
|
|
248
|
-
/**
|
|
249
|
-
* The model name
|
|
250
|
-
*/
|
|
251
|
-
sName?: string
|
|
252
|
-
): Model;
|
|
111
|
+
getExtensionAPI(): ExtensionAPI;
|
|
253
112
|
/**
|
|
254
113
|
* Method called when the 'Clear' button on the FilterBar is pressed.
|
|
255
114
|
*/
|
|
@@ -294,107 +153,33 @@ declare module "sap/fe/templates/ListReport/ListReportController.controller" {
|
|
|
294
153
|
*/
|
|
295
154
|
mParameters: any
|
|
296
155
|
): void;
|
|
297
|
-
/**
|
|
298
|
-
* Convenience method for setting the view model in every controller of the application.
|
|
299
|
-
*
|
|
300
|
-
* @returns The view instance
|
|
301
|
-
*/
|
|
302
|
-
setModel(
|
|
303
|
-
/**
|
|
304
|
-
* The model instance
|
|
305
|
-
*/
|
|
306
|
-
oModel: Model,
|
|
307
|
-
/**
|
|
308
|
-
* The model name
|
|
309
|
-
*/
|
|
310
|
-
sName: string
|
|
311
|
-
): View;
|
|
312
156
|
}
|
|
313
157
|
}
|
|
314
158
|
|
|
315
159
|
declare module "sap/fe/templates/ObjectPage/ExtensionAPI" {
|
|
316
|
-
import
|
|
160
|
+
import ExtensionAPI1 from "sap/fe/core/ExtensionAPI";
|
|
317
161
|
|
|
318
162
|
import Context from "sap/ui/model/Context";
|
|
319
163
|
|
|
320
|
-
import Model from "sap/ui/model/Model";
|
|
321
|
-
|
|
322
|
-
import UI5Element from "sap/ui/core/Element";
|
|
323
|
-
|
|
324
164
|
import Message from "sap/ui/core/message/Message";
|
|
325
165
|
|
|
326
166
|
/**
|
|
327
|
-
* @
|
|
167
|
+
* @since 1.79.0
|
|
328
168
|
*
|
|
329
169
|
* Extension API for object pages on SAP Fiori elements for OData V4.
|
|
330
170
|
* To correctly integrate your app extension coding with SAP Fiori elements, use only the extensionAPI of
|
|
331
171
|
* SAP Fiori elements. Don't access or manipulate controls, properties, models, or other internal objects
|
|
332
172
|
* created by the SAP Fiori elements framework.
|
|
333
173
|
*/
|
|
334
|
-
export default class ExtensionAPI
|
|
335
|
-
/* was: sap.fe.templates.ExtensionAPI */ extends Object {
|
|
174
|
+
export default class ExtensionAPI extends ExtensionAPI1 {
|
|
336
175
|
constructor();
|
|
337
176
|
|
|
338
|
-
/**
|
|
339
|
-
* Add any control as a dependent control to this SAP Fiori elements page.
|
|
340
|
-
*/
|
|
341
|
-
addDependent(
|
|
342
|
-
/**
|
|
343
|
-
* Control to be added as a dependent control
|
|
344
|
-
*/
|
|
345
|
-
oControl: Control
|
|
346
|
-
): void;
|
|
347
177
|
/**
|
|
348
178
|
* Gets the bound context of the current object page.
|
|
349
179
|
*
|
|
350
180
|
* @returns Context bound to the object page
|
|
351
181
|
*/
|
|
352
|
-
getBindingContext():
|
|
353
|
-
/**
|
|
354
|
-
* Retrieves the editFlow controller extension for this page.
|
|
355
|
-
*
|
|
356
|
-
* @returns The editFlow controller extension
|
|
357
|
-
*/
|
|
358
|
-
getEditFlow(): /* was: sap.fe.templates.EditFlow */ any;
|
|
359
|
-
/**
|
|
360
|
-
* Retrieves the intentBasedNavigation controller extension for this page.
|
|
361
|
-
*
|
|
362
|
-
* @returns The intentBasedNavigation controller extension
|
|
363
|
-
*/
|
|
364
|
-
getIntentBasedNavigation(): /* was: sap.fe.templates.IntentBasedNavigation */ any;
|
|
365
|
-
/**
|
|
366
|
-
* Get access to models managed by SAP Fiori elements.
|
|
367
|
-
*
|
|
368
|
-
* The following models can be accessed:
|
|
369
|
-
*
|
|
370
|
-
*
|
|
371
|
-
* - undefined: the undefined model returns the SAPUI5 OData V4 model bound to this page
|
|
372
|
-
*
|
|
373
|
-
* - i18n / further data models defined in the manifest
|
|
374
|
-
* ui: returns a SAPUI5 JSON model containing UI information.
|
|
375
|
-
* Only the following properties are public and supported:
|
|
376
|
-
*
|
|
377
|
-
*
|
|
378
|
-
* - isEditable: set to true if the application is in edit mode
|
|
379
|
-
*
|
|
380
|
-
*
|
|
381
|
-
* .
|
|
382
|
-
* editMode is deprecated and should not be used anymore. Use isEditable instead.
|
|
383
|
-
*
|
|
384
|
-
* @returns The required model
|
|
385
|
-
*/
|
|
386
|
-
getModel(
|
|
387
|
-
/**
|
|
388
|
-
* Name of the model
|
|
389
|
-
*/
|
|
390
|
-
sModelName?: string
|
|
391
|
-
): Model | undefined;
|
|
392
|
-
/**
|
|
393
|
-
* Retrieves the routing controller extension for this page.
|
|
394
|
-
*
|
|
395
|
-
* @returns The routing controller extension
|
|
396
|
-
*/
|
|
397
|
-
getRouting(): /* was: sap.fe.templates.Routing */ any;
|
|
182
|
+
getBindingContext(): null | Context | undefined;
|
|
398
183
|
/**
|
|
399
184
|
* Gets the list entries currently selected for the table.
|
|
400
185
|
*
|
|
@@ -410,51 +195,6 @@ declare module "sap/fe/templates/ObjectPage/ExtensionAPI" {
|
|
|
410
195
|
* Hides the message strip below the anchor bar.
|
|
411
196
|
*/
|
|
412
197
|
hideMessage(): void;
|
|
413
|
-
/**
|
|
414
|
-
* Load a fragment and go through the template preprocessor with the current page context.
|
|
415
|
-
*
|
|
416
|
-
* @returns The fragment definition
|
|
417
|
-
*/
|
|
418
|
-
loadFragment(
|
|
419
|
-
/**
|
|
420
|
-
* The settings object
|
|
421
|
-
*/
|
|
422
|
-
mSettings: {
|
|
423
|
-
/**
|
|
424
|
-
* The contextPath to be used for the templating process
|
|
425
|
-
*/
|
|
426
|
-
contextPath: string;
|
|
427
|
-
/**
|
|
428
|
-
* The controller to be attached to the fragment
|
|
429
|
-
*/
|
|
430
|
-
controller: object;
|
|
431
|
-
/**
|
|
432
|
-
* The ID of the fragment itself
|
|
433
|
-
*/
|
|
434
|
-
id: string;
|
|
435
|
-
/**
|
|
436
|
-
* The initial binding context
|
|
437
|
-
*/
|
|
438
|
-
initialBindingContext: Context;
|
|
439
|
-
/**
|
|
440
|
-
* The name of the fragment to be loaded
|
|
441
|
-
*/
|
|
442
|
-
name: string;
|
|
443
|
-
}
|
|
444
|
-
): Promise<UI5Element | UI5Element[]>;
|
|
445
|
-
/**
|
|
446
|
-
* Navigate to another target.
|
|
447
|
-
*/
|
|
448
|
-
navigateToTarget(
|
|
449
|
-
/**
|
|
450
|
-
* Name of the target route
|
|
451
|
-
*/
|
|
452
|
-
sTarget: string,
|
|
453
|
-
/**
|
|
454
|
-
* undefined
|
|
455
|
-
*/
|
|
456
|
-
oContext: Context
|
|
457
|
-
): void;
|
|
458
198
|
/**
|
|
459
199
|
* Refreshes either the whole object page or only parts of it.
|
|
460
200
|
*
|
|
@@ -466,15 +206,6 @@ declare module "sap/fe/templates/ObjectPage/ExtensionAPI" {
|
|
|
466
206
|
*/
|
|
467
207
|
vPath: string | string[] | undefined
|
|
468
208
|
): Promise<void>;
|
|
469
|
-
/**
|
|
470
|
-
* Remove a dependent control from this SAP Fiori elements page.
|
|
471
|
-
*/
|
|
472
|
-
removeDependent(
|
|
473
|
-
/**
|
|
474
|
-
* Control to be added as a dependent control
|
|
475
|
-
*/
|
|
476
|
-
oControl: Control
|
|
477
|
-
): void;
|
|
478
209
|
/**
|
|
479
210
|
* Displays the message strip between the title and the header of the ObjectPage.
|
|
480
211
|
*/
|
|
@@ -497,13 +228,6 @@ declare module "sap/fe/templates/ObjectPage/ExtensionAPI" {
|
|
|
497
228
|
*/
|
|
498
229
|
bShow: boolean | undefined
|
|
499
230
|
): void;
|
|
500
|
-
/**
|
|
501
|
-
* Triggers an update of the app state.
|
|
502
|
-
* Should be called if the state of a control, or any other state-relevant information, was changed.
|
|
503
|
-
*
|
|
504
|
-
* @returns A promise that resolves with the new app state object.
|
|
505
|
-
*/
|
|
506
|
-
updateAppState(): Promise<object | void>;
|
|
507
231
|
}
|
|
508
232
|
}
|
|
509
233
|
|
package/types/sap.fe.test.d.ts
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
// For Library Version: 1.
|
|
1
|
+
// For Library Version: 1.115.1
|
|
2
2
|
|
|
3
3
|
declare module "sap/fe/test/library" {}
|
|
4
4
|
|
|
@@ -2723,9 +2723,9 @@ declare module "sap/fe/test/JourneyRunner" {
|
|
|
2723
2723
|
oDefaultRunner: JourneyRunner
|
|
2724
2724
|
): void;
|
|
2725
2725
|
/**
|
|
2726
|
-
* @
|
|
2726
|
+
* @ui5-protected Do not call from applications (only from related classes in the framework)
|
|
2727
2727
|
*
|
|
2728
|
-
* Returns the base action instance to be used for {@link sap.ui.test.Opa5#sap.ui.test.Opa5.extendConfig}
|
|
2728
|
+
* Returns the base action instance to be used for {@link sap.ui.test.Opa5#sap.ui.test.Opa5.extendConfig }
|
|
2729
2729
|
* `actions` setting.
|
|
2730
2730
|
*
|
|
2731
2731
|
* This function is only used if `actions` is not defined via the runner settings. It is meant to be overridden
|
|
@@ -2737,9 +2737,9 @@ declare module "sap/fe/test/JourneyRunner" {
|
|
|
2737
2737
|
*/
|
|
2738
2738
|
getBaseActions(): Opa;
|
|
2739
2739
|
/**
|
|
2740
|
-
* @
|
|
2740
|
+
* @ui5-protected Do not call from applications (only from related classes in the framework)
|
|
2741
2741
|
*
|
|
2742
|
-
* Returns the base arrangements instance to be used for {@link sap.ui.test.Opa5#sap.ui.test.Opa5.extendConfig}
|
|
2742
|
+
* Returns the base arrangements instance to be used for {@link sap.ui.test.Opa5#sap.ui.test.Opa5.extendConfig }
|
|
2743
2743
|
* `arrangements` setting.
|
|
2744
2744
|
*
|
|
2745
2745
|
* This function is only used if `arrangements` is not defined via the runner settings. It is meant to be
|
|
@@ -2756,9 +2756,9 @@ declare module "sap/fe/test/JourneyRunner" {
|
|
|
2756
2756
|
mSettings: object
|
|
2757
2757
|
): Opa;
|
|
2758
2758
|
/**
|
|
2759
|
-
* @
|
|
2759
|
+
* @ui5-protected Do not call from applications (only from related classes in the framework)
|
|
2760
2760
|
*
|
|
2761
|
-
* Returns the base assertions instance to be used for {@link sap.ui.test.Opa5#sap.ui.test.Opa5.extendConfig}
|
|
2761
|
+
* Returns the base assertions instance to be used for {@link sap.ui.test.Opa5#sap.ui.test.Opa5.extendConfig }
|
|
2762
2762
|
* `assertions` setting.
|
|
2763
2763
|
*
|
|
2764
2764
|
* This function is only used if `assertions` is not defined via the runner settings. It is meant to be
|
|
@@ -2888,11 +2888,20 @@ declare module "sap/fe/test/ListReport" {
|
|
|
2888
2888
|
*/
|
|
2889
2889
|
..._aInAdditionalPageDefinitions: object[]
|
|
2890
2890
|
);
|
|
2891
|
+
/**
|
|
2892
|
+
* ListReport actions
|
|
2893
|
+
*/
|
|
2894
|
+
static actions: typeof TemplatePage.actions & actions;
|
|
2895
|
+
|
|
2896
|
+
/**
|
|
2897
|
+
* ListReport assertions
|
|
2898
|
+
*/
|
|
2899
|
+
static assertions: typeof TemplatePage.assertions & assertions;
|
|
2891
2900
|
}
|
|
2892
2901
|
/**
|
|
2893
2902
|
* ListReport actions
|
|
2894
2903
|
*/
|
|
2895
|
-
|
|
2904
|
+
interface actions {
|
|
2896
2905
|
/**
|
|
2897
2906
|
* Collapses or expands the page header.
|
|
2898
2907
|
*
|
|
@@ -2953,7 +2962,7 @@ declare module "sap/fe/test/ListReport" {
|
|
|
2953
2962
|
/**
|
|
2954
2963
|
* ListReport assertions
|
|
2955
2964
|
*/
|
|
2956
|
-
|
|
2965
|
+
interface assertions {
|
|
2957
2966
|
/**
|
|
2958
2967
|
* Checks the view of a Multiple View List Report table.
|
|
2959
2968
|
*
|
|
@@ -3078,11 +3087,20 @@ declare module "sap/fe/test/ObjectPage" {
|
|
|
3078
3087
|
*/
|
|
3079
3088
|
..._aAdditionalPageDefinitions: object[]
|
|
3080
3089
|
);
|
|
3090
|
+
/**
|
|
3091
|
+
* ObjectPage actions
|
|
3092
|
+
*/
|
|
3093
|
+
static actions: typeof TemplatePage.actions & actions;
|
|
3094
|
+
|
|
3095
|
+
/**
|
|
3096
|
+
* ObjectPage assertions
|
|
3097
|
+
*/
|
|
3098
|
+
static assertions: typeof TemplatePage.assertions & assertions;
|
|
3081
3099
|
}
|
|
3082
3100
|
/**
|
|
3083
3101
|
* ObjectPage actions
|
|
3084
3102
|
*/
|
|
3085
|
-
|
|
3103
|
+
interface actions {
|
|
3086
3104
|
/**
|
|
3087
3105
|
* Collapses or expands the page header.
|
|
3088
3106
|
*
|
|
@@ -3173,7 +3191,7 @@ declare module "sap/fe/test/ObjectPage" {
|
|
|
3173
3191
|
/**
|
|
3174
3192
|
* ObjectPage assertions
|
|
3175
3193
|
*/
|
|
3176
|
-
|
|
3194
|
+
interface assertions {
|
|
3177
3195
|
/**
|
|
3178
3196
|
* Returns a {@link sap.fe.test.api.FilterBarAssertions} instance.
|
|
3179
3197
|
*
|
|
@@ -3342,11 +3360,20 @@ declare module "sap/fe/test/TemplatePage" {
|
|
|
3342
3360
|
*/
|
|
3343
3361
|
export default class TemplatePage {
|
|
3344
3362
|
constructor();
|
|
3363
|
+
/**
|
|
3364
|
+
* TemplatePage actions
|
|
3365
|
+
*/
|
|
3366
|
+
static actions: actions;
|
|
3367
|
+
|
|
3368
|
+
/**
|
|
3369
|
+
* Assertions that are available to all template pages used in SAP Fiori elements.
|
|
3370
|
+
*/
|
|
3371
|
+
static assertions: assertions;
|
|
3345
3372
|
}
|
|
3346
3373
|
/**
|
|
3347
3374
|
* TemplatePage actions
|
|
3348
3375
|
*/
|
|
3349
|
-
|
|
3376
|
+
interface actions {
|
|
3350
3377
|
/**
|
|
3351
3378
|
* Shortcut for `onDialog({ type: sap.fe.test.api.DialogType.Action })`.
|
|
3352
3379
|
*
|
|
@@ -3400,7 +3427,7 @@ declare module "sap/fe/test/TemplatePage" {
|
|
|
3400
3427
|
/**
|
|
3401
3428
|
* Assertions that are available to all template pages used in SAP Fiori elements.
|
|
3402
3429
|
*/
|
|
3403
|
-
|
|
3430
|
+
interface assertions {
|
|
3404
3431
|
/**
|
|
3405
3432
|
* Confirms the visibility of the current page.
|
|
3406
3433
|
*
|