@sapui5/ts-types 1.106.1 → 1.107.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/README.md +6 -2
- 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 +1 -1
- package/types/sap.esh.search.ui.d.ts +63 -25
- package/types/sap.f.d.ts +810 -163
- package/types/sap.fe.common.d.ts +1 -1
- package/types/sap.fe.core.d.ts +47 -47
- package/types/sap.fe.macros.d.ts +82 -6
- package/types/sap.fe.navigation.d.ts +1 -1
- package/types/sap.fe.templates.d.ts +51 -4
- package/types/sap.fe.test.d.ts +1 -1
- package/types/sap.feedback.ui.d.ts +1 -1
- package/types/sap.gantt.d.ts +9 -1
- package/types/sap.insights.d.ts +1 -1
- package/types/sap.landvisz.d.ts +1 -1
- package/types/sap.m.d.ts +149 -99
- 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 +301 -1
- package/types/sap.sac.grid.d.ts +1 -1
- package/types/sap.suite.ui.commons.d.ts +2 -37
- package/types/sap.suite.ui.generic.template.d.ts +15 -2
- package/types/sap.suite.ui.microchart.d.ts +1 -1
- package/types/sap.tnt.d.ts +1 -1
- package/types/sap.ui.codeeditor.d.ts +1 -1
- package/types/sap.ui.commons.d.ts +1 -1
- package/types/sap.ui.comp.d.ts +61 -1
- package/types/sap.ui.core.d.ts +443 -147
- package/types/sap.ui.dt.d.ts +1 -1
- package/types/sap.ui.export.d.ts +1 -1
- package/types/sap.ui.fl.d.ts +3 -1
- package/types/sap.ui.generic.app.d.ts +1 -1
- package/types/sap.ui.generic.template.d.ts +1 -1
- package/types/sap.ui.integration.d.ts +195 -19
- package/types/sap.ui.layout.d.ts +1 -1
- package/types/sap.ui.mdc.d.ts +5 -1
- package/types/sap.ui.richtexteditor.d.ts +36 -17
- 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 +7 -7
- 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 +1 -1
- package/types/sap.ui.vtm.d.ts +1 -1
- package/types/sap.ui.webc.common.d.ts +1 -1
- package/types/sap.ui.webc.fiori.d.ts +1 -1
- package/types/sap.ui.webc.main.d.ts +1 -1
- package/types/sap.uiext.inbox.d.ts +1 -1
- package/types/sap.ushell.d.ts +1 -1
- package/types/sap.ushell_abap.d.ts +1 -1
- package/types/sap.uxap.d.ts +36 -1
- package/types/sap.viz.d.ts +1 -1
- package/types/sap.webanalytics.core.d.ts +1 -1
- package/types/sap.zen.commons.d.ts +1 -1
- package/types/sap.zen.crosstab.d.ts +1 -1
- package/types/sap.zen.dsh.d.ts +1 -1
package/types/sap.fe.common.d.ts
CHANGED
package/types/sap.fe.core.d.ts
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
// For Library Version: 1.
|
|
1
|
+
// For Library Version: 1.107.1
|
|
2
2
|
|
|
3
3
|
declare namespace sap {
|
|
4
4
|
/**
|
|
@@ -17,7 +17,6 @@ declare namespace sap {
|
|
|
17
17
|
/**
|
|
18
18
|
* @SINCE 1.90.0
|
|
19
19
|
*
|
|
20
|
-
*
|
|
21
20
|
* A controller extension offering hooks into the edit flow of the application
|
|
22
21
|
*/
|
|
23
22
|
class EditFlow extends sap.ui.core.mvc.ControllerExtension {
|
|
@@ -26,7 +25,6 @@ declare namespace sap {
|
|
|
26
25
|
/**
|
|
27
26
|
* @SINCE 1.90.0
|
|
28
27
|
*
|
|
29
|
-
*
|
|
30
28
|
* Submit the current set of changes and navigate back.
|
|
31
29
|
*
|
|
32
30
|
* @returns Promise resolves once the changes have been saved
|
|
@@ -40,7 +38,6 @@ declare namespace sap {
|
|
|
40
38
|
/**
|
|
41
39
|
* @SINCE 1.90.0
|
|
42
40
|
*
|
|
43
|
-
*
|
|
44
41
|
* Discard the editable document.
|
|
45
42
|
*
|
|
46
43
|
* @returns Promise resolves once editable document has been discarded
|
|
@@ -67,7 +64,6 @@ declare namespace sap {
|
|
|
67
64
|
/**
|
|
68
65
|
* @SINCE 1.90.0
|
|
69
66
|
*
|
|
70
|
-
*
|
|
71
67
|
* Creates a new document.
|
|
72
68
|
*
|
|
73
69
|
* @returns Promise resolves once the object has been created
|
|
@@ -104,7 +100,6 @@ declare namespace sap {
|
|
|
104
100
|
/**
|
|
105
101
|
* @SINCE 1.90.0
|
|
106
102
|
*
|
|
107
|
-
*
|
|
108
103
|
* Deletes the document.
|
|
109
104
|
*
|
|
110
105
|
* @returns Promise resolves once document has been deleted
|
|
@@ -131,7 +126,6 @@ declare namespace sap {
|
|
|
131
126
|
/**
|
|
132
127
|
* @SINCE 1.90.0
|
|
133
128
|
*
|
|
134
|
-
*
|
|
135
129
|
* Creates a draft document for an existing active document.
|
|
136
130
|
*
|
|
137
131
|
* @returns Promise resolves once the editable document is available
|
|
@@ -181,17 +175,33 @@ declare namespace sap {
|
|
|
181
175
|
* For an unbound action, an instance of an OData V4 model must be provided
|
|
182
176
|
*/
|
|
183
177
|
model?: sap.ui.model.odata.v4.ODataModel;
|
|
178
|
+
/**
|
|
179
|
+
* A map of action parameter names and provided values
|
|
180
|
+
*/
|
|
181
|
+
parameterValues?: {
|
|
182
|
+
/**
|
|
183
|
+
* Name of the parameter
|
|
184
|
+
*/
|
|
185
|
+
name: string;
|
|
186
|
+
/**
|
|
187
|
+
* Value of the parameter
|
|
188
|
+
*/
|
|
189
|
+
value: any;
|
|
190
|
+
};
|
|
184
191
|
/**
|
|
185
192
|
* Boolean value indicating whether navigation is required after the action has been executed. Navigation
|
|
186
193
|
* takes place to the context returned by the action
|
|
187
194
|
*/
|
|
188
195
|
requiresNavigation?: boolean;
|
|
196
|
+
/**
|
|
197
|
+
* Skips the action parameter dialog if values are provided for all of them in parameterValues
|
|
198
|
+
*/
|
|
199
|
+
skipParameterDialog?: boolean;
|
|
189
200
|
}
|
|
190
201
|
): Promise<any>;
|
|
191
202
|
/**
|
|
192
203
|
* @SINCE 1.98.0
|
|
193
204
|
*
|
|
194
|
-
*
|
|
195
205
|
* This function can be used to intercept the 'Create' action. You can execute custom coding in this function.
|
|
196
206
|
* The framework waits for the returned promise to be resolved before continuing the 'Create' action.
|
|
197
207
|
* If you reject the promise, the 'Create' action is stopped.
|
|
@@ -220,7 +230,6 @@ declare namespace sap {
|
|
|
220
230
|
/**
|
|
221
231
|
* @SINCE 1.98.0
|
|
222
232
|
*
|
|
223
|
-
*
|
|
224
233
|
* This function can be used to intercept the 'Delete' action. You can execute custom coding in this function.
|
|
225
234
|
* The framework waits for the returned promise to be resolved before continuing the 'Delete' action.
|
|
226
235
|
* If you reject the promise, the 'Delete' action is stopped.
|
|
@@ -245,7 +254,6 @@ declare namespace sap {
|
|
|
245
254
|
/**
|
|
246
255
|
* @SINCE 1.98.0
|
|
247
256
|
*
|
|
248
|
-
*
|
|
249
257
|
* This function can be used to intercept the 'Discard' action. You can execute custom coding in this function.
|
|
250
258
|
* The framework waits for the returned promise to be resolved before continuing the 'Discard' action.
|
|
251
259
|
* If you reject the promise, the 'Discard' action is stopped and the user stays in edit mode.
|
|
@@ -270,7 +278,6 @@ declare namespace sap {
|
|
|
270
278
|
/**
|
|
271
279
|
* @SINCE 1.98.0
|
|
272
280
|
*
|
|
273
|
-
*
|
|
274
281
|
* This function can be used to intercept the 'Edit' action. You can execute custom coding in this function.
|
|
275
282
|
* The framework waits for the returned promise to be resolved before continuing the 'Edit' action.
|
|
276
283
|
* If you reject the promise, the 'Edit' action is stopped and the user stays in display mode.
|
|
@@ -295,7 +302,6 @@ declare namespace sap {
|
|
|
295
302
|
/**
|
|
296
303
|
* @SINCE 1.90.0
|
|
297
304
|
*
|
|
298
|
-
*
|
|
299
305
|
* This function can be used to intercept the 'Save' action. You can execute custom coding in this function.
|
|
300
306
|
* The framework waits for the returned promise to be resolved before continuing the 'Save' action.
|
|
301
307
|
* If you reject the promise, the 'Save' action is stopped and the user stays in edit mode.
|
|
@@ -320,7 +326,6 @@ declare namespace sap {
|
|
|
320
326
|
/**
|
|
321
327
|
* @SINCE 1.90.0
|
|
322
328
|
*
|
|
323
|
-
*
|
|
324
329
|
* Saves a new document after checking it.
|
|
325
330
|
*
|
|
326
331
|
* @returns Promise resolves once save is complete
|
|
@@ -337,9 +342,7 @@ declare namespace sap {
|
|
|
337
342
|
): Promise<any>;
|
|
338
343
|
/**
|
|
339
344
|
* @SINCE 1.90.0
|
|
340
|
-
*
|
|
341
|
-
* @EXPERIMENTAL (since 1.90.0
|
|
342
|
-
* )
|
|
345
|
+
* @EXPERIMENTAL (since 1.90.0)
|
|
343
346
|
*
|
|
344
347
|
* Secured execution of the given function. Ensures that the function is only executed when certain conditions
|
|
345
348
|
* are fulfilled.
|
|
@@ -381,7 +384,6 @@ declare namespace sap {
|
|
|
381
384
|
/**
|
|
382
385
|
* @SINCE 1.90.0
|
|
383
386
|
*
|
|
384
|
-
*
|
|
385
387
|
* Updates the draft status and displays the error messages if there are errors during an update.
|
|
386
388
|
*
|
|
387
389
|
* @returns Promise resolves once draft status has been updated
|
|
@@ -396,12 +398,11 @@ declare namespace sap {
|
|
|
396
398
|
* update operation is completed, so the draft status can be updated.
|
|
397
399
|
*/
|
|
398
400
|
oPromise: Promise<any>
|
|
399
|
-
):
|
|
401
|
+
): Promise<any>;
|
|
400
402
|
}
|
|
401
403
|
/**
|
|
402
404
|
* @SINCE 1.86.0
|
|
403
405
|
*
|
|
404
|
-
*
|
|
405
406
|
* Controller extension providing hooks for intent-based navigation
|
|
406
407
|
*/
|
|
407
408
|
class IntentBasedNavigation extends sap.ui.core.mvc
|
|
@@ -411,7 +412,6 @@ declare namespace sap {
|
|
|
411
412
|
/**
|
|
412
413
|
* @SINCE 1.86.0
|
|
413
414
|
*
|
|
414
|
-
*
|
|
415
415
|
* Provides a hook to customize the {@link sap.fe.navigation.SelectionVariant} related to the intent-based
|
|
416
416
|
* navigation.
|
|
417
417
|
*/
|
|
@@ -437,7 +437,6 @@ declare namespace sap {
|
|
|
437
437
|
/**
|
|
438
438
|
* @SINCE 1.86.0
|
|
439
439
|
*
|
|
440
|
-
*
|
|
441
440
|
* Navigates to an intent defined by an outbound definition in the manifest.
|
|
442
441
|
*/
|
|
443
442
|
navigateOutbound(
|
|
@@ -459,9 +458,7 @@ declare namespace sap {
|
|
|
459
458
|
}
|
|
460
459
|
/**
|
|
461
460
|
* @SINCE 1.90.0
|
|
462
|
-
*
|
|
463
|
-
* @EXPERIMENTAL (since 1.90.0
|
|
464
|
-
* )
|
|
461
|
+
* @EXPERIMENTAL (since 1.90.0)
|
|
465
462
|
*
|
|
466
463
|
* A controller extension offering message handling.
|
|
467
464
|
*/
|
|
@@ -470,9 +467,7 @@ declare namespace sap {
|
|
|
470
467
|
|
|
471
468
|
/**
|
|
472
469
|
* @SINCE 1.90.0
|
|
473
|
-
*
|
|
474
|
-
* @EXPERIMENTAL (since 1.90.0
|
|
475
|
-
* )
|
|
470
|
+
* @EXPERIMENTAL (since 1.90.0)
|
|
476
471
|
*
|
|
477
472
|
* Shows a message dialog with transition messages if there are any.
|
|
478
473
|
* The message dialog is shown as a modal dialog. Once the user confirms the dialog, all transition messages
|
|
@@ -490,7 +485,6 @@ declare namespace sap {
|
|
|
490
485
|
/**
|
|
491
486
|
* @SINCE 1.94.0
|
|
492
487
|
*
|
|
493
|
-
*
|
|
494
488
|
* Controller extension providing hooks for the navigation using paginators
|
|
495
489
|
*/
|
|
496
490
|
class Paginator extends sap.ui.core.mvc.ControllerExtension {
|
|
@@ -499,7 +493,6 @@ declare namespace sap {
|
|
|
499
493
|
/**
|
|
500
494
|
* @SINCE 1.94.0
|
|
501
495
|
*
|
|
502
|
-
*
|
|
503
496
|
* Initiates the paginator control.
|
|
504
497
|
*/
|
|
505
498
|
initialize(
|
|
@@ -515,7 +508,6 @@ declare namespace sap {
|
|
|
515
508
|
/**
|
|
516
509
|
* @SINCE 1.94.0
|
|
517
510
|
*
|
|
518
|
-
*
|
|
519
511
|
* Returns the updated context after the paginator operation.
|
|
520
512
|
*/
|
|
521
513
|
onContextUpdate(
|
|
@@ -528,7 +520,6 @@ declare namespace sap {
|
|
|
528
520
|
/**
|
|
529
521
|
* @SINCE 1.86.0
|
|
530
522
|
*
|
|
531
|
-
*
|
|
532
523
|
* A controller extension offering hooks into the routing flow of the application
|
|
533
524
|
*/
|
|
534
525
|
class Routing extends sap.ui.core.mvc.ControllerExtension {
|
|
@@ -537,7 +528,6 @@ declare namespace sap {
|
|
|
537
528
|
/**
|
|
538
529
|
* @SINCE 1.90.0
|
|
539
530
|
*
|
|
540
|
-
*
|
|
541
531
|
* Allows navigation to a specific context.
|
|
542
532
|
*/
|
|
543
533
|
navigate(
|
|
@@ -564,7 +554,6 @@ declare namespace sap {
|
|
|
564
554
|
/**
|
|
565
555
|
* @SINCE 1.90.0
|
|
566
556
|
*
|
|
567
|
-
*
|
|
568
557
|
* This function is used to intercept the routing event after binding a page.
|
|
569
558
|
* If it is declared as an extension, it allows you to intercept and change the normal flow of binding.
|
|
570
559
|
*
|
|
@@ -580,7 +569,6 @@ declare namespace sap {
|
|
|
580
569
|
/**
|
|
581
570
|
* @SINCE 1.90.0
|
|
582
571
|
*
|
|
583
|
-
*
|
|
584
572
|
* This function is used to intercept the routing event before binding a page.
|
|
585
573
|
* If it is declared as an extension, it allows you to intercept and change the normal flow of binding.
|
|
586
574
|
*
|
|
@@ -596,7 +584,6 @@ declare namespace sap {
|
|
|
596
584
|
/**
|
|
597
585
|
* @SINCE 1.86.0
|
|
598
586
|
*
|
|
599
|
-
*
|
|
600
587
|
* This function can be used to intercept the routing event happening during the normal process of navigating
|
|
601
588
|
* from one page to another.
|
|
602
589
|
* If declared as an extension, it allows you to intercept and change the normal navigation flow.
|
|
@@ -624,7 +611,6 @@ declare namespace sap {
|
|
|
624
611
|
/**
|
|
625
612
|
* @SINCE 1.86.0
|
|
626
613
|
*
|
|
627
|
-
*
|
|
628
614
|
* A controller extension offering hooks into the routing flow of the application
|
|
629
615
|
*/
|
|
630
616
|
class Share extends sap.ui.core.mvc.ControllerExtension {
|
|
@@ -633,7 +619,6 @@ declare namespace sap {
|
|
|
633
619
|
/**
|
|
634
620
|
* @SINCE 1.93.0
|
|
635
621
|
*
|
|
636
|
-
*
|
|
637
622
|
* Adapts the metadata used while sharing the page URL via 'Send Email', 'Share in SAP Jam', and 'Save as
|
|
638
623
|
* Tile'.
|
|
639
624
|
*
|
|
@@ -709,7 +694,6 @@ declare namespace sap {
|
|
|
709
694
|
/**
|
|
710
695
|
* @SINCE 1.93.0
|
|
711
696
|
*
|
|
712
|
-
*
|
|
713
697
|
* Opens the share sheet.
|
|
714
698
|
*/
|
|
715
699
|
openShareSheet(
|
|
@@ -722,7 +706,6 @@ declare namespace sap {
|
|
|
722
706
|
/**
|
|
723
707
|
* @SINCE 1.85.0
|
|
724
708
|
*
|
|
725
|
-
*
|
|
726
709
|
* A controller extension offering hooks for state handling
|
|
727
710
|
* If you need to maintain a specific state for your application, you can use the controller extension.
|
|
728
711
|
*/
|
|
@@ -932,9 +915,7 @@ declare namespace sap {
|
|
|
932
915
|
namespace fpm {
|
|
933
916
|
/**
|
|
934
917
|
* @SINCE 1.92.0
|
|
935
|
-
*
|
|
936
|
-
* @EXPERIMENTAL (since 1.92.0
|
|
937
|
-
* )
|
|
918
|
+
* @EXPERIMENTAL (since 1.92.0)
|
|
938
919
|
*
|
|
939
920
|
* Component that can be used as a wrapper component for custom pages.
|
|
940
921
|
* The component can be used in case you want to use SAP Fiori elements Building Blocks or XML template
|
|
@@ -988,7 +969,6 @@ declare namespace sap {
|
|
|
988
969
|
/**
|
|
989
970
|
* @SINCE 1.90.0
|
|
990
971
|
*
|
|
991
|
-
*
|
|
992
972
|
* Internal base controller class for SAP Fiori elements application.
|
|
993
973
|
* If you want to extend a base controller for your custom page, please use for sap.fe.core.PageController.
|
|
994
974
|
*/
|
|
@@ -998,7 +978,6 @@ declare namespace sap {
|
|
|
998
978
|
/**
|
|
999
979
|
* @SINCE 1.91.0
|
|
1000
980
|
*
|
|
1001
|
-
*
|
|
1002
981
|
* Returns the current app component.
|
|
1003
982
|
*
|
|
1004
983
|
* @returns The app component or, if not found, null
|
|
@@ -1035,7 +1014,6 @@ declare namespace sap {
|
|
|
1035
1014
|
/**
|
|
1036
1015
|
* @SINCE 1.79.0
|
|
1037
1016
|
*
|
|
1038
|
-
*
|
|
1039
1017
|
* Common Extension API for all pages of SAP Fiori elements for OData V4.
|
|
1040
1018
|
*/
|
|
1041
1019
|
class ExtensionAPI extends sap.ui.base.Object {
|
|
@@ -1050,6 +1028,18 @@ declare namespace sap {
|
|
|
1050
1028
|
*/
|
|
1051
1029
|
oControl: sap.ui.core.Control
|
|
1052
1030
|
): void;
|
|
1031
|
+
/**
|
|
1032
|
+
* Retrieves the editFlow controller extension for this page.
|
|
1033
|
+
*
|
|
1034
|
+
* @returns The editFlow controller extension
|
|
1035
|
+
*/
|
|
1036
|
+
getEditFlow(): /* was: sap.fe.core.EditFlow */ any;
|
|
1037
|
+
/**
|
|
1038
|
+
* Retrieves the intentBasedNavigation controller extension for this page.
|
|
1039
|
+
*
|
|
1040
|
+
* @returns The intentBasedNavigation controller extension
|
|
1041
|
+
*/
|
|
1042
|
+
getIntentBasedNavigation(): /* was: sap.fe.core.IntentBasedNavigation */ any;
|
|
1053
1043
|
/**
|
|
1054
1044
|
* Get access to models managed by SAP Fiori elements.
|
|
1055
1045
|
*
|
|
@@ -1077,6 +1067,12 @@ declare namespace sap {
|
|
|
1077
1067
|
*/
|
|
1078
1068
|
sModelName?: string
|
|
1079
1069
|
): undefined | sap.ui.model.Model;
|
|
1070
|
+
/**
|
|
1071
|
+
* Retrieves the routing controller extension for this page.
|
|
1072
|
+
*
|
|
1073
|
+
* @returns The routing controller extension
|
|
1074
|
+
*/
|
|
1075
|
+
getRouting(): /* was: sap.fe.core.Routing */ any;
|
|
1080
1076
|
/**
|
|
1081
1077
|
* Load a fragment and go through the template preprocessor with the current page context.
|
|
1082
1078
|
*
|
|
@@ -1142,7 +1138,6 @@ declare namespace sap {
|
|
|
1142
1138
|
/**
|
|
1143
1139
|
* @SINCE 1.88.0
|
|
1144
1140
|
*
|
|
1145
|
-
*
|
|
1146
1141
|
* Base controller class for your custom page used inside an SAP Fiori elements application.
|
|
1147
1142
|
* This controller provides preconfigured extensions that will ensure you have the basic functionalities
|
|
1148
1143
|
* required to use the building blocks.
|
|
@@ -1153,12 +1148,17 @@ declare namespace sap {
|
|
|
1153
1148
|
/**
|
|
1154
1149
|
* @SINCE 1.91.0
|
|
1155
1150
|
*
|
|
1156
|
-
*
|
|
1157
1151
|
* Returns the current app component.
|
|
1158
1152
|
*
|
|
1159
1153
|
* @returns The app component or, if not found, null
|
|
1160
1154
|
*/
|
|
1161
1155
|
getAppComponent(): sap.fe.core.AppComponent;
|
|
1156
|
+
/**
|
|
1157
|
+
* Get the extension API for the current page.
|
|
1158
|
+
*
|
|
1159
|
+
* @returns The extension API.
|
|
1160
|
+
*/
|
|
1161
|
+
getExtensionAPI(): sap.fe.core.ExtensionAPI;
|
|
1162
1162
|
/**
|
|
1163
1163
|
* Convenience method provided by SAP Fiori elements to enable applications to include the view model by
|
|
1164
1164
|
* name into each controller.
|
package/types/sap.fe.macros.d.ts
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
// For Library Version: 1.
|
|
1
|
+
// For Library Version: 1.107.1
|
|
2
2
|
|
|
3
3
|
declare namespace sap {
|
|
4
4
|
namespace fe {
|
|
@@ -6,6 +6,15 @@ declare namespace sap {
|
|
|
6
6
|
* Library containing the building blocks for SAP Fiori elements.
|
|
7
7
|
*/
|
|
8
8
|
namespace macros {
|
|
9
|
+
/**
|
|
10
|
+
* @SINCE 1.90.0
|
|
11
|
+
*
|
|
12
|
+
* Accepts an object literal `mSettings` that defines initial property values, aggregated and associated
|
|
13
|
+
* objects as well as event handlers. See {@link sap.ui.base.ManagedObject#constructor} for a general description
|
|
14
|
+
* of the syntax of the settings object.
|
|
15
|
+
*/
|
|
16
|
+
export const FormElement: undefined;
|
|
17
|
+
|
|
9
18
|
namespace table {
|
|
10
19
|
/**
|
|
11
20
|
* Definition of a custom action to be used inside the table toolbar
|
|
@@ -355,11 +364,66 @@ declare namespace sap {
|
|
|
355
364
|
}
|
|
356
365
|
|
|
357
366
|
/**
|
|
358
|
-
* @SINCE 1.
|
|
367
|
+
* @SINCE 1.93.0
|
|
368
|
+
*
|
|
369
|
+
* Building block used specifically in an app using the flexible column layout to add the ‘expand’, ‘reduce’,
|
|
370
|
+
* and ‘close’ action buttons.
|
|
371
|
+
*
|
|
372
|
+
* Usage example:
|
|
373
|
+
* ```javascript
|
|
374
|
+
*
|
|
375
|
+
* <f:DynamicPageTitle id="incidentProcessFlowDynamicPageTitle">
|
|
376
|
+
* <f:navigationActions>
|
|
377
|
+
* <macros:FlexibleColumnLayoutActions />
|
|
378
|
+
* </f:navigationActions>
|
|
379
|
+
* </f:DynamicPageTitle>
|
|
380
|
+
* <macro:FlexibleColumnLayoutActions />
|
|
381
|
+
* ```
|
|
382
|
+
*/
|
|
383
|
+
class FlexibleColumnLayoutActions {
|
|
384
|
+
constructor();
|
|
385
|
+
}
|
|
386
|
+
/**
|
|
387
|
+
* @SINCE 1.93.0
|
|
388
|
+
*
|
|
389
|
+
* Building block used to create a MicroChart based on the metadata provided by OData V4.
|
|
390
|
+
*/
|
|
391
|
+
class MicroChart {
|
|
392
|
+
constructor();
|
|
393
|
+
}
|
|
394
|
+
/**
|
|
395
|
+
* @SINCE 1.94.0
|
|
396
|
+
*
|
|
397
|
+
* Building block used to create a paginator control.
|
|
359
398
|
*
|
|
360
|
-
*
|
|
399
|
+
* Usage example:
|
|
400
|
+
* ```javascript
|
|
401
|
+
*
|
|
402
|
+
* <macro:Paginator />
|
|
403
|
+
* ```
|
|
404
|
+
*/
|
|
405
|
+
class Paginator {
|
|
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
|
+
* ```
|
|
361
425
|
*/
|
|
362
|
-
class
|
|
426
|
+
class Share {
|
|
363
427
|
constructor();
|
|
364
428
|
}
|
|
365
429
|
/**
|
|
@@ -458,6 +522,12 @@ declare namespace sap {
|
|
|
458
522
|
class FilterBar extends sap.fe.macros.MacroAPI {
|
|
459
523
|
constructor();
|
|
460
524
|
|
|
525
|
+
/**
|
|
526
|
+
* Get the Active Filters Text Summary for the filter bar.
|
|
527
|
+
*
|
|
528
|
+
* @returns Active filters summary as text
|
|
529
|
+
*/
|
|
530
|
+
getActiveFiltersText(): any;
|
|
461
531
|
/**
|
|
462
532
|
* Set the filter values for the given property in the filter bar.
|
|
463
533
|
* The filter values can be either a single value or an array of values.
|
|
@@ -643,18 +713,24 @@ declare namespace sap {
|
|
|
643
713
|
interface IUI5DefineDependencyNames {
|
|
644
714
|
"sap/fe/macros/chart/ChartAPI": undefined;
|
|
645
715
|
|
|
716
|
+
"sap/fe/macros/fcl/FlexibleColumnLayoutActions.metadata": undefined;
|
|
717
|
+
|
|
646
718
|
"sap/fe/macros/field/FieldAPI": undefined;
|
|
647
719
|
|
|
648
720
|
"sap/fe/macros/filterBar/FilterBarAPI": undefined;
|
|
649
721
|
|
|
650
722
|
"sap/fe/macros/form/FormAPI": undefined;
|
|
651
723
|
|
|
652
|
-
"sap/fe/macros/form/FormElement.metadata": undefined;
|
|
653
|
-
|
|
654
724
|
"sap/fe/macros/library": undefined;
|
|
655
725
|
|
|
656
726
|
"sap/fe/macros/MacroAPI": undefined;
|
|
657
727
|
|
|
728
|
+
"sap/fe/macros/microchart/MicroChart.metadata": undefined;
|
|
729
|
+
|
|
730
|
+
"sap/fe/macros/paginator/Paginator.metadata": undefined;
|
|
731
|
+
|
|
732
|
+
"sap/fe/macros/share/Share.metadata": undefined;
|
|
733
|
+
|
|
658
734
|
"sap/fe/macros/table/TableAPI": undefined;
|
|
659
735
|
}
|
|
660
736
|
}
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
// For Library Version: 1.
|
|
1
|
+
// For Library Version: 1.107.1
|
|
2
2
|
|
|
3
3
|
declare namespace sap {
|
|
4
4
|
namespace fe {
|
|
@@ -10,7 +10,6 @@ declare namespace sap {
|
|
|
10
10
|
/**
|
|
11
11
|
* @SINCE 1.79.0
|
|
12
12
|
*
|
|
13
|
-
*
|
|
14
13
|
* Extension API for list reports on SAP Fiori elements for OData V4.
|
|
15
14
|
*/
|
|
16
15
|
class ExtensionAPI
|
|
@@ -37,6 +36,18 @@ declare namespace sap {
|
|
|
37
36
|
*/
|
|
38
37
|
mFilterConditions: any
|
|
39
38
|
): object;
|
|
39
|
+
/**
|
|
40
|
+
* Retrieves the editFlow controller extension for this page.
|
|
41
|
+
*
|
|
42
|
+
* @returns The editFlow controller extension
|
|
43
|
+
*/
|
|
44
|
+
getEditFlow(): /* was: sap.fe.templates.EditFlow */ any;
|
|
45
|
+
/**
|
|
46
|
+
* Retrieves the intentBasedNavigation controller extension for this page.
|
|
47
|
+
*
|
|
48
|
+
* @returns The intentBasedNavigation controller extension
|
|
49
|
+
*/
|
|
50
|
+
getIntentBasedNavigation(): /* was: sap.fe.templates.IntentBasedNavigation */ any;
|
|
40
51
|
/**
|
|
41
52
|
* Get access to models managed by SAP Fiori elements.
|
|
42
53
|
*
|
|
@@ -64,6 +75,12 @@ declare namespace sap {
|
|
|
64
75
|
*/
|
|
65
76
|
sModelName?: string
|
|
66
77
|
): undefined | sap.ui.model.Model;
|
|
78
|
+
/**
|
|
79
|
+
* Retrieves the routing controller extension for this page.
|
|
80
|
+
*
|
|
81
|
+
* @returns The routing controller extension
|
|
82
|
+
*/
|
|
83
|
+
getRouting(): /* was: sap.fe.templates.Routing */ any;
|
|
67
84
|
/**
|
|
68
85
|
* Gets the list entries currently selected for the displayed control.
|
|
69
86
|
*
|
|
@@ -176,7 +193,6 @@ declare namespace sap {
|
|
|
176
193
|
/**
|
|
177
194
|
* @SINCE 1.79.0
|
|
178
195
|
*
|
|
179
|
-
*
|
|
180
196
|
* Extension API for object pages on SAP Fiori elements for OData V4.
|
|
181
197
|
*/
|
|
182
198
|
class ExtensionAPI
|
|
@@ -198,6 +214,18 @@ declare namespace sap {
|
|
|
198
214
|
* @returns Context bound to the object page
|
|
199
215
|
*/
|
|
200
216
|
getBindingContext(): undefined | object | sap.ui.model.Context;
|
|
217
|
+
/**
|
|
218
|
+
* Retrieves the editFlow controller extension for this page.
|
|
219
|
+
*
|
|
220
|
+
* @returns The editFlow controller extension
|
|
221
|
+
*/
|
|
222
|
+
getEditFlow(): /* was: sap.fe.templates.EditFlow */ any;
|
|
223
|
+
/**
|
|
224
|
+
* Retrieves the intentBasedNavigation controller extension for this page.
|
|
225
|
+
*
|
|
226
|
+
* @returns The intentBasedNavigation controller extension
|
|
227
|
+
*/
|
|
228
|
+
getIntentBasedNavigation(): /* was: sap.fe.templates.IntentBasedNavigation */ any;
|
|
201
229
|
/**
|
|
202
230
|
* Get access to models managed by SAP Fiori elements.
|
|
203
231
|
*
|
|
@@ -225,6 +253,12 @@ declare namespace sap {
|
|
|
225
253
|
*/
|
|
226
254
|
sModelName?: string
|
|
227
255
|
): undefined | sap.ui.model.Model;
|
|
256
|
+
/**
|
|
257
|
+
* Retrieves the routing controller extension for this page.
|
|
258
|
+
*
|
|
259
|
+
* @returns The routing controller extension
|
|
260
|
+
*/
|
|
261
|
+
getRouting(): /* was: sap.fe.templates.Routing */ any;
|
|
228
262
|
/**
|
|
229
263
|
* Gets the list entries currently selected for the table.
|
|
230
264
|
*
|
|
@@ -236,6 +270,10 @@ declare namespace sap {
|
|
|
236
270
|
*/
|
|
237
271
|
sTableId: string
|
|
238
272
|
): any;
|
|
273
|
+
/**
|
|
274
|
+
* Hides the message strip below the anchor bar.
|
|
275
|
+
*/
|
|
276
|
+
hideMessage(): void;
|
|
239
277
|
/**
|
|
240
278
|
* Load a fragment and go through the template preprocessor with the current page context.
|
|
241
279
|
*
|
|
@@ -302,7 +340,16 @@ declare namespace sap {
|
|
|
302
340
|
oControl: sap.ui.core.Control
|
|
303
341
|
): void;
|
|
304
342
|
/**
|
|
305
|
-
* Displays
|
|
343
|
+
* Displays the message strip below the anchor bar.
|
|
344
|
+
*/
|
|
345
|
+
showMessages(
|
|
346
|
+
/**
|
|
347
|
+
* The message to be displayed
|
|
348
|
+
*/
|
|
349
|
+
messages: sap.ui.core.message.Message[]
|
|
350
|
+
): Promise<any>;
|
|
351
|
+
/**
|
|
352
|
+
* Displays or hides the side content of an object page.
|
|
306
353
|
*/
|
|
307
354
|
showSideContent(
|
|
308
355
|
/**
|
package/types/sap.fe.test.d.ts
CHANGED
package/types/sap.gantt.d.ts
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
// For Library Version: 1.
|
|
1
|
+
// For Library Version: 1.107.0
|
|
2
2
|
|
|
3
3
|
declare namespace sap {
|
|
4
4
|
/**
|
|
@@ -20793,6 +20793,8 @@ declare namespace sap {
|
|
|
20793
20793
|
): this;
|
|
20794
20794
|
}
|
|
20795
20795
|
/**
|
|
20796
|
+
* @deprecated (since 1.64)
|
|
20797
|
+
*
|
|
20796
20798
|
* List Legend is a legend template that contains a list of shapes. You can use this class to define a list
|
|
20797
20799
|
* legend.
|
|
20798
20800
|
*/
|
|
@@ -37208,6 +37210,12 @@ declare namespace sap {
|
|
|
37208
37210
|
* @returns Value of property `relationshipShapeSize`
|
|
37209
37211
|
*/
|
|
37210
37212
|
getRelationshipShapeSize(): sap.gantt.simple.relationshipShapeSize;
|
|
37213
|
+
/**
|
|
37214
|
+
* Get the shape IDs for selected shapes in the gantt chart.
|
|
37215
|
+
*
|
|
37216
|
+
* @returns Array of shape IDs
|
|
37217
|
+
*/
|
|
37218
|
+
getSelectedShapeId(): Object[];
|
|
37211
37219
|
/**
|
|
37212
37220
|
* Get selected shapes in gantt chart.
|
|
37213
37221
|
*
|
package/types/sap.insights.d.ts
CHANGED
package/types/sap.landvisz.d.ts
CHANGED