@sapui5/ts-types 1.108.2 → 1.109.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/sap.apf.d.ts +1 -1
- package/types/sap.ca.ui.d.ts +1 -3
- package/types/sap.chart.d.ts +1 -1
- package/types/sap.collaboration.d.ts +1 -1
- package/types/sap.esh.search.ui.d.ts +1 -1
- package/types/sap.f.d.ts +285 -25
- package/types/sap.fe.common.d.ts +1 -1
- package/types/sap.fe.core.d.ts +57 -20
- package/types/sap.fe.macros.d.ts +21 -1
- package/types/sap.fe.navigation.d.ts +1 -1
- package/types/sap.fe.templates.d.ts +3 -3
- package/types/sap.fe.test.d.ts +33 -17
- package/types/sap.feedback.ui.d.ts +1 -1
- package/types/sap.gantt.d.ts +51 -1
- package/types/sap.insights.d.ts +1 -1
- package/types/sap.landvisz.d.ts +1 -1
- package/types/sap.m.d.ts +152 -54
- package/types/sap.makit.d.ts +1 -1
- package/types/sap.me.d.ts +1 -1
- package/types/sap.ndc.d.ts +83 -29
- package/types/sap.ovp.d.ts +1 -1
- package/types/sap.rules.ui.d.ts +1 -1
- package/types/sap.sac.df.d.ts +117 -675
- package/types/sap.sac.grid.d.ts +1 -1
- package/types/sap.suite.ui.commons.d.ts +1 -1
- package/types/sap.suite.ui.generic.template.d.ts +499 -1
- package/types/sap.suite.ui.microchart.d.ts +1 -1
- package/types/sap.tnt.d.ts +1 -1
- package/types/sap.ui.codeeditor.d.ts +1 -1
- package/types/sap.ui.commons.d.ts +1 -1
- package/types/sap.ui.comp.d.ts +97 -13
- package/types/sap.ui.core.d.ts +240 -260
- 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 +92 -11
- 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 +63 -5
- package/types/sap.ui.layout.d.ts +1 -1
- package/types/sap.ui.mdc.d.ts +3 -1
- package/types/sap.ui.richtexteditor.d.ts +1 -1
- package/types/sap.ui.rta.d.ts +1 -1
- package/types/sap.ui.suite.d.ts +1 -1
- package/types/sap.ui.support.d.ts +380 -80
- package/types/sap.ui.table.d.ts +1 -3
- package/types/sap.ui.testrecorder.d.ts +1 -1
- package/types/sap.ui.unified.d.ts +81 -3
- package/types/sap.ui.ux3.d.ts +1 -1
- package/types/sap.ui.vbm.d.ts +39 -36
- package/types/sap.ui.vk.d.ts +512 -248
- 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 +5 -5
- package/types/sap.ushell.d.ts +1 -1
- package/types/sap.ushell_abap.d.ts +1 -1
- package/types/sap.uxap.d.ts +1 -1
- package/types/sap.viz.d.ts +1 -1
- package/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.sac.grid.d.ts
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
// For Library Version: 1.
|
|
1
|
+
// For Library Version: 1.109.0
|
|
2
2
|
|
|
3
3
|
declare namespace sap {
|
|
4
4
|
namespace suite {
|
|
@@ -961,6 +961,502 @@ declare namespace sap {
|
|
|
961
961
|
isAbsolute?: boolean;
|
|
962
962
|
}
|
|
963
963
|
): void;
|
|
964
|
+
/**
|
|
965
|
+
* Sets the refresh behaviour of the source application, before navigating away in sap-keep-alive scenarios
|
|
966
|
+
* using navPopover smart link The refreshStrategyOnAppRestore should be configured in the manifest This
|
|
967
|
+
* function should be called on the beforeNavigationCallBack method of the NavPopover Smart Link. This function
|
|
968
|
+
* only needs to be called in the exceptional case that the SmartLink control has been added in a custom
|
|
969
|
+
* fragment or a reuse component, since framework takes care for all other cases.
|
|
970
|
+
* See:
|
|
971
|
+
* {@link topic:3c65f2cc630c472da8328a6f3c193683 Refresh Entity Sets in keep alive mode}
|
|
972
|
+
*/
|
|
973
|
+
setRefreshBehaviour(
|
|
974
|
+
/**
|
|
975
|
+
* the name of the outbound defined in the manifest
|
|
976
|
+
*/
|
|
977
|
+
sOutbound: string,
|
|
978
|
+
/**
|
|
979
|
+
* map with parameters for the navigation. If no parameters are provided, default are the parameters defined
|
|
980
|
+
* in the manifest
|
|
981
|
+
*/
|
|
982
|
+
mParameters: object
|
|
983
|
+
): void;
|
|
984
|
+
}
|
|
985
|
+
}
|
|
986
|
+
|
|
987
|
+
namespace lib {
|
|
988
|
+
interface $AppComponentSettings
|
|
989
|
+
extends sap.ui.core.$UIComponentSettings {
|
|
990
|
+
forceGlobalRefresh?:
|
|
991
|
+
| boolean
|
|
992
|
+
| sap.ui.base.ManagedObject.PropertyBindingInfo
|
|
993
|
+
| `{${string}}`;
|
|
994
|
+
|
|
995
|
+
considerAnalyticalParameters?:
|
|
996
|
+
| boolean
|
|
997
|
+
| sap.ui.base.ManagedObject.PropertyBindingInfo
|
|
998
|
+
| `{${string}}`;
|
|
999
|
+
|
|
1000
|
+
showDraftToggle?:
|
|
1001
|
+
| boolean
|
|
1002
|
+
| sap.ui.base.ManagedObject.PropertyBindingInfo
|
|
1003
|
+
| `{${string}}`;
|
|
1004
|
+
|
|
1005
|
+
objectPageHeaderType?:
|
|
1006
|
+
| string
|
|
1007
|
+
| sap.ui.base.ManagedObject.PropertyBindingInfo;
|
|
1008
|
+
|
|
1009
|
+
objectPageVariantManagement?:
|
|
1010
|
+
| string
|
|
1011
|
+
| sap.ui.base.ManagedObject.PropertyBindingInfo;
|
|
1012
|
+
|
|
1013
|
+
flexibleColumnLayout?:
|
|
1014
|
+
| object
|
|
1015
|
+
| sap.ui.base.ManagedObject.PropertyBindingInfo
|
|
1016
|
+
| `{${string}}`;
|
|
1017
|
+
|
|
1018
|
+
inboundParameters?:
|
|
1019
|
+
| object
|
|
1020
|
+
| sap.ui.base.ManagedObject.PropertyBindingInfo
|
|
1021
|
+
| `{${string}}`;
|
|
1022
|
+
|
|
1023
|
+
tableColumnVerticalAlignment?:
|
|
1024
|
+
| string
|
|
1025
|
+
| sap.ui.base.ManagedObject.PropertyBindingInfo;
|
|
1026
|
+
|
|
1027
|
+
useColumnLayoutForSmartForm?:
|
|
1028
|
+
| boolean
|
|
1029
|
+
| sap.ui.base.ManagedObject.PropertyBindingInfo
|
|
1030
|
+
| `{${string}}`;
|
|
1031
|
+
|
|
1032
|
+
objectPageColumns?:
|
|
1033
|
+
| object
|
|
1034
|
+
| sap.ui.base.ManagedObject.PropertyBindingInfo
|
|
1035
|
+
| `{${string}}`;
|
|
1036
|
+
|
|
1037
|
+
statePreservationMode?:
|
|
1038
|
+
| string
|
|
1039
|
+
| sap.ui.base.ManagedObject.PropertyBindingInfo;
|
|
1040
|
+
|
|
1041
|
+
enableAutoColumnWidthForSmartTable?:
|
|
1042
|
+
| boolean
|
|
1043
|
+
| sap.ui.base.ManagedObject.PropertyBindingInfo
|
|
1044
|
+
| `{${string}}`;
|
|
1045
|
+
|
|
1046
|
+
draftDiscardConfirmationSettings?:
|
|
1047
|
+
| object
|
|
1048
|
+
| sap.ui.base.ManagedObject.PropertyBindingInfo
|
|
1049
|
+
| `{${string}}`;
|
|
1050
|
+
|
|
1051
|
+
pageDataLoaded?: (oEvent: sap.ui.base.Event) => void;
|
|
1052
|
+
}
|
|
1053
|
+
|
|
1054
|
+
/**
|
|
1055
|
+
* Smart Templates Application Component
|
|
1056
|
+
*/
|
|
1057
|
+
class AppComponent extends sap.ui.core.UIComponent {
|
|
1058
|
+
/**
|
|
1059
|
+
* Main class used for Smart Template(Fiori elements V2) Application Component
|
|
1060
|
+
*
|
|
1061
|
+
* Accepts an object literal `mSettings` that defines initial property values, aggregated and associated
|
|
1062
|
+
* objects as well as event handlers. See {@link sap.ui.base.ManagedObject#constructor} for a general description
|
|
1063
|
+
* of the syntax of the settings object.
|
|
1064
|
+
*/
|
|
1065
|
+
constructor();
|
|
1066
|
+
|
|
1067
|
+
/**
|
|
1068
|
+
* Creates a new subclass of class sap.suite.ui.generic.template.lib.AppComponent with name `sClassName`
|
|
1069
|
+
* and enriches it with the information contained in `oClassInfo`.
|
|
1070
|
+
*
|
|
1071
|
+
* `oClassInfo` might contain the same kind of information as described in {@link sap.ui.core.UIComponent.extend}.
|
|
1072
|
+
*
|
|
1073
|
+
* @returns Created class / constructor function
|
|
1074
|
+
*/
|
|
1075
|
+
static extend<T extends Record<string, unknown>>(
|
|
1076
|
+
/**
|
|
1077
|
+
* Name of the class being created
|
|
1078
|
+
*/
|
|
1079
|
+
sClassName: string,
|
|
1080
|
+
/**
|
|
1081
|
+
* Object literal with information about the class
|
|
1082
|
+
*/
|
|
1083
|
+
oClassInfo?: sap.ClassInfo<
|
|
1084
|
+
T,
|
|
1085
|
+
sap.suite.ui.generic.template.lib.AppComponent
|
|
1086
|
+
>,
|
|
1087
|
+
/**
|
|
1088
|
+
* Constructor function for the metadata object; if not given, it defaults to the metadata implementation
|
|
1089
|
+
* used by this class
|
|
1090
|
+
*/
|
|
1091
|
+
FNMetaImpl?: Function
|
|
1092
|
+
): Function;
|
|
1093
|
+
/**
|
|
1094
|
+
* Returns a metadata object for class sap.suite.ui.generic.template.lib.AppComponent.
|
|
1095
|
+
*
|
|
1096
|
+
* @returns Metadata object describing this class
|
|
1097
|
+
*/
|
|
1098
|
+
static getMetadata(): sap.ui.core.ComponentMetadata;
|
|
1099
|
+
/**
|
|
1100
|
+
* Attaches event handler `fnFunction` to the {@link #event:pageDataLoaded pageDataLoaded} event of this
|
|
1101
|
+
* `sap.suite.ui.generic.template.lib.AppComponent`.
|
|
1102
|
+
*
|
|
1103
|
+
* When called, the context of the event handler (its `this`) will be bound to `oListener` if specified,
|
|
1104
|
+
* otherwise it will be bound to this `sap.suite.ui.generic.template.lib.AppComponent` itself.
|
|
1105
|
+
*
|
|
1106
|
+
* @returns Reference to `this` in order to allow method chaining
|
|
1107
|
+
*/
|
|
1108
|
+
attachPageDataLoaded(
|
|
1109
|
+
/**
|
|
1110
|
+
* An application-specific payload object that will be passed to the event handler along with the event
|
|
1111
|
+
* object when firing the event
|
|
1112
|
+
*/
|
|
1113
|
+
oData: object,
|
|
1114
|
+
/**
|
|
1115
|
+
* The function to be called when the event occurs
|
|
1116
|
+
*/
|
|
1117
|
+
fnFunction: (p1: sap.ui.base.Event) => void,
|
|
1118
|
+
/**
|
|
1119
|
+
* Context object to call the event handler with. Defaults to this `sap.suite.ui.generic.template.lib.AppComponent`
|
|
1120
|
+
* itself
|
|
1121
|
+
*/
|
|
1122
|
+
oListener?: object
|
|
1123
|
+
): this;
|
|
1124
|
+
/**
|
|
1125
|
+
* Attaches event handler `fnFunction` to the {@link #event:pageDataLoaded pageDataLoaded} event of this
|
|
1126
|
+
* `sap.suite.ui.generic.template.lib.AppComponent`.
|
|
1127
|
+
*
|
|
1128
|
+
* When called, the context of the event handler (its `this`) will be bound to `oListener` if specified,
|
|
1129
|
+
* otherwise it will be bound to this `sap.suite.ui.generic.template.lib.AppComponent` itself.
|
|
1130
|
+
*
|
|
1131
|
+
* @returns Reference to `this` in order to allow method chaining
|
|
1132
|
+
*/
|
|
1133
|
+
attachPageDataLoaded(
|
|
1134
|
+
/**
|
|
1135
|
+
* The function to be called when the event occurs
|
|
1136
|
+
*/
|
|
1137
|
+
fnFunction: (p1: sap.ui.base.Event) => void,
|
|
1138
|
+
/**
|
|
1139
|
+
* Context object to call the event handler with. Defaults to this `sap.suite.ui.generic.template.lib.AppComponent`
|
|
1140
|
+
* itself
|
|
1141
|
+
*/
|
|
1142
|
+
oListener?: object
|
|
1143
|
+
): this;
|
|
1144
|
+
/**
|
|
1145
|
+
* Detaches event handler `fnFunction` from the {@link #event:pageDataLoaded pageDataLoaded} event of this
|
|
1146
|
+
* `sap.suite.ui.generic.template.lib.AppComponent`.
|
|
1147
|
+
*
|
|
1148
|
+
* The passed function and listener object must match the ones used for event registration.
|
|
1149
|
+
*
|
|
1150
|
+
* @returns Reference to `this` in order to allow method chaining
|
|
1151
|
+
*/
|
|
1152
|
+
detachPageDataLoaded(
|
|
1153
|
+
/**
|
|
1154
|
+
* The function to be called, when the event occurs
|
|
1155
|
+
*/
|
|
1156
|
+
fnFunction: (p1: sap.ui.base.Event) => void,
|
|
1157
|
+
/**
|
|
1158
|
+
* Context object on which the given function had to be called
|
|
1159
|
+
*/
|
|
1160
|
+
oListener?: object
|
|
1161
|
+
): this;
|
|
1162
|
+
/**
|
|
1163
|
+
* Fires event {@link #event:pageDataLoaded pageDataLoaded} to attached listeners.
|
|
1164
|
+
*
|
|
1165
|
+
* @returns Reference to `this` in order to allow method chaining
|
|
1166
|
+
*/
|
|
1167
|
+
firePageDataLoaded(
|
|
1168
|
+
/**
|
|
1169
|
+
* Parameters to pass along with the event
|
|
1170
|
+
*/
|
|
1171
|
+
mParameters?: object
|
|
1172
|
+
): this;
|
|
1173
|
+
/**
|
|
1174
|
+
* Gets current value of property {@link #getConsiderAnalyticalParameters considerAnalyticalParameters}.
|
|
1175
|
+
*
|
|
1176
|
+
* Default value is `false`.
|
|
1177
|
+
*
|
|
1178
|
+
* @returns Value of property `considerAnalyticalParameters`
|
|
1179
|
+
*/
|
|
1180
|
+
getConsiderAnalyticalParameters(): boolean;
|
|
1181
|
+
/**
|
|
1182
|
+
* Gets current value of property {@link #getDraftDiscardConfirmationSettings draftDiscardConfirmationSettings}.
|
|
1183
|
+
*
|
|
1184
|
+
* Default value is `...see text or source`.
|
|
1185
|
+
*
|
|
1186
|
+
* @returns Value of property `draftDiscardConfirmationSettings`
|
|
1187
|
+
*/
|
|
1188
|
+
getDraftDiscardConfirmationSettings(): object;
|
|
1189
|
+
/**
|
|
1190
|
+
* Gets current value of property {@link #getEnableAutoColumnWidthForSmartTable enableAutoColumnWidthForSmartTable}.
|
|
1191
|
+
*
|
|
1192
|
+
* Default value is `true`.
|
|
1193
|
+
*
|
|
1194
|
+
* @returns Value of property `enableAutoColumnWidthForSmartTable`
|
|
1195
|
+
*/
|
|
1196
|
+
getEnableAutoColumnWidthForSmartTable(): boolean;
|
|
1197
|
+
/**
|
|
1198
|
+
* Gets current value of property {@link #getFlexibleColumnLayout flexibleColumnLayout}.
|
|
1199
|
+
*
|
|
1200
|
+
* @returns Value of property `flexibleColumnLayout`
|
|
1201
|
+
*/
|
|
1202
|
+
getFlexibleColumnLayout(): object;
|
|
1203
|
+
/**
|
|
1204
|
+
* Gets current value of property {@link #getForceGlobalRefresh forceGlobalRefresh}.
|
|
1205
|
+
*
|
|
1206
|
+
* Default value is `false`.
|
|
1207
|
+
*
|
|
1208
|
+
* @returns Value of property `forceGlobalRefresh`
|
|
1209
|
+
*/
|
|
1210
|
+
getForceGlobalRefresh(): boolean;
|
|
1211
|
+
/**
|
|
1212
|
+
* Gets current value of property {@link #getInboundParameters inboundParameters}.
|
|
1213
|
+
*
|
|
1214
|
+
* @returns Value of property `inboundParameters`
|
|
1215
|
+
*/
|
|
1216
|
+
getInboundParameters(): object;
|
|
1217
|
+
/**
|
|
1218
|
+
* Gets current value of property {@link #getObjectPageColumns objectPageColumns}.
|
|
1219
|
+
*
|
|
1220
|
+
* @returns Value of property `objectPageColumns`
|
|
1221
|
+
*/
|
|
1222
|
+
getObjectPageColumns(): object;
|
|
1223
|
+
/**
|
|
1224
|
+
* Gets current value of property {@link #getObjectPageHeaderType objectPageHeaderType}.
|
|
1225
|
+
*
|
|
1226
|
+
* Default value is `"Static"`.
|
|
1227
|
+
*
|
|
1228
|
+
* @returns Value of property `objectPageHeaderType`
|
|
1229
|
+
*/
|
|
1230
|
+
getObjectPageHeaderType(): string;
|
|
1231
|
+
/**
|
|
1232
|
+
* Gets current value of property {@link #getObjectPageVariantManagement objectPageVariantManagement}.
|
|
1233
|
+
*
|
|
1234
|
+
* Default value is `"None"`.
|
|
1235
|
+
*
|
|
1236
|
+
* @returns Value of property `objectPageVariantManagement`
|
|
1237
|
+
*/
|
|
1238
|
+
getObjectPageVariantManagement(): string;
|
|
1239
|
+
/**
|
|
1240
|
+
* Gets current value of property {@link #getShowDraftToggle showDraftToggle}.
|
|
1241
|
+
*
|
|
1242
|
+
* Default value is `true`.
|
|
1243
|
+
*
|
|
1244
|
+
* @returns Value of property `showDraftToggle`
|
|
1245
|
+
*/
|
|
1246
|
+
getShowDraftToggle(): boolean;
|
|
1247
|
+
/**
|
|
1248
|
+
* Gets current value of property {@link #getStatePreservationMode statePreservationMode}.
|
|
1249
|
+
*
|
|
1250
|
+
* Default value is `"auto"`.
|
|
1251
|
+
*
|
|
1252
|
+
* @returns Value of property `statePreservationMode`
|
|
1253
|
+
*/
|
|
1254
|
+
getStatePreservationMode(): string;
|
|
1255
|
+
/**
|
|
1256
|
+
* Gets current value of property {@link #getTableColumnVerticalAlignment tableColumnVerticalAlignment}.
|
|
1257
|
+
*
|
|
1258
|
+
* Default value is `"Middle"`.
|
|
1259
|
+
*
|
|
1260
|
+
* @returns Value of property `tableColumnVerticalAlignment`
|
|
1261
|
+
*/
|
|
1262
|
+
getTableColumnVerticalAlignment(): string;
|
|
1263
|
+
/**
|
|
1264
|
+
* Gets current value of property {@link #getUseColumnLayoutForSmartForm useColumnLayoutForSmartForm}.
|
|
1265
|
+
*
|
|
1266
|
+
* Default value is `true`.
|
|
1267
|
+
*
|
|
1268
|
+
* @returns Value of property `useColumnLayoutForSmartForm`
|
|
1269
|
+
*/
|
|
1270
|
+
getUseColumnLayoutForSmartForm(): boolean;
|
|
1271
|
+
/**
|
|
1272
|
+
* Sets a new value for property {@link #getConsiderAnalyticalParameters considerAnalyticalParameters}.
|
|
1273
|
+
*
|
|
1274
|
+
* When called with a value of `null` or `undefined`, the default value of the property will be restored.
|
|
1275
|
+
*
|
|
1276
|
+
* Default value is `false`.
|
|
1277
|
+
*
|
|
1278
|
+
* @returns Reference to `this` in order to allow method chaining
|
|
1279
|
+
*/
|
|
1280
|
+
setConsiderAnalyticalParameters(
|
|
1281
|
+
/**
|
|
1282
|
+
* New value for property `considerAnalyticalParameters`
|
|
1283
|
+
*/
|
|
1284
|
+
bConsiderAnalyticalParameters?: boolean
|
|
1285
|
+
): this;
|
|
1286
|
+
/**
|
|
1287
|
+
* Sets a new value for property {@link #getDraftDiscardConfirmationSettings draftDiscardConfirmationSettings}.
|
|
1288
|
+
*
|
|
1289
|
+
* When called with a value of `null` or `undefined`, the default value of the property will be restored.
|
|
1290
|
+
*
|
|
1291
|
+
* Default value is `...see text or source`.
|
|
1292
|
+
*
|
|
1293
|
+
* @returns Reference to `this` in order to allow method chaining
|
|
1294
|
+
*/
|
|
1295
|
+
setDraftDiscardConfirmationSettings(
|
|
1296
|
+
/**
|
|
1297
|
+
* New value for property `draftDiscardConfirmationSettings`
|
|
1298
|
+
*/
|
|
1299
|
+
oDraftDiscardConfirmationSettings?: object
|
|
1300
|
+
): this;
|
|
1301
|
+
/**
|
|
1302
|
+
* Sets a new value for property {@link #getEnableAutoColumnWidthForSmartTable enableAutoColumnWidthForSmartTable}.
|
|
1303
|
+
*
|
|
1304
|
+
* When called with a value of `null` or `undefined`, the default value of the property will be restored.
|
|
1305
|
+
*
|
|
1306
|
+
* Default value is `true`.
|
|
1307
|
+
*
|
|
1308
|
+
* @returns Reference to `this` in order to allow method chaining
|
|
1309
|
+
*/
|
|
1310
|
+
setEnableAutoColumnWidthForSmartTable(
|
|
1311
|
+
/**
|
|
1312
|
+
* New value for property `enableAutoColumnWidthForSmartTable`
|
|
1313
|
+
*/
|
|
1314
|
+
bEnableAutoColumnWidthForSmartTable?: boolean
|
|
1315
|
+
): this;
|
|
1316
|
+
/**
|
|
1317
|
+
* Sets a new value for property {@link #getFlexibleColumnLayout flexibleColumnLayout}.
|
|
1318
|
+
*
|
|
1319
|
+
* When called with a value of `null` or `undefined`, the default value of the property will be restored.
|
|
1320
|
+
*
|
|
1321
|
+
* @returns Reference to `this` in order to allow method chaining
|
|
1322
|
+
*/
|
|
1323
|
+
setFlexibleColumnLayout(
|
|
1324
|
+
/**
|
|
1325
|
+
* New value for property `flexibleColumnLayout`
|
|
1326
|
+
*/
|
|
1327
|
+
oFlexibleColumnLayout?: object
|
|
1328
|
+
): this;
|
|
1329
|
+
/**
|
|
1330
|
+
* Sets a new value for property {@link #getForceGlobalRefresh forceGlobalRefresh}.
|
|
1331
|
+
*
|
|
1332
|
+
* When called with a value of `null` or `undefined`, the default value of the property will be restored.
|
|
1333
|
+
*
|
|
1334
|
+
* Default value is `false`.
|
|
1335
|
+
*
|
|
1336
|
+
* @returns Reference to `this` in order to allow method chaining
|
|
1337
|
+
*/
|
|
1338
|
+
setForceGlobalRefresh(
|
|
1339
|
+
/**
|
|
1340
|
+
* New value for property `forceGlobalRefresh`
|
|
1341
|
+
*/
|
|
1342
|
+
bForceGlobalRefresh?: boolean
|
|
1343
|
+
): this;
|
|
1344
|
+
/**
|
|
1345
|
+
* Sets a new value for property {@link #getInboundParameters inboundParameters}.
|
|
1346
|
+
*
|
|
1347
|
+
* When called with a value of `null` or `undefined`, the default value of the property will be restored.
|
|
1348
|
+
*
|
|
1349
|
+
* @returns Reference to `this` in order to allow method chaining
|
|
1350
|
+
*/
|
|
1351
|
+
setInboundParameters(
|
|
1352
|
+
/**
|
|
1353
|
+
* New value for property `inboundParameters`
|
|
1354
|
+
*/
|
|
1355
|
+
oInboundParameters?: object
|
|
1356
|
+
): this;
|
|
1357
|
+
/**
|
|
1358
|
+
* Sets a new value for property {@link #getObjectPageColumns objectPageColumns}.
|
|
1359
|
+
*
|
|
1360
|
+
* When called with a value of `null` or `undefined`, the default value of the property will be restored.
|
|
1361
|
+
*
|
|
1362
|
+
* @returns Reference to `this` in order to allow method chaining
|
|
1363
|
+
*/
|
|
1364
|
+
setObjectPageColumns(
|
|
1365
|
+
/**
|
|
1366
|
+
* New value for property `objectPageColumns`
|
|
1367
|
+
*/
|
|
1368
|
+
oObjectPageColumns: object
|
|
1369
|
+
): this;
|
|
1370
|
+
/**
|
|
1371
|
+
* Sets a new value for property {@link #getObjectPageHeaderType objectPageHeaderType}.
|
|
1372
|
+
*
|
|
1373
|
+
* When called with a value of `null` or `undefined`, the default value of the property will be restored.
|
|
1374
|
+
*
|
|
1375
|
+
* Default value is `"Static"`.
|
|
1376
|
+
*
|
|
1377
|
+
* @returns Reference to `this` in order to allow method chaining
|
|
1378
|
+
*/
|
|
1379
|
+
setObjectPageHeaderType(
|
|
1380
|
+
/**
|
|
1381
|
+
* New value for property `objectPageHeaderType`
|
|
1382
|
+
*/
|
|
1383
|
+
sObjectPageHeaderType?: string
|
|
1384
|
+
): this;
|
|
1385
|
+
/**
|
|
1386
|
+
* Sets a new value for property {@link #getObjectPageVariantManagement objectPageVariantManagement}.
|
|
1387
|
+
*
|
|
1388
|
+
* When called with a value of `null` or `undefined`, the default value of the property will be restored.
|
|
1389
|
+
*
|
|
1390
|
+
* Default value is `"None"`.
|
|
1391
|
+
*
|
|
1392
|
+
* @returns Reference to `this` in order to allow method chaining
|
|
1393
|
+
*/
|
|
1394
|
+
setObjectPageVariantManagement(
|
|
1395
|
+
/**
|
|
1396
|
+
* New value for property `objectPageVariantManagement`
|
|
1397
|
+
*/
|
|
1398
|
+
sObjectPageVariantManagement?: string
|
|
1399
|
+
): this;
|
|
1400
|
+
/**
|
|
1401
|
+
* Sets a new value for property {@link #getShowDraftToggle showDraftToggle}.
|
|
1402
|
+
*
|
|
1403
|
+
* When called with a value of `null` or `undefined`, the default value of the property will be restored.
|
|
1404
|
+
*
|
|
1405
|
+
* Default value is `true`.
|
|
1406
|
+
*
|
|
1407
|
+
* @returns Reference to `this` in order to allow method chaining
|
|
1408
|
+
*/
|
|
1409
|
+
setShowDraftToggle(
|
|
1410
|
+
/**
|
|
1411
|
+
* New value for property `showDraftToggle`
|
|
1412
|
+
*/
|
|
1413
|
+
bShowDraftToggle?: boolean
|
|
1414
|
+
): this;
|
|
1415
|
+
/**
|
|
1416
|
+
* Sets a new value for property {@link #getStatePreservationMode statePreservationMode}.
|
|
1417
|
+
*
|
|
1418
|
+
* When called with a value of `null` or `undefined`, the default value of the property will be restored.
|
|
1419
|
+
*
|
|
1420
|
+
* Default value is `"auto"`.
|
|
1421
|
+
*
|
|
1422
|
+
* @returns Reference to `this` in order to allow method chaining
|
|
1423
|
+
*/
|
|
1424
|
+
setStatePreservationMode(
|
|
1425
|
+
/**
|
|
1426
|
+
* New value for property `statePreservationMode`
|
|
1427
|
+
*/
|
|
1428
|
+
sStatePreservationMode?: string
|
|
1429
|
+
): this;
|
|
1430
|
+
/**
|
|
1431
|
+
* Sets a new value for property {@link #getTableColumnVerticalAlignment tableColumnVerticalAlignment}.
|
|
1432
|
+
*
|
|
1433
|
+
* When called with a value of `null` or `undefined`, the default value of the property will be restored.
|
|
1434
|
+
*
|
|
1435
|
+
* Default value is `"Middle"`.
|
|
1436
|
+
*
|
|
1437
|
+
* @returns Reference to `this` in order to allow method chaining
|
|
1438
|
+
*/
|
|
1439
|
+
setTableColumnVerticalAlignment(
|
|
1440
|
+
/**
|
|
1441
|
+
* New value for property `tableColumnVerticalAlignment`
|
|
1442
|
+
*/
|
|
1443
|
+
sTableColumnVerticalAlignment?: string
|
|
1444
|
+
): this;
|
|
1445
|
+
/**
|
|
1446
|
+
* Sets a new value for property {@link #getUseColumnLayoutForSmartForm useColumnLayoutForSmartForm}.
|
|
1447
|
+
*
|
|
1448
|
+
* When called with a value of `null` or `undefined`, the default value of the property will be restored.
|
|
1449
|
+
*
|
|
1450
|
+
* Default value is `true`.
|
|
1451
|
+
*
|
|
1452
|
+
* @returns Reference to `this` in order to allow method chaining
|
|
1453
|
+
*/
|
|
1454
|
+
setUseColumnLayoutForSmartForm(
|
|
1455
|
+
/**
|
|
1456
|
+
* New value for property `useColumnLayoutForSmartForm`
|
|
1457
|
+
*/
|
|
1458
|
+
bUseColumnLayoutForSmartForm?: boolean
|
|
1459
|
+
): this;
|
|
964
1460
|
}
|
|
965
1461
|
}
|
|
966
1462
|
|
|
@@ -2582,6 +3078,8 @@ declare namespace sap {
|
|
|
2582
3078
|
|
|
2583
3079
|
"sap/suite/ui/generic/template/extensionAPI/ReuseComponentSupport": undefined;
|
|
2584
3080
|
|
|
3081
|
+
"sap/suite/ui/generic/template/lib/AppComponent": undefined;
|
|
3082
|
+
|
|
2585
3083
|
"sap/suite/ui/generic/template/library": undefined;
|
|
2586
3084
|
|
|
2587
3085
|
"sap/suite/ui/generic/template/ListReport/controllerFrameworkExtensions": undefined;
|
package/types/sap.tnt.d.ts
CHANGED