@sapui5/ts-types 1.95.0 → 1.96.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/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 +235 -1
- package/types/sap.f.d.ts +59 -40
- package/types/sap.fe.common.d.ts +1 -1
- package/types/sap.fe.core.d.ts +73 -2
- package/types/sap.fe.macros.d.ts +27 -3
- package/types/sap.fe.navigation.d.ts +1 -1
- package/types/sap.fe.placeholder.d.ts +1 -1
- package/types/sap.fe.plugins.d.ts +1 -1
- package/types/sap.fe.semantics.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 +340 -40
- package/types/sap.landvisz.d.ts +1 -1
- package/types/sap.m.d.ts +542 -107
- package/types/sap.makit.d.ts +1 -1
- package/types/sap.me.d.ts +1 -1
- package/types/sap.ndc.d.ts +2 -7
- package/types/sap.ovp.d.ts +1 -1
- package/types/sap.rules.ui.d.ts +1 -1
- package/types/sap.sac.grid.d.ts +635 -0
- package/types/sap.suite.ui.commons.d.ts +1 -1
- package/types/sap.suite.ui.generic.template.d.ts +6 -2
- 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 +142 -11
- package/types/sap.ui.core.d.ts +656 -460
- package/types/sap.ui.dt.d.ts +1 -1
- package/types/sap.ui.export.d.ts +119 -69
- 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 +220 -1
- package/types/sap.ui.layout.d.ts +19 -1
- package/types/sap.ui.mdc.d.ts +39 -1
- 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 +6 -6
- 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 +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 +704 -115
- package/types/sap.ui.vtm.d.ts +1 -1
- package/types/sap.uiext.inbox.d.ts +1 -1
- package/types/sap.ushell.d.ts +45 -35
- 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 +53 -34
package/package.json
CHANGED
package/types/index.d.ts
CHANGED
|
@@ -10,6 +10,7 @@
|
|
|
10
10
|
/// <reference path="./sap.zen.crosstab.d.ts"/>
|
|
11
11
|
/// <reference path="./sap.zen.dsh.d.ts"/>
|
|
12
12
|
/// <reference path="./sap.zen.commons.d.ts"/>
|
|
13
|
+
/// <reference path="./sap.sac.grid.d.ts"/>
|
|
13
14
|
/// <reference path="./sap.ui.commons.d.ts"/>
|
|
14
15
|
/// <reference path="./sap.ui.comp.d.ts"/>
|
|
15
16
|
/// <reference path="./sap.ui.core.d.ts"/>
|
package/types/sap.apf.d.ts
CHANGED
package/types/sap.ca.ui.d.ts
CHANGED
package/types/sap.chart.d.ts
CHANGED
|
@@ -1,7 +1,241 @@
|
|
|
1
|
-
// For Library Version: 1.
|
|
1
|
+
// For Library Version: 1.96.0
|
|
2
2
|
|
|
3
3
|
declare namespace sap {
|
|
4
|
+
namespace esh {
|
|
5
|
+
namespace search {
|
|
6
|
+
/**
|
|
7
|
+
* UI5 library: sap.esh.search.ui.
|
|
8
|
+
*/
|
|
9
|
+
namespace ui {
|
|
10
|
+
interface $SearchCompositeControlSettings
|
|
11
|
+
extends sap.ui.core.$ControlSettings {
|
|
12
|
+
/**
|
|
13
|
+
* An additional CSS class to add to this control
|
|
14
|
+
*/
|
|
15
|
+
cssClass?: string | sap.ui.base.ManagedObject.PropertyBindingInfo;
|
|
16
|
+
|
|
17
|
+
/**
|
|
18
|
+
* Defines the initial search term for the search input
|
|
19
|
+
*/
|
|
20
|
+
searchTerm?: string | sap.ui.base.ManagedObject.PropertyBindingInfo;
|
|
21
|
+
|
|
22
|
+
/**
|
|
23
|
+
* Defines if the search control will search for the given term right on control instantiation.
|
|
24
|
+
*/
|
|
25
|
+
searchOnStart?:
|
|
26
|
+
| boolean
|
|
27
|
+
| sap.ui.base.ManagedObject.PropertyBindingInfo;
|
|
28
|
+
|
|
29
|
+
/**
|
|
30
|
+
* Control instances which are part of this composite control.
|
|
31
|
+
*/
|
|
32
|
+
content?:
|
|
33
|
+
| sap.ui.core.Control[]
|
|
34
|
+
| sap.ui.core.Control
|
|
35
|
+
| sap.ui.base.ManagedObject.AggregationBindingInfo;
|
|
36
|
+
}
|
|
37
|
+
|
|
38
|
+
/**
|
|
39
|
+
* @SINCE 1.93.0
|
|
40
|
+
*
|
|
41
|
+
* This is the UI5 composite control by the Enterprise Search Team to make full use of the Enterprise Search
|
|
42
|
+
* Services. This composite control is a complete UI which includes a search input box including a suggestion
|
|
43
|
+
* dropdown, a result list which can have different styles including tiles and table, result facets and
|
|
44
|
+
* more. This control is ready to use with an enterprise search backend service but also allows deep modifications
|
|
45
|
+
* to match requirements of adopting applications.
|
|
46
|
+
*/
|
|
47
|
+
class SearchCompositeControl extends sap.ui.core.Control {
|
|
48
|
+
/**
|
|
49
|
+
* Constructs a new `SearchCompositeControl` to interact with a SAP Enterprise Search Service.
|
|
50
|
+
*
|
|
51
|
+
* Accepts an object literal `mSettings` that defines initial property values, aggregated and associated
|
|
52
|
+
* objects as well as event handlers. See {@link sap.ui.base.ManagedObject#constructor} for a general description
|
|
53
|
+
* of the syntax of the settings object.
|
|
54
|
+
*/
|
|
55
|
+
constructor(
|
|
56
|
+
/**
|
|
57
|
+
* Initial settings for the new control
|
|
58
|
+
*/
|
|
59
|
+
mSettings?: sap.esh.search.ui.$SearchCompositeControlSettings
|
|
60
|
+
);
|
|
61
|
+
/**
|
|
62
|
+
* Constructs a new `SearchCompositeControl` to interact with a SAP Enterprise Search Service.
|
|
63
|
+
*
|
|
64
|
+
* Accepts an object literal `mSettings` that defines initial property values, aggregated and associated
|
|
65
|
+
* objects as well as event handlers. See {@link sap.ui.base.ManagedObject#constructor} for a general description
|
|
66
|
+
* of the syntax of the settings object.
|
|
67
|
+
*/
|
|
68
|
+
constructor(
|
|
69
|
+
/**
|
|
70
|
+
* ID for the new control, generated automatically if no ID is given
|
|
71
|
+
*/
|
|
72
|
+
sId?: string,
|
|
73
|
+
/**
|
|
74
|
+
* Initial settings for the new control
|
|
75
|
+
*/
|
|
76
|
+
mSettings?: sap.esh.search.ui.$SearchCompositeControlSettings
|
|
77
|
+
);
|
|
78
|
+
|
|
79
|
+
/**
|
|
80
|
+
* Creates a new subclass of class sap.esh.search.ui.SearchCompositeControl with name `sClassName` and enriches
|
|
81
|
+
* it with the information contained in `oClassInfo`.
|
|
82
|
+
*
|
|
83
|
+
* `oClassInfo` might contain the same kind of information as described in {@link sap.ui.core.Control.extend}.
|
|
84
|
+
*/
|
|
85
|
+
static extend<T extends Record<string, unknown>>(
|
|
86
|
+
/**
|
|
87
|
+
* Name of the class being created
|
|
88
|
+
*/
|
|
89
|
+
sClassName: string,
|
|
90
|
+
/**
|
|
91
|
+
* Object literal with information about the class
|
|
92
|
+
*/
|
|
93
|
+
oClassInfo?: sap.ClassInfo<
|
|
94
|
+
T,
|
|
95
|
+
sap.esh.search.ui.SearchCompositeControl
|
|
96
|
+
>,
|
|
97
|
+
/**
|
|
98
|
+
* Constructor function for the metadata object; if not given, it defaults to the metadata implementation
|
|
99
|
+
* used by this class
|
|
100
|
+
*/
|
|
101
|
+
FNMetaImpl?: Function
|
|
102
|
+
): Function;
|
|
103
|
+
/**
|
|
104
|
+
* Returns a metadata object for class sap.esh.search.ui.SearchCompositeControl.
|
|
105
|
+
*/
|
|
106
|
+
static getMetadata(): sap.ui.core.ElementMetadata;
|
|
107
|
+
/**
|
|
108
|
+
* Adds some content to the aggregation {@link #getContent content}.
|
|
109
|
+
*/
|
|
110
|
+
addContent(
|
|
111
|
+
/**
|
|
112
|
+
* The content to add; if empty, nothing is inserted
|
|
113
|
+
*/
|
|
114
|
+
oContent: sap.ui.core.Control
|
|
115
|
+
): this;
|
|
116
|
+
/**
|
|
117
|
+
* Destroys all the content in the aggregation {@link #getContent content}.
|
|
118
|
+
*/
|
|
119
|
+
destroyContent(): this;
|
|
120
|
+
/**
|
|
121
|
+
* Gets content of aggregation {@link #getContent content}.
|
|
122
|
+
*
|
|
123
|
+
* Control instances which are part of this composite control.
|
|
124
|
+
*/
|
|
125
|
+
getContent(): sap.ui.core.Control[];
|
|
126
|
+
/**
|
|
127
|
+
* Gets current value of property {@link #getCssClass cssClass}.
|
|
128
|
+
*
|
|
129
|
+
* An additional CSS class to add to this control
|
|
130
|
+
*/
|
|
131
|
+
getCssClass(): string;
|
|
132
|
+
/**
|
|
133
|
+
* Gets current value of property {@link #getSearchOnStart searchOnStart}.
|
|
134
|
+
*
|
|
135
|
+
* Defines if the search control will search for the given term right on control instantiation.
|
|
136
|
+
*
|
|
137
|
+
* Default value is `true`.
|
|
138
|
+
*/
|
|
139
|
+
getSearchOnStart(): boolean;
|
|
140
|
+
/**
|
|
141
|
+
* Gets current value of property {@link #getSearchTerm searchTerm}.
|
|
142
|
+
*
|
|
143
|
+
* Defines the initial search term for the search input
|
|
144
|
+
*
|
|
145
|
+
* Default value is `"*"`.
|
|
146
|
+
*/
|
|
147
|
+
getSearchTerm(): string;
|
|
148
|
+
/**
|
|
149
|
+
* Checks for the provided `sap.ui.core.Control` in the aggregation {@link #getContent content}. and returns
|
|
150
|
+
* its index if found or -1 otherwise.
|
|
151
|
+
*/
|
|
152
|
+
indexOfContent(
|
|
153
|
+
/**
|
|
154
|
+
* The content whose index is looked for
|
|
155
|
+
*/
|
|
156
|
+
oContent: sap.ui.core.Control
|
|
157
|
+
): int;
|
|
158
|
+
/**
|
|
159
|
+
* Inserts a content into the aggregation {@link #getContent content}.
|
|
160
|
+
*/
|
|
161
|
+
insertContent(
|
|
162
|
+
/**
|
|
163
|
+
* The content to insert; if empty, nothing is inserted
|
|
164
|
+
*/
|
|
165
|
+
oContent: sap.ui.core.Control,
|
|
166
|
+
/**
|
|
167
|
+
* The `0`-based index the content should be inserted at; for a negative value of `iIndex`, the content
|
|
168
|
+
* is inserted at position 0; for a value greater than the current size of the aggregation, the content
|
|
169
|
+
* is inserted at the last position
|
|
170
|
+
*/
|
|
171
|
+
iIndex: int
|
|
172
|
+
): this;
|
|
173
|
+
/**
|
|
174
|
+
* Removes all the controls from the aggregation {@link #getContent content}.
|
|
175
|
+
*
|
|
176
|
+
* Additionally, it unregisters them from the hosting UIArea.
|
|
177
|
+
*/
|
|
178
|
+
removeAllContent(): sap.ui.core.Control[];
|
|
179
|
+
/**
|
|
180
|
+
* Removes a content from the aggregation {@link #getContent content}.
|
|
181
|
+
*/
|
|
182
|
+
removeContent(
|
|
183
|
+
/**
|
|
184
|
+
* The content to remove or its index or id
|
|
185
|
+
*/
|
|
186
|
+
vContent: int | string | sap.ui.core.Control
|
|
187
|
+
): sap.ui.core.Control;
|
|
188
|
+
/**
|
|
189
|
+
* Sets a new value for property {@link #getCssClass cssClass}.
|
|
190
|
+
*
|
|
191
|
+
* An additional CSS class to add to this control
|
|
192
|
+
*
|
|
193
|
+
* When called with a value of `null` or `undefined`, the default value of the property will be restored.
|
|
194
|
+
*/
|
|
195
|
+
setCssClass(
|
|
196
|
+
/**
|
|
197
|
+
* New value for property `cssClass`
|
|
198
|
+
*/
|
|
199
|
+
sCssClass: string
|
|
200
|
+
): this;
|
|
201
|
+
/**
|
|
202
|
+
* Sets a new value for property {@link #getSearchOnStart searchOnStart}.
|
|
203
|
+
*
|
|
204
|
+
* Defines if the search control will search for the given term right on control instantiation.
|
|
205
|
+
*
|
|
206
|
+
* When called with a value of `null` or `undefined`, the default value of the property will be restored.
|
|
207
|
+
*
|
|
208
|
+
* Default value is `true`.
|
|
209
|
+
*/
|
|
210
|
+
setSearchOnStart(
|
|
211
|
+
/**
|
|
212
|
+
* New value for property `searchOnStart`
|
|
213
|
+
*/
|
|
214
|
+
bSearchOnStart?: boolean
|
|
215
|
+
): this;
|
|
216
|
+
/**
|
|
217
|
+
* Sets a new value for property {@link #getSearchTerm searchTerm}.
|
|
218
|
+
*
|
|
219
|
+
* Defines the initial search term for the search input
|
|
220
|
+
*
|
|
221
|
+
* When called with a value of `null` or `undefined`, the default value of the property will be restored.
|
|
222
|
+
*
|
|
223
|
+
* Default value is `"*"`.
|
|
224
|
+
*/
|
|
225
|
+
setSearchTerm(
|
|
226
|
+
/**
|
|
227
|
+
* New value for property `searchTerm`
|
|
228
|
+
*/
|
|
229
|
+
sSearchTerm?: string
|
|
230
|
+
): this;
|
|
231
|
+
}
|
|
232
|
+
}
|
|
233
|
+
}
|
|
234
|
+
}
|
|
235
|
+
|
|
4
236
|
interface IUI5DefineDependencyNames {
|
|
5
237
|
"sap/esh/search/ui/library": undefined;
|
|
238
|
+
|
|
239
|
+
"sap/esh/search/ui/SearchCompositeControl": undefined;
|
|
6
240
|
}
|
|
7
241
|
}
|
package/types/sap.f.d.ts
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
// For Library Version: 1.
|
|
1
|
+
// For Library Version: 1.96.0
|
|
2
2
|
|
|
3
3
|
declare namespace sap {
|
|
4
4
|
/**
|
|
@@ -154,6 +154,13 @@ declare namespace sap {
|
|
|
154
154
|
*/
|
|
155
155
|
details?: string | sap.ui.base.ManagedObject.PropertyBindingInfo;
|
|
156
156
|
|
|
157
|
+
/**
|
|
158
|
+
* The alignment of the side indicators.
|
|
159
|
+
*/
|
|
160
|
+
sideIndicatorsAlignment?:
|
|
161
|
+
| sap.f.cards.NumericHeaderSideIndicatorsAlignment
|
|
162
|
+
| sap.ui.base.ManagedObject.PropertyBindingInfo;
|
|
163
|
+
|
|
157
164
|
/**
|
|
158
165
|
* Additional side number indicators. For example "Deviation" and "Target". Not more than two side indicators
|
|
159
166
|
* should be used.
|
|
@@ -637,8 +644,8 @@ declare namespace sap {
|
|
|
637
644
|
* Displays general information in the header of the {@link sap.f.Card} and allows the configuration of
|
|
638
645
|
* a numeric value visualization.
|
|
639
646
|
*
|
|
640
|
-
* You can configure the title, subtitle, status text
|
|
641
|
-
*
|
|
647
|
+
* You can configure the title, subtitle, and status text, using the provided properties. To add more side
|
|
648
|
+
* number indicators, use the `sideIndicators` aggregation.
|
|
642
649
|
*
|
|
643
650
|
* **Notes:**
|
|
644
651
|
* - You should always set a title.
|
|
@@ -811,6 +818,14 @@ declare namespace sap {
|
|
|
811
818
|
* should be used.
|
|
812
819
|
*/
|
|
813
820
|
getSideIndicators(): sap.f.cards.NumericSideIndicator[];
|
|
821
|
+
/**
|
|
822
|
+
* Gets current value of property {@link #getSideIndicatorsAlignment sideIndicatorsAlignment}.
|
|
823
|
+
*
|
|
824
|
+
* The alignment of the side indicators.
|
|
825
|
+
*
|
|
826
|
+
* Default value is `"Begin"`.
|
|
827
|
+
*/
|
|
828
|
+
getSideIndicatorsAlignment(): sap.f.cards.NumericHeaderSideIndicatorsAlignment;
|
|
814
829
|
/**
|
|
815
830
|
* @EXPERIMENTAL (since 1.64)
|
|
816
831
|
*
|
|
@@ -922,6 +937,21 @@ declare namespace sap {
|
|
|
922
937
|
*/
|
|
923
938
|
sValue: string
|
|
924
939
|
): this;
|
|
940
|
+
/**
|
|
941
|
+
* Sets a new value for property {@link #getSideIndicatorsAlignment sideIndicatorsAlignment}.
|
|
942
|
+
*
|
|
943
|
+
* The alignment of the side indicators.
|
|
944
|
+
*
|
|
945
|
+
* When called with a value of `null` or `undefined`, the default value of the property will be restored.
|
|
946
|
+
*
|
|
947
|
+
* Default value is `"Begin"`.
|
|
948
|
+
*/
|
|
949
|
+
setSideIndicatorsAlignment(
|
|
950
|
+
/**
|
|
951
|
+
* New value for property `sideIndicatorsAlignment`
|
|
952
|
+
*/
|
|
953
|
+
sSideIndicatorsAlignment?: sap.f.cards.NumericHeaderSideIndicatorsAlignment
|
|
954
|
+
): this;
|
|
925
955
|
/**
|
|
926
956
|
* Sets the semantic color which represents the state of the main number indicator.
|
|
927
957
|
*/
|
|
@@ -1133,6 +1163,21 @@ declare namespace sap {
|
|
|
1133
1163
|
*/
|
|
1134
1164
|
Top = "Top",
|
|
1135
1165
|
}
|
|
1166
|
+
/**
|
|
1167
|
+
* @SINCE 1.96
|
|
1168
|
+
*
|
|
1169
|
+
* Different options for the alignment of the side indicators in the numeric header.
|
|
1170
|
+
*/
|
|
1171
|
+
enum NumericHeaderSideIndicatorsAlignment {
|
|
1172
|
+
/**
|
|
1173
|
+
* Sets the alignment to the beginning (left or right depending on LTR/RTL).
|
|
1174
|
+
*/
|
|
1175
|
+
Begin = "Begin",
|
|
1176
|
+
/**
|
|
1177
|
+
* Explicitly sets the alignment to the end (left or right depending on LTR/RTL).
|
|
1178
|
+
*/
|
|
1179
|
+
End = "End",
|
|
1180
|
+
}
|
|
1136
1181
|
}
|
|
1137
1182
|
|
|
1138
1183
|
namespace dnd {
|
|
@@ -1364,8 +1409,11 @@ declare namespace sap {
|
|
|
1364
1409
|
* Used for closing dialogs and showing transitions in `NavContainers` when targets are displayed.
|
|
1365
1410
|
*
|
|
1366
1411
|
* **Note:** You should not create an own instance of this class. It is created when using `{@link sap.f.routing.Router}`
|
|
1367
|
-
* or `{@link sap.f.routing.Targets}`.
|
|
1368
|
-
*
|
|
1412
|
+
* or `{@link sap.f.routing.Targets}`.
|
|
1413
|
+
*
|
|
1414
|
+
* **Note:** You may use the `{@link #setCloseDialogs}` function to specify if dialogs should be closed
|
|
1415
|
+
* on displaying other views. The dialogs are closed when a different target is displayed than the previously
|
|
1416
|
+
* displayed one, otherwise the dialogs are kept open.
|
|
1369
1417
|
*/
|
|
1370
1418
|
class TargetHandler extends sap.ui.base.Object {
|
|
1371
1419
|
/**
|
|
@@ -1373,10 +1421,10 @@ declare namespace sap {
|
|
|
1373
1421
|
*/
|
|
1374
1422
|
constructor(
|
|
1375
1423
|
/**
|
|
1376
|
-
* Closes all open dialogs before navigating, if set to `true` (default). If set to
|
|
1377
|
-
* without closing dialogs.
|
|
1424
|
+
* Closes all open dialogs before navigating to a different target, if set to `true` (default). If set to
|
|
1425
|
+
* `false`, it will just navigate without closing dialogs.
|
|
1378
1426
|
*/
|
|
1379
|
-
|
|
1427
|
+
closeDialogs: boolean
|
|
1380
1428
|
);
|
|
1381
1429
|
|
|
1382
1430
|
/**
|
|
@@ -1410,6 +1458,9 @@ declare namespace sap {
|
|
|
1410
1458
|
getCloseDialogs(): boolean;
|
|
1411
1459
|
/**
|
|
1412
1460
|
* Sets if a navigation should close dialogs.
|
|
1461
|
+
*
|
|
1462
|
+
* **Note:** The dialogs are closed when a different target is displayed than the previous one, otherwise
|
|
1463
|
+
* the dialogs are kept open even when `bCloseDialogs` is `true`.
|
|
1413
1464
|
*/
|
|
1414
1465
|
setCloseDialogs(
|
|
1415
1466
|
/**
|
|
@@ -11215,22 +11266,6 @@ declare namespace sap {
|
|
|
11215
11266
|
* Default value is `false`.
|
|
11216
11267
|
*/
|
|
11217
11268
|
getRestoreFocusOnBackNavigation(): boolean;
|
|
11218
|
-
/**
|
|
11219
|
-
* @SINCE 1.91
|
|
11220
|
-
*
|
|
11221
|
-
* Hides the placeholder on the corresponding column for the provided aggregation name.
|
|
11222
|
-
*/
|
|
11223
|
-
hidePlaceholder(
|
|
11224
|
-
/**
|
|
11225
|
-
* Object containing the aggregation name
|
|
11226
|
-
*/
|
|
11227
|
-
mSettings: {
|
|
11228
|
-
/**
|
|
11229
|
-
* The aggregation name to decide on which column/container the placeholder should be hidden
|
|
11230
|
-
*/
|
|
11231
|
-
aggregation: string;
|
|
11232
|
-
}
|
|
11233
|
-
): void;
|
|
11234
11269
|
/**
|
|
11235
11270
|
* Checks for the provided `sap.ui.core.Control` in the aggregation {@link #getBeginColumnPages beginColumnPages}.
|
|
11236
11271
|
* and returns its index if found or -1 otherwise.
|
|
@@ -11516,22 +11551,6 @@ declare namespace sap {
|
|
|
11516
11551
|
*/
|
|
11517
11552
|
bRestoreFocusOnBackNavigation?: boolean
|
|
11518
11553
|
): this;
|
|
11519
|
-
/**
|
|
11520
|
-
* @SINCE 1.91
|
|
11521
|
-
*
|
|
11522
|
-
* Shows the placeholder on the corresponding column for the provided aggregation name.
|
|
11523
|
-
*/
|
|
11524
|
-
showPlaceholder(
|
|
11525
|
-
/**
|
|
11526
|
-
* Object containing the aggregation name
|
|
11527
|
-
*/
|
|
11528
|
-
mSettings: {
|
|
11529
|
-
/**
|
|
11530
|
-
* The aggregation name to decide on which column/container the placeholder should be shown
|
|
11531
|
-
*/
|
|
11532
|
-
aggregation: string;
|
|
11533
|
-
}
|
|
11534
|
-
): void;
|
|
11535
11554
|
/**
|
|
11536
11555
|
* Navigates to the given page inside the FlexibleColumnLayout. Columns are scanned for the page in the
|
|
11537
11556
|
* following order: `Begin`, `Mid`, `End`.
|
package/types/sap.fe.common.d.ts
CHANGED
package/types/sap.fe.core.d.ts
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
// For Library Version: 1.
|
|
1
|
+
// For Library Version: 1.96.0
|
|
2
2
|
|
|
3
3
|
declare namespace sap {
|
|
4
4
|
/**
|
|
@@ -306,6 +306,69 @@ declare namespace sap {
|
|
|
306
306
|
*/
|
|
307
307
|
showMessageDialog(): Promise<any>;
|
|
308
308
|
}
|
|
309
|
+
/**
|
|
310
|
+
* @SINCE 1.94.0
|
|
311
|
+
*
|
|
312
|
+
* Controller extension providing hooks for the navigation using paginators
|
|
313
|
+
*/
|
|
314
|
+
class Paginator extends sap.ui.core.mvc.ControllerExtension {
|
|
315
|
+
constructor();
|
|
316
|
+
|
|
317
|
+
/**
|
|
318
|
+
* Creates a new subclass of class sap.fe.core.controllerextensions.Paginator with name `sClassName` and
|
|
319
|
+
* enriches it with the information contained in `oClassInfo`.
|
|
320
|
+
*
|
|
321
|
+
* `oClassInfo` might contain the same kind of information as described in {@link sap.ui.core.mvc.ControllerExtension.extend}.
|
|
322
|
+
*/
|
|
323
|
+
static extend<T extends Record<string, unknown>>(
|
|
324
|
+
/**
|
|
325
|
+
* Name of the class being created
|
|
326
|
+
*/
|
|
327
|
+
sClassName: string,
|
|
328
|
+
/**
|
|
329
|
+
* Object literal with information about the class
|
|
330
|
+
*/
|
|
331
|
+
oClassInfo?: sap.ClassInfo<
|
|
332
|
+
T,
|
|
333
|
+
sap.fe.core.controllerextensions.Paginator
|
|
334
|
+
>,
|
|
335
|
+
/**
|
|
336
|
+
* Constructor function for the metadata object; if not given, it defaults to the metadata implementation
|
|
337
|
+
* used by this class
|
|
338
|
+
*/
|
|
339
|
+
FNMetaImpl?: Function
|
|
340
|
+
): Function;
|
|
341
|
+
/**
|
|
342
|
+
* Returns a metadata object for class sap.fe.core.controllerextensions.Paginator.
|
|
343
|
+
*/
|
|
344
|
+
static getMetadata(): sap.ui.base.Metadata;
|
|
345
|
+
/**
|
|
346
|
+
* @SINCE 1.94.0
|
|
347
|
+
*
|
|
348
|
+
* Initiates the paginator control.
|
|
349
|
+
*/
|
|
350
|
+
initialize(
|
|
351
|
+
/**
|
|
352
|
+
* ODataListBinding object
|
|
353
|
+
*/
|
|
354
|
+
oBinding: string,
|
|
355
|
+
/**
|
|
356
|
+
* Current context where the navigation is initiated
|
|
357
|
+
*/
|
|
358
|
+
oContext: object
|
|
359
|
+
): void;
|
|
360
|
+
/**
|
|
361
|
+
* @SINCE 1.94.0
|
|
362
|
+
*
|
|
363
|
+
* Returns the updated context after the paginator operation.
|
|
364
|
+
*/
|
|
365
|
+
onContextUpdate(
|
|
366
|
+
/**
|
|
367
|
+
* Final context returned after the paginator action
|
|
368
|
+
*/
|
|
369
|
+
oContext: string
|
|
370
|
+
): void;
|
|
371
|
+
}
|
|
309
372
|
/**
|
|
310
373
|
* @SINCE 1.86.0
|
|
311
374
|
*
|
|
@@ -508,7 +571,7 @@ declare namespace sap {
|
|
|
508
571
|
*/
|
|
509
572
|
oControl: sap.ui.base.ManagedObject,
|
|
510
573
|
/**
|
|
511
|
-
* A plain object which
|
|
574
|
+
* A plain object which can have one function: `refreshBinding`
|
|
512
575
|
*/
|
|
513
576
|
oControlHandler: object[]
|
|
514
577
|
): void;
|
|
@@ -654,6 +717,14 @@ declare namespace sap {
|
|
|
654
717
|
*/
|
|
655
718
|
aPromises: Promise<any>
|
|
656
719
|
): void;
|
|
720
|
+
/**
|
|
721
|
+
* Called when the application is restored due to keep-alive mode.
|
|
722
|
+
*/
|
|
723
|
+
onRestore(): void;
|
|
724
|
+
/**
|
|
725
|
+
* Called when the application is suspended due to keep-alive mode.
|
|
726
|
+
*/
|
|
727
|
+
onSuspend(): void;
|
|
657
728
|
/**
|
|
658
729
|
* Extend the map of additional states (not control bound) to be added to the current view state of the
|
|
659
730
|
* given view.
|
package/types/sap.fe.macros.d.ts
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
// For Library Version: 1.
|
|
1
|
+
// For Library Version: 1.96.0
|
|
2
2
|
|
|
3
3
|
declare namespace sap {
|
|
4
4
|
namespace fe {
|
|
@@ -6,6 +6,18 @@ declare namespace sap {
|
|
|
6
6
|
* Library containing the building blocks for SAP Fiori elements.
|
|
7
7
|
*/
|
|
8
8
|
namespace macros {
|
|
9
|
+
/**
|
|
10
|
+
* Building block used to create a chart based on the metadata provided by OData V4.
|
|
11
|
+
* Usually, a contextPath and metaPath is expected.
|
|
12
|
+
*
|
|
13
|
+
* Usage example:
|
|
14
|
+
* ```javascript
|
|
15
|
+
*
|
|
16
|
+
* <macro:Chart id="Mychart" contextPath="/RootEntity" metaPath="@com.sap.vocabularies.UI.v1.Chart" />
|
|
17
|
+
* ```
|
|
18
|
+
*/
|
|
19
|
+
export const Chart: undefined;
|
|
20
|
+
|
|
9
21
|
/**
|
|
10
22
|
* Building block for creating a field based on the metadata provided by OData V4.
|
|
11
23
|
* Usually, a DataField or DataPoint annotation is expected, but the field can also be used to display
|
|
@@ -77,6 +89,20 @@ declare namespace sap {
|
|
|
77
89
|
class MicroChart extends sap.fe.macros.MacroMetadata {
|
|
78
90
|
constructor();
|
|
79
91
|
}
|
|
92
|
+
/**
|
|
93
|
+
* @SINCE 1.94.0
|
|
94
|
+
*
|
|
95
|
+
* Building block used to create a paginator control.
|
|
96
|
+
*
|
|
97
|
+
* Usage example:
|
|
98
|
+
* ```javascript
|
|
99
|
+
*
|
|
100
|
+
* <macro:Paginator />
|
|
101
|
+
* ```
|
|
102
|
+
*/
|
|
103
|
+
class Paginator extends sap.fe.macros.MacroMetadata {
|
|
104
|
+
constructor();
|
|
105
|
+
}
|
|
80
106
|
/**
|
|
81
107
|
* @SINCE 1.93.0
|
|
82
108
|
*
|
|
@@ -102,8 +128,6 @@ declare namespace sap {
|
|
|
102
128
|
}
|
|
103
129
|
|
|
104
130
|
interface IUI5DefineDependencyNames {
|
|
105
|
-
"sap/fe/macros/Chart.metadata": undefined;
|
|
106
|
-
|
|
107
131
|
"sap/fe/macros/FlexibleColumnLayoutActions.metadata": undefined;
|
|
108
132
|
|
|
109
133
|
"sap/fe/macros/FormElement.metadata": undefined;
|
package/types/sap.fe.test.d.ts
CHANGED
package/types/sap.fe.tools.d.ts
CHANGED