@sapui5/ts-types 1.103.1 → 1.104.2
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 +3 -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 +157 -1
- package/types/sap.fe.common.d.ts +1 -1
- package/types/sap.fe.core.d.ts +1166 -29
- package/types/sap.fe.macros.d.ts +627 -52
- package/types/sap.fe.navigation.d.ts +1391 -1
- package/types/sap.fe.templates.d.ts +161 -2
- package/types/sap.fe.test.d.ts +12 -1
- package/types/sap.feedback.ui.d.ts +1 -1
- package/types/sap.gantt.d.ts +7 -4
- package/types/sap.insights.d.ts +1 -1
- package/types/sap.landvisz.d.ts +1 -1
- package/types/sap.m.d.ts +1870 -57
- 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 +2 -2
- package/types/sap.sac.grid.d.ts +1 -1
- package/types/sap.suite.ui.commons.d.ts +498 -18
- package/types/sap.suite.ui.generic.template.d.ts +32 -25
- 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 +1128 -243
- package/types/sap.ui.core.d.ts +111 -20
- package/types/sap.ui.dt.d.ts +1 -1
- package/types/sap.ui.export.d.ts +3 -3
- package/types/sap.ui.fl.d.ts +1 -1
- 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 +41 -62
- package/types/sap.ui.layout.d.ts +1 -1
- package/types/sap.ui.mdc.d.ts +1 -1
- package/types/sap.ui.richtexteditor.d.ts +1 -1
- package/types/sap.ui.rta.d.ts +3 -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 +81 -1
- package/types/sap.ui.ux3.d.ts +1 -1
- package/types/sap.ui.vbm.d.ts +1 -161
- package/types/sap.ui.vk.d.ts +59 -1
- package/types/sap.ui.vtm.d.ts +1 -1
- package/types/sap.ui.webc.common.d.ts +118 -0
- package/types/sap.ui.webc.fiori.d.ts +13298 -0
- package/types/sap.ui.webc.main.d.ts +39842 -0
- package/types/sap.uiext.inbox.d.ts +1 -1
- package/types/sap.ushell.d.ts +32 -20
- 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
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
// For Library Version: 1.
|
|
1
|
+
// For Library Version: 1.104.1
|
|
2
2
|
|
|
3
3
|
declare namespace sap {
|
|
4
4
|
namespace fe {
|
|
@@ -10,14 +10,173 @@ declare namespace sap {
|
|
|
10
10
|
/**
|
|
11
11
|
* @SINCE 1.79.0
|
|
12
12
|
*
|
|
13
|
+
*
|
|
13
14
|
* Extension API for list reports on SAP Fiori elements for OData V4.
|
|
14
15
|
*/
|
|
15
|
-
|
|
16
|
+
class ExtensionAPI
|
|
17
|
+
/* was: sap.fe.templates.ExtensionAPI */ extends Object {
|
|
18
|
+
constructor();
|
|
19
|
+
|
|
20
|
+
/**
|
|
21
|
+
* Add any control as a dependent control to this SAP Fiori elements page.
|
|
22
|
+
*/
|
|
23
|
+
addDependent(
|
|
24
|
+
/**
|
|
25
|
+
* Control to be added as a dependent control
|
|
26
|
+
*/
|
|
27
|
+
oControl: sap.ui.core.Control
|
|
28
|
+
): void;
|
|
29
|
+
/**
|
|
30
|
+
* This method converts filter conditions to filters.
|
|
31
|
+
*
|
|
32
|
+
* @returns Object containing the converted FilterBar filters.
|
|
33
|
+
*/
|
|
34
|
+
createFiltersFromFilterConditions(
|
|
35
|
+
/**
|
|
36
|
+
* Map containing the filter conditions of the FilterBar.
|
|
37
|
+
*/
|
|
38
|
+
mFilterConditions: any
|
|
39
|
+
): object;
|
|
40
|
+
/**
|
|
41
|
+
* Get access to models managed by SAP Fiori elements.
|
|
42
|
+
*
|
|
43
|
+
* The following models can be accessed:
|
|
44
|
+
*
|
|
45
|
+
*
|
|
46
|
+
* - undefined: the undefined model returns the SAPUI5 OData V4 model bound to this page
|
|
47
|
+
*
|
|
48
|
+
* - i18n / further data models defined in the manifest
|
|
49
|
+
* ui: returns a SAPUI5 JSON model containing UI information.
|
|
50
|
+
* Only the following properties are public and supported:
|
|
51
|
+
*
|
|
52
|
+
*
|
|
53
|
+
* - isEditable: set to true if the application is in edit mode
|
|
54
|
+
*
|
|
55
|
+
*
|
|
56
|
+
* .
|
|
57
|
+
* editMode is deprecated and should not be used anymore. Use isEditable instead.
|
|
58
|
+
*
|
|
59
|
+
* @returns The required model
|
|
60
|
+
*/
|
|
61
|
+
getModel(
|
|
62
|
+
/**
|
|
63
|
+
* Name of the model
|
|
64
|
+
*/
|
|
65
|
+
sModelName?: string
|
|
66
|
+
): undefined | sap.ui.model.Model;
|
|
67
|
+
/**
|
|
68
|
+
* Gets the list entries currently selected for the displayed control.
|
|
69
|
+
*
|
|
70
|
+
* @returns Array containing the selected contexts
|
|
71
|
+
*/
|
|
72
|
+
getSelectedContexts(): any;
|
|
73
|
+
/**
|
|
74
|
+
* Load a fragment and go through the template preprocessor with the current page context.
|
|
75
|
+
*
|
|
76
|
+
* @returns The fragment definition
|
|
77
|
+
*/
|
|
78
|
+
loadFragment(
|
|
79
|
+
/**
|
|
80
|
+
* The settings object
|
|
81
|
+
*/
|
|
82
|
+
mSettings: {
|
|
83
|
+
/**
|
|
84
|
+
* The contextPath to be used for the templating process
|
|
85
|
+
*/
|
|
86
|
+
contextPath: string;
|
|
87
|
+
/**
|
|
88
|
+
* The controller to be attached to the fragment
|
|
89
|
+
*/
|
|
90
|
+
controller: object;
|
|
91
|
+
/**
|
|
92
|
+
* The ID of the fragment itself
|
|
93
|
+
*/
|
|
94
|
+
id: string;
|
|
95
|
+
/**
|
|
96
|
+
* The initial binding context
|
|
97
|
+
*/
|
|
98
|
+
initialBindingContext: sap.ui.model.Context;
|
|
99
|
+
/**
|
|
100
|
+
* The name of the fragment to be loaded
|
|
101
|
+
*/
|
|
102
|
+
name: string;
|
|
103
|
+
}
|
|
104
|
+
): Promise<any>;
|
|
105
|
+
/**
|
|
106
|
+
* Navigate to another target.
|
|
107
|
+
*/
|
|
108
|
+
navigateToTarget(
|
|
109
|
+
/**
|
|
110
|
+
* Name of the target route
|
|
111
|
+
*/
|
|
112
|
+
sTarget: string,
|
|
113
|
+
/**
|
|
114
|
+
* undefined
|
|
115
|
+
*/
|
|
116
|
+
oContext: sap.ui.model.Context
|
|
117
|
+
): void;
|
|
118
|
+
/**
|
|
119
|
+
* Refreshes the List Report.
|
|
120
|
+
* This method currently only supports triggering the search (by clicking on the GO button)
|
|
121
|
+
* in the List Report Filter Bar. It can be used to request the initial load or to refresh the
|
|
122
|
+
* currently shown data based on the filters entered by the user.
|
|
123
|
+
* Please note: The Promise is resolved once the search is triggered and not once the data is returned.
|
|
124
|
+
*
|
|
125
|
+
* @returns Resolved once the data is refreshed or rejected if the request failed
|
|
126
|
+
*/
|
|
127
|
+
refresh(): any;
|
|
128
|
+
/**
|
|
129
|
+
* Remove a dependent control from this SAP Fiori elements page.
|
|
130
|
+
*/
|
|
131
|
+
removeDependent(
|
|
132
|
+
/**
|
|
133
|
+
* Control to be added as a dependent control
|
|
134
|
+
*/
|
|
135
|
+
oControl: sap.ui.core.Control
|
|
136
|
+
): void;
|
|
137
|
+
/**
|
|
138
|
+
* Set the filter values for the given property in the filter bar.
|
|
139
|
+
* The filter values can be either a single value or an array of values.
|
|
140
|
+
* Each filter value must be represented as a primitive value.
|
|
141
|
+
*
|
|
142
|
+
* @returns A promise for asynchronous handling
|
|
143
|
+
*/
|
|
144
|
+
setFilterValues(
|
|
145
|
+
/**
|
|
146
|
+
* The path to the property as a condition path
|
|
147
|
+
*/
|
|
148
|
+
sConditionPath: string,
|
|
149
|
+
/**
|
|
150
|
+
* undefined
|
|
151
|
+
*/
|
|
152
|
+
sOperator: undefined | string,
|
|
153
|
+
/**
|
|
154
|
+
* The values to be applied
|
|
155
|
+
*/
|
|
156
|
+
vValues:
|
|
157
|
+
| undefined
|
|
158
|
+
| string
|
|
159
|
+
| number
|
|
160
|
+
| boolean
|
|
161
|
+
| string[]
|
|
162
|
+
| number[]
|
|
163
|
+
| boolean[]
|
|
164
|
+
): void;
|
|
165
|
+
/**
|
|
166
|
+
* Triggers an update of the app state.
|
|
167
|
+
* Should be called if the state of a control, or any other state-relevant information, was changed.
|
|
168
|
+
*
|
|
169
|
+
* @returns A promise that resolves with the new app state object.
|
|
170
|
+
*/
|
|
171
|
+
updateAppState(): undefined | Promise<any>;
|
|
172
|
+
}
|
|
16
173
|
}
|
|
17
174
|
}
|
|
18
175
|
}
|
|
19
176
|
|
|
20
177
|
interface IUI5DefineDependencyNames {
|
|
21
178
|
"sap/fe/templates/library": undefined;
|
|
179
|
+
|
|
180
|
+
"sap/fe/templates/ListReport/ExtensionAPI": undefined;
|
|
22
181
|
}
|
|
23
182
|
}
|
package/types/sap.fe.test.d.ts
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
// For Library Version: 1.
|
|
1
|
+
// For Library Version: 1.104.1
|
|
2
2
|
|
|
3
3
|
declare namespace sap {
|
|
4
4
|
namespace fe {
|
|
@@ -463,6 +463,17 @@ declare namespace sap {
|
|
|
463
463
|
*/
|
|
464
464
|
mState?: object
|
|
465
465
|
): object;
|
|
466
|
+
/**
|
|
467
|
+
* Checks the dialog.
|
|
468
|
+
*
|
|
469
|
+
* @returns The result of the {@link sap.ui.test.Opa5#waitFor} function, to be used for chained statements
|
|
470
|
+
*/
|
|
471
|
+
iCheckState(
|
|
472
|
+
/**
|
|
473
|
+
* Defines the expected state of the dialog
|
|
474
|
+
*/
|
|
475
|
+
mDialogState?: object
|
|
476
|
+
): object;
|
|
466
477
|
/**
|
|
467
478
|
* Checks the table.
|
|
468
479
|
*
|
package/types/sap.gantt.d.ts
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
// For Library Version: 1.
|
|
1
|
+
// For Library Version: 1.104.0
|
|
2
2
|
|
|
3
3
|
declare namespace sap {
|
|
4
4
|
/**
|
|
@@ -23470,7 +23470,8 @@ declare namespace sap {
|
|
|
23470
23470
|
/**
|
|
23471
23471
|
* @SINCE 1.100
|
|
23472
23472
|
*
|
|
23473
|
-
* Flag to show or hide Find and Select search button
|
|
23473
|
+
* Flag to show or hide Find and Select search button Find operation is not going to work for the stock
|
|
23474
|
+
* chart and utilization gantt charts with time continuous shapes.
|
|
23474
23475
|
*/
|
|
23475
23476
|
showSearchButton?:
|
|
23476
23477
|
| boolean
|
|
@@ -31659,7 +31660,8 @@ declare namespace sap {
|
|
|
31659
31660
|
*
|
|
31660
31661
|
* Gets current value of property {@link #getShowSearchButton showSearchButton}.
|
|
31661
31662
|
*
|
|
31662
|
-
* Flag to show or hide Find and Select search button
|
|
31663
|
+
* Flag to show or hide Find and Select search button Find operation is not going to work for the stock
|
|
31664
|
+
* chart and utilization gantt charts with time continuous shapes.
|
|
31663
31665
|
*
|
|
31664
31666
|
* Default value is `false`.
|
|
31665
31667
|
*
|
|
@@ -31894,7 +31896,8 @@ declare namespace sap {
|
|
|
31894
31896
|
*
|
|
31895
31897
|
* Sets a new value for property {@link #getShowSearchButton showSearchButton}.
|
|
31896
31898
|
*
|
|
31897
|
-
* Flag to show or hide Find and Select search button
|
|
31899
|
+
* Flag to show or hide Find and Select search button Find operation is not going to work for the stock
|
|
31900
|
+
* chart and utilization gantt charts with time continuous shapes.
|
|
31898
31901
|
*
|
|
31899
31902
|
* When called with a value of `null` or `undefined`, the default value of the property will be restored.
|
|
31900
31903
|
*
|
package/types/sap.insights.d.ts
CHANGED
package/types/sap.landvisz.d.ts
CHANGED