@sapui5/ts-types 1.94.1 → 1.97.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/index.d.ts +1 -0
- package/types/sap.apf.d.ts +6 -6
- 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 +235 -1
- package/types/sap.f.d.ts +310 -40
- package/types/sap.fe.common.d.ts +1 -1
- package/types/sap.fe.core.d.ts +102 -1
- package/types/sap.fe.macros.d.ts +36 -12
- package/types/sap.fe.navigation.d.ts +1 -1
- package/types/sap.fe.placeholder.d.ts +1 -1
- package/types/sap.fe.plugins.d.ts +1 -1
- package/types/sap.fe.semantics.d.ts +1 -1
- package/types/sap.fe.templates.d.ts +2 -2
- package/types/sap.fe.test.d.ts +89 -4
- package/types/sap.fe.tools.d.ts +1 -1
- package/types/sap.feedback.ui.d.ts +1 -1
- package/types/sap.gantt.d.ts +1236 -44
- package/types/sap.landvisz.d.ts +1 -1
- package/types/sap.m.d.ts +1132 -159
- package/types/sap.makit.d.ts +1 -1
- package/types/sap.me.d.ts +1 -1
- package/types/sap.ndc.d.ts +21 -29
- package/types/sap.ovp.d.ts +44 -1
- package/types/sap.rules.ui.d.ts +1 -1
- package/types/sap.sac.grid.d.ts +635 -0
- package/types/sap.suite.ui.commons.d.ts +177 -3
- package/types/sap.suite.ui.generic.template.d.ts +61 -18
- package/types/sap.suite.ui.microchart.d.ts +1 -1
- package/types/sap.tnt.d.ts +11 -12
- package/types/sap.ui.codeeditor.d.ts +35 -31
- package/types/sap.ui.commons.d.ts +1 -1
- package/types/sap.ui.comp.d.ts +457 -26
- package/types/sap.ui.core.d.ts +1076 -474
- package/types/sap.ui.dt.d.ts +1 -1
- package/types/sap.ui.export.d.ts +119 -69
- package/types/sap.ui.fl.d.ts +3 -3
- 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 +273 -1
- package/types/sap.ui.layout.d.ts +19 -1
- package/types/sap.ui.mdc.d.ts +70 -10
- package/types/sap.ui.richtexteditor.d.ts +1 -1
- package/types/sap.ui.rta.d.ts +5 -11
- package/types/sap.ui.suite.d.ts +1 -1
- package/types/sap.ui.support.d.ts +6 -6
- package/types/sap.ui.table.d.ts +9 -6
- package/types/sap.ui.testrecorder.d.ts +1 -1
- package/types/sap.ui.unified.d.ts +182 -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 +972 -202
- package/types/sap.ui.vtm.d.ts +2 -1
- package/types/sap.uiext.inbox.d.ts +2 -1
- package/types/sap.ushell.d.ts +130 -58
- package/types/sap.ushell_abap.d.ts +2 -2
- package/types/sap.uxap.d.ts +1 -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 +53 -34
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
// For Library Version: 1.
|
|
1
|
+
// For Library Version: 1.97.0
|
|
2
2
|
|
|
3
3
|
declare namespace sap {
|
|
4
4
|
namespace suite {
|
|
@@ -8310,7 +8310,11 @@ declare namespace sap {
|
|
|
8310
8310
|
/**
|
|
8311
8311
|
* icon to render
|
|
8312
8312
|
*/
|
|
8313
|
-
sIcon: undefined
|
|
8313
|
+
sIcon: undefined,
|
|
8314
|
+
/**
|
|
8315
|
+
* Options passed to the method (optional).
|
|
8316
|
+
*/
|
|
8317
|
+
mOptions?: Object
|
|
8314
8318
|
): string;
|
|
8315
8319
|
/**
|
|
8316
8320
|
* Renders custom info icon for HTML rendering.
|
|
@@ -8319,7 +8323,11 @@ declare namespace sap {
|
|
|
8319
8323
|
/**
|
|
8320
8324
|
* Object with additional style appended to info icon
|
|
8321
8325
|
*/
|
|
8322
|
-
oStyle: object
|
|
8326
|
+
oStyle: object,
|
|
8327
|
+
/**
|
|
8328
|
+
* Options passed to the method (optional).
|
|
8329
|
+
*/
|
|
8330
|
+
mOptions?: Object
|
|
8323
8331
|
): void;
|
|
8324
8332
|
/**
|
|
8325
8333
|
* Creates an SVG icon string.
|
|
@@ -17614,6 +17622,22 @@ declare namespace sap {
|
|
|
17614
17622
|
*/
|
|
17615
17623
|
userNameClicked?: (oEvent: sap.ui.base.Event) => void;
|
|
17616
17624
|
|
|
17625
|
+
/**
|
|
17626
|
+
* @SINCE 1.95
|
|
17627
|
+
*
|
|
17628
|
+
* This event is fired when a non-interactive content or white space(where no content is available) inside
|
|
17629
|
+
* an timeline post is clicked, triggers the click event of the item.
|
|
17630
|
+
*/
|
|
17631
|
+
select?: (oEvent: sap.ui.base.Event) => void;
|
|
17632
|
+
|
|
17633
|
+
/**
|
|
17634
|
+
* @SINCE 1.95
|
|
17635
|
+
*
|
|
17636
|
+
* This event is fired when the embedded control link is clicked of the timeline post. triggers the click
|
|
17637
|
+
* event of the content.
|
|
17638
|
+
*/
|
|
17639
|
+
press?: (oEvent: sap.ui.base.Event) => void;
|
|
17640
|
+
|
|
17617
17641
|
/**
|
|
17618
17642
|
* This event is fired when the Reply button is clicked in the links section of a timeline post.
|
|
17619
17643
|
*/
|
|
@@ -35988,6 +36012,53 @@ declare namespace sap {
|
|
|
35988
36012
|
*/
|
|
35989
36013
|
oListener?: object
|
|
35990
36014
|
): this;
|
|
36015
|
+
/**
|
|
36016
|
+
* @SINCE 1.95
|
|
36017
|
+
*
|
|
36018
|
+
* Attaches event handler `fnFunction` to the {@link #event:press press} event of this `sap.suite.ui.commons.TimelineItem`.
|
|
36019
|
+
*
|
|
36020
|
+
* When called, the context of the event handler (its `this`) will be bound to `oListener` if specified,
|
|
36021
|
+
* otherwise it will be bound to this `sap.suite.ui.commons.TimelineItem` itself.
|
|
36022
|
+
*
|
|
36023
|
+
* This event is fired when the embedded control link is clicked of the timeline post. triggers the click
|
|
36024
|
+
* event of the content.
|
|
36025
|
+
*/
|
|
36026
|
+
attachPress(
|
|
36027
|
+
/**
|
|
36028
|
+
* An application-specific payload object that will be passed to the event handler along with the event
|
|
36029
|
+
* object when firing the event
|
|
36030
|
+
*/
|
|
36031
|
+
oData: object,
|
|
36032
|
+
/**
|
|
36033
|
+
* The function to be called when the event occurs
|
|
36034
|
+
*/
|
|
36035
|
+
fnFunction: (p1: sap.ui.base.Event) => void,
|
|
36036
|
+
/**
|
|
36037
|
+
* Context object to call the event handler with. Defaults to this `sap.suite.ui.commons.TimelineItem` itself
|
|
36038
|
+
*/
|
|
36039
|
+
oListener?: object
|
|
36040
|
+
): this;
|
|
36041
|
+
/**
|
|
36042
|
+
* @SINCE 1.95
|
|
36043
|
+
*
|
|
36044
|
+
* Attaches event handler `fnFunction` to the {@link #event:press press} event of this `sap.suite.ui.commons.TimelineItem`.
|
|
36045
|
+
*
|
|
36046
|
+
* When called, the context of the event handler (its `this`) will be bound to `oListener` if specified,
|
|
36047
|
+
* otherwise it will be bound to this `sap.suite.ui.commons.TimelineItem` itself.
|
|
36048
|
+
*
|
|
36049
|
+
* This event is fired when the embedded control link is clicked of the timeline post. triggers the click
|
|
36050
|
+
* event of the content.
|
|
36051
|
+
*/
|
|
36052
|
+
attachPress(
|
|
36053
|
+
/**
|
|
36054
|
+
* The function to be called when the event occurs
|
|
36055
|
+
*/
|
|
36056
|
+
fnFunction: (p1: sap.ui.base.Event) => void,
|
|
36057
|
+
/**
|
|
36058
|
+
* Context object to call the event handler with. Defaults to this `sap.suite.ui.commons.TimelineItem` itself
|
|
36059
|
+
*/
|
|
36060
|
+
oListener?: object
|
|
36061
|
+
): this;
|
|
35991
36062
|
/**
|
|
35992
36063
|
* Attaches event handler `fnFunction` to the {@link #event:replyListOpen replyListOpen} event of this `sap.suite.ui.commons.TimelineItem`.
|
|
35993
36064
|
*
|
|
@@ -36070,6 +36141,53 @@ declare namespace sap {
|
|
|
36070
36141
|
*/
|
|
36071
36142
|
oListener?: object
|
|
36072
36143
|
): this;
|
|
36144
|
+
/**
|
|
36145
|
+
* @SINCE 1.95
|
|
36146
|
+
*
|
|
36147
|
+
* Attaches event handler `fnFunction` to the {@link #event:select select} event of this `sap.suite.ui.commons.TimelineItem`.
|
|
36148
|
+
*
|
|
36149
|
+
* When called, the context of the event handler (its `this`) will be bound to `oListener` if specified,
|
|
36150
|
+
* otherwise it will be bound to this `sap.suite.ui.commons.TimelineItem` itself.
|
|
36151
|
+
*
|
|
36152
|
+
* This event is fired when a non-interactive content or white space(where no content is available) inside
|
|
36153
|
+
* an timeline post is clicked, triggers the click event of the item.
|
|
36154
|
+
*/
|
|
36155
|
+
attachSelect(
|
|
36156
|
+
/**
|
|
36157
|
+
* An application-specific payload object that will be passed to the event handler along with the event
|
|
36158
|
+
* object when firing the event
|
|
36159
|
+
*/
|
|
36160
|
+
oData: object,
|
|
36161
|
+
/**
|
|
36162
|
+
* The function to be called when the event occurs
|
|
36163
|
+
*/
|
|
36164
|
+
fnFunction: (p1: sap.ui.base.Event) => void,
|
|
36165
|
+
/**
|
|
36166
|
+
* Context object to call the event handler with. Defaults to this `sap.suite.ui.commons.TimelineItem` itself
|
|
36167
|
+
*/
|
|
36168
|
+
oListener?: object
|
|
36169
|
+
): this;
|
|
36170
|
+
/**
|
|
36171
|
+
* @SINCE 1.95
|
|
36172
|
+
*
|
|
36173
|
+
* Attaches event handler `fnFunction` to the {@link #event:select select} event of this `sap.suite.ui.commons.TimelineItem`.
|
|
36174
|
+
*
|
|
36175
|
+
* When called, the context of the event handler (its `this`) will be bound to `oListener` if specified,
|
|
36176
|
+
* otherwise it will be bound to this `sap.suite.ui.commons.TimelineItem` itself.
|
|
36177
|
+
*
|
|
36178
|
+
* This event is fired when a non-interactive content or white space(where no content is available) inside
|
|
36179
|
+
* an timeline post is clicked, triggers the click event of the item.
|
|
36180
|
+
*/
|
|
36181
|
+
attachSelect(
|
|
36182
|
+
/**
|
|
36183
|
+
* The function to be called when the event occurs
|
|
36184
|
+
*/
|
|
36185
|
+
fnFunction: (p1: sap.ui.base.Event) => void,
|
|
36186
|
+
/**
|
|
36187
|
+
* Context object to call the event handler with. Defaults to this `sap.suite.ui.commons.TimelineItem` itself
|
|
36188
|
+
*/
|
|
36189
|
+
oListener?: object
|
|
36190
|
+
): this;
|
|
36073
36191
|
/**
|
|
36074
36192
|
* @SINCE 1.28.1
|
|
36075
36193
|
* @deprecated (since 1.46.0) - Use the Group Feed Component instead.
|
|
@@ -36257,6 +36375,23 @@ declare namespace sap {
|
|
|
36257
36375
|
*/
|
|
36258
36376
|
oListener?: object
|
|
36259
36377
|
): this;
|
|
36378
|
+
/**
|
|
36379
|
+
* @SINCE 1.95
|
|
36380
|
+
*
|
|
36381
|
+
* Detaches event handler `fnFunction` from the {@link #event:press press} event of this `sap.suite.ui.commons.TimelineItem`.
|
|
36382
|
+
*
|
|
36383
|
+
* The passed function and listener object must match the ones used for event registration.
|
|
36384
|
+
*/
|
|
36385
|
+
detachPress(
|
|
36386
|
+
/**
|
|
36387
|
+
* The function to be called, when the event occurs
|
|
36388
|
+
*/
|
|
36389
|
+
fnFunction: (p1: sap.ui.base.Event) => void,
|
|
36390
|
+
/**
|
|
36391
|
+
* Context object on which the given function had to be called
|
|
36392
|
+
*/
|
|
36393
|
+
oListener?: object
|
|
36394
|
+
): this;
|
|
36260
36395
|
/**
|
|
36261
36396
|
* Detaches event handler `fnFunction` from the {@link #event:replyListOpen replyListOpen} event of this
|
|
36262
36397
|
* `sap.suite.ui.commons.TimelineItem`.
|
|
@@ -36288,6 +36423,23 @@ declare namespace sap {
|
|
|
36288
36423
|
*/
|
|
36289
36424
|
oListener?: object
|
|
36290
36425
|
): this;
|
|
36426
|
+
/**
|
|
36427
|
+
* @SINCE 1.95
|
|
36428
|
+
*
|
|
36429
|
+
* Detaches event handler `fnFunction` from the {@link #event:select select} event of this `sap.suite.ui.commons.TimelineItem`.
|
|
36430
|
+
*
|
|
36431
|
+
* The passed function and listener object must match the ones used for event registration.
|
|
36432
|
+
*/
|
|
36433
|
+
detachSelect(
|
|
36434
|
+
/**
|
|
36435
|
+
* The function to be called, when the event occurs
|
|
36436
|
+
*/
|
|
36437
|
+
fnFunction: (p1: sap.ui.base.Event) => void,
|
|
36438
|
+
/**
|
|
36439
|
+
* Context object on which the given function had to be called
|
|
36440
|
+
*/
|
|
36441
|
+
oListener?: object
|
|
36442
|
+
): this;
|
|
36291
36443
|
/**
|
|
36292
36444
|
* @SINCE 1.28.1
|
|
36293
36445
|
* @deprecated (since 1.46.0) - Use the Group Feed Component instead.
|
|
@@ -36363,6 +36515,17 @@ declare namespace sap {
|
|
|
36363
36515
|
linkObj?: sap.m.Link;
|
|
36364
36516
|
}
|
|
36365
36517
|
): this;
|
|
36518
|
+
/**
|
|
36519
|
+
* @SINCE 1.95
|
|
36520
|
+
*
|
|
36521
|
+
* Fires event {@link #event:press press} to attached listeners.
|
|
36522
|
+
*/
|
|
36523
|
+
firePress(
|
|
36524
|
+
/**
|
|
36525
|
+
* Parameters to pass along with the event
|
|
36526
|
+
*/
|
|
36527
|
+
mParameters?: object
|
|
36528
|
+
): this;
|
|
36366
36529
|
/**
|
|
36367
36530
|
* Fires event {@link #event:replyListOpen replyListOpen} to attached listeners.
|
|
36368
36531
|
*/
|
|
@@ -36386,6 +36549,17 @@ declare namespace sap {
|
|
|
36386
36549
|
value?: string;
|
|
36387
36550
|
}
|
|
36388
36551
|
): this;
|
|
36552
|
+
/**
|
|
36553
|
+
* @SINCE 1.95
|
|
36554
|
+
*
|
|
36555
|
+
* Fires event {@link #event:select select} to attached listeners.
|
|
36556
|
+
*/
|
|
36557
|
+
fireSelect(
|
|
36558
|
+
/**
|
|
36559
|
+
* Parameters to pass along with the event
|
|
36560
|
+
*/
|
|
36561
|
+
mParameters?: object
|
|
36562
|
+
): this;
|
|
36389
36563
|
/**
|
|
36390
36564
|
* @SINCE 1.28.1
|
|
36391
36565
|
* @deprecated (since 1.46.0) - Use the Group Feed Component instead.
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
// For Library Version: 1.
|
|
1
|
+
// For Library Version: 1.97.0
|
|
2
2
|
|
|
3
3
|
declare namespace sap {
|
|
4
4
|
namespace suite {
|
|
@@ -554,11 +554,11 @@ declare namespace sap {
|
|
|
554
554
|
*/
|
|
555
555
|
mUrlParameters: Record<string, any>,
|
|
556
556
|
/**
|
|
557
|
-
* Parameters
|
|
557
|
+
* Parameters that are set for invoking Application controller's invokeActions method
|
|
558
558
|
*/
|
|
559
559
|
oSettings: {
|
|
560
560
|
/**
|
|
561
|
-
*
|
|
561
|
+
* Determines whether the common or unique changeset gets sent in batch
|
|
562
562
|
*/
|
|
563
563
|
bInvocationGroupingChangeSet: boolean;
|
|
564
564
|
}
|
|
@@ -576,11 +576,11 @@ declare namespace sap {
|
|
|
576
576
|
*/
|
|
577
577
|
vContext: any[] | sap.ui.model.Context,
|
|
578
578
|
/**
|
|
579
|
-
* Parameters
|
|
579
|
+
* Parameters that are set for invoking Application controller's invokeActions method
|
|
580
580
|
*/
|
|
581
581
|
oSettings: {
|
|
582
582
|
/**
|
|
583
|
-
*
|
|
583
|
+
* Determines whether the common or unique changeset gets sent in batch
|
|
584
584
|
*/
|
|
585
585
|
bInvocationGroupingChangeSet: boolean;
|
|
586
586
|
}
|
|
@@ -955,11 +955,11 @@ declare namespace sap {
|
|
|
955
955
|
*/
|
|
956
956
|
mUrlParameters: Record<string, any>,
|
|
957
957
|
/**
|
|
958
|
-
* Parameters
|
|
958
|
+
* Parameters that are set for invoking Application controller's invokeActions method
|
|
959
959
|
*/
|
|
960
960
|
oSettings: {
|
|
961
961
|
/**
|
|
962
|
-
*
|
|
962
|
+
* Determines whether the common or unique changeset gets sent in batch
|
|
963
963
|
*/
|
|
964
964
|
bInvocationGroupingChangeSet: boolean;
|
|
965
965
|
}
|
|
@@ -977,11 +977,11 @@ declare namespace sap {
|
|
|
977
977
|
*/
|
|
978
978
|
vContext: any[] | sap.ui.model.Context,
|
|
979
979
|
/**
|
|
980
|
-
* Parameters
|
|
980
|
+
* Parameters that are set for invoking Application controller's invokeActions method
|
|
981
981
|
*/
|
|
982
982
|
oSettings: {
|
|
983
983
|
/**
|
|
984
|
-
*
|
|
984
|
+
* Determines whether the common or unique changeset gets sent in batch
|
|
985
985
|
*/
|
|
986
986
|
bInvocationGroupingChangeSet: boolean;
|
|
987
987
|
}
|
|
@@ -1215,7 +1215,23 @@ declare namespace sap {
|
|
|
1215
1215
|
* This method is called by SAP Fiori elements before persisting the AppState. Application developers can
|
|
1216
1216
|
* override this method for persisting the state of custom controls. State of the custom control (controls)
|
|
1217
1217
|
* should be stored in the oCustomData passed as a parameter to this method. To make a complete functionality,
|
|
1218
|
-
* this method should be overridden with `restoreCustomAppStateDataExtension`.
|
|
1218
|
+
* this method should be overridden in combination with `restoreCustomAppStateDataExtension`.
|
|
1219
|
+
*
|
|
1220
|
+
* In some cases, applications might need to inform the framework about changes to their state by calling
|
|
1221
|
+
* {@link sap.suite.ui.generic.template.ListReport.extensionAPI.onCustomAppStateChange onCustomAppStateChange}.
|
|
1222
|
+
* For custom filters added to the filter bar, this should not be necessary.
|
|
1223
|
+
*
|
|
1224
|
+
* Remark: The term AppState actually relates to the UI state of the List Report. It is usually stored in
|
|
1225
|
+
* the layered repository, and can be retrieved via the key, that is added as value of the URL parameter
|
|
1226
|
+
* iAppState. (Although the value of the URL parameter xAppState used in navigation scenarios also points
|
|
1227
|
+
* to data stored on the layered repository, in contrast to the iAppState it has nothing to do with the
|
|
1228
|
+
* state of the app - conceptually, it is just a container for passing data from source to target during
|
|
1229
|
+
* navigation. The confusion arises from the fact, that per definition the source app should provide all
|
|
1230
|
+
* data available (to allow the target app to select the part it is interested in), and thus the structure
|
|
1231
|
+
* contained looks quite similar to the iAppState.)
|
|
1232
|
+
*
|
|
1233
|
+
* For more information, see {@link topic:5fb9f57fcf12401bbe39a635e9a32a4e Adding Custom Fields to the Filter
|
|
1234
|
+
* Bar}.
|
|
1219
1235
|
*/
|
|
1220
1236
|
getCustomAppStateDataExtension(
|
|
1221
1237
|
/**
|
|
@@ -1235,7 +1251,11 @@ declare namespace sap {
|
|
|
1235
1251
|
/**
|
|
1236
1252
|
* SmartFilterBar of the ListReport
|
|
1237
1253
|
*/
|
|
1238
|
-
oSmartFilterBar: sap.ui.comp.smartfilterbar.SmartFilterBar
|
|
1254
|
+
oSmartFilterBar: sap.ui.comp.smartfilterbar.SmartFilterBar,
|
|
1255
|
+
/**
|
|
1256
|
+
* Default values returned by backend when Common.v1.DefaultValuesFunction annotation has been configured
|
|
1257
|
+
*/
|
|
1258
|
+
oDefaultValues: object
|
|
1239
1259
|
): Map<any, any>;
|
|
1240
1260
|
/**
|
|
1241
1261
|
* This method is called in the AppState creation lifecycle. Application developers can override this method,
|
|
@@ -1272,6 +1292,9 @@ declare namespace sap {
|
|
|
1272
1292
|
* this method and programmatically modify parameters or filters before chart triggers a query to retrieve
|
|
1273
1293
|
* data.
|
|
1274
1294
|
*
|
|
1295
|
+
* For more information, see {@link topic:5fb9f57fcf12401bbe39a635e9a32a4e Adding Custom Fields to the Filter
|
|
1296
|
+
* Bar}.
|
|
1297
|
+
*
|
|
1275
1298
|
* **Note: **This method is called only when a chart is rebound, and not when it is refreshed.
|
|
1276
1299
|
*/
|
|
1277
1300
|
onBeforeRebindChartExtension(
|
|
@@ -1285,6 +1308,9 @@ declare namespace sap {
|
|
|
1285
1308
|
* this method and programmatically modify parameters or filters before the table triggers a query to retrieve
|
|
1286
1309
|
* data.
|
|
1287
1310
|
*
|
|
1311
|
+
* For more information, see {@link topic:5fb9f57fcf12401bbe39a635e9a32a4e Adding Custom Fields to the Filter
|
|
1312
|
+
* Bar}.
|
|
1313
|
+
*
|
|
1288
1314
|
* **Note: **This method is called only when a table is rebound, and not when it is refreshed.
|
|
1289
1315
|
*/
|
|
1290
1316
|
onBeforeRebindTableExtension(
|
|
@@ -1331,8 +1357,15 @@ declare namespace sap {
|
|
|
1331
1357
|
onInit(): void;
|
|
1332
1358
|
/**
|
|
1333
1359
|
* This method is called by SAP Fiori elements once the smart filter bar is initialized with a variant.
|
|
1360
|
+
*
|
|
1334
1361
|
* Application developers can override this method when there is a custom filter field bound outside the
|
|
1335
1362
|
* standard model.
|
|
1363
|
+
*
|
|
1364
|
+
* Use this method to provide initial values for your extension filters if they deviate from the initial
|
|
1365
|
+
* value according to the data type and cannot be provided in the view fragment.
|
|
1366
|
+
*
|
|
1367
|
+
* For more information, see {@link topic:5fb9f57fcf12401bbe39a635e9a32a4e Adding Custom Fields to the Filter
|
|
1368
|
+
* Bar}.
|
|
1336
1369
|
*/
|
|
1337
1370
|
onInitSmartFilterBarExtension(
|
|
1338
1371
|
/**
|
|
@@ -1392,9 +1425,19 @@ declare namespace sap {
|
|
|
1392
1425
|
): void;
|
|
1393
1426
|
/**
|
|
1394
1427
|
* This method is called by SAP Fiori elements while applying the AppState. This method should be overridden
|
|
1395
|
-
* with `getCustomAppStateDataExtension`. The custom data retrieved from the AppState will
|
|
1396
|
-
* a parameter to this method. Application developers can use this custom data to restore the
|
|
1397
|
-
* custom control.
|
|
1428
|
+
* in combination with `getCustomAppStateDataExtension`. The custom data retrieved from the AppState will
|
|
1429
|
+
* be passed as a parameter to this method. Application developers can use this custom data to restore the
|
|
1430
|
+
* state of the custom control.
|
|
1431
|
+
*
|
|
1432
|
+
* Note: Application developers need to be aware that this method is also called during startup without
|
|
1433
|
+
* restoring from an iAppState (initial startup or navigation). In this case, an empty object is provided.
|
|
1434
|
+
* Originally, this happened unintended, but needs to be kept for compatibility, as it has been used by
|
|
1435
|
+
* some applications to enforce specific filter values (contradicting the defined way navigation should
|
|
1436
|
+
* work). This usage is not recommended! Recommended: When called with an empty object, just return without
|
|
1437
|
+
* doing anything.
|
|
1438
|
+
*
|
|
1439
|
+
* For more information, see {@link topic:5fb9f57fcf12401bbe39a635e9a32a4e Adding Custom Fields to the Filter
|
|
1440
|
+
* Bar}.
|
|
1398
1441
|
*/
|
|
1399
1442
|
restoreCustomAppStateDataExtension(
|
|
1400
1443
|
/**
|
|
@@ -1677,11 +1720,11 @@ declare namespace sap {
|
|
|
1677
1720
|
*/
|
|
1678
1721
|
mUrlParameters: Record<string, any>,
|
|
1679
1722
|
/**
|
|
1680
|
-
* Parameters
|
|
1723
|
+
* Parameters that are set for invoking Application controller's invokeActions method
|
|
1681
1724
|
*/
|
|
1682
1725
|
oSettings: {
|
|
1683
1726
|
/**
|
|
1684
|
-
*
|
|
1727
|
+
* Determines whether the common or unique changeset gets sent in batch
|
|
1685
1728
|
*/
|
|
1686
1729
|
bInvocationGroupingChangeSet: boolean;
|
|
1687
1730
|
}
|
|
@@ -1699,11 +1742,11 @@ declare namespace sap {
|
|
|
1699
1742
|
*/
|
|
1700
1743
|
vContext: any[] | sap.ui.model.Context,
|
|
1701
1744
|
/**
|
|
1702
|
-
* Parameters
|
|
1745
|
+
* Parameters that are set for invoking Application controller's invokeActions method
|
|
1703
1746
|
*/
|
|
1704
1747
|
oSettings: {
|
|
1705
1748
|
/**
|
|
1706
|
-
*
|
|
1749
|
+
* Determines whether the common or unique changeset gets sent in batch
|
|
1707
1750
|
*/
|
|
1708
1751
|
bInvocationGroupingChangeSet: boolean;
|
|
1709
1752
|
}
|
package/types/sap.tnt.d.ts
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
// For Library Version: 1.
|
|
1
|
+
// For Library Version: 1.97.0
|
|
2
2
|
|
|
3
3
|
declare namespace sap {
|
|
4
4
|
/**
|
|
@@ -1465,17 +1465,16 @@ declare namespace sap {
|
|
|
1465
1465
|
* The ToolHeader stylizes the contained controls with the Shell color parameters, to match the dark design
|
|
1466
1466
|
* requirement. However, that's not a dark theme.
|
|
1467
1467
|
*
|
|
1468
|
-
* Only the following controls are supported:
|
|
1469
|
-
*
|
|
1470
|
-
*
|
|
1471
|
-
*
|
|
1472
|
-
*
|
|
1473
|
-
*
|
|
1474
|
-
*
|
|
1475
|
-
*
|
|
1476
|
-
*
|
|
1477
|
-
*
|
|
1478
|
-
* Should be used for triggering Mega menu. If there is no Mega menu, use Title (H6) instead.
|
|
1468
|
+
* Only the following controls are supported: Control name Supported
|
|
1469
|
+
* Not supported sap.m.Text Single line text, text truncation Wrapping
|
|
1470
|
+
* sap.m.Title Single line text, text truncation. Consider using title headings
|
|
1471
|
+
* of H4, H5, H6. Wrapping sap.m.Label Single line text, text truncation
|
|
1472
|
+
* Wrapping sap.m.ObjectStatus Labels, semantic colors Indication
|
|
1473
|
+
* colors sap.ui.core.Icon sap.ui.core.IconColor enumeration for both icons
|
|
1474
|
+
* and backgrounds. Interaction state colors sap.m.Button Buttons
|
|
1475
|
+
* in their Back, Default, Transparent and Up types. All four types are over-styled to look as transparent
|
|
1476
|
+
* buttons. - sap.m.MenuButton Emphasized button type. Should be used
|
|
1477
|
+
* for triggering Mega menu. If there is no Mega menu, use Title (H6) instead.
|
|
1479
1478
|
* Default (over-styled as Transparent) and Transparent types are used for standard menu representation.
|
|
1480
1479
|
* - sap.m.Select Default and IconOnly types. IconOnly looks like a button
|
|
1481
1480
|
* while Default looks is like an input. Semantic states sap.m.SearchField
|