@sapui5/ts-types-esm 1.102.6 → 1.102.8
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 +27 -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 +200 -1
- package/types/sap.fe.test.d.ts +17 -3
- 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.ui.vbm.d.ts +1 -1
- package/types/sap.ui.vk.d.ts +62 -5
- 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
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
// For Library Version: 1.102.
|
|
1
|
+
// For Library Version: 1.102.5
|
|
2
2
|
|
|
3
3
|
declare module "sap/fe/core/library" {
|
|
4
4
|
/**
|
|
@@ -134,6 +134,18 @@ declare module "sap/fe/core/ExtensionAPI" {
|
|
|
134
134
|
*/
|
|
135
135
|
oControl: Control
|
|
136
136
|
): void;
|
|
137
|
+
/**
|
|
138
|
+
* Retrieves the editFlow controller extension for this page.
|
|
139
|
+
*
|
|
140
|
+
* @returns The editFlow controller extension
|
|
141
|
+
*/
|
|
142
|
+
getEditFlow(): /* was: sap.fe.core.EditFlow */ any;
|
|
143
|
+
/**
|
|
144
|
+
* Retrieves the intentBasedNavigation controller extension for this page.
|
|
145
|
+
*
|
|
146
|
+
* @returns The intentBasedNavigation controller extension
|
|
147
|
+
*/
|
|
148
|
+
getIntentBasedNavigation(): /* was: sap.fe.core.IntentBasedNavigation */ any;
|
|
137
149
|
/**
|
|
138
150
|
* Get access to models managed by SAP Fiori elements.
|
|
139
151
|
*
|
|
@@ -161,6 +173,12 @@ declare module "sap/fe/core/ExtensionAPI" {
|
|
|
161
173
|
*/
|
|
162
174
|
sModelName?: string
|
|
163
175
|
): undefined | Model;
|
|
176
|
+
/**
|
|
177
|
+
* Retrieves the routing controller extension for this page.
|
|
178
|
+
*
|
|
179
|
+
* @returns The routing controller extension
|
|
180
|
+
*/
|
|
181
|
+
getRouting(): /* was: sap.fe.core.Routing */ any;
|
|
164
182
|
/**
|
|
165
183
|
* Load a fragment and go through the template preprocessor with the current page context.
|
|
166
184
|
*
|
|
@@ -230,6 +248,8 @@ declare module "sap/fe/core/PageController" {
|
|
|
230
248
|
|
|
231
249
|
import AppComponent from "sap/fe/core/AppComponent";
|
|
232
250
|
|
|
251
|
+
import ExtensionAPI from "sap/fe/core/ExtensionAPI";
|
|
252
|
+
|
|
233
253
|
import Model from "sap/ui/model/Model";
|
|
234
254
|
|
|
235
255
|
import View from "sap/ui/core/mvc/View";
|
|
@@ -254,6 +274,12 @@ declare module "sap/fe/core/PageController" {
|
|
|
254
274
|
* @returns The app component or, if not found, null
|
|
255
275
|
*/
|
|
256
276
|
getAppComponent(): AppComponent;
|
|
277
|
+
/**
|
|
278
|
+
* Get the extension API for the current page.
|
|
279
|
+
*
|
|
280
|
+
* @returns The extension API.
|
|
281
|
+
*/
|
|
282
|
+
getExtensionAPI(): ExtensionAPI;
|
|
257
283
|
/**
|
|
258
284
|
* Convenience method provided by SAP Fiori elements to enable applications to include the view model by
|
|
259
285
|
* name into each controller.
|
package/types/sap.fe.macros.d.ts
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
// For Library Version: 1.102.
|
|
1
|
+
// For Library Version: 1.102.5
|
|
2
2
|
|
|
3
3
|
declare module "sap/fe/templates/library" {}
|
|
4
4
|
|
|
@@ -39,6 +39,18 @@ declare module "sap/fe/templates/ListReport/ExtensionAPI" {
|
|
|
39
39
|
*/
|
|
40
40
|
mFilterConditions: any
|
|
41
41
|
): object;
|
|
42
|
+
/**
|
|
43
|
+
* Retrieves the editFlow controller extension for this page.
|
|
44
|
+
*
|
|
45
|
+
* @returns The editFlow controller extension
|
|
46
|
+
*/
|
|
47
|
+
getEditFlow(): /* was: sap.fe.templates.EditFlow */ any;
|
|
48
|
+
/**
|
|
49
|
+
* Retrieves the intentBasedNavigation controller extension for this page.
|
|
50
|
+
*
|
|
51
|
+
* @returns The intentBasedNavigation controller extension
|
|
52
|
+
*/
|
|
53
|
+
getIntentBasedNavigation(): /* was: sap.fe.templates.IntentBasedNavigation */ any;
|
|
42
54
|
/**
|
|
43
55
|
* Get access to models managed by SAP Fiori elements.
|
|
44
56
|
*
|
|
@@ -66,6 +78,12 @@ declare module "sap/fe/templates/ListReport/ExtensionAPI" {
|
|
|
66
78
|
*/
|
|
67
79
|
sModelName?: string
|
|
68
80
|
): undefined | Model;
|
|
81
|
+
/**
|
|
82
|
+
* Retrieves the routing controller extension for this page.
|
|
83
|
+
*
|
|
84
|
+
* @returns The routing controller extension
|
|
85
|
+
*/
|
|
86
|
+
getRouting(): /* was: sap.fe.templates.Routing */ any;
|
|
69
87
|
/**
|
|
70
88
|
* Gets the list entries currently selected for the displayed control.
|
|
71
89
|
*
|
|
@@ -174,10 +192,191 @@ declare module "sap/fe/templates/ListReport/ExtensionAPI" {
|
|
|
174
192
|
}
|
|
175
193
|
}
|
|
176
194
|
|
|
195
|
+
declare module "sap/fe/templates/ObjectPage/ExtensionAPI" {
|
|
196
|
+
import Control from "sap/ui/core/Control";
|
|
197
|
+
|
|
198
|
+
import Context from "sap/ui/model/Context";
|
|
199
|
+
|
|
200
|
+
import Model from "sap/ui/model/Model";
|
|
201
|
+
|
|
202
|
+
/**
|
|
203
|
+
* @SINCE 1.79.0
|
|
204
|
+
*
|
|
205
|
+
*
|
|
206
|
+
* Extension API for object pages on SAP Fiori elements for OData V4.
|
|
207
|
+
*/
|
|
208
|
+
export default class ExtensionAPI
|
|
209
|
+
/* was: sap.fe.templates.ExtensionAPI */ extends Object {
|
|
210
|
+
constructor();
|
|
211
|
+
|
|
212
|
+
/**
|
|
213
|
+
* Add any control as a dependent control to this SAP Fiori elements page.
|
|
214
|
+
*/
|
|
215
|
+
addDependent(
|
|
216
|
+
/**
|
|
217
|
+
* Control to be added as a dependent control
|
|
218
|
+
*/
|
|
219
|
+
oControl: Control
|
|
220
|
+
): void;
|
|
221
|
+
/**
|
|
222
|
+
* Gets the bound context of the current object page.
|
|
223
|
+
*
|
|
224
|
+
* @returns Context bound to the object page
|
|
225
|
+
*/
|
|
226
|
+
getBindingContext(): undefined | object | Context;
|
|
227
|
+
/**
|
|
228
|
+
* Retrieves the editFlow controller extension for this page.
|
|
229
|
+
*
|
|
230
|
+
* @returns The editFlow controller extension
|
|
231
|
+
*/
|
|
232
|
+
getEditFlow(): /* was: sap.fe.templates.EditFlow */ any;
|
|
233
|
+
/**
|
|
234
|
+
* Retrieves the intentBasedNavigation controller extension for this page.
|
|
235
|
+
*
|
|
236
|
+
* @returns The intentBasedNavigation controller extension
|
|
237
|
+
*/
|
|
238
|
+
getIntentBasedNavigation(): /* was: sap.fe.templates.IntentBasedNavigation */ any;
|
|
239
|
+
/**
|
|
240
|
+
* Get access to models managed by SAP Fiori elements.
|
|
241
|
+
*
|
|
242
|
+
* The following models can be accessed:
|
|
243
|
+
*
|
|
244
|
+
*
|
|
245
|
+
* - undefined: the undefined model returns the SAPUI5 OData V4 model bound to this page
|
|
246
|
+
*
|
|
247
|
+
* - i18n / further data models defined in the manifest
|
|
248
|
+
* ui: returns a SAPUI5 JSON model containing UI information.
|
|
249
|
+
* Only the following properties are public and supported:
|
|
250
|
+
*
|
|
251
|
+
*
|
|
252
|
+
* - isEditable: set to true if the application is in edit mode
|
|
253
|
+
*
|
|
254
|
+
*
|
|
255
|
+
* .
|
|
256
|
+
* editMode is deprecated and should not be used anymore. Use isEditable instead.
|
|
257
|
+
*
|
|
258
|
+
* @returns The required model
|
|
259
|
+
*/
|
|
260
|
+
getModel(
|
|
261
|
+
/**
|
|
262
|
+
* Name of the model
|
|
263
|
+
*/
|
|
264
|
+
sModelName?: string
|
|
265
|
+
): undefined | Model;
|
|
266
|
+
/**
|
|
267
|
+
* Retrieves the routing controller extension for this page.
|
|
268
|
+
*
|
|
269
|
+
* @returns The routing controller extension
|
|
270
|
+
*/
|
|
271
|
+
getRouting(): /* was: sap.fe.templates.Routing */ any;
|
|
272
|
+
/**
|
|
273
|
+
* Gets the list entries currently selected for the table.
|
|
274
|
+
*
|
|
275
|
+
* @returns Array containing the selected contexts
|
|
276
|
+
*/
|
|
277
|
+
getSelectedContexts(
|
|
278
|
+
/**
|
|
279
|
+
* The ID identifying the table the selected context is requested for
|
|
280
|
+
*/
|
|
281
|
+
sTableId: string
|
|
282
|
+
): any;
|
|
283
|
+
/**
|
|
284
|
+
* Load a fragment and go through the template preprocessor with the current page context.
|
|
285
|
+
*
|
|
286
|
+
* @returns The fragment definition
|
|
287
|
+
*/
|
|
288
|
+
loadFragment(
|
|
289
|
+
/**
|
|
290
|
+
* The settings object
|
|
291
|
+
*/
|
|
292
|
+
mSettings: {
|
|
293
|
+
/**
|
|
294
|
+
* The contextPath to be used for the templating process
|
|
295
|
+
*/
|
|
296
|
+
contextPath: string;
|
|
297
|
+
/**
|
|
298
|
+
* The controller to be attached to the fragment
|
|
299
|
+
*/
|
|
300
|
+
controller: object;
|
|
301
|
+
/**
|
|
302
|
+
* The ID of the fragment itself
|
|
303
|
+
*/
|
|
304
|
+
id: string;
|
|
305
|
+
/**
|
|
306
|
+
* The initial binding context
|
|
307
|
+
*/
|
|
308
|
+
initialBindingContext: Context;
|
|
309
|
+
/**
|
|
310
|
+
* The name of the fragment to be loaded
|
|
311
|
+
*/
|
|
312
|
+
name: string;
|
|
313
|
+
}
|
|
314
|
+
): Promise<any>;
|
|
315
|
+
/**
|
|
316
|
+
* Navigate to another target.
|
|
317
|
+
*/
|
|
318
|
+
navigateToTarget(
|
|
319
|
+
/**
|
|
320
|
+
* Name of the target route
|
|
321
|
+
*/
|
|
322
|
+
sTarget: string,
|
|
323
|
+
/**
|
|
324
|
+
* Context instance
|
|
325
|
+
*/
|
|
326
|
+
oContext: Context
|
|
327
|
+
): void;
|
|
328
|
+
/**
|
|
329
|
+
* Refreshes either the whole object page or only parts of it.
|
|
330
|
+
*
|
|
331
|
+
* @returns Resolved once the data is refreshed or rejected if the request failed
|
|
332
|
+
*/
|
|
333
|
+
refresh(
|
|
334
|
+
/**
|
|
335
|
+
* Path or array of paths referring to entities or properties to be refreshed.
|
|
336
|
+
* If omitted, the whole object page is refreshed. The path "" refreshes the entity assigned to the object
|
|
337
|
+
* page
|
|
338
|
+
* without navigations
|
|
339
|
+
*/
|
|
340
|
+
vPath: undefined | string | string[]
|
|
341
|
+
): Promise<any>;
|
|
342
|
+
/**
|
|
343
|
+
* Remove a dependent control from this SAP Fiori elements page.
|
|
344
|
+
*/
|
|
345
|
+
removeDependent(
|
|
346
|
+
/**
|
|
347
|
+
* Control to be added as a dependent control
|
|
348
|
+
*/
|
|
349
|
+
oControl: Control
|
|
350
|
+
): void;
|
|
351
|
+
/**
|
|
352
|
+
* Displays or hides the side content of an object page block.
|
|
353
|
+
*/
|
|
354
|
+
showSideContent(
|
|
355
|
+
/**
|
|
356
|
+
* Key of the side content fragment as defined in the manifest.json
|
|
357
|
+
*/
|
|
358
|
+
sSubSectionKey: string,
|
|
359
|
+
/**
|
|
360
|
+
* Optional Boolean flag to show or hide the side content
|
|
361
|
+
*/
|
|
362
|
+
bShow: undefined | boolean
|
|
363
|
+
): void;
|
|
364
|
+
/**
|
|
365
|
+
* Triggers an update of the app state.
|
|
366
|
+
* Should be called if the state of a control, or any other state-relevant information, was changed.
|
|
367
|
+
*
|
|
368
|
+
* @returns A promise that resolves with the new app state object.
|
|
369
|
+
*/
|
|
370
|
+
updateAppState(): undefined | Promise<any>;
|
|
371
|
+
}
|
|
372
|
+
}
|
|
373
|
+
|
|
177
374
|
declare namespace sap {
|
|
178
375
|
interface IUI5DefineDependencyNames {
|
|
179
376
|
"sap/fe/templates/library": undefined;
|
|
180
377
|
|
|
181
378
|
"sap/fe/templates/ListReport/ExtensionAPI": undefined;
|
|
379
|
+
|
|
380
|
+
"sap/fe/templates/ObjectPage/ExtensionAPI": undefined;
|
|
182
381
|
}
|
|
183
382
|
}
|
package/types/sap.fe.test.d.ts
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
// For Library Version: 1.102.
|
|
1
|
+
// For Library Version: 1.102.5
|
|
2
2
|
|
|
3
3
|
declare module "sap/fe/test/library" {}
|
|
4
4
|
|
|
@@ -3107,7 +3107,14 @@ declare module "sap/fe/test/ListReport" {
|
|
|
3107
3107
|
*
|
|
3108
3108
|
* @returns The available filter bar actions
|
|
3109
3109
|
*/
|
|
3110
|
-
onFilterBar(
|
|
3110
|
+
onFilterBar(
|
|
3111
|
+
/**
|
|
3112
|
+
* The identifier of the filterbar
|
|
3113
|
+
*/
|
|
3114
|
+
vFilterBarIdentifier: /* was: sap.fe.test.api.FilterBarIdentifier */
|
|
3115
|
+
| any
|
|
3116
|
+
| string
|
|
3117
|
+
): FilterBarActions;
|
|
3111
3118
|
/**
|
|
3112
3119
|
* Returns a {@link sap.fe.test.api.HeaderActionsLR} instance.
|
|
3113
3120
|
*
|
|
@@ -3137,7 +3144,14 @@ declare module "sap/fe/test/ListReport" {
|
|
|
3137
3144
|
*
|
|
3138
3145
|
* @returns The available filter bar assertions
|
|
3139
3146
|
*/
|
|
3140
|
-
onFilterBar(
|
|
3147
|
+
onFilterBar(
|
|
3148
|
+
/**
|
|
3149
|
+
* The identifier of the filterbar
|
|
3150
|
+
*/
|
|
3151
|
+
vFilterBarIdentifier: /* was: sap.fe.test.api.FilterBarIdentifier */
|
|
3152
|
+
| any
|
|
3153
|
+
| string
|
|
3154
|
+
): FilterBarAssertions;
|
|
3141
3155
|
/**
|
|
3142
3156
|
* Returns a {@link sap.fe.test.api.HeaderAssertionsLR} instance.
|
|
3143
3157
|
*
|
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.8
|
|
2
2
|
|
|
3
3
|
declare module "sap/ui/export/library" {
|
|
4
4
|
/**
|
|
@@ -302,7 +302,7 @@ declare module "sap/ui/export/Spreadsheet" {
|
|
|
302
302
|
* - `workbook.context` - Context object that will be applied to the generated file. It may contain the
|
|
303
303
|
* following fields:
|
|
304
304
|
* - `application` (string) - The application that creates the XLSX document (default: "SAP UI5")
|
|
305
|
-
* - `version` (string) - Application version that creates the XLSX document (default: "1.102.
|
|
305
|
+
* - `version` (string) - Application version that creates the XLSX document (default: "1.102.8")
|
|
306
306
|
* - `title` (string) - Title of the XLSX document (NOT the filename)
|
|
307
307
|
* - `modifiedBy` (string) - User context for the XLSX document
|
|
308
308
|
* - `sheetName` (string) - The label of the data sheet
|
|
@@ -388,7 +388,7 @@ declare module "sap/ui/export/Spreadsheet" {
|
|
|
388
388
|
* columns: aColumns,
|
|
389
389
|
* context: {
|
|
390
390
|
* application: 'Debug Test Application',
|
|
391
|
-
* version: '1.102.
|
|
391
|
+
* version: '1.102.8',
|
|
392
392
|
* title: 'Some random title',
|
|
393
393
|
* modifiedBy: 'John Doe',
|
|
394
394
|
* 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.ui.vbm.d.ts
CHANGED
package/types/sap.ui.vk.d.ts
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
// For Library Version: 1.102.
|
|
1
|
+
// For Library Version: 1.102.1
|
|
2
2
|
|
|
3
3
|
declare module "sap/ui/vk/library" {
|
|
4
4
|
/**
|
|
@@ -4163,6 +4163,23 @@ declare module "sap/ui/vk/ContentResource" {
|
|
|
4163
4163
|
* Child content resources.
|
|
4164
4164
|
*/
|
|
4165
4165
|
getContentResources(): ContentResource[];
|
|
4166
|
+
/**
|
|
4167
|
+
* Gets current value of property {@link #getDependencyLoader dependencyLoader}.
|
|
4168
|
+
*
|
|
4169
|
+
* An object used to load content resource's dependencies.
|
|
4170
|
+
*
|
|
4171
|
+
* A content resource may have dependencies, e.g. if the loaded content resource is a shattered VDS file
|
|
4172
|
+
* it reference other VDS files.
|
|
4173
|
+
*
|
|
4174
|
+
* `dependencyLoader` should be an object with method `function load(uri: string, context: any): Promise<{buffer:
|
|
4175
|
+
* ArrayBuffer, context: any}>`, where `uri` is a reference to a dependency and `context` is opaque data.
|
|
4176
|
+
*
|
|
4177
|
+
* `uri` is application specific and can be a full URL or a relative file name or anything else, e.g. some
|
|
4178
|
+
* identifier known to `dependencyLoader`.
|
|
4179
|
+
*
|
|
4180
|
+
* @returns Value of property `dependencyLoader`
|
|
4181
|
+
*/
|
|
4182
|
+
getDependencyLoader(): any;
|
|
4166
4183
|
/**
|
|
4167
4184
|
* Gets current value of property {@link #getEnableLogger enableLogger}.
|
|
4168
4185
|
*
|
|
@@ -4433,6 +4450,30 @@ declare module "sap/ui/vk/ContentResource" {
|
|
|
4433
4450
|
*/
|
|
4434
4451
|
sActivateView: string
|
|
4435
4452
|
): this;
|
|
4453
|
+
/**
|
|
4454
|
+
* Sets a new value for property {@link #getDependencyLoader dependencyLoader}.
|
|
4455
|
+
*
|
|
4456
|
+
* An object used to load content resource's dependencies.
|
|
4457
|
+
*
|
|
4458
|
+
* A content resource may have dependencies, e.g. if the loaded content resource is a shattered VDS file
|
|
4459
|
+
* it reference other VDS files.
|
|
4460
|
+
*
|
|
4461
|
+
* `dependencyLoader` should be an object with method `function load(uri: string, context: any): Promise<{buffer:
|
|
4462
|
+
* ArrayBuffer, context: any}>`, where `uri` is a reference to a dependency and `context` is opaque data.
|
|
4463
|
+
*
|
|
4464
|
+
* `uri` is application specific and can be a full URL or a relative file name or anything else, e.g. some
|
|
4465
|
+
* identifier known to `dependencyLoader`.
|
|
4466
|
+
*
|
|
4467
|
+
* When called with a value of `null` or `undefined`, the default value of the property will be restored.
|
|
4468
|
+
*
|
|
4469
|
+
* @returns Reference to `this` in order to allow method chaining
|
|
4470
|
+
*/
|
|
4471
|
+
setDependencyLoader(
|
|
4472
|
+
/**
|
|
4473
|
+
* New value for property `dependencyLoader`
|
|
4474
|
+
*/
|
|
4475
|
+
oDependencyLoader: any
|
|
4476
|
+
): this;
|
|
4436
4477
|
/**
|
|
4437
4478
|
* Sets a new value for property {@link #getEnableLogger enableLogger}.
|
|
4438
4479
|
*
|
|
@@ -4855,6 +4896,20 @@ declare module "sap/ui/vk/ContentResource" {
|
|
|
4855
4896
|
*/
|
|
4856
4897
|
includeUsageId?: IncludeUsageIdType | PropertyBindingInfo | `{${string}}`;
|
|
4857
4898
|
|
|
4899
|
+
/**
|
|
4900
|
+
* An object used to load content resource's dependencies.
|
|
4901
|
+
*
|
|
4902
|
+
* A content resource may have dependencies, e.g. if the loaded content resource is a shattered VDS file
|
|
4903
|
+
* it reference other VDS files.
|
|
4904
|
+
*
|
|
4905
|
+
* `dependencyLoader` should be an object with method `function load(uri: string, context: any): Promise<{buffer:
|
|
4906
|
+
* ArrayBuffer, context: any}>`, where `uri` is a reference to a dependency and `context` is opaque data.
|
|
4907
|
+
*
|
|
4908
|
+
* `uri` is application specific and can be a full URL or a relative file name or anything else, e.g. some
|
|
4909
|
+
* identifier known to `dependencyLoader`.
|
|
4910
|
+
*/
|
|
4911
|
+
dependencyLoader?: any | PropertyBindingInfo | `{${string}}`;
|
|
4912
|
+
|
|
4858
4913
|
/**
|
|
4859
4914
|
* Child content resources.
|
|
4860
4915
|
*/
|
|
@@ -8276,6 +8331,8 @@ declare module "sap/ui/vk/LegendItem" {
|
|
|
8276
8331
|
|
|
8277
8332
|
import ElementMetadata from "sap/ui/core/ElementMetadata";
|
|
8278
8333
|
|
|
8334
|
+
import { SemanticType } from "sap/ui/vbm/library";
|
|
8335
|
+
|
|
8279
8336
|
import { PropertyBindingInfo } from "sap/ui/base/ManagedObject";
|
|
8280
8337
|
|
|
8281
8338
|
/**
|
|
@@ -8359,7 +8416,7 @@ declare module "sap/ui/vk/LegendItem" {
|
|
|
8359
8416
|
*
|
|
8360
8417
|
* @returns Value of property `semanticSpotType`
|
|
8361
8418
|
*/
|
|
8362
|
-
getSemanticSpotType():
|
|
8419
|
+
getSemanticSpotType(): SemanticType | keyof typeof SemanticType;
|
|
8363
8420
|
/**
|
|
8364
8421
|
* Sets a new value for property {@link #getColor color}.
|
|
8365
8422
|
*
|
|
@@ -8388,7 +8445,7 @@ declare module "sap/ui/vk/LegendItem" {
|
|
|
8388
8445
|
/**
|
|
8389
8446
|
* New value for property `semanticSpotType`
|
|
8390
8447
|
*/
|
|
8391
|
-
sSemanticSpotType?:
|
|
8448
|
+
sSemanticSpotType?: SemanticType | keyof typeof SemanticType
|
|
8392
8449
|
): this;
|
|
8393
8450
|
}
|
|
8394
8451
|
|
|
@@ -8401,8 +8458,8 @@ declare module "sap/ui/vk/LegendItem" {
|
|
|
8401
8458
|
/**
|
|
8402
8459
|
* The semantic spot type for the legend marker.
|
|
8403
8460
|
*/
|
|
8404
|
-
semanticSpotType?:
|
|
8405
|
-
|
|
|
8461
|
+
semanticSpotType?:
|
|
8462
|
+
| (SemanticType | keyof typeof SemanticType)
|
|
8406
8463
|
| PropertyBindingInfo
|
|
8407
8464
|
| `{${string}}`;
|
|
8408
8465
|
}
|
package/types/sap.ushell.d.ts
CHANGED
package/types/sap.uxap.d.ts
CHANGED
package/types/sap.viz.d.ts
CHANGED