@sapui5/ts-types 1.114.0 → 1.115.1
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 +2 -0
- package/types/sap.apf.d.ts +2 -2
- package/types/sap.ca.ui.d.ts +135 -67
- package/types/sap.chart.d.ts +216 -144
- package/types/sap.collaboration.d.ts +80 -78
- package/types/sap.esh.search.ui.d.ts +93 -1
- package/types/sap.f.d.ts +1987 -1517
- package/types/sap.fe.core.d.ts +95 -209
- package/types/sap.fe.macros.d.ts +112 -10
- package/types/sap.fe.navigation.d.ts +39 -32
- package/types/sap.fe.placeholder.d.ts +3 -0
- package/types/sap.fe.templates.d.ts +10 -278
- package/types/sap.fe.test.d.ts +7 -13
- package/types/sap.fe.tools.d.ts +3 -0
- package/types/sap.feedback.ui.d.ts +1 -1
- package/types/sap.gantt.d.ts +1716 -1087
- package/types/sap.insights.d.ts +1 -1
- package/types/sap.landvisz.d.ts +35 -9
- package/types/sap.m.d.ts +26776 -22688
- package/types/sap.makit.d.ts +87 -28
- package/types/sap.me.d.ts +166 -74
- package/types/sap.ndc.d.ts +115 -43
- package/types/sap.ovp.d.ts +1 -2
- package/types/sap.rules.ui.d.ts +43 -19
- package/types/sap.sac.df.d.ts +3 -3
- package/types/sap.suite.ui.commons.d.ts +2056 -1282
- package/types/sap.suite.ui.generic.template.d.ts +99 -102
- package/types/sap.suite.ui.microchart.d.ts +503 -322
- package/types/sap.tnt.d.ts +160 -86
- package/types/sap.ui.codeeditor.d.ts +64 -38
- package/types/sap.ui.commons.d.ts +1377 -793
- package/types/sap.ui.comp.d.ts +4158 -2831
- package/types/sap.ui.core.d.ts +6006 -3642
- package/types/sap.ui.dt.d.ts +1 -1
- package/types/sap.ui.export.d.ts +71 -53
- package/types/sap.ui.fl.d.ts +162 -97
- package/types/sap.ui.generic.app.d.ts +40 -39
- package/types/sap.ui.generic.template.d.ts +1 -1
- package/types/sap.ui.integration.d.ts +497 -373
- package/types/sap.ui.layout.d.ts +598 -631
- package/types/sap.ui.mdc.d.ts +21985 -6
- package/types/sap.ui.richtexteditor.d.ts +107 -70
- package/types/sap.ui.rta.d.ts +7 -8
- package/types/sap.ui.suite.d.ts +29 -14
- package/types/sap.ui.support.d.ts +15 -17
- package/types/sap.ui.table.d.ts +910 -628
- package/types/sap.ui.testrecorder.d.ts +1 -1
- package/types/sap.ui.unified.d.ts +1775 -1166
- package/types/sap.ui.ux3.d.ts +1469 -759
- package/types/sap.ui.vbm.d.ts +1262 -710
- package/types/sap.ui.vk.d.ts +2981 -1751
- package/types/sap.ui.vtm.d.ts +704 -457
- package/types/sap.ui.webc.common.d.ts +9 -9
- package/types/sap.ui.webc.fiori.d.ts +812 -448
- package/types/sap.ui.webc.main.d.ts +2045 -1068
- package/types/sap.uiext.inbox.d.ts +168 -41
- package/types/sap.ushell.d.ts +722 -424
- package/types/sap.ushell_abap.d.ts +1 -1
- package/types/sap.uxap.d.ts +469 -343
- package/types/sap.viz.d.ts +2196 -833
- package/types/sap.webanalytics.core.d.ts +1 -1
- package/types/sap.zen.commons.d.ts +5 -5
- package/types/sap.zen.crosstab.d.ts +1 -1
- package/types/sap.zen.dsh.d.ts +147 -81
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
// For Library Version: 1.
|
|
1
|
+
// For Library Version: 1.115.1
|
|
2
2
|
|
|
3
3
|
declare namespace sap {
|
|
4
4
|
namespace suite {
|
|
@@ -105,7 +105,7 @@ declare namespace sap {
|
|
|
105
105
|
* Secured execution of the given function. Ensures that the function is only executed when certain conditions
|
|
106
106
|
* are fulfilled.
|
|
107
107
|
* See:
|
|
108
|
-
* {@link topic
|
|
108
|
+
* {@link https://ui5.sap.com/#/topic/6a39150ad3e548a8b5304d32d560790a Using the SecuredExecutionMethod}
|
|
109
109
|
*
|
|
110
110
|
* @returns A `Promise` that is rejected, if execution is prohibited, and settled equivalent to the one
|
|
111
111
|
* returned by fnFunction.
|
|
@@ -202,7 +202,7 @@ declare namespace sap {
|
|
|
202
202
|
*/
|
|
203
203
|
interface controllerFrameworkExtensions {
|
|
204
204
|
/**
|
|
205
|
-
* @
|
|
205
|
+
* @ui5-protected Do not call from applications (only from related classes in the framework)
|
|
206
206
|
*
|
|
207
207
|
* This method is called by SAP Fiori elements before triggering an external navigation. Application developers
|
|
208
208
|
* can override this method and programmatically adapt the parameters which are passed to the target application.
|
|
@@ -229,14 +229,14 @@ declare namespace sap {
|
|
|
229
229
|
}
|
|
230
230
|
): void;
|
|
231
231
|
/**
|
|
232
|
-
* @
|
|
232
|
+
* @ui5-protected Do not call from applications (only from related classes in the framework)
|
|
233
233
|
*
|
|
234
234
|
* This method is called by SAP Fiori elements whenever the busy state is switched off. Application developers
|
|
235
235
|
* can override this method, access the message model and adapt the transient messages related to the component.
|
|
236
236
|
*/
|
|
237
237
|
adaptTransientMessageExtension(): void;
|
|
238
238
|
/**
|
|
239
|
-
* @
|
|
239
|
+
* @ui5-protected Do not call from applications (only from related classes in the framework)
|
|
240
240
|
*
|
|
241
241
|
* This method is called by SAP Fiori elements when a smart link in a table is clicked. Application developers
|
|
242
242
|
* can override this method and invoke the oParams.getSourceInfo method to find out the information about
|
|
@@ -264,7 +264,7 @@ declare namespace sap {
|
|
|
264
264
|
}
|
|
265
265
|
): boolean;
|
|
266
266
|
/**
|
|
267
|
-
* @
|
|
267
|
+
* @ui5-protected Do not call from applications (only from related classes in the framework)
|
|
268
268
|
*
|
|
269
269
|
* This method is called by SAP Fiori elements before persisting the AppState. Application developers can
|
|
270
270
|
* override this method for persisting the state of custom controls. State of the custom control (controls)
|
|
@@ -278,7 +278,7 @@ declare namespace sap {
|
|
|
278
278
|
oCustomData: object
|
|
279
279
|
): void;
|
|
280
280
|
/**
|
|
281
|
-
* @
|
|
281
|
+
* @ui5-protected Do not call from applications (only from related classes in the framework)
|
|
282
282
|
*
|
|
283
283
|
* This method is called in the AppState creation lifecycle. Application developers can override this method,
|
|
284
284
|
* return an array of all selection fields set on SmartFilterBar using custom code as default and doesn't
|
|
@@ -290,7 +290,7 @@ declare namespace sap {
|
|
|
290
290
|
*/
|
|
291
291
|
getVisibleSelectionsWithDefaults(): any[];
|
|
292
292
|
/**
|
|
293
|
-
* @
|
|
293
|
+
* @ui5-protected Do not call from applications (only from related classes in the framework)
|
|
294
294
|
*
|
|
295
295
|
* This method is called by SAP Fiori elements in the startup life cycle of a component. Application developers
|
|
296
296
|
* can override this method and modify the startup object. For an example, when the application is started,
|
|
@@ -315,12 +315,12 @@ declare namespace sap {
|
|
|
315
315
|
}
|
|
316
316
|
): void;
|
|
317
317
|
/**
|
|
318
|
-
* @
|
|
318
|
+
* @ui5-protected Do not call from applications (only from related classes in the framework)
|
|
319
319
|
*
|
|
320
320
|
* This method is called by SAP Fiori elements when the table data is getting exported. Application developers
|
|
321
321
|
* can override this method to add/remove the filters in the exported file.
|
|
322
322
|
*
|
|
323
|
-
* To add new filter entries to the exported file, create an instance of {@link sap.ui.export.util.Filter}
|
|
323
|
+
* To add new filter entries to the exported file, create an instance of {@link sap.ui.export.util.Filter }
|
|
324
324
|
* and add it to "oExportParams.filterSettings"
|
|
325
325
|
*/
|
|
326
326
|
onBeforeExportTableExtension(
|
|
@@ -340,7 +340,7 @@ declare namespace sap {
|
|
|
340
340
|
}
|
|
341
341
|
): void;
|
|
342
342
|
/**
|
|
343
|
-
* @
|
|
343
|
+
* @ui5-protected Do not call from applications (only from related classes in the framework)
|
|
344
344
|
*
|
|
345
345
|
* This method is called by SAP Fiori elements before binding a chart. Application developers can override
|
|
346
346
|
* this method and programmatically modify parameters or filters before chart triggers a query to retrieve
|
|
@@ -355,7 +355,7 @@ declare namespace sap {
|
|
|
355
355
|
oEvent: sap.ui.base.Event
|
|
356
356
|
): void;
|
|
357
357
|
/**
|
|
358
|
-
* @
|
|
358
|
+
* @ui5-protected Do not call from applications (only from related classes in the framework)
|
|
359
359
|
*
|
|
360
360
|
* This method is called by SAP Fiori elements before binding a filterable KPI. Application developers can
|
|
361
361
|
* override this method to modify parameters or filters for a filterable KPI.
|
|
@@ -375,7 +375,7 @@ declare namespace sap {
|
|
|
375
375
|
sKPIId: string
|
|
376
376
|
): void;
|
|
377
377
|
/**
|
|
378
|
-
* @
|
|
378
|
+
* @ui5-protected Do not call from applications (only from related classes in the framework)
|
|
379
379
|
*
|
|
380
380
|
* This method is called by SAP Fiori elements before binding a table. Application developers can override
|
|
381
381
|
* this method and programmatically modify parameters or filters before the table triggers a query to retrieve
|
|
@@ -390,7 +390,7 @@ declare namespace sap {
|
|
|
390
390
|
oEvent: sap.ui.base.Event
|
|
391
391
|
): void;
|
|
392
392
|
/**
|
|
393
|
-
* @
|
|
393
|
+
* @ui5-protected Do not call from applications (only from related classes in the framework)
|
|
394
394
|
*
|
|
395
395
|
* This method is called by SAP Fiori elements before binding a visual filter. Application developers can
|
|
396
396
|
* override this method and programmatically modify parameters, filters, or influence sorting before the
|
|
@@ -434,7 +434,7 @@ declare namespace sap {
|
|
|
434
434
|
}
|
|
435
435
|
): void;
|
|
436
436
|
/**
|
|
437
|
-
* @
|
|
437
|
+
* @ui5-protected Do not call from applications (only from related classes in the framework)
|
|
438
438
|
*
|
|
439
439
|
* This method should be implemented whenever application uses onListNavigationExtension for internal navigation.
|
|
440
440
|
* In this case the implementation of this method should provide an 'inverse' mapping to the transformation
|
|
@@ -467,7 +467,7 @@ declare namespace sap {
|
|
|
467
467
|
fnSetPath: Function
|
|
468
468
|
): void;
|
|
469
469
|
/**
|
|
470
|
-
* @
|
|
470
|
+
* @ui5-protected Do not call from applications (only from related classes in the framework)
|
|
471
471
|
*
|
|
472
472
|
* This method is called by SAP Fiori elements when the Clear button on the filter dialog is clicked. Application
|
|
473
473
|
* developers can override this method to clear custom filters.
|
|
@@ -479,14 +479,14 @@ declare namespace sap {
|
|
|
479
479
|
oEvent: sap.ui.base.Event
|
|
480
480
|
): void;
|
|
481
481
|
/**
|
|
482
|
-
* @
|
|
482
|
+
* @ui5-protected Do not call from applications (only from related classes in the framework)
|
|
483
483
|
*
|
|
484
484
|
* This method is called by Fiori elements on the initialization of View. Application developers can override
|
|
485
485
|
* this method & perform internal setup in this hook.
|
|
486
486
|
*/
|
|
487
487
|
onInit(): void;
|
|
488
488
|
/**
|
|
489
|
-
* @
|
|
489
|
+
* @ui5-protected Do not call from applications (only from related classes in the framework)
|
|
490
490
|
*
|
|
491
491
|
* This method is called by SAP Fiori elements once the smart filter bar is initialized with a variant.
|
|
492
492
|
* Application developers can override this method when there is a custom filter field bound outside the
|
|
@@ -499,7 +499,7 @@ declare namespace sap {
|
|
|
499
499
|
oEvent: sap.ui.base.Event
|
|
500
500
|
): void;
|
|
501
501
|
/**
|
|
502
|
-
* @
|
|
502
|
+
* @ui5-protected Do not call from applications (only from related classes in the framework)
|
|
503
503
|
*
|
|
504
504
|
* This method is called when the user leaves the app and this page has been displayed within the same app
|
|
505
505
|
* session (this is the time since last opening the app) at least once. Moreover, it is called for all pages
|
|
@@ -517,12 +517,11 @@ declare namespace sap {
|
|
|
517
517
|
bIsDestroyed: boolean
|
|
518
518
|
): Function;
|
|
519
519
|
/**
|
|
520
|
-
* @
|
|
520
|
+
* @ui5-protected Do not call from applications (only from related classes in the framework)
|
|
521
521
|
*
|
|
522
522
|
* This method is called by SAP Fiori elements when a chevron navigation is triggered from a table. Application
|
|
523
523
|
* developers can override this method and perform conditional (internal or external) navigation from different
|
|
524
|
-
* rows of a table. Such custom navigation should be triggered via corresponding methods of {@link sap.suite.ui.generic.template.extensionAPI.NavigationController
|
|
525
|
-
* NavigationController}.
|
|
524
|
+
* rows of a table. Such custom navigation should be triggered via corresponding methods of {@link sap.suite.ui.generic.template.extensionAPI.NavigationController NavigationController}.
|
|
526
525
|
*
|
|
527
526
|
* @returns Method should return `true` if framework navigation should be suppressed (that means: extension
|
|
528
527
|
* code has taken over navigation)
|
|
@@ -544,7 +543,7 @@ declare namespace sap {
|
|
|
544
543
|
bReplaceInHistory: boolean
|
|
545
544
|
): boolean;
|
|
546
545
|
/**
|
|
547
|
-
* @
|
|
546
|
+
* @ui5-protected Do not call from applications (only from related classes in the framework)
|
|
548
547
|
*
|
|
549
548
|
* This method is called by SAP Fiori elements when the Share functionality is triggered. Application developers
|
|
550
549
|
* can adapt the service URL passed as a parameter to this method. Adapted service URL will be used in the
|
|
@@ -562,7 +561,7 @@ declare namespace sap {
|
|
|
562
561
|
}
|
|
563
562
|
): void;
|
|
564
563
|
/**
|
|
565
|
-
* @
|
|
564
|
+
* @ui5-protected Do not call from applications (only from related classes in the framework)
|
|
566
565
|
*
|
|
567
566
|
* This method is called by SAP Fiori elements while applying the AppState. This method should be overridden
|
|
568
567
|
* with `getCustomAppStateDataExtension`. The custom data retrieved from the AppState will be passed as
|
|
@@ -576,7 +575,6 @@ declare namespace sap {
|
|
|
576
575
|
oCustomData: object
|
|
577
576
|
): void;
|
|
578
577
|
}
|
|
579
|
-
const controllerFrameworkExtensions: controllerFrameworkExtensions;
|
|
580
578
|
}
|
|
581
579
|
|
|
582
580
|
namespace Canvas {
|
|
@@ -774,7 +772,7 @@ declare namespace sap {
|
|
|
774
772
|
* Secured execution of the given function. Ensures that the function is only executed when certain conditions
|
|
775
773
|
* are fulfilled.
|
|
776
774
|
* See:
|
|
777
|
-
* {@link topic
|
|
775
|
+
* {@link https://ui5.sap.com/#/topic/6a39150ad3e548a8b5304d32d560790a Using the SecuredExecutionMethod}
|
|
778
776
|
*
|
|
779
777
|
* @returns A `Promise` that is rejected, if execution is prohibited, and settled equivalent to the one
|
|
780
778
|
* returned by fnFunction.
|
|
@@ -898,7 +896,6 @@ declare namespace sap {
|
|
|
898
896
|
mEntitySetToImplementation: undefined
|
|
899
897
|
): void;
|
|
900
898
|
}
|
|
901
|
-
const extensionAPI: extensionAPI;
|
|
902
899
|
|
|
903
900
|
/**
|
|
904
901
|
* Static access to a function that allows a regular UIComponent to be used as a Reuse Component within
|
|
@@ -911,11 +908,11 @@ declare namespace sap {
|
|
|
911
908
|
* By using the mixInto method the existing component is checked if it implements the following functions:
|
|
912
909
|
*
|
|
913
910
|
* - `stStart(oModel, oBindingContext, oExtensionAPI)` - is called when the model and the context is set
|
|
914
|
-
*
|
|
911
|
+
* for the first time above the compoenent
|
|
915
912
|
* - `stRefresh(oModel, oBindingContext, oExtensionAPI)` - is called everytime a new context is set above
|
|
916
|
-
*
|
|
917
|
-
*
|
|
918
|
-
*
|
|
913
|
+
* the component or the page context is forced to be refreshed Note that both functions can be called
|
|
914
|
+
* with `oBindingContext` being empty. This happens in case the page the component is positioned on is opened
|
|
915
|
+
* for creating a new object in a non-draft scenario.
|
|
919
916
|
*/
|
|
920
917
|
mixInto(
|
|
921
918
|
/**
|
|
@@ -943,12 +940,11 @@ declare namespace sap {
|
|
|
943
940
|
bTwoWaySync?: boolean
|
|
944
941
|
): void;
|
|
945
942
|
}
|
|
946
|
-
const ReuseComponentSupport: ReuseComponentSupport;
|
|
947
943
|
|
|
948
944
|
class NavigationController extends sap.ui.base.Object {
|
|
949
945
|
/**
|
|
950
946
|
* API to be used for navigation in extensions of Smart Template Applications. Breakout coding can access
|
|
951
|
-
* an instance of this class via {@link sap.suite.ui.generic.template.ListReport.extensionAPI.ExtensionAPI}
|
|
947
|
+
* an instance of this class via {@link sap.suite.ui.generic.template.ListReport.extensionAPI.ExtensionAPI }
|
|
952
948
|
* or {@link sap.suite.ui.generic.template.ObjectPage.extensionAPI.ExtensionAPI}. Do not instantiate yourself.
|
|
953
949
|
*/
|
|
954
950
|
constructor();
|
|
@@ -1031,7 +1027,7 @@ declare namespace sap {
|
|
|
1031
1027
|
*/
|
|
1032
1028
|
replaceInHistory?: boolean;
|
|
1033
1029
|
/**
|
|
1034
|
-
* This gives the provision to the application developer to
|
|
1030
|
+
* This gives the provision to the application developer to choose between "display"/"edit" mode for target
|
|
1035
1031
|
* page
|
|
1036
1032
|
*/
|
|
1037
1033
|
displayMode?: sap.suite.ui.generic.template.displayMode;
|
|
@@ -1055,7 +1051,7 @@ declare namespace sap {
|
|
|
1055
1051
|
* only needs to be called in the exceptional case that the SmartLink control has been added in a custom
|
|
1056
1052
|
* fragment or a reuse component, since framework takes care for all other cases.
|
|
1057
1053
|
* See:
|
|
1058
|
-
* {@link topic
|
|
1054
|
+
* {@link https://ui5.sap.com/#/topic/3c65f2cc630c472da8328a6f3c193683 Refresh Entity Sets in keep alive mode}
|
|
1059
1055
|
*/
|
|
1060
1056
|
setRefreshBehaviour(
|
|
1061
1057
|
/**
|
|
@@ -1138,6 +1134,8 @@ declare namespace sap {
|
|
|
1138
1134
|
pageDataLoaded?: (oEvent: sap.ui.base.Event) => void;
|
|
1139
1135
|
}
|
|
1140
1136
|
|
|
1137
|
+
interface AppComponent$PageDataLoadedEventParameters {}
|
|
1138
|
+
|
|
1141
1139
|
/**
|
|
1142
1140
|
* Smart Templates Application Component
|
|
1143
1141
|
*/
|
|
@@ -1247,7 +1245,7 @@ declare namespace sap {
|
|
|
1247
1245
|
oListener?: object
|
|
1248
1246
|
): this;
|
|
1249
1247
|
/**
|
|
1250
|
-
* @
|
|
1248
|
+
* @ui5-protected Do not call from applications (only from related classes in the framework)
|
|
1251
1249
|
*
|
|
1252
1250
|
* Fires event {@link #event:pageDataLoaded pageDataLoaded} to attached listeners.
|
|
1253
1251
|
*
|
|
@@ -1547,6 +1545,14 @@ declare namespace sap {
|
|
|
1547
1545
|
bUseColumnLayoutForSmartForm?: boolean
|
|
1548
1546
|
): this;
|
|
1549
1547
|
}
|
|
1548
|
+
|
|
1549
|
+
/**
|
|
1550
|
+
* @deprecated (since 1.115.1) - This name was introduced in 1.115.0, but will be 'AppComponent$PageDataLoadedEventParameters'
|
|
1551
|
+
* in 1.115.1 and any later releases.
|
|
1552
|
+
*/
|
|
1553
|
+
type $AppComponentPageDataLoadedEventParameters = sap.suite.ui.generic.template.lib.AppComponent$PageDataLoadedEventParameters;
|
|
1554
|
+
|
|
1555
|
+
type AppComponent$PageDataLoadedEvent = sap.ui.base.Event<AppComponent$PageDataLoadedEventParameters>;
|
|
1550
1556
|
}
|
|
1551
1557
|
|
|
1552
1558
|
namespace ListReport {
|
|
@@ -1608,7 +1614,7 @@ declare namespace sap {
|
|
|
1608
1614
|
*/
|
|
1609
1615
|
getNavigationController(): sap.suite.ui.generic.template.extensionAPI.NavigationController;
|
|
1610
1616
|
/**
|
|
1611
|
-
* @
|
|
1617
|
+
* @experimental
|
|
1612
1618
|
*
|
|
1613
1619
|
* If switching between different table views is enabled, this function returns the selected key.
|
|
1614
1620
|
*
|
|
@@ -1716,7 +1722,7 @@ declare namespace sap {
|
|
|
1716
1722
|
): void;
|
|
1717
1723
|
/**
|
|
1718
1724
|
* Secured execution of the given function. Ensures that the function is only executed when certain conditions
|
|
1719
|
-
* are fulfilled. For more information, see {@link topic
|
|
1725
|
+
* are fulfilled. For more information, see {@link https://ui5.sap.com/#/topic/6a39150ad3e548a8b5304d32d560790a Using the SecuredExecutionMethod}.
|
|
1720
1726
|
*
|
|
1721
1727
|
* @returns A `Promise` that is rejected, if execution is prohibited, and settled equivalent to the one
|
|
1722
1728
|
* returned by fnFunction.
|
|
@@ -1806,7 +1812,7 @@ declare namespace sap {
|
|
|
1806
1812
|
onClose?: Function
|
|
1807
1813
|
): void;
|
|
1808
1814
|
/**
|
|
1809
|
-
* @
|
|
1815
|
+
* @experimental
|
|
1810
1816
|
*
|
|
1811
1817
|
* If switching between different table views is enabled, this function sets the selected key.
|
|
1812
1818
|
*/
|
|
@@ -1866,7 +1872,7 @@ declare namespace sap {
|
|
|
1866
1872
|
/**
|
|
1867
1873
|
* This method can be called when a new entry with predefined values should be created (e.g. in a copy scenario).
|
|
1868
1874
|
*
|
|
1869
|
-
* @returns a context representing the object to be created. It can be passed to {@link sap.suite.ui.generic.template.extensionAPI.NavigationController#navigateInternal}
|
|
1875
|
+
* @returns a context representing the object to be created. It can be passed to {@link sap.suite.ui.generic.template.extensionAPI.NavigationController#navigateInternal }
|
|
1870
1876
|
* in order to visit the corresponding object page.
|
|
1871
1877
|
*/
|
|
1872
1878
|
createEntry(
|
|
@@ -1906,7 +1912,7 @@ declare namespace sap {
|
|
|
1906
1912
|
*/
|
|
1907
1913
|
interface controllerFrameworkExtensions {
|
|
1908
1914
|
/**
|
|
1909
|
-
* @
|
|
1915
|
+
* @ui5-protected DO NOT USE IN APPLICATIONS (only for related classes in the framework)
|
|
1910
1916
|
*
|
|
1911
1917
|
* Obsolete and not called anymore. Kept here to avoid conflicts (in the very unlikely case, Fiori elements
|
|
1912
1918
|
* would come up with the idea to invent a new extension method with the exact same name some day in future,
|
|
@@ -1930,7 +1936,7 @@ declare namespace sap {
|
|
|
1930
1936
|
getVisibleSelectionsWithDefaults: undefined;
|
|
1931
1937
|
|
|
1932
1938
|
/**
|
|
1933
|
-
* @
|
|
1939
|
+
* @ui5-protected Do not call from applications (only from related classes in the framework)
|
|
1934
1940
|
*
|
|
1935
1941
|
* This method is called by SAP Fiori elements before triggering an external navigation. Application developers
|
|
1936
1942
|
* can override this method and programmatically adapt the parameters which are passed to the target application.
|
|
@@ -1957,14 +1963,14 @@ declare namespace sap {
|
|
|
1957
1963
|
}
|
|
1958
1964
|
): void;
|
|
1959
1965
|
/**
|
|
1960
|
-
* @
|
|
1966
|
+
* @ui5-protected Do not call from applications (only from related classes in the framework)
|
|
1961
1967
|
*
|
|
1962
1968
|
* This method is called by SAP Fiori elements whenever the busy state is switched off. Application developers
|
|
1963
1969
|
* can override this method, access the message model and adapt the transient messages related to the component.
|
|
1964
1970
|
*/
|
|
1965
1971
|
adaptTransientMessageExtension(): void;
|
|
1966
1972
|
/**
|
|
1967
|
-
* @
|
|
1973
|
+
* @ui5-protected Do not call from applications (only from related classes in the framework)
|
|
1968
1974
|
*
|
|
1969
1975
|
* This method is called by SAP Fiori elements when the delete operation is triggered. Application developers
|
|
1970
1976
|
* can override this method in controller extension & perform additional checks before executing the delete
|
|
@@ -1985,7 +1991,7 @@ declare namespace sap {
|
|
|
1985
1991
|
}
|
|
1986
1992
|
): Promise<any>;
|
|
1987
1993
|
/**
|
|
1988
|
-
* @
|
|
1994
|
+
* @ui5-protected Do not call from applications (only from related classes in the framework)
|
|
1989
1995
|
*
|
|
1990
1996
|
* This method should be implemented whenever the application needs to have a custom save functionality
|
|
1991
1997
|
* for multi edit scenario. The logic for save should be defined here and this method should return a promise
|
|
@@ -2012,7 +2018,7 @@ declare namespace sap {
|
|
|
2012
2018
|
}>
|
|
2013
2019
|
): Promise<any>;
|
|
2014
2020
|
/**
|
|
2015
|
-
* @
|
|
2021
|
+
* @ui5-protected Do not call from applications (only from related classes in the framework)
|
|
2016
2022
|
*
|
|
2017
2023
|
* This method is called by SAP Fiori elements when a smart link in a table is clicked. Application developers
|
|
2018
2024
|
* can override this method and invoke the oParams.getSourceInfo method to find out the information about
|
|
@@ -2040,7 +2046,7 @@ declare namespace sap {
|
|
|
2040
2046
|
}
|
|
2041
2047
|
): boolean;
|
|
2042
2048
|
/**
|
|
2043
|
-
* @
|
|
2049
|
+
* @ui5-protected Do not call from applications (only from related classes in the framework)
|
|
2044
2050
|
*
|
|
2045
2051
|
* This method is called by SAP Fiori elements before persisting the AppState. Application developers can
|
|
2046
2052
|
* override this method for persisting the state of custom controls. State of the custom control (controls)
|
|
@@ -2060,8 +2066,7 @@ declare namespace sap {
|
|
|
2060
2066
|
* data available (to allow the target app to select the part it is interested in), and thus the structure
|
|
2061
2067
|
* contained looks quite similar to the iAppState.)
|
|
2062
2068
|
*
|
|
2063
|
-
* For more information, see {@link topic
|
|
2064
|
-
* Bar}.
|
|
2069
|
+
* For more information, see {@link https://ui5.sap.com/#/topic/5fb9f57fcf12401bbe39a635e9a32a4e Adding Custom Fields to the Filter Bar}.
|
|
2065
2070
|
*/
|
|
2066
2071
|
getCustomAppStateDataExtension(
|
|
2067
2072
|
/**
|
|
@@ -2070,7 +2075,7 @@ declare namespace sap {
|
|
|
2070
2075
|
oCustomData: object
|
|
2071
2076
|
): void;
|
|
2072
2077
|
/**
|
|
2073
|
-
* @
|
|
2078
|
+
* @ui5-protected Do not call from applications (only from related classes in the framework)
|
|
2074
2079
|
*
|
|
2075
2080
|
* This method is called by SAP Fiori elements when the Create with Filters is executed. Application developers
|
|
2076
2081
|
* can enable this feature in the LR component by adding createWithFilters in the settings object of the
|
|
@@ -2092,7 +2097,7 @@ declare namespace sap {
|
|
|
2092
2097
|
oDefaultValues: object
|
|
2093
2098
|
): Map<any, any>;
|
|
2094
2099
|
/**
|
|
2095
|
-
* @
|
|
2100
|
+
* @ui5-protected Do not call from applications (only from related classes in the framework)
|
|
2096
2101
|
*
|
|
2097
2102
|
* This method is called by SAP Fiori elements in the startup life cycle of a component. Application developers
|
|
2098
2103
|
* can override this method and modify the startup object. For an example, when the application is started,
|
|
@@ -2125,12 +2130,12 @@ declare namespace sap {
|
|
|
2125
2130
|
}
|
|
2126
2131
|
): void;
|
|
2127
2132
|
/**
|
|
2128
|
-
* @
|
|
2133
|
+
* @ui5-protected Do not call from applications (only from related classes in the framework)
|
|
2129
2134
|
*
|
|
2130
2135
|
* This method is called by SAP Fiori elements when the table data is getting exported. Application developers
|
|
2131
2136
|
* can override this method to add/remove the filters in the exported file.
|
|
2132
2137
|
*
|
|
2133
|
-
* To add new filter entries to the exported file, create an instance of {@link sap.ui.export.util.Filter}
|
|
2138
|
+
* To add new filter entries to the exported file, create an instance of {@link sap.ui.export.util.Filter }
|
|
2134
2139
|
* and add it to "oExportParams.filterSettings"
|
|
2135
2140
|
*/
|
|
2136
2141
|
onBeforeExportTableExtension(
|
|
@@ -2150,14 +2155,13 @@ declare namespace sap {
|
|
|
2150
2155
|
}
|
|
2151
2156
|
): void;
|
|
2152
2157
|
/**
|
|
2153
|
-
* @
|
|
2158
|
+
* @ui5-protected Do not call from applications (only from related classes in the framework)
|
|
2154
2159
|
*
|
|
2155
2160
|
* This method is called by SAP Fiori elements before binding a chart. Application developers can override
|
|
2156
2161
|
* this method and programmatically modify parameters or filters before chart triggers a query to retrieve
|
|
2157
2162
|
* data.
|
|
2158
2163
|
*
|
|
2159
|
-
* For more information, see {@link topic
|
|
2160
|
-
* Bar}.
|
|
2164
|
+
* For more information, see {@link https://ui5.sap.com/#/topic/5fb9f57fcf12401bbe39a635e9a32a4e Adding Custom Fields to the Filter Bar}.
|
|
2161
2165
|
*
|
|
2162
2166
|
* **Note: **This method is called only when a chart is rebound, and not when it is refreshed.
|
|
2163
2167
|
*/
|
|
@@ -2168,14 +2172,13 @@ declare namespace sap {
|
|
|
2168
2172
|
oEvent: sap.ui.base.Event
|
|
2169
2173
|
): void;
|
|
2170
2174
|
/**
|
|
2171
|
-
* @
|
|
2175
|
+
* @ui5-protected Do not call from applications (only from related classes in the framework)
|
|
2172
2176
|
*
|
|
2173
2177
|
* This method is called by SAP Fiori elements before binding a table. Application developers can override
|
|
2174
2178
|
* this method and programmatically modify parameters or filters before the table triggers a query to retrieve
|
|
2175
2179
|
* data.
|
|
2176
2180
|
*
|
|
2177
|
-
* For more information, see {@link topic
|
|
2178
|
-
* Bar}.
|
|
2181
|
+
* For more information, see {@link https://ui5.sap.com/#/topic/5fb9f57fcf12401bbe39a635e9a32a4e Adding Custom Fields to the Filter Bar}.
|
|
2179
2182
|
*
|
|
2180
2183
|
* **Note: **This method is called only when a table is rebound, and not when it is refreshed.
|
|
2181
2184
|
*/
|
|
@@ -2186,7 +2189,7 @@ declare namespace sap {
|
|
|
2186
2189
|
oEvent: sap.ui.base.Event
|
|
2187
2190
|
): void;
|
|
2188
2191
|
/**
|
|
2189
|
-
* @
|
|
2192
|
+
* @ui5-protected Do not call from applications (only from related classes in the framework)
|
|
2190
2193
|
*
|
|
2191
2194
|
* This method should be implemented whenever application uses onListNavigationExtension for internal navigation.
|
|
2192
2195
|
* In this case the implementation of this method should provide an 'inverse' mapping to the transformation
|
|
@@ -2219,14 +2222,14 @@ declare namespace sap {
|
|
|
2219
2222
|
fnSetPath: Function
|
|
2220
2223
|
): void;
|
|
2221
2224
|
/**
|
|
2222
|
-
* @
|
|
2225
|
+
* @ui5-protected Do not call from applications (only from related classes in the framework)
|
|
2223
2226
|
*
|
|
2224
2227
|
* This method is called by SAP Fiori elements on the initialization of View. Application developers can
|
|
2225
2228
|
* override this method & perform internal setup in this hook, It is only called once per View instance.
|
|
2226
2229
|
*/
|
|
2227
2230
|
onInit(): void;
|
|
2228
2231
|
/**
|
|
2229
|
-
* @
|
|
2232
|
+
* @ui5-protected Do not call from applications (only from related classes in the framework)
|
|
2230
2233
|
*
|
|
2231
2234
|
* This method is called by SAP Fiori elements once the smart filter bar is initialized with a variant.
|
|
2232
2235
|
*
|
|
@@ -2236,8 +2239,7 @@ declare namespace sap {
|
|
|
2236
2239
|
* Use this method to provide initial values for your extension filters if they deviate from the initial
|
|
2237
2240
|
* value according to the data type and cannot be provided in the view fragment.
|
|
2238
2241
|
*
|
|
2239
|
-
* For more information, see {@link topic
|
|
2240
|
-
* Bar}.
|
|
2242
|
+
* For more information, see {@link https://ui5.sap.com/#/topic/5fb9f57fcf12401bbe39a635e9a32a4e Adding Custom Fields to the Filter Bar}.
|
|
2241
2243
|
*/
|
|
2242
2244
|
onInitSmartFilterBarExtension(
|
|
2243
2245
|
/**
|
|
@@ -2246,7 +2248,7 @@ declare namespace sap {
|
|
|
2246
2248
|
oEvent: sap.ui.base.Event
|
|
2247
2249
|
): void;
|
|
2248
2250
|
/**
|
|
2249
|
-
* @
|
|
2251
|
+
* @ui5-protected Do not call from applications (only from related classes in the framework)
|
|
2250
2252
|
*
|
|
2251
2253
|
* This method is called when the user leaves the app and this page has been displayed within the same app
|
|
2252
2254
|
* session (this is the time since last opening the app) at least once. Moreover, it is called for all pages
|
|
@@ -2264,12 +2266,11 @@ declare namespace sap {
|
|
|
2264
2266
|
bIsDestroyed: boolean
|
|
2265
2267
|
): Function;
|
|
2266
2268
|
/**
|
|
2267
|
-
* @
|
|
2269
|
+
* @ui5-protected Do not call from applications (only from related classes in the framework)
|
|
2268
2270
|
*
|
|
2269
2271
|
* This method is called by SAP Fiori elements when a chevron navigation is triggered from a table. Application
|
|
2270
2272
|
* developers can override this method and perform conditional (internal or external) navigation from different
|
|
2271
|
-
* rows of a table. Such custom navigation should be triggered via corresponding methods of {@link sap.suite.ui.generic.template.extensionAPI.NavigationController
|
|
2272
|
-
* NavigationController}.
|
|
2273
|
+
* rows of a table. Such custom navigation should be triggered via corresponding methods of {@link sap.suite.ui.generic.template.extensionAPI.NavigationController NavigationController}.
|
|
2273
2274
|
*
|
|
2274
2275
|
* @returns Method should return `true` if framework navigation should be suppressed (that means: extension
|
|
2275
2276
|
* code has taken over navigation)
|
|
@@ -2291,7 +2292,7 @@ declare namespace sap {
|
|
|
2291
2292
|
bReplaceInHistory: boolean
|
|
2292
2293
|
): boolean;
|
|
2293
2294
|
/**
|
|
2294
|
-
* @
|
|
2295
|
+
* @ui5-protected Do not call from applications (only from related classes in the framework)
|
|
2295
2296
|
*
|
|
2296
2297
|
* This method is called by SAP Fiori elements when the Share functionality is triggered. Application developers
|
|
2297
2298
|
* can adapt the service URL passed as a parameter to this method. Adapted service URL will be used in the
|
|
@@ -2309,7 +2310,7 @@ declare namespace sap {
|
|
|
2309
2310
|
}
|
|
2310
2311
|
): void;
|
|
2311
2312
|
/**
|
|
2312
|
-
* @
|
|
2313
|
+
* @ui5-protected Do not call from applications (only from related classes in the framework)
|
|
2313
2314
|
*
|
|
2314
2315
|
* This method is called by SAP Fiori elements while applying the AppState. This method should be overridden
|
|
2315
2316
|
* in combination with `getCustomAppStateDataExtension`. The custom data retrieved from the AppState will
|
|
@@ -2323,8 +2324,7 @@ declare namespace sap {
|
|
|
2323
2324
|
* work). This usage is not recommended! Recommended: When called with an empty object, just return without
|
|
2324
2325
|
* doing anything.
|
|
2325
2326
|
*
|
|
2326
|
-
* For more information, see {@link topic
|
|
2327
|
-
* Bar}.
|
|
2327
|
+
* For more information, see {@link https://ui5.sap.com/#/topic/5fb9f57fcf12401bbe39a635e9a32a4e Adding Custom Fields to the Filter Bar}.
|
|
2328
2328
|
*/
|
|
2329
2329
|
restoreCustomAppStateDataExtension(
|
|
2330
2330
|
/**
|
|
@@ -2333,7 +2333,6 @@ declare namespace sap {
|
|
|
2333
2333
|
oCustomData: object
|
|
2334
2334
|
): void;
|
|
2335
2335
|
}
|
|
2336
|
-
const controllerFrameworkExtensions: controllerFrameworkExtensions;
|
|
2337
2336
|
}
|
|
2338
2337
|
|
|
2339
2338
|
namespace ObjectPage {
|
|
@@ -2441,7 +2440,7 @@ declare namespace sap {
|
|
|
2441
2440
|
fnFunction: Function
|
|
2442
2441
|
): void;
|
|
2443
2442
|
/**
|
|
2444
|
-
* @
|
|
2443
|
+
* @experimental
|
|
2445
2444
|
*
|
|
2446
2445
|
* Cancel the draft. Note that this method only works when you are on the root of a draft. The normal navigation
|
|
2447
2446
|
* which follows the cancellation of a draft is executed. Moreover, note that executing this method will
|
|
@@ -2452,7 +2451,7 @@ declare namespace sap {
|
|
|
2452
2451
|
*/
|
|
2453
2452
|
discardDraft(): Function;
|
|
2454
2453
|
/**
|
|
2455
|
-
* @
|
|
2454
|
+
* @experimental
|
|
2456
2455
|
*
|
|
2457
2456
|
* checks if side effects exist for the given properties or entities and executes them. if there are pending
|
|
2458
2457
|
* changes in the model those pending changes are sent as a patch request with the side effect batch request.
|
|
@@ -2571,7 +2570,7 @@ declare namespace sap {
|
|
|
2571
2570
|
*/
|
|
2572
2571
|
getNavigationController(): sap.suite.ui.generic.template.extensionAPI.NavigationController;
|
|
2573
2572
|
/**
|
|
2574
|
-
* @
|
|
2573
|
+
* @experimental
|
|
2575
2574
|
*
|
|
2576
2575
|
* This function returns the selected key of selected table of Object Page.
|
|
2577
2576
|
*
|
|
@@ -2669,7 +2668,7 @@ declare namespace sap {
|
|
|
2669
2668
|
* methods `provideCustomStateExtension` and `applyCustomStateExtension` have been overridden, such that
|
|
2670
2669
|
* the corresponding state can be stored and restored.
|
|
2671
2670
|
* See:
|
|
2672
|
-
* {@link topic
|
|
2671
|
+
* {@link https://ui5.sap.com/#/topic/89fa878945294931b15a581a99043005 Custom State Handling for Extended Apps}
|
|
2673
2672
|
*
|
|
2674
2673
|
* @returns A `Promise` that is resolved when the changed state is transferred to the URL and the corresponding
|
|
2675
2674
|
* busy session is ended.
|
|
@@ -2719,7 +2718,7 @@ declare namespace sap {
|
|
|
2719
2718
|
* Secured execution of the given function. Ensures that the function is only executed when certain conditions
|
|
2720
2719
|
* are fulfilled.
|
|
2721
2720
|
* See:
|
|
2722
|
-
* {@link topic
|
|
2721
|
+
* {@link https://ui5.sap.com/#/topic/6a39150ad3e548a8b5304d32d560790a Using the SecuredExecutionMethod}
|
|
2723
2722
|
*
|
|
2724
2723
|
* @returns A `Promise` that is rejected, if execution is prohibited, and settled equivalent to the one
|
|
2725
2724
|
* returned by fnFunction.
|
|
@@ -2834,7 +2833,7 @@ declare namespace sap {
|
|
|
2834
2833
|
onClose?: Function
|
|
2835
2834
|
): void;
|
|
2836
2835
|
/**
|
|
2837
|
-
* @
|
|
2836
|
+
* @experimental
|
|
2838
2837
|
*
|
|
2839
2838
|
* This function sets the key in the selected section of the table of Object Page.
|
|
2840
2839
|
*/
|
|
@@ -2928,7 +2927,7 @@ declare namespace sap {
|
|
|
2928
2927
|
/**
|
|
2929
2928
|
* This method can be called when a new entry with predefined values should be created (e.g. in a copy scenario).
|
|
2930
2929
|
*
|
|
2931
|
-
* @returns a context representing the object to be created. It can be passed to {@link sap.suite.ui.generic.template.extensionAPI.NavigationController#navigateInternal}
|
|
2930
|
+
* @returns a context representing the object to be created. It can be passed to {@link sap.suite.ui.generic.template.extensionAPI.NavigationController#navigateInternal }
|
|
2932
2931
|
* in order to visit the corresponding object page.
|
|
2933
2932
|
*/
|
|
2934
2933
|
createEntry(
|
|
@@ -2986,7 +2985,7 @@ declare namespace sap {
|
|
|
2986
2985
|
*/
|
|
2987
2986
|
interface controllerFrameworkExtensions {
|
|
2988
2987
|
/**
|
|
2989
|
-
* @
|
|
2988
|
+
* @ui5-protected Do not call from applications (only from related classes in the framework)
|
|
2990
2989
|
*
|
|
2991
2990
|
* This method is called by SAP Fiori elements before triggering an external navigation. Application developers
|
|
2992
2991
|
* can override this method and programmatically adapt the parameters which are passed to the target application.
|
|
@@ -3013,21 +3012,21 @@ declare namespace sap {
|
|
|
3013
3012
|
}
|
|
3014
3013
|
): void;
|
|
3015
3014
|
/**
|
|
3016
|
-
* @
|
|
3015
|
+
* @ui5-protected Do not call from applications (only from related classes in the framework)
|
|
3017
3016
|
*
|
|
3018
3017
|
* This method is called by SAP Fiori elements whenever the busy state is switched off. Application developers
|
|
3019
3018
|
* can override this method, access the message model and adapt the transient messages related to the component.
|
|
3020
3019
|
*/
|
|
3021
3020
|
adaptTransientMessageExtension(): void;
|
|
3022
3021
|
/**
|
|
3023
|
-
* @
|
|
3022
|
+
* @ui5-protected Do not call from applications (only from related classes in the framework)
|
|
3024
3023
|
*
|
|
3025
3024
|
* This method will be called by SAP Fiori elements while applying the AppState. The custom state object
|
|
3026
3025
|
* retrieved from the AppState will be passed as a parameter to this method. Application developers can
|
|
3027
3026
|
* use this custom state for restoring the state of the custom control. To make a complete functionality,
|
|
3028
3027
|
* this method should be overridden with `provideCustomStateExtension`.
|
|
3029
3028
|
* See:
|
|
3030
|
-
* {@link topic
|
|
3029
|
+
* {@link https://ui5.sap.com/#/topic/89fa878945294931b15a581a99043005 Custom State Handling for Extended Apps}
|
|
3031
3030
|
*/
|
|
3032
3031
|
applyCustomStateExtension(
|
|
3033
3032
|
/**
|
|
@@ -3042,7 +3041,7 @@ declare namespace sap {
|
|
|
3042
3041
|
bIsSameAsLast: boolean
|
|
3043
3042
|
): void;
|
|
3044
3043
|
/**
|
|
3045
|
-
* @
|
|
3044
|
+
* @ui5-protected Do not call from applications (only from related classes in the framework)
|
|
3046
3045
|
*
|
|
3047
3046
|
* This method is called by SAP Fiori element when Delete button on the Object Page is clicked. Application
|
|
3048
3047
|
* developers can override this method & perform additional checks before executing the delete operation.
|
|
@@ -3053,7 +3052,7 @@ declare namespace sap {
|
|
|
3053
3052
|
*/
|
|
3054
3053
|
beforeDeleteExtension(): Promise<any>;
|
|
3055
3054
|
/**
|
|
3056
|
-
* @
|
|
3055
|
+
* @ui5-protected Do not call from applications (only from related classes in the framework)
|
|
3057
3056
|
*
|
|
3058
3057
|
* This method is called when the Delete operation is triggered on a table in the Object Page. Application
|
|
3059
3058
|
* developers can override this method & perform additional checks before executing the delete operation.
|
|
@@ -3080,7 +3079,7 @@ declare namespace sap {
|
|
|
3080
3079
|
}
|
|
3081
3080
|
): Promise<any>;
|
|
3082
3081
|
/**
|
|
3083
|
-
* @
|
|
3082
|
+
* @ui5-protected Do not call from applications (only from related classes in the framework)
|
|
3084
3083
|
*
|
|
3085
3084
|
* This method is called by SAP Fiori elements when Save button is clicked. Application developers can override
|
|
3086
3085
|
* this method & perform additional checks before executing the Save operation. Method is expected to return
|
|
@@ -3091,7 +3090,7 @@ declare namespace sap {
|
|
|
3091
3090
|
*/
|
|
3092
3091
|
beforeSaveExtension(): Promise<any>;
|
|
3093
3092
|
/**
|
|
3094
|
-
* @
|
|
3093
|
+
* @ui5-protected Do not call from applications (only from related classes in the framework)
|
|
3095
3094
|
*
|
|
3096
3095
|
* This method is called by SAP Fiori elements when a smart link in a table or form is clicked. Application
|
|
3097
3096
|
* developers can override this method and invoke the oParams.getSourceInfo method to find out the information
|
|
@@ -3119,12 +3118,12 @@ declare namespace sap {
|
|
|
3119
3118
|
}
|
|
3120
3119
|
): boolean;
|
|
3121
3120
|
/**
|
|
3122
|
-
* @
|
|
3121
|
+
* @ui5-protected Do not call from applications (only from related classes in the framework)
|
|
3123
3122
|
*
|
|
3124
3123
|
* This method is called by SAP Fiori elements when the table data is getting exported. Application developers
|
|
3125
3124
|
* can override this method to add/remove the filters in the exported file.
|
|
3126
3125
|
*
|
|
3127
|
-
* To add new filter entries to the exported file, create an instance of {@link sap.ui.export.util.Filter}
|
|
3126
|
+
* To add new filter entries to the exported file, create an instance of {@link sap.ui.export.util.Filter }
|
|
3128
3127
|
* and add it to "oExportParams.filterSettings"
|
|
3129
3128
|
*/
|
|
3130
3129
|
onBeforeExportTableExtension(
|
|
@@ -3144,7 +3143,7 @@ declare namespace sap {
|
|
|
3144
3143
|
}
|
|
3145
3144
|
): void;
|
|
3146
3145
|
/**
|
|
3147
|
-
* @
|
|
3146
|
+
* @ui5-protected Do not call from applications (only from related classes in the framework)
|
|
3148
3147
|
*
|
|
3149
3148
|
* This method is called by SAP Fiori elements before binding a table. Application developers can override
|
|
3150
3149
|
* this method and programmatically modify parameters or filters before the table triggers a query to retrieve
|
|
@@ -3159,7 +3158,7 @@ declare namespace sap {
|
|
|
3159
3158
|
oEvent: sap.ui.base.Event
|
|
3160
3159
|
): void;
|
|
3161
3160
|
/**
|
|
3162
|
-
* @
|
|
3161
|
+
* @ui5-protected Do not call from applications (only from related classes in the framework)
|
|
3163
3162
|
*
|
|
3164
3163
|
* This method should be implemented whenever application uses onListNavigationExtension for internal navigation.
|
|
3165
3164
|
* In this case the implementation of this method should provide an 'inverse' mapping to the transformation
|
|
@@ -3192,14 +3191,14 @@ declare namespace sap {
|
|
|
3192
3191
|
fnSetPath: Function
|
|
3193
3192
|
): void;
|
|
3194
3193
|
/**
|
|
3195
|
-
* @
|
|
3194
|
+
* @ui5-protected Do not call from applications (only from related classes in the framework)
|
|
3196
3195
|
*
|
|
3197
3196
|
* This method is called by SAP Fiori elements on the initialization of View. Application developers can
|
|
3198
3197
|
* override this method & perform internal setup in this hook.
|
|
3199
3198
|
*/
|
|
3200
3199
|
onInit(): void;
|
|
3201
3200
|
/**
|
|
3202
|
-
* @
|
|
3201
|
+
* @ui5-protected Do not call from applications (only from related classes in the framework)
|
|
3203
3202
|
*
|
|
3204
3203
|
* This method is called when the user leaves the app and this page has been displayed within the same app
|
|
3205
3204
|
* session (this is the time since last opening the app) at least once. Moreover, it is called for all pages
|
|
@@ -3217,12 +3216,11 @@ declare namespace sap {
|
|
|
3217
3216
|
bIsDestroyed: boolean
|
|
3218
3217
|
): Function;
|
|
3219
3218
|
/**
|
|
3220
|
-
* @
|
|
3219
|
+
* @ui5-protected Do not call from applications (only from related classes in the framework)
|
|
3221
3220
|
*
|
|
3222
3221
|
* This method is called by SAP Fiori elements when a chevron navigation is triggered from a table. Application
|
|
3223
3222
|
* developers can override this method and perform conditional (internal or external) navigation from different
|
|
3224
|
-
* rows of a table. Such custom navigation should be triggered via corresponding methods of {@link sap.suite.ui.generic.template.extensionAPI.NavigationController
|
|
3225
|
-
* NavigationController}.
|
|
3223
|
+
* rows of a table. Such custom navigation should be triggered via corresponding methods of {@link sap.suite.ui.generic.template.extensionAPI.NavigationController NavigationController}.
|
|
3226
3224
|
*
|
|
3227
3225
|
* @returns Method should return `true` if framework navigation should be suppressed (that means: extension
|
|
3228
3226
|
* code has taken over navigation)
|
|
@@ -3244,7 +3242,7 @@ declare namespace sap {
|
|
|
3244
3242
|
bReplaceInHistory: boolean
|
|
3245
3243
|
): boolean;
|
|
3246
3244
|
/**
|
|
3247
|
-
* @
|
|
3245
|
+
* @ui5-protected Do not call from applications (only from related classes in the framework)
|
|
3248
3246
|
*
|
|
3249
3247
|
* This method is called by SAP Fiori elements when the Share functionality is triggered. Application developers
|
|
3250
3248
|
* can adapt the service URL passed as a parameter to this method. Adapted service URL will be used in the
|
|
@@ -3262,7 +3260,7 @@ declare namespace sap {
|
|
|
3262
3260
|
}
|
|
3263
3261
|
): void;
|
|
3264
3262
|
/**
|
|
3265
|
-
* @
|
|
3263
|
+
* @ui5-protected Do not call from applications (only from related classes in the framework)
|
|
3266
3264
|
*
|
|
3267
3265
|
* This method is called when the SubSection enters the Viewport first time for an ObjectPage. Method would
|
|
3268
3266
|
* be called again for the same SubSection only in case ObjectPage binding context is changed. Application
|
|
@@ -3277,14 +3275,14 @@ declare namespace sap {
|
|
|
3277
3275
|
oSubSection: sap.uxap.ObjectPageSubSection
|
|
3278
3276
|
): void;
|
|
3279
3277
|
/**
|
|
3280
|
-
* @
|
|
3278
|
+
* @ui5-protected Do not call from applications (only from related classes in the framework)
|
|
3281
3279
|
*
|
|
3282
3280
|
* This method will be called by SAP Fiori elements before persisting the AppState. Application developers
|
|
3283
3281
|
* can override this method for persisting the state of custom controls. State of the custom controls should
|
|
3284
3282
|
* be stored in the oState object passed as a parameter to this method. To make a complete functionality,
|
|
3285
3283
|
* this method should be overridden with `applyCustomStateExtension`.
|
|
3286
3284
|
* See:
|
|
3287
|
-
* {@link topic
|
|
3285
|
+
* {@link https://ui5.sap.com/#/topic/89fa878945294931b15a581a99043005 Custom State Handling for Extended Apps}
|
|
3288
3286
|
*/
|
|
3289
3287
|
provideCustomStateExtension(
|
|
3290
3288
|
/**
|
|
@@ -3293,7 +3291,6 @@ declare namespace sap {
|
|
|
3293
3291
|
oState: object
|
|
3294
3292
|
): void;
|
|
3295
3293
|
}
|
|
3296
|
-
const controllerFrameworkExtensions: controllerFrameworkExtensions;
|
|
3297
3294
|
}
|
|
3298
3295
|
|
|
3299
3296
|
/**
|