@sapui5/ts-types 1.105.1 → 1.106.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/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 +25 -25
- package/types/sap.esh.search.ui.d.ts +111 -1
- package/types/sap.f.d.ts +80 -4
- package/types/sap.fe.common.d.ts +1 -1
- package/types/sap.fe.core.d.ts +4 -4
- package/types/sap.fe.macros.d.ts +23 -95
- package/types/sap.fe.navigation.d.ts +1 -1
- package/types/sap.fe.templates.d.ts +155 -1
- package/types/sap.fe.test.d.ts +17 -3
- package/types/sap.feedback.ui.d.ts +1 -1
- package/types/sap.gantt.d.ts +153 -4
- package/types/sap.insights.d.ts +1 -1
- package/types/sap.landvisz.d.ts +1 -1
- package/types/sap.m.d.ts +387 -103
- 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 +39 -1
- package/types/sap.sac.grid.d.ts +1 -1
- package/types/sap.suite.ui.commons.d.ts +25 -11
- package/types/sap.suite.ui.generic.template.d.ts +17 -3
- package/types/sap.suite.ui.microchart.d.ts +13 -13
- package/types/sap.tnt.d.ts +3 -3
- package/types/sap.ui.codeeditor.d.ts +1 -1
- package/types/sap.ui.commons.d.ts +31 -31
- package/types/sap.ui.comp.d.ts +110 -36
- package/types/sap.ui.core.d.ts +426 -225
- 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 +3 -3
- package/types/sap.ui.generic.app.d.ts +6 -2
- package/types/sap.ui.generic.template.d.ts +1 -1
- package/types/sap.ui.integration.d.ts +64 -33
- package/types/sap.ui.layout.d.ts +7 -7
- package/types/sap.ui.mdc.d.ts +3 -1
- package/types/sap.ui.richtexteditor.d.ts +2 -2
- package/types/sap.ui.rta.d.ts +3 -1
- package/types/sap.ui.suite.d.ts +5 -5
- package/types/sap.ui.support.d.ts +1 -1
- package/types/sap.ui.table.d.ts +26 -8
- package/types/sap.ui.testrecorder.d.ts +1 -1
- package/types/sap.ui.unified.d.ts +16 -16
- package/types/sap.ui.ux3.d.ts +11 -11
- package/types/sap.ui.vbm.d.ts +3 -3
- package/types/sap.ui.vk.d.ts +44 -6
- package/types/sap.ui.vtm.d.ts +2 -2
- package/types/sap.ui.webc.common.d.ts +1 -1
- package/types/sap.ui.webc.fiori.d.ts +31 -28
- package/types/sap.ui.webc.main.d.ts +132 -104
- package/types/sap.uiext.inbox.d.ts +1 -1
- package/types/sap.ushell.d.ts +7 -3
- package/types/sap.ushell_abap.d.ts +1 -1
- package/types/sap.uxap.d.ts +41 -1
- package/types/sap.viz.d.ts +1 -1
- package/types/sap.webanalytics.core.d.ts +2 -6
- 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
package/types/sap.fe.macros.d.ts
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
// For Library Version: 1.
|
|
1
|
+
// For Library Version: 1.106.0
|
|
2
2
|
|
|
3
3
|
declare namespace sap {
|
|
4
4
|
namespace fe {
|
|
@@ -72,6 +72,19 @@ declare namespace sap {
|
|
|
72
72
|
};
|
|
73
73
|
}
|
|
74
74
|
|
|
75
|
+
interface $MacroAPISettings extends sap.ui.core.$ControlSettings {
|
|
76
|
+
/**
|
|
77
|
+
* Defines the path of the context used in the current page or block.
|
|
78
|
+
* This setting is defined by the framework.
|
|
79
|
+
*/
|
|
80
|
+
contextPath?: string | sap.ui.base.ManagedObject.PropertyBindingInfo;
|
|
81
|
+
|
|
82
|
+
/**
|
|
83
|
+
* Defines the relative path of the property in the metamodel, based on the current contextPath.
|
|
84
|
+
*/
|
|
85
|
+
metaPath?: string | sap.ui.base.ManagedObject.PropertyBindingInfo;
|
|
86
|
+
}
|
|
87
|
+
|
|
75
88
|
interface $ChartSettings extends sap.fe.macros.$MacroAPISettings {
|
|
76
89
|
/**
|
|
77
90
|
* Metadata path to the entitySet or navigationProperty
|
|
@@ -192,19 +205,6 @@ declare namespace sap {
|
|
|
192
205
|
title?: string | sap.ui.base.ManagedObject.PropertyBindingInfo;
|
|
193
206
|
}
|
|
194
207
|
|
|
195
|
-
interface $MacroAPISettings extends sap.ui.core.$ControlSettings {
|
|
196
|
-
/**
|
|
197
|
-
* Defines the path of the context used in the current page or block.
|
|
198
|
-
* This setting is defined by the framework.
|
|
199
|
-
*/
|
|
200
|
-
contextPath?: string | sap.ui.base.ManagedObject.PropertyBindingInfo;
|
|
201
|
-
|
|
202
|
-
/**
|
|
203
|
-
* Defines the relative path of the property in the metamodel, based on the current contextPath.
|
|
204
|
-
*/
|
|
205
|
-
metaPath?: string | sap.ui.base.ManagedObject.PropertyBindingInfo;
|
|
206
|
-
}
|
|
207
|
-
|
|
208
208
|
interface $TableSettings extends sap.fe.macros.$MacroAPISettings {
|
|
209
209
|
/**
|
|
210
210
|
* An expression that allows you to control the 'busy' state of the table.
|
|
@@ -354,76 +354,18 @@ declare namespace sap {
|
|
|
354
354
|
| sap.ui.base.ManagedObject.PropertyBindingInfo;
|
|
355
355
|
}
|
|
356
356
|
|
|
357
|
-
/**
|
|
358
|
-
* @SINCE 1.93.0
|
|
359
|
-
*
|
|
360
|
-
* Building block used specifically in an app using the flexible column layout to add the ‘expand’, ‘reduce’,
|
|
361
|
-
* and ‘close’ action buttons.
|
|
362
|
-
*
|
|
363
|
-
* Usage example:
|
|
364
|
-
* ```javascript
|
|
365
|
-
*
|
|
366
|
-
* <f:DynamicPageTitle id="incidentProcessFlowDynamicPageTitle">
|
|
367
|
-
* <f:navigationActions>
|
|
368
|
-
* <macros:FlexibleColumnLayoutActions />
|
|
369
|
-
* </f:navigationActions>
|
|
370
|
-
* </f:DynamicPageTitle>
|
|
371
|
-
* <macro:FlexibleColumnLayoutActions />
|
|
372
|
-
* ```
|
|
373
|
-
*/
|
|
374
|
-
class FlexibleColumnLayoutActions
|
|
375
|
-
/* was: sap.fe.macros.MacroMetadata */ extends Object {
|
|
376
|
-
constructor();
|
|
377
|
-
}
|
|
378
357
|
/**
|
|
379
358
|
* @SINCE 1.90.0
|
|
380
359
|
*
|
|
381
360
|
* Building block used to create a form element containing a label and a field.
|
|
382
361
|
*/
|
|
383
|
-
class FormElement
|
|
362
|
+
class FormElement {
|
|
384
363
|
constructor();
|
|
385
364
|
}
|
|
386
365
|
/**
|
|
387
|
-
*
|
|
388
|
-
*
|
|
389
|
-
* Building block used to create a MicroChart based on the metadata provided by OData V4.
|
|
390
|
-
*/
|
|
391
|
-
class MicroChart /* was: sap.fe.macros.MacroMetadata */ extends Object {
|
|
392
|
-
constructor();
|
|
393
|
-
}
|
|
394
|
-
/**
|
|
395
|
-
* @SINCE 1.94.0
|
|
396
|
-
*
|
|
397
|
-
* Building block used to create a paginator control.
|
|
398
|
-
*
|
|
399
|
-
* Usage example:
|
|
400
|
-
* ```javascript
|
|
401
|
-
*
|
|
402
|
-
* <macro:Paginator />
|
|
403
|
-
* ```
|
|
404
|
-
*/
|
|
405
|
-
class Paginator /* was: sap.fe.macros.MacroMetadata */ extends Object {
|
|
406
|
-
constructor();
|
|
407
|
-
}
|
|
408
|
-
/**
|
|
409
|
-
* @SINCE 1.93.0
|
|
410
|
-
*
|
|
411
|
-
* Building block used to create the ‘Share’ functionality.
|
|
412
|
-
* Please note that the 'Share in SAP Jam' option is only available on platforms that are integrated with
|
|
413
|
-
* SAP Jam.
|
|
414
|
-
* If you are consuming this macro in an environment where the SAP Fiori launchpad is not available, then
|
|
415
|
-
* the 'Save as Tile' option is not visible.
|
|
416
|
-
*
|
|
417
|
-
* Usage example:
|
|
418
|
-
* ```javascript
|
|
419
|
-
*
|
|
420
|
-
* <macro:Share
|
|
421
|
-
* id="someID"
|
|
422
|
-
* visible="true"
|
|
423
|
-
* />
|
|
424
|
-
* ```
|
|
366
|
+
* Base API control for macros.
|
|
425
367
|
*/
|
|
426
|
-
class
|
|
368
|
+
class MacroAPI extends sap.ui.core.Control {
|
|
427
369
|
constructor();
|
|
428
370
|
}
|
|
429
371
|
/**
|
|
@@ -561,12 +503,6 @@ declare namespace sap {
|
|
|
561
503
|
class Form extends sap.fe.macros.MacroAPI {
|
|
562
504
|
constructor();
|
|
563
505
|
}
|
|
564
|
-
/**
|
|
565
|
-
* Base API control for macros.
|
|
566
|
-
*/
|
|
567
|
-
class MacroAPI extends sap.ui.core.Control {
|
|
568
|
-
constructor();
|
|
569
|
-
}
|
|
570
506
|
/**
|
|
571
507
|
* Building block used to create a table based on the metadata provided by OData V4.
|
|
572
508
|
*
|
|
@@ -705,28 +641,20 @@ declare namespace sap {
|
|
|
705
641
|
}
|
|
706
642
|
|
|
707
643
|
interface IUI5DefineDependencyNames {
|
|
708
|
-
"sap/fe/macros/ChartAPI": undefined;
|
|
644
|
+
"sap/fe/macros/chart/ChartAPI": undefined;
|
|
709
645
|
|
|
710
|
-
"sap/fe/macros/FieldAPI": undefined;
|
|
646
|
+
"sap/fe/macros/field/FieldAPI": undefined;
|
|
711
647
|
|
|
712
|
-
"sap/fe/macros/FilterBarAPI": undefined;
|
|
648
|
+
"sap/fe/macros/filterBar/FilterBarAPI": undefined;
|
|
713
649
|
|
|
714
|
-
"sap/fe/macros/
|
|
650
|
+
"sap/fe/macros/form/FormAPI": undefined;
|
|
715
651
|
|
|
716
|
-
"sap/fe/macros/
|
|
717
|
-
|
|
718
|
-
"sap/fe/macros/FormElement.metadata": undefined;
|
|
652
|
+
"sap/fe/macros/form/FormElement.metadata": undefined;
|
|
719
653
|
|
|
720
654
|
"sap/fe/macros/library": undefined;
|
|
721
655
|
|
|
722
656
|
"sap/fe/macros/MacroAPI": undefined;
|
|
723
657
|
|
|
724
|
-
"sap/fe/macros/
|
|
725
|
-
|
|
726
|
-
"sap/fe/macros/Paginator.metadata": undefined;
|
|
727
|
-
|
|
728
|
-
"sap/fe/macros/Share.metadata": undefined;
|
|
729
|
-
|
|
730
|
-
"sap/fe/macros/TableAPI": undefined;
|
|
658
|
+
"sap/fe/macros/table/TableAPI": undefined;
|
|
731
659
|
}
|
|
732
660
|
}
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
// For Library Version: 1.
|
|
1
|
+
// For Library Version: 1.106.0
|
|
2
2
|
|
|
3
3
|
declare namespace sap {
|
|
4
4
|
namespace fe {
|
|
@@ -171,6 +171,158 @@ 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
|
+
* undefined
|
|
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
|
+
* undefined
|
|
292
|
+
*/
|
|
293
|
+
vPath: undefined | string | string[]
|
|
294
|
+
): Promise<any>;
|
|
295
|
+
/**
|
|
296
|
+
* Remove a dependent control from this SAP Fiori elements page.
|
|
297
|
+
*/
|
|
298
|
+
removeDependent(
|
|
299
|
+
/**
|
|
300
|
+
* Control to be added as a dependent control
|
|
301
|
+
*/
|
|
302
|
+
oControl: sap.ui.core.Control
|
|
303
|
+
): void;
|
|
304
|
+
/**
|
|
305
|
+
* Displays or hides the side content of an object page block.
|
|
306
|
+
*/
|
|
307
|
+
showSideContent(
|
|
308
|
+
/**
|
|
309
|
+
* Key of the side content fragment as defined in the manifest.json
|
|
310
|
+
*/
|
|
311
|
+
sSubSectionKey: string,
|
|
312
|
+
/**
|
|
313
|
+
* undefined
|
|
314
|
+
*/
|
|
315
|
+
bShow: undefined | boolean
|
|
316
|
+
): void;
|
|
317
|
+
/**
|
|
318
|
+
* Triggers an update of the app state.
|
|
319
|
+
* Should be called if the state of a control, or any other state-relevant information, was changed.
|
|
320
|
+
*
|
|
321
|
+
* @returns A promise that resolves with the new app state object.
|
|
322
|
+
*/
|
|
323
|
+
updateAppState(): undefined | Promise<any>;
|
|
324
|
+
}
|
|
325
|
+
}
|
|
174
326
|
}
|
|
175
327
|
}
|
|
176
328
|
|
|
@@ -178,5 +330,7 @@ declare namespace sap {
|
|
|
178
330
|
"sap/fe/templates/library": undefined;
|
|
179
331
|
|
|
180
332
|
"sap/fe/templates/ListReport/ExtensionAPI": undefined;
|
|
333
|
+
|
|
334
|
+
"sap/fe/templates/ObjectPage/ExtensionAPI": undefined;
|
|
181
335
|
}
|
|
182
336
|
}
|
package/types/sap.fe.test.d.ts
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
// For Library Version: 1.
|
|
1
|
+
// For Library Version: 1.106.0
|
|
2
2
|
|
|
3
3
|
declare namespace sap {
|
|
4
4
|
namespace fe {
|
|
@@ -2483,7 +2483,14 @@ declare namespace sap {
|
|
|
2483
2483
|
*
|
|
2484
2484
|
* @returns The available filter bar actions
|
|
2485
2485
|
*/
|
|
2486
|
-
onFilterBar(
|
|
2486
|
+
onFilterBar(
|
|
2487
|
+
/**
|
|
2488
|
+
* The identifier of the filterbar
|
|
2489
|
+
*/
|
|
2490
|
+
vFilterBarIdentifier: /* was: sap.fe.test.api.FilterBarIdentifier */
|
|
2491
|
+
| any
|
|
2492
|
+
| string
|
|
2493
|
+
): sap.fe.test.api.FilterBarActions;
|
|
2487
2494
|
/**
|
|
2488
2495
|
* Returns a {@link sap.fe.test.api.HeaderActionsLR} instance.
|
|
2489
2496
|
*
|
|
@@ -2513,7 +2520,14 @@ declare namespace sap {
|
|
|
2513
2520
|
*
|
|
2514
2521
|
* @returns The available filter bar assertions
|
|
2515
2522
|
*/
|
|
2516
|
-
onFilterBar(
|
|
2523
|
+
onFilterBar(
|
|
2524
|
+
/**
|
|
2525
|
+
* The identifier of the filterbar
|
|
2526
|
+
*/
|
|
2527
|
+
vFilterBarIdentifier: /* was: sap.fe.test.api.FilterBarIdentifier */
|
|
2528
|
+
| any
|
|
2529
|
+
| string
|
|
2530
|
+
): sap.fe.test.api.FilterBarAssertions;
|
|
2517
2531
|
/**
|
|
2518
2532
|
* Returns a {@link sap.fe.test.api.HeaderAssertionsLR} instance.
|
|
2519
2533
|
*
|
package/types/sap.gantt.d.ts
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
// For Library Version: 1.
|
|
1
|
+
// For Library Version: 1.106.0
|
|
2
2
|
|
|
3
3
|
declare namespace sap {
|
|
4
4
|
/**
|
|
@@ -24004,6 +24004,16 @@ declare namespace sap {
|
|
|
24004
24004
|
| sap.ui.base.ManagedObject.PropertyBindingInfo
|
|
24005
24005
|
| `{${string}}`;
|
|
24006
24006
|
|
|
24007
|
+
/**
|
|
24008
|
+
* @EXPERIMENTAL (since 1.106)
|
|
24009
|
+
*
|
|
24010
|
+
* Array of search results displayed on the toolbar and side panel
|
|
24011
|
+
*/
|
|
24012
|
+
customSearchResults?:
|
|
24013
|
+
| any[]
|
|
24014
|
+
| sap.ui.base.ManagedObject.PropertyBindingInfo
|
|
24015
|
+
| `{${string}}`;
|
|
24016
|
+
|
|
24007
24017
|
/**
|
|
24008
24018
|
* Toolbar of the container.
|
|
24009
24019
|
*/
|
|
@@ -24078,6 +24088,16 @@ declare namespace sap {
|
|
|
24078
24088
|
* on the search side panel.
|
|
24079
24089
|
*/
|
|
24080
24090
|
ganttSearchSidePanelList?: (oEvent: sap.ui.base.Event) => void;
|
|
24091
|
+
|
|
24092
|
+
/**
|
|
24093
|
+
* @EXPERIMENTAL (since 1.106)
|
|
24094
|
+
*
|
|
24095
|
+
* The event is fired when the search results are being populated.
|
|
24096
|
+
*
|
|
24097
|
+
* This event enables the application to filter the search results that are shown on the toolbar and side
|
|
24098
|
+
* panel
|
|
24099
|
+
*/
|
|
24100
|
+
customGanttSearchResult?: (oEvent: sap.ui.base.Event) => void;
|
|
24081
24101
|
}
|
|
24082
24102
|
|
|
24083
24103
|
interface $GanttChartWithTableSettings
|
|
@@ -24184,7 +24204,7 @@ declare namespace sap {
|
|
|
24184
24204
|
/**
|
|
24185
24205
|
* @SINCE 1.68
|
|
24186
24206
|
*
|
|
24187
|
-
* Flag whether to show the `nowLine` in UTC or in
|
|
24207
|
+
* Flag whether to show the `nowLine` in UTC or in FLP time.
|
|
24188
24208
|
*/
|
|
24189
24209
|
nowLineInUTC?:
|
|
24190
24210
|
| boolean
|
|
@@ -33738,6 +33758,65 @@ declare namespace sap {
|
|
|
33738
33758
|
*/
|
|
33739
33759
|
oGanttChart: sap.gantt.simple.GanttChartWithTable
|
|
33740
33760
|
): this;
|
|
33761
|
+
/**
|
|
33762
|
+
* @EXPERIMENTAL (since 1.106)
|
|
33763
|
+
*
|
|
33764
|
+
* Attaches event handler `fnFunction` to the {@link #event:customGanttSearchResult customGanttSearchResult}
|
|
33765
|
+
* event of this `sap.gantt.simple.GanttChartContainer`.
|
|
33766
|
+
*
|
|
33767
|
+
* When called, the context of the event handler (its `this`) will be bound to `oListener` if specified,
|
|
33768
|
+
* otherwise it will be bound to this `sap.gantt.simple.GanttChartContainer` itself.
|
|
33769
|
+
*
|
|
33770
|
+
* The event is fired when the search results are being populated.
|
|
33771
|
+
*
|
|
33772
|
+
* This event enables the application to filter the search results that are shown on the toolbar and side
|
|
33773
|
+
* panel
|
|
33774
|
+
*
|
|
33775
|
+
* @returns Reference to `this` in order to allow method chaining
|
|
33776
|
+
*/
|
|
33777
|
+
attachCustomGanttSearchResult(
|
|
33778
|
+
/**
|
|
33779
|
+
* An application-specific payload object that will be passed to the event handler along with the event
|
|
33780
|
+
* object when firing the event
|
|
33781
|
+
*/
|
|
33782
|
+
oData: object,
|
|
33783
|
+
/**
|
|
33784
|
+
* The function to be called when the event occurs
|
|
33785
|
+
*/
|
|
33786
|
+
fnFunction: (p1: sap.ui.base.Event) => void,
|
|
33787
|
+
/**
|
|
33788
|
+
* Context object to call the event handler with. Defaults to this `sap.gantt.simple.GanttChartContainer`
|
|
33789
|
+
* itself
|
|
33790
|
+
*/
|
|
33791
|
+
oListener?: object
|
|
33792
|
+
): this;
|
|
33793
|
+
/**
|
|
33794
|
+
* @EXPERIMENTAL (since 1.106)
|
|
33795
|
+
*
|
|
33796
|
+
* Attaches event handler `fnFunction` to the {@link #event:customGanttSearchResult customGanttSearchResult}
|
|
33797
|
+
* event of this `sap.gantt.simple.GanttChartContainer`.
|
|
33798
|
+
*
|
|
33799
|
+
* When called, the context of the event handler (its `this`) will be bound to `oListener` if specified,
|
|
33800
|
+
* otherwise it will be bound to this `sap.gantt.simple.GanttChartContainer` itself.
|
|
33801
|
+
*
|
|
33802
|
+
* The event is fired when the search results are being populated.
|
|
33803
|
+
*
|
|
33804
|
+
* This event enables the application to filter the search results that are shown on the toolbar and side
|
|
33805
|
+
* panel
|
|
33806
|
+
*
|
|
33807
|
+
* @returns Reference to `this` in order to allow method chaining
|
|
33808
|
+
*/
|
|
33809
|
+
attachCustomGanttSearchResult(
|
|
33810
|
+
/**
|
|
33811
|
+
* The function to be called when the event occurs
|
|
33812
|
+
*/
|
|
33813
|
+
fnFunction: (p1: sap.ui.base.Event) => void,
|
|
33814
|
+
/**
|
|
33815
|
+
* Context object to call the event handler with. Defaults to this `sap.gantt.simple.GanttChartContainer`
|
|
33816
|
+
* itself
|
|
33817
|
+
*/
|
|
33818
|
+
oListener?: object
|
|
33819
|
+
): this;
|
|
33741
33820
|
/**
|
|
33742
33821
|
* Attaches event handler `fnFunction` to the {@link #event:customSettingChange customSettingChange} event
|
|
33743
33822
|
* of this `sap.gantt.simple.GanttChartContainer`.
|
|
@@ -33961,6 +34040,26 @@ declare namespace sap {
|
|
|
33961
34040
|
* @returns Reference to `this` in order to allow method chaining
|
|
33962
34041
|
*/
|
|
33963
34042
|
destroyVariantHandler(): this;
|
|
34043
|
+
/**
|
|
34044
|
+
* @EXPERIMENTAL (since 1.106)
|
|
34045
|
+
*
|
|
34046
|
+
* Detaches event handler `fnFunction` from the {@link #event:customGanttSearchResult customGanttSearchResult}
|
|
34047
|
+
* event of this `sap.gantt.simple.GanttChartContainer`.
|
|
34048
|
+
*
|
|
34049
|
+
* The passed function and listener object must match the ones used for event registration.
|
|
34050
|
+
*
|
|
34051
|
+
* @returns Reference to `this` in order to allow method chaining
|
|
34052
|
+
*/
|
|
34053
|
+
detachCustomGanttSearchResult(
|
|
34054
|
+
/**
|
|
34055
|
+
* The function to be called, when the event occurs
|
|
34056
|
+
*/
|
|
34057
|
+
fnFunction: (p1: sap.ui.base.Event) => void,
|
|
34058
|
+
/**
|
|
34059
|
+
* Context object on which the given function had to be called
|
|
34060
|
+
*/
|
|
34061
|
+
oListener?: object
|
|
34062
|
+
): this;
|
|
33964
34063
|
/**
|
|
33965
34064
|
* Detaches event handler `fnFunction` from the {@link #event:customSettingChange customSettingChange} event
|
|
33966
34065
|
* of this `sap.gantt.simple.GanttChartContainer`.
|
|
@@ -34019,6 +34118,25 @@ declare namespace sap {
|
|
|
34019
34118
|
*/
|
|
34020
34119
|
oListener?: object
|
|
34021
34120
|
): this;
|
|
34121
|
+
/**
|
|
34122
|
+
* @EXPERIMENTAL (since 1.106)
|
|
34123
|
+
*
|
|
34124
|
+
* Fires event {@link #event:customGanttSearchResult customGanttSearchResult} to attached listeners.
|
|
34125
|
+
*
|
|
34126
|
+
* @returns Reference to `this` in order to allow method chaining
|
|
34127
|
+
*/
|
|
34128
|
+
fireCustomGanttSearchResult(
|
|
34129
|
+
/**
|
|
34130
|
+
* Parameters to pass along with the event
|
|
34131
|
+
*/
|
|
34132
|
+
mParameters?: {
|
|
34133
|
+
/**
|
|
34134
|
+
* Array of search results that the application can use to filter results shown on the toolbar and side
|
|
34135
|
+
* panel
|
|
34136
|
+
*/
|
|
34137
|
+
searchResults?: any[];
|
|
34138
|
+
}
|
|
34139
|
+
): this;
|
|
34022
34140
|
/**
|
|
34023
34141
|
* Fires event {@link #event:customSettingChange customSettingChange} to attached listeners.
|
|
34024
34142
|
*
|
|
@@ -34083,6 +34201,18 @@ declare namespace sap {
|
|
|
34083
34201
|
* @returns Value of property `_enableRTA`
|
|
34084
34202
|
*/
|
|
34085
34203
|
get_enableRTA(): boolean;
|
|
34204
|
+
/**
|
|
34205
|
+
* @EXPERIMENTAL (since 1.106)
|
|
34206
|
+
*
|
|
34207
|
+
* Gets current value of property {@link #getCustomSearchResults customSearchResults}.
|
|
34208
|
+
*
|
|
34209
|
+
* Array of search results displayed on the toolbar and side panel
|
|
34210
|
+
*
|
|
34211
|
+
* Default value is `[]`.
|
|
34212
|
+
*
|
|
34213
|
+
* @returns Value of property `customSearchResults`
|
|
34214
|
+
*/
|
|
34215
|
+
getCustomSearchResults(): any[];
|
|
34086
34216
|
/**
|
|
34087
34217
|
* Gets current value of property {@link #getDisplayType displayType}.
|
|
34088
34218
|
*
|
|
@@ -34420,6 +34550,25 @@ declare namespace sap {
|
|
|
34420
34550
|
*/
|
|
34421
34551
|
b_enableRTA?: boolean
|
|
34422
34552
|
): this;
|
|
34553
|
+
/**
|
|
34554
|
+
* @EXPERIMENTAL (since 1.106)
|
|
34555
|
+
*
|
|
34556
|
+
* Sets a new value for property {@link #getCustomSearchResults customSearchResults}.
|
|
34557
|
+
*
|
|
34558
|
+
* Array of search results displayed on the toolbar and side panel
|
|
34559
|
+
*
|
|
34560
|
+
* When called with a value of `null` or `undefined`, the default value of the property will be restored.
|
|
34561
|
+
*
|
|
34562
|
+
* Default value is `[]`.
|
|
34563
|
+
*
|
|
34564
|
+
* @returns Reference to `this` in order to allow method chaining
|
|
34565
|
+
*/
|
|
34566
|
+
setCustomSearchResults(
|
|
34567
|
+
/**
|
|
34568
|
+
* New value for property `customSearchResults`
|
|
34569
|
+
*/
|
|
34570
|
+
sCustomSearchResults?: any[]
|
|
34571
|
+
): this;
|
|
34423
34572
|
/**
|
|
34424
34573
|
* Sets a new value for property {@link #getDisplayType displayType}.
|
|
34425
34574
|
*
|
|
@@ -37015,7 +37164,7 @@ declare namespace sap {
|
|
|
37015
37164
|
*
|
|
37016
37165
|
* Gets current value of property {@link #getNowLineInUTC nowLineInUTC}.
|
|
37017
37166
|
*
|
|
37018
|
-
* Flag whether to show the `nowLine` in UTC or in
|
|
37167
|
+
* Flag whether to show the `nowLine` in UTC or in FLP time.
|
|
37019
37168
|
*
|
|
37020
37169
|
* Default value is `true`.
|
|
37021
37170
|
*
|
|
@@ -38347,7 +38496,7 @@ declare namespace sap {
|
|
|
38347
38496
|
*
|
|
38348
38497
|
* Sets a new value for property {@link #getNowLineInUTC nowLineInUTC}.
|
|
38349
38498
|
*
|
|
38350
|
-
* Flag whether to show the `nowLine` in UTC or in
|
|
38499
|
+
* Flag whether to show the `nowLine` in UTC or in FLP time.
|
|
38351
38500
|
*
|
|
38352
38501
|
* When called with a value of `null` or `undefined`, the default value of the property will be restored.
|
|
38353
38502
|
*
|
package/types/sap.insights.d.ts
CHANGED
package/types/sap.landvisz.d.ts
CHANGED