@sapui5/types 1.120.8 → 1.120.10
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/package.json +1 -1
- package/types/sap.chart.d.ts +1 -1
- package/types/sap.esh.search.ui.d.ts +243 -227
- package/types/sap.f.d.ts +1 -1
- package/types/sap.fe.core.d.ts +149 -115
- package/types/sap.fe.macros.d.ts +38 -18
- package/types/sap.fe.navigation.d.ts +56 -21
- package/types/sap.fe.placeholder.d.ts +1 -1
- package/types/sap.fe.templates.d.ts +16 -5
- package/types/sap.fe.test.d.ts +229 -7
- package/types/sap.fe.tools.d.ts +1 -1
- package/types/sap.gantt.d.ts +3731 -1701
- package/types/sap.insights.d.ts +51 -43
- package/types/sap.m.d.ts +14 -3
- 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 +9 -7
- package/types/sap.suite.ui.commons.d.ts +3007 -999
- package/types/sap.suite.ui.generic.template.d.ts +1 -1
- package/types/sap.suite.ui.microchart.d.ts +1 -1
- package/types/sap.tnt.d.ts +1 -1
- package/types/sap.ui.codeeditor.d.ts +1 -1
- package/types/sap.ui.commons.d.ts +1 -1
- package/types/sap.ui.comp.d.ts +1 -1
- package/types/sap.ui.core.d.ts +1 -1
- 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 +1 -1
- package/types/sap.ui.integration.d.ts +1 -1
- package/types/sap.ui.layout.d.ts +1 -1
- package/types/sap.ui.mdc.d.ts +2 -2
- 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 +9 -5
- 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.vk.d.ts +2655 -738
- 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 +1 -1
- 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
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
// For Library Version: 1.120.
|
|
1
|
+
// For Library Version: 1.120.7
|
|
2
2
|
|
|
3
3
|
declare module "sap/fe/templates/library" {}
|
|
4
4
|
|
|
@@ -8,12 +8,13 @@ declare module "sap/fe/templates/ListReport/ExtensionAPI" {
|
|
|
8
8
|
import Context from "sap/ui/model/odata/v4/Context";
|
|
9
9
|
|
|
10
10
|
/**
|
|
11
|
-
* @since 1.79.0
|
|
12
|
-
*
|
|
13
11
|
* Extension API for list reports in SAP Fiori elements for OData V4.
|
|
14
12
|
* To correctly integrate your app extension coding with SAP Fiori elements, use only the extensionAPI of
|
|
15
13
|
* SAP Fiori elements. Don't access or manipulate controls, properties, models, or other internal objects
|
|
16
14
|
* created by the SAP Fiori elements framework.
|
|
15
|
+
*
|
|
16
|
+
*
|
|
17
|
+
* @since 1.79.0
|
|
17
18
|
*/
|
|
18
19
|
export default class ExtensionAPI extends ExtensionAPI1 {
|
|
19
20
|
constructor();
|
|
@@ -21,6 +22,7 @@ declare module "sap/fe/templates/ListReport/ExtensionAPI" {
|
|
|
21
22
|
/**
|
|
22
23
|
* This method converts filter conditions to filters.
|
|
23
24
|
*
|
|
25
|
+
*
|
|
24
26
|
* @returns Object containing the converted FilterBar filters.
|
|
25
27
|
*/
|
|
26
28
|
createFiltersFromFilterConditions(
|
|
@@ -33,12 +35,14 @@ declare module "sap/fe/templates/ListReport/ExtensionAPI" {
|
|
|
33
35
|
* Provides all the model filters from the filter bar that are currently active
|
|
34
36
|
* along with the search expression.
|
|
35
37
|
*
|
|
38
|
+
*
|
|
36
39
|
* @returns An array of active filters and the search expression.
|
|
37
40
|
*/
|
|
38
41
|
getFilters(): object;
|
|
39
42
|
/**
|
|
40
43
|
* Gets the list entries currently selected for the displayed control.
|
|
41
44
|
*
|
|
45
|
+
*
|
|
42
46
|
* @returns Array containing the selected contexts
|
|
43
47
|
*/
|
|
44
48
|
getSelectedContexts(): Context[];
|
|
@@ -49,6 +53,7 @@ declare module "sap/fe/templates/ListReport/ExtensionAPI" {
|
|
|
49
53
|
* currently shown data based on the filters entered by the user.
|
|
50
54
|
* Please note: The Promise is resolved once the search is triggered and not once the data is returned.
|
|
51
55
|
*
|
|
56
|
+
*
|
|
52
57
|
* @returns Resolved once the data is refreshed or rejected if the request failed
|
|
53
58
|
*/
|
|
54
59
|
refresh(): Promise<void>;
|
|
@@ -77,6 +82,7 @@ declare module "sap/fe/templates/ListReport/ExtensionAPI" {
|
|
|
77
82
|
* The filter values can be either a single value or an array of values.
|
|
78
83
|
* Each filter value must be represented as a primitive value.
|
|
79
84
|
*
|
|
85
|
+
*
|
|
80
86
|
* @returns A promise for asynchronous handling
|
|
81
87
|
*/
|
|
82
88
|
setFilterValues(
|
|
@@ -126,6 +132,7 @@ declare module "sap/fe/templates/ListReport/ListReportController.controller" {
|
|
|
126
132
|
/**
|
|
127
133
|
* Get the extension API for the current page.
|
|
128
134
|
*
|
|
135
|
+
*
|
|
129
136
|
* @returns The extension API.
|
|
130
137
|
*/
|
|
131
138
|
getExtensionAPI(): ExtensionAPI;
|
|
@@ -186,12 +193,13 @@ declare module "sap/fe/templates/ObjectPage/ExtensionAPI" {
|
|
|
186
193
|
import Message from "sap/ui/core/message/Message";
|
|
187
194
|
|
|
188
195
|
/**
|
|
189
|
-
* @since 1.79.0
|
|
190
|
-
*
|
|
191
196
|
* Extension API for object pages on SAP Fiori elements for OData V4.
|
|
192
197
|
* To correctly integrate your app extension coding with SAP Fiori elements, use only the extensionAPI of
|
|
193
198
|
* SAP Fiori elements. Don't access or manipulate controls, properties, models, or other internal objects
|
|
194
199
|
* created by the SAP Fiori elements framework.
|
|
200
|
+
*
|
|
201
|
+
*
|
|
202
|
+
* @since 1.79.0
|
|
195
203
|
*/
|
|
196
204
|
export default class ExtensionAPI extends ExtensionAPI1 {
|
|
197
205
|
constructor();
|
|
@@ -199,12 +207,14 @@ declare module "sap/fe/templates/ObjectPage/ExtensionAPI" {
|
|
|
199
207
|
/**
|
|
200
208
|
* Gets the bound context of the current object page.
|
|
201
209
|
*
|
|
210
|
+
*
|
|
202
211
|
* @returns Context bound to the object page
|
|
203
212
|
*/
|
|
204
213
|
getBindingContext(): null | Context | undefined;
|
|
205
214
|
/**
|
|
206
215
|
* Gets the list entries currently selected for the table.
|
|
207
216
|
*
|
|
217
|
+
*
|
|
208
218
|
* @returns Array containing the selected contexts
|
|
209
219
|
*/
|
|
210
220
|
getSelectedContexts(
|
|
@@ -220,6 +230,7 @@ declare module "sap/fe/templates/ObjectPage/ExtensionAPI" {
|
|
|
220
230
|
/**
|
|
221
231
|
* Refreshes either the whole object page or only parts of it.
|
|
222
232
|
*
|
|
233
|
+
*
|
|
223
234
|
* @returns Resolved once the data is refreshed or rejected if the request failed
|
|
224
235
|
*/
|
|
225
236
|
refresh(
|