@sapui5/ts-types 1.102.6 → 1.102.7
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 +1 -1
- package/types/sap.f.d.ts +1 -1
- package/types/sap.fe.common.d.ts +1 -1
- package/types/sap.fe.core.d.ts +1 -1
- package/types/sap.fe.macros.d.ts +1 -1
- package/types/sap.fe.navigation.d.ts +1 -1
- package/types/sap.fe.templates.d.ts +158 -1
- package/types/sap.fe.test.d.ts +1 -1
- package/types/sap.gantt.d.ts +1 -1
- package/types/sap.insights.d.ts +1 -1
- package/types/sap.m.d.ts +1 -1
- 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.suite.ui.commons.d.ts +1 -1
- 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 +3 -3
- 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 +1 -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 +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 +1 -1
- package/types/sap.ui.ux3.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
package/package.json
CHANGED
package/types/sap.chart.d.ts
CHANGED
package/types/sap.f.d.ts
CHANGED
package/types/sap.fe.common.d.ts
CHANGED
package/types/sap.fe.core.d.ts
CHANGED
package/types/sap.fe.macros.d.ts
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
// For Library Version: 1.102.
|
|
1
|
+
// For Library Version: 1.102.4
|
|
2
2
|
|
|
3
3
|
declare namespace sap {
|
|
4
4
|
namespace fe {
|
|
@@ -171,6 +171,161 @@ declare namespace sap {
|
|
|
171
171
|
updateAppState(): undefined | Promise<any>;
|
|
172
172
|
}
|
|
173
173
|
}
|
|
174
|
+
|
|
175
|
+
namespace ObjectPage {
|
|
176
|
+
/**
|
|
177
|
+
* @SINCE 1.79.0
|
|
178
|
+
*
|
|
179
|
+
*
|
|
180
|
+
* Extension API for object pages on SAP Fiori elements for OData V4.
|
|
181
|
+
*/
|
|
182
|
+
class ExtensionAPI
|
|
183
|
+
/* was: sap.fe.templates.ExtensionAPI */ extends Object {
|
|
184
|
+
constructor();
|
|
185
|
+
|
|
186
|
+
/**
|
|
187
|
+
* Add any control as a dependent control to this SAP Fiori elements page.
|
|
188
|
+
*/
|
|
189
|
+
addDependent(
|
|
190
|
+
/**
|
|
191
|
+
* Control to be added as a dependent control
|
|
192
|
+
*/
|
|
193
|
+
oControl: sap.ui.core.Control
|
|
194
|
+
): void;
|
|
195
|
+
/**
|
|
196
|
+
* Gets the bound context of the current object page.
|
|
197
|
+
*
|
|
198
|
+
* @returns Context bound to the object page
|
|
199
|
+
*/
|
|
200
|
+
getBindingContext(): undefined | object | sap.ui.model.Context;
|
|
201
|
+
/**
|
|
202
|
+
* Get access to models managed by SAP Fiori elements.
|
|
203
|
+
*
|
|
204
|
+
* The following models can be accessed:
|
|
205
|
+
*
|
|
206
|
+
*
|
|
207
|
+
* - undefined: the undefined model returns the SAPUI5 OData V4 model bound to this page
|
|
208
|
+
*
|
|
209
|
+
* - i18n / further data models defined in the manifest
|
|
210
|
+
* ui: returns a SAPUI5 JSON model containing UI information.
|
|
211
|
+
* Only the following properties are public and supported:
|
|
212
|
+
*
|
|
213
|
+
*
|
|
214
|
+
* - isEditable: set to true if the application is in edit mode
|
|
215
|
+
*
|
|
216
|
+
*
|
|
217
|
+
* .
|
|
218
|
+
* editMode is deprecated and should not be used anymore. Use isEditable instead.
|
|
219
|
+
*
|
|
220
|
+
* @returns The required model
|
|
221
|
+
*/
|
|
222
|
+
getModel(
|
|
223
|
+
/**
|
|
224
|
+
* Name of the model
|
|
225
|
+
*/
|
|
226
|
+
sModelName?: string
|
|
227
|
+
): undefined | sap.ui.model.Model;
|
|
228
|
+
/**
|
|
229
|
+
* Gets the list entries currently selected for the table.
|
|
230
|
+
*
|
|
231
|
+
* @returns Array containing the selected contexts
|
|
232
|
+
*/
|
|
233
|
+
getSelectedContexts(
|
|
234
|
+
/**
|
|
235
|
+
* The ID identifying the table the selected context is requested for
|
|
236
|
+
*/
|
|
237
|
+
sTableId: string
|
|
238
|
+
): any;
|
|
239
|
+
/**
|
|
240
|
+
* Load a fragment and go through the template preprocessor with the current page context.
|
|
241
|
+
*
|
|
242
|
+
* @returns The fragment definition
|
|
243
|
+
*/
|
|
244
|
+
loadFragment(
|
|
245
|
+
/**
|
|
246
|
+
* The settings object
|
|
247
|
+
*/
|
|
248
|
+
mSettings: {
|
|
249
|
+
/**
|
|
250
|
+
* The contextPath to be used for the templating process
|
|
251
|
+
*/
|
|
252
|
+
contextPath: string;
|
|
253
|
+
/**
|
|
254
|
+
* The controller to be attached to the fragment
|
|
255
|
+
*/
|
|
256
|
+
controller: object;
|
|
257
|
+
/**
|
|
258
|
+
* The ID of the fragment itself
|
|
259
|
+
*/
|
|
260
|
+
id: string;
|
|
261
|
+
/**
|
|
262
|
+
* The initial binding context
|
|
263
|
+
*/
|
|
264
|
+
initialBindingContext: sap.ui.model.Context;
|
|
265
|
+
/**
|
|
266
|
+
* The name of the fragment to be loaded
|
|
267
|
+
*/
|
|
268
|
+
name: string;
|
|
269
|
+
}
|
|
270
|
+
): Promise<any>;
|
|
271
|
+
/**
|
|
272
|
+
* Navigate to another target.
|
|
273
|
+
*/
|
|
274
|
+
navigateToTarget(
|
|
275
|
+
/**
|
|
276
|
+
* Name of the target route
|
|
277
|
+
*/
|
|
278
|
+
sTarget: string,
|
|
279
|
+
/**
|
|
280
|
+
* Context instance
|
|
281
|
+
*/
|
|
282
|
+
oContext: sap.ui.model.Context
|
|
283
|
+
): void;
|
|
284
|
+
/**
|
|
285
|
+
* Refreshes either the whole object page or only parts of it.
|
|
286
|
+
*
|
|
287
|
+
* @returns Resolved once the data is refreshed or rejected if the request failed
|
|
288
|
+
*/
|
|
289
|
+
refresh(
|
|
290
|
+
/**
|
|
291
|
+
* Path or array of paths referring to entities or properties to be refreshed.
|
|
292
|
+
* If omitted, the whole object page is refreshed. The path "" refreshes the entity assigned to the object
|
|
293
|
+
* page
|
|
294
|
+
* without navigations
|
|
295
|
+
*/
|
|
296
|
+
vPath: undefined | string | string[]
|
|
297
|
+
): Promise<any>;
|
|
298
|
+
/**
|
|
299
|
+
* Remove a dependent control from this SAP Fiori elements page.
|
|
300
|
+
*/
|
|
301
|
+
removeDependent(
|
|
302
|
+
/**
|
|
303
|
+
* Control to be added as a dependent control
|
|
304
|
+
*/
|
|
305
|
+
oControl: sap.ui.core.Control
|
|
306
|
+
): void;
|
|
307
|
+
/**
|
|
308
|
+
* Displays or hides the side content of an object page block.
|
|
309
|
+
*/
|
|
310
|
+
showSideContent(
|
|
311
|
+
/**
|
|
312
|
+
* Key of the side content fragment as defined in the manifest.json
|
|
313
|
+
*/
|
|
314
|
+
sSubSectionKey: string,
|
|
315
|
+
/**
|
|
316
|
+
* Optional Boolean flag to show or hide the side content
|
|
317
|
+
*/
|
|
318
|
+
bShow: undefined | boolean
|
|
319
|
+
): void;
|
|
320
|
+
/**
|
|
321
|
+
* Triggers an update of the app state.
|
|
322
|
+
* Should be called if the state of a control, or any other state-relevant information, was changed.
|
|
323
|
+
*
|
|
324
|
+
* @returns A promise that resolves with the new app state object.
|
|
325
|
+
*/
|
|
326
|
+
updateAppState(): undefined | Promise<any>;
|
|
327
|
+
}
|
|
328
|
+
}
|
|
174
329
|
}
|
|
175
330
|
}
|
|
176
331
|
|
|
@@ -178,5 +333,7 @@ declare namespace sap {
|
|
|
178
333
|
"sap/fe/templates/library": undefined;
|
|
179
334
|
|
|
180
335
|
"sap/fe/templates/ListReport/ExtensionAPI": undefined;
|
|
336
|
+
|
|
337
|
+
"sap/fe/templates/ObjectPage/ExtensionAPI": undefined;
|
|
181
338
|
}
|
|
182
339
|
}
|
package/types/sap.fe.test.d.ts
CHANGED
package/types/sap.gantt.d.ts
CHANGED
package/types/sap.insights.d.ts
CHANGED
package/types/sap.m.d.ts
CHANGED
package/types/sap.makit.d.ts
CHANGED
package/types/sap.me.d.ts
CHANGED
package/types/sap.ndc.d.ts
CHANGED
package/types/sap.tnt.d.ts
CHANGED
package/types/sap.ui.comp.d.ts
CHANGED
package/types/sap.ui.core.d.ts
CHANGED
package/types/sap.ui.dt.d.ts
CHANGED
package/types/sap.ui.export.d.ts
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
// For Library Version: 1.102.
|
|
1
|
+
// For Library Version: 1.102.7
|
|
2
2
|
|
|
3
3
|
declare namespace sap {
|
|
4
4
|
namespace ui {
|
|
@@ -225,7 +225,7 @@ declare namespace sap {
|
|
|
225
225
|
* - `workbook.context` - Context object that will be applied to the generated file. It may contain the
|
|
226
226
|
* following fields:
|
|
227
227
|
* - `application` (string) - The application that creates the XLSX document (default: "SAP UI5")
|
|
228
|
-
* - `version` (string) - Application version that creates the XLSX document (default: "1.102.
|
|
228
|
+
* - `version` (string) - Application version that creates the XLSX document (default: "1.102.7")
|
|
229
229
|
* - `title` (string) - Title of the XLSX document (NOT the filename)
|
|
230
230
|
* - `modifiedBy` (string) - User context for the XLSX document
|
|
231
231
|
* - `sheetName` (string) - The label of the data sheet
|
|
@@ -311,7 +311,7 @@ declare namespace sap {
|
|
|
311
311
|
* columns: aColumns,
|
|
312
312
|
* context: {
|
|
313
313
|
* application: 'Debug Test Application',
|
|
314
|
-
* version: '1.102.
|
|
314
|
+
* version: '1.102.7',
|
|
315
315
|
* title: 'Some random title',
|
|
316
316
|
* modifiedBy: 'John Doe',
|
|
317
317
|
* metaSheetName: 'Custom metadata',
|
package/types/sap.ui.fl.d.ts
CHANGED
package/types/sap.ui.layout.d.ts
CHANGED
package/types/sap.ui.mdc.d.ts
CHANGED
package/types/sap.ui.rta.d.ts
CHANGED
package/types/sap.ui.suite.d.ts
CHANGED
package/types/sap.ui.table.d.ts
CHANGED
package/types/sap.ui.ux3.d.ts
CHANGED
package/types/sap.ushell.d.ts
CHANGED
package/types/sap.uxap.d.ts
CHANGED
package/types/sap.viz.d.ts
CHANGED