@sapui5/ts-types 1.100.1 → 1.101.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 +1 -0
- package/types/sap.apf.d.ts +1 -1
- package/types/sap.ca.ui.d.ts +1 -1
- package/types/sap.chart.d.ts +2 -2
- package/types/sap.collaboration.d.ts +1 -1
- package/types/sap.esh.search.ui.d.ts +674 -2
- package/types/sap.f.d.ts +236 -25
- package/types/sap.fe.common.d.ts +1 -1
- package/types/sap.fe.core.d.ts +8 -63
- package/types/sap.fe.macros.d.ts +17 -9
- package/types/sap.fe.navigation.d.ts +5 -71
- package/types/sap.fe.templates.d.ts +97 -190
- package/types/sap.fe.test.d.ts +43 -24
- package/types/sap.feedback.ui.d.ts +1 -1
- package/types/sap.gantt.d.ts +40 -15
- package/types/sap.landvisz.d.ts +1 -1
- package/types/sap.m.d.ts +209 -38
- 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 +40 -5
- package/types/sap.sac.df.d.ts +981 -0
- package/types/sap.sac.grid.d.ts +25 -1
- package/types/sap.suite.ui.commons.d.ts +18 -1
- package/types/sap.suite.ui.generic.template.d.ts +115 -8
- 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 +154 -15
- package/types/sap.ui.core.d.ts +73 -27
- package/types/sap.ui.dt.d.ts +1 -1
- package/types/sap.ui.export.d.ts +3 -3
- package/types/sap.ui.fl.d.ts +1 -1
- package/types/sap.ui.generic.app.d.ts +10 -10
- package/types/sap.ui.generic.template.d.ts +1 -1
- package/types/sap.ui.integration.d.ts +1 -1
- package/types/sap.ui.layout.d.ts +1 -1
- package/types/sap.ui.mdc.d.ts +9 -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 +10 -6
- package/types/sap.ui.table.d.ts +11 -34
- 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 +683 -26
- package/types/sap.ui.vtm.d.ts +1 -1
- package/types/sap.uiext.inbox.d.ts +1 -1
- package/types/sap.ushell.d.ts +549 -113
- package/types/sap.ushell_abap.d.ts +1 -1
- package/types/sap.uxap.d.ts +2 -2
- 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 -1585
- package/types/sap.zen.crosstab.d.ts +1 -1
- package/types/sap.zen.dsh.d.ts +1303 -4047
package/types/sap.sac.grid.d.ts
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
// For Library Version: 1.
|
|
1
|
+
// For Library Version: 1.101.0
|
|
2
2
|
|
|
3
3
|
declare namespace sap {
|
|
4
4
|
namespace sac {
|
|
@@ -72,6 +72,11 @@ declare namespace sap {
|
|
|
72
72
|
* Indicates whether the `Cell` is input enabled.
|
|
73
73
|
*/
|
|
74
74
|
inputEnabled?: boolean | sap.ui.base.ManagedObject.PropertyBindingInfo;
|
|
75
|
+
|
|
76
|
+
/**
|
|
77
|
+
* The Document Id of the `Cell`.
|
|
78
|
+
*/
|
|
79
|
+
documentId?: string | sap.ui.base.ManagedObject.PropertyBindingInfo;
|
|
75
80
|
}
|
|
76
81
|
|
|
77
82
|
interface $SemanticStyleSettings extends sap.ui.core.$ElementSettings {
|
|
@@ -187,6 +192,12 @@ declare namespace sap {
|
|
|
187
192
|
* The value that is displayed in the cell
|
|
188
193
|
*/
|
|
189
194
|
getDisplayValue(): string;
|
|
195
|
+
/**
|
|
196
|
+
* Gets current value of property {@link #getDocumentId documentId}.
|
|
197
|
+
*
|
|
198
|
+
* The Document Id of the `Cell`.
|
|
199
|
+
*/
|
|
200
|
+
getDocumentId(): string;
|
|
190
201
|
/**
|
|
191
202
|
* Gets current value of property {@link #getHelpId helpId}.
|
|
192
203
|
*
|
|
@@ -305,6 +316,19 @@ declare namespace sap {
|
|
|
305
316
|
*/
|
|
306
317
|
sDisplayValue: string
|
|
307
318
|
): this;
|
|
319
|
+
/**
|
|
320
|
+
* Sets a new value for property {@link #getDocumentId documentId}.
|
|
321
|
+
*
|
|
322
|
+
* The Document Id of the `Cell`.
|
|
323
|
+
*
|
|
324
|
+
* When called with a value of `null` or `undefined`, the default value of the property will be restored.
|
|
325
|
+
*/
|
|
326
|
+
setDocumentId(
|
|
327
|
+
/**
|
|
328
|
+
* New value for property `documentId`
|
|
329
|
+
*/
|
|
330
|
+
sDocumentId: string
|
|
331
|
+
): this;
|
|
308
332
|
/**
|
|
309
333
|
* Sets a new value for property {@link #getHelpId helpId}.
|
|
310
334
|
*
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
// For Library Version: 1.
|
|
1
|
+
// For Library Version: 1.101.0
|
|
2
2
|
|
|
3
3
|
declare namespace sap {
|
|
4
4
|
namespace suite {
|
|
@@ -39466,6 +39466,23 @@ declare namespace sap {
|
|
|
39466
39466
|
*/
|
|
39467
39467
|
XXL = "XXL",
|
|
39468
39468
|
}
|
|
39469
|
+
/**
|
|
39470
|
+
* Modes for the {@link sap.suite.ui.commons.CloudFilePicker}.
|
|
39471
|
+
*/
|
|
39472
|
+
enum FilePickerModes {
|
|
39473
|
+
/**
|
|
39474
|
+
* Allow selection of a File or Folder resource
|
|
39475
|
+
*/
|
|
39476
|
+
All = "All",
|
|
39477
|
+
/**
|
|
39478
|
+
* Allow selection of File type of resource
|
|
39479
|
+
*/
|
|
39480
|
+
FileOnly = "FileOnly",
|
|
39481
|
+
/**
|
|
39482
|
+
* Allow selection of Folder type of resource
|
|
39483
|
+
*/
|
|
39484
|
+
FolderOnly = "FolderOnly",
|
|
39485
|
+
}
|
|
39469
39486
|
/**
|
|
39470
39487
|
* @deprecated (since 1.34) - Deprecated. Moved to openUI5.
|
|
39471
39488
|
*
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
// For Library Version: 1.
|
|
1
|
+
// For Library Version: 1.101.1
|
|
2
2
|
|
|
3
3
|
declare namespace sap {
|
|
4
4
|
namespace suite {
|
|
@@ -149,6 +149,48 @@ declare namespace sap {
|
|
|
149
149
|
sActionLabel?: string;
|
|
150
150
|
}
|
|
151
151
|
): Promise<any>;
|
|
152
|
+
/**
|
|
153
|
+
* Provide an option for showing an own message in the message bar above the LR table
|
|
154
|
+
*/
|
|
155
|
+
setCustomMessage(
|
|
156
|
+
/**
|
|
157
|
+
* the entitySet identifying the table to set custom message
|
|
158
|
+
*/
|
|
159
|
+
vTabKey: any[] | string,
|
|
160
|
+
/**
|
|
161
|
+
* custom message along with type to set on table
|
|
162
|
+
*/
|
|
163
|
+
oMessage: {
|
|
164
|
+
/**
|
|
165
|
+
* message string to display
|
|
166
|
+
*/
|
|
167
|
+
message?: string;
|
|
168
|
+
/**
|
|
169
|
+
* indicates type of message (sap.ui.core.MessageType) whether it's sap.ui.core.MessageType.Success, sap.ui.core.MessageType.Warning,
|
|
170
|
+
* sap.ui.core.MessageType.Error or sap.ui.core.MessageType.Information.
|
|
171
|
+
*/
|
|
172
|
+
type?: string;
|
|
173
|
+
}
|
|
174
|
+
): void;
|
|
175
|
+
/**
|
|
176
|
+
* Provide an option for showing an own message in the message bar above the LR table
|
|
177
|
+
*/
|
|
178
|
+
setCustomMessage(
|
|
179
|
+
/**
|
|
180
|
+
* custom message along with type to set on table
|
|
181
|
+
*/
|
|
182
|
+
oMessage: {
|
|
183
|
+
/**
|
|
184
|
+
* message string to display
|
|
185
|
+
*/
|
|
186
|
+
message?: string;
|
|
187
|
+
/**
|
|
188
|
+
* indicates type of message (sap.ui.core.MessageType) whether it's sap.ui.core.MessageType.Success, sap.ui.core.MessageType.Warning,
|
|
189
|
+
* sap.ui.core.MessageType.Error or sap.ui.core.MessageType.Information.
|
|
190
|
+
*/
|
|
191
|
+
type?: string;
|
|
192
|
+
}
|
|
193
|
+
): void;
|
|
152
194
|
}
|
|
153
195
|
}
|
|
154
196
|
/**
|
|
@@ -1073,6 +1115,48 @@ declare namespace sap {
|
|
|
1073
1115
|
sActionLabel?: string;
|
|
1074
1116
|
}
|
|
1075
1117
|
): Promise<any>;
|
|
1118
|
+
/**
|
|
1119
|
+
* Provide an option for showing an own message in the message bar above the LR table
|
|
1120
|
+
*/
|
|
1121
|
+
setCustomMessage(
|
|
1122
|
+
/**
|
|
1123
|
+
* the entitySet identifying the table to set custom message
|
|
1124
|
+
*/
|
|
1125
|
+
vTabKey: any[] | string,
|
|
1126
|
+
/**
|
|
1127
|
+
* custom message along with type to set on table
|
|
1128
|
+
*/
|
|
1129
|
+
oMessage: {
|
|
1130
|
+
/**
|
|
1131
|
+
* message string to display
|
|
1132
|
+
*/
|
|
1133
|
+
message?: string;
|
|
1134
|
+
/**
|
|
1135
|
+
* indicates type of message (sap.ui.core.MessageType) whether it's sap.ui.core.MessageType.Success, sap.ui.core.MessageType.Warning,
|
|
1136
|
+
* sap.ui.core.MessageType.Error or sap.ui.core.MessageType.Information.
|
|
1137
|
+
*/
|
|
1138
|
+
type?: string;
|
|
1139
|
+
}
|
|
1140
|
+
): void;
|
|
1141
|
+
/**
|
|
1142
|
+
* Provide an option for showing an own message in the message bar above the LR table
|
|
1143
|
+
*/
|
|
1144
|
+
setCustomMessage(
|
|
1145
|
+
/**
|
|
1146
|
+
* custom message along with type to set on table
|
|
1147
|
+
*/
|
|
1148
|
+
oMessage: {
|
|
1149
|
+
/**
|
|
1150
|
+
* message string to display
|
|
1151
|
+
*/
|
|
1152
|
+
message?: string;
|
|
1153
|
+
/**
|
|
1154
|
+
* indicates type of message (sap.ui.core.MessageType) whether it's sap.ui.core.MessageType.Success, sap.ui.core.MessageType.Warning,
|
|
1155
|
+
* sap.ui.core.MessageType.Error or sap.ui.core.MessageType.Information.
|
|
1156
|
+
*/
|
|
1157
|
+
type?: string;
|
|
1158
|
+
}
|
|
1159
|
+
): void;
|
|
1076
1160
|
/**
|
|
1077
1161
|
* @EXPERIMENTAL
|
|
1078
1162
|
*
|
|
@@ -1164,6 +1248,28 @@ declare namespace sap {
|
|
|
1164
1248
|
* extension code. Application developers should not override any methods outside this documentation.
|
|
1165
1249
|
*/
|
|
1166
1250
|
interface controllerFrameworkExtensions {
|
|
1251
|
+
/**
|
|
1252
|
+
* Obsolete and not called anymore. Kept here to avoid conflicts (in the very unlikely case, Fiori elements
|
|
1253
|
+
* would come up with the idea to invent a new extension method with the exact same name some day in future,
|
|
1254
|
+
* and any application would still have an implementation for this old extension).
|
|
1255
|
+
*
|
|
1256
|
+
* (Original purpose: When (standard) filters (i.e. filters defined in annotations) are provided with default
|
|
1257
|
+
* values (also from the annotation), and the user actively removed the default without giving a new value,
|
|
1258
|
+
* and later tried to restore from that state, the default values were reappearing. This was caused by the
|
|
1259
|
+
* way the old API of SFB (getDataSuiteFormat and setDataSuiteFormat) worked: the get method returned only
|
|
1260
|
+
* select options for the filters that actually had values (i.e. no select option for the filters the user
|
|
1261
|
+
* removed the values from), and the set method only overrode those values, select options were provided
|
|
1262
|
+
* for (i.e. the missing ones just kept their default value set during initialization). To overcome this
|
|
1263
|
+
* problem, the extension was created to inform Fiori elements about all fields potentially running into
|
|
1264
|
+
* that problem, and we added a select option (I EQ "") for those fields. This workaround of course ahs
|
|
1265
|
+
* two severe problems: A filter with eq "" is not the same as not having a filter for the same field (rather
|
|
1266
|
+
* the opposite), and all applications were required to keep extension and annotations in sync (and missing
|
|
1267
|
+
* to do that would only be found in very exceptional cases). With the newer API of SFB (getUiState and
|
|
1268
|
+
* setUiState), this problem has been overcome (esp. as setUiState overrides all filters, not only the ones
|
|
1269
|
+
* provided).)
|
|
1270
|
+
*/
|
|
1271
|
+
getVisibleSelectionsWithDefaults: undefined;
|
|
1272
|
+
|
|
1167
1273
|
/**
|
|
1168
1274
|
* This method is called by SAP Fiori elements before triggering an external navigation. Application developers
|
|
1169
1275
|
* can override this method and programmatically adapt the parameters which are passed to the target application.
|
|
@@ -1279,13 +1385,6 @@ declare namespace sap {
|
|
|
1279
1385
|
*/
|
|
1280
1386
|
oDefaultValues: object
|
|
1281
1387
|
): Map<any, any>;
|
|
1282
|
-
/**
|
|
1283
|
-
* This method is called in the AppState creation lifecycle. Application developers can override this method,
|
|
1284
|
-
* return an array of all selection fields set on SmartFilterBar using custom code as default and doesn't
|
|
1285
|
-
* really want to store as part of the AppState. SAP Fiori elements framework will remove these filter properties
|
|
1286
|
-
* from the selection variant.
|
|
1287
|
-
*/
|
|
1288
|
-
getVisibleSelectionsWithDefaults(): any[];
|
|
1289
1388
|
/**
|
|
1290
1389
|
* This method is called by SAP Fiori elements in the startup life cycle of a component. Application developers
|
|
1291
1390
|
* can override this method and modify the startup object. For an example, when the application is started,
|
|
@@ -1299,6 +1398,10 @@ declare namespace sap {
|
|
|
1299
1398
|
* Startup Object containing the initial contexts
|
|
1300
1399
|
*/
|
|
1301
1400
|
oStartupObject: {
|
|
1401
|
+
/**
|
|
1402
|
+
* information whether the application was triggered via external navigation
|
|
1403
|
+
*/
|
|
1404
|
+
viaExternalNavigation: boolean;
|
|
1302
1405
|
/**
|
|
1303
1406
|
* Selection Variant containing the values which needs to be applied to the smart filter bar
|
|
1304
1407
|
*/
|
|
@@ -1307,6 +1410,10 @@ declare namespace sap {
|
|
|
1307
1410
|
* Semantic dates configuration in the manifest is read an assigned in this object
|
|
1308
1411
|
*/
|
|
1309
1412
|
semanticDates: object;
|
|
1413
|
+
/**
|
|
1414
|
+
* if switching between different table views is enabled, the key which will be initially selected
|
|
1415
|
+
*/
|
|
1416
|
+
selectedQuickVariantSelectionKey: string;
|
|
1310
1417
|
}
|
|
1311
1418
|
): void;
|
|
1312
1419
|
/**
|
package/types/sap.tnt.d.ts
CHANGED
package/types/sap.ui.comp.d.ts
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
// For Library Version: 1.
|
|
1
|
+
// For Library Version: 1.101.0
|
|
2
2
|
|
|
3
3
|
declare namespace sap {
|
|
4
4
|
namespace ui {
|
|
@@ -574,6 +574,39 @@ declare namespace sap {
|
|
|
574
574
|
* Updates the 'Filters'-button text with the count of filters with values
|
|
575
575
|
*/
|
|
576
576
|
_updateToolbarText(): void;
|
|
577
|
+
/**
|
|
578
|
+
* Enables to add application specific content as a custom view to the new adapt filters dialog.
|
|
579
|
+
*/
|
|
580
|
+
addAdaptFilterDialogCustomContent(
|
|
581
|
+
/**
|
|
582
|
+
* the setting for the custom view
|
|
583
|
+
*/
|
|
584
|
+
mCustomView: {
|
|
585
|
+
/**
|
|
586
|
+
* the custom button used in the view switch
|
|
587
|
+
*/
|
|
588
|
+
item: sap.m.SegmentedButtonItem;
|
|
589
|
+
/**
|
|
590
|
+
* the content displayed in the custom view
|
|
591
|
+
*/
|
|
592
|
+
content: sap.ui.core.Control;
|
|
593
|
+
/**
|
|
594
|
+
* callback triggered by search - executed with the string as parameter
|
|
595
|
+
*/
|
|
596
|
+
search?: Function;
|
|
597
|
+
/**
|
|
598
|
+
* callback triggered by the `Select` control in the header area - executed with the selected key as parameter
|
|
599
|
+
*/
|
|
600
|
+
filterSelect?: Function;
|
|
601
|
+
/**
|
|
602
|
+
* callback triggered by selecting a view - executed with the key as parameter
|
|
603
|
+
*
|
|
604
|
+
* Note: This API is designed to fulfill the need of adding visual filters to "Adapt Filters" dialog so
|
|
605
|
+
* applications can achieve the ALP scenario in free style. Other usages are not encouraged.
|
|
606
|
+
*/
|
|
607
|
+
selectionChange?: Function;
|
|
608
|
+
}
|
|
609
|
+
): void;
|
|
577
610
|
/**
|
|
578
611
|
* @deprecated (since 1.84)
|
|
579
612
|
*
|
|
@@ -3310,11 +3343,17 @@ declare namespace sap {
|
|
|
3310
3343
|
text?: string | sap.ui.base.ManagedObject.PropertyBindingInfo;
|
|
3311
3344
|
|
|
3312
3345
|
/**
|
|
3313
|
-
* Destination link for a navigation operation in
|
|
3314
|
-
*
|
|
3346
|
+
* Destination link for a navigation operation in external format using the `hrefForExternal` method of
|
|
3347
|
+
* the CrossApplicationNavigation service.
|
|
3315
3348
|
*/
|
|
3316
3349
|
href?: string | sap.ui.base.ManagedObject.PropertyBindingInfo;
|
|
3317
3350
|
|
|
3351
|
+
/**
|
|
3352
|
+
* Destination link for a navigation operation in internal format provided by FLP. Only for internal use
|
|
3353
|
+
* in the NavigationPopoverHandler
|
|
3354
|
+
*/
|
|
3355
|
+
internalHref?: string | sap.ui.base.ManagedObject.PropertyBindingInfo;
|
|
3356
|
+
|
|
3318
3357
|
/**
|
|
3319
3358
|
* The standard values for the `target` property are: _self, _top, _blank, _parent, _search. Alternatively,
|
|
3320
3359
|
* a frame name can be entered. This property is only used if the `href` property is set.
|
|
@@ -4034,10 +4073,17 @@ declare namespace sap {
|
|
|
4034
4073
|
/**
|
|
4035
4074
|
* Gets current value of property {@link #getHref href}.
|
|
4036
4075
|
*
|
|
4037
|
-
* Destination link for a navigation operation in
|
|
4038
|
-
*
|
|
4076
|
+
* Destination link for a navigation operation in external format using the `hrefForExternal` method of
|
|
4077
|
+
* the CrossApplicationNavigation service.
|
|
4039
4078
|
*/
|
|
4040
4079
|
getHref(): string;
|
|
4080
|
+
/**
|
|
4081
|
+
* Gets current value of property {@link #getInternalHref internalHref}.
|
|
4082
|
+
*
|
|
4083
|
+
* Destination link for a navigation operation in internal format provided by FLP. Only for internal use
|
|
4084
|
+
* in the NavigationPopoverHandler
|
|
4085
|
+
*/
|
|
4086
|
+
getInternalHref(): string;
|
|
4041
4087
|
/**
|
|
4042
4088
|
* @SINCE 1.48.0
|
|
4043
4089
|
*
|
|
@@ -4115,8 +4161,8 @@ declare namespace sap {
|
|
|
4115
4161
|
/**
|
|
4116
4162
|
* Sets a new value for property {@link #getHref href}.
|
|
4117
4163
|
*
|
|
4118
|
-
* Destination link for a navigation operation in
|
|
4119
|
-
*
|
|
4164
|
+
* Destination link for a navigation operation in external format using the `hrefForExternal` method of
|
|
4165
|
+
* the CrossApplicationNavigation service.
|
|
4120
4166
|
*
|
|
4121
4167
|
* When called with a value of `null` or `undefined`, the default value of the property will be restored.
|
|
4122
4168
|
*/
|
|
@@ -4126,6 +4172,20 @@ declare namespace sap {
|
|
|
4126
4172
|
*/
|
|
4127
4173
|
sHref?: string
|
|
4128
4174
|
): this;
|
|
4175
|
+
/**
|
|
4176
|
+
* Sets a new value for property {@link #getInternalHref internalHref}.
|
|
4177
|
+
*
|
|
4178
|
+
* Destination link for a navigation operation in internal format provided by FLP. Only for internal use
|
|
4179
|
+
* in the NavigationPopoverHandler
|
|
4180
|
+
*
|
|
4181
|
+
* When called with a value of `null` or `undefined`, the default value of the property will be restored.
|
|
4182
|
+
*/
|
|
4183
|
+
setInternalHref(
|
|
4184
|
+
/**
|
|
4185
|
+
* New value for property `internalHref`
|
|
4186
|
+
*/
|
|
4187
|
+
sInternalHref?: string
|
|
4188
|
+
): this;
|
|
4129
4189
|
/**
|
|
4130
4190
|
* @SINCE 1.48.0
|
|
4131
4191
|
*
|
|
@@ -22610,6 +22670,16 @@ declare namespace sap {
|
|
|
22610
22670
|
| string
|
|
22611
22671
|
| sap.ui.base.ManagedObject.PropertyBindingInfo;
|
|
22612
22672
|
|
|
22673
|
+
/**
|
|
22674
|
+
* @SINCE 1.101
|
|
22675
|
+
* @EXPERIMENTAL (since 1.101)
|
|
22676
|
+
*
|
|
22677
|
+
* Allows only one token to be added to the SmartMultiInput. Works only in No Data Binding Scenario.
|
|
22678
|
+
*/
|
|
22679
|
+
singleTokenMode?:
|
|
22680
|
+
| boolean
|
|
22681
|
+
| sap.ui.base.ManagedObject.PropertyBindingInfo;
|
|
22682
|
+
|
|
22613
22683
|
/**
|
|
22614
22684
|
* This event is fired before the OData model's `create` method is called. Provides object with parameters
|
|
22615
22685
|
* of the call for editing.
|
|
@@ -23170,6 +23240,17 @@ declare namespace sap {
|
|
|
23170
23240
|
* Default value is `empty string`.
|
|
23171
23241
|
*/
|
|
23172
23242
|
getRequestAtLeastFields(): string;
|
|
23243
|
+
/**
|
|
23244
|
+
* @SINCE 1.101
|
|
23245
|
+
* @EXPERIMENTAL (since 1.101)
|
|
23246
|
+
*
|
|
23247
|
+
* Gets current value of property {@link #getSingleTokenMode singleTokenMode}.
|
|
23248
|
+
*
|
|
23249
|
+
* Allows only one token to be added to the SmartMultiInput. Works only in No Data Binding Scenario.
|
|
23250
|
+
*
|
|
23251
|
+
* Default value is `false`.
|
|
23252
|
+
*/
|
|
23253
|
+
getSingleTokenMode(): boolean;
|
|
23173
23254
|
/**
|
|
23174
23255
|
* Gets current value of property {@link #getSupportMultiSelect supportMultiSelect}.
|
|
23175
23256
|
*
|
|
@@ -23236,6 +23317,24 @@ declare namespace sap {
|
|
|
23236
23317
|
*/
|
|
23237
23318
|
sRequestAtLeastFields?: string
|
|
23238
23319
|
): this;
|
|
23320
|
+
/**
|
|
23321
|
+
* @SINCE 1.101
|
|
23322
|
+
* @EXPERIMENTAL (since 1.101)
|
|
23323
|
+
*
|
|
23324
|
+
* Sets a new value for property {@link #getSingleTokenMode singleTokenMode}.
|
|
23325
|
+
*
|
|
23326
|
+
* Allows only one token to be added to the SmartMultiInput. Works only in No Data Binding Scenario.
|
|
23327
|
+
*
|
|
23328
|
+
* When called with a value of `null` or `undefined`, the default value of the property will be restored.
|
|
23329
|
+
*
|
|
23330
|
+
* Default value is `false`.
|
|
23331
|
+
*/
|
|
23332
|
+
setSingleTokenMode(
|
|
23333
|
+
/**
|
|
23334
|
+
* New value for property `singleTokenMode`
|
|
23335
|
+
*/
|
|
23336
|
+
bSingleTokenMode?: boolean
|
|
23337
|
+
): this;
|
|
23239
23338
|
/**
|
|
23240
23339
|
* Sets a new value for property {@link #getSupportMultiSelect supportMultiSelect}.
|
|
23241
23340
|
*
|
|
@@ -25562,7 +25661,7 @@ declare namespace sap {
|
|
|
25562
25661
|
*
|
|
25563
25662
|
* Specifies the type of export to be used in the `SmartTable` control.
|
|
25564
25663
|
*
|
|
25565
|
-
* Default value is `"
|
|
25664
|
+
* Default value is `"UI5ClientPDF"`.
|
|
25566
25665
|
*/
|
|
25567
25666
|
getExportType(): sap.ui.comp.smarttable.ExportType;
|
|
25568
25667
|
/**
|
|
@@ -26265,7 +26364,7 @@ declare namespace sap {
|
|
|
26265
26364
|
*
|
|
26266
26365
|
* When called with a value of `null` or `undefined`, the default value of the property will be restored.
|
|
26267
26366
|
*
|
|
26268
|
-
* Default value is `"
|
|
26367
|
+
* Default value is `"UI5ClientPDF"`.
|
|
26269
26368
|
*/
|
|
26270
26369
|
setExportType(
|
|
26271
26370
|
/**
|
|
@@ -26820,6 +26919,10 @@ declare namespace sap {
|
|
|
26820
26919
|
* UI5 client-side spreadsheet export service is used (default as of UI5 version 1.52)
|
|
26821
26920
|
*/
|
|
26822
26921
|
UI5Client = "UI5Client",
|
|
26922
|
+
/**
|
|
26923
|
+
* UI5 client-side spreadsheet export service is used along with Gateway backend PDF export service.
|
|
26924
|
+
*/
|
|
26925
|
+
UI5ClientPDF = "UI5ClientPDF",
|
|
26823
26926
|
}
|
|
26824
26927
|
/**
|
|
26825
26928
|
* @SINCE 1.70
|
|
@@ -28676,7 +28779,7 @@ declare namespace sap {
|
|
|
28676
28779
|
| sap.ui.base.ManagedObject.PropertyBindingInfo;
|
|
28677
28780
|
|
|
28678
28781
|
/**
|
|
28679
|
-
* @
|
|
28782
|
+
* @deprecated - 1.84.1
|
|
28680
28783
|
*
|
|
28681
28784
|
* Defines the maximum number of include ranges.
|
|
28682
28785
|
*/
|
|
@@ -28685,7 +28788,7 @@ declare namespace sap {
|
|
|
28685
28788
|
| sap.ui.base.ManagedObject.PropertyBindingInfo;
|
|
28686
28789
|
|
|
28687
28790
|
/**
|
|
28688
|
-
* @
|
|
28791
|
+
* @deprecated - 1.84.1
|
|
28689
28792
|
*
|
|
28690
28793
|
* Defines the maximum number of exclude ranges.
|
|
28691
28794
|
*/
|
|
@@ -28693,6 +28796,15 @@ declare namespace sap {
|
|
|
28693
28796
|
| string
|
|
28694
28797
|
| sap.ui.base.ManagedObject.PropertyBindingInfo;
|
|
28695
28798
|
|
|
28799
|
+
/**
|
|
28800
|
+
* @SINCE 1.84.1
|
|
28801
|
+
*
|
|
28802
|
+
* Defines the maximum number of exclude ranges.
|
|
28803
|
+
*/
|
|
28804
|
+
maxConditions?:
|
|
28805
|
+
| string
|
|
28806
|
+
| sap.ui.base.ManagedObject.PropertyBindingInfo;
|
|
28807
|
+
|
|
28696
28808
|
/**
|
|
28697
28809
|
* @SINCE 1.24
|
|
28698
28810
|
*
|
|
@@ -29358,7 +29470,17 @@ declare namespace sap {
|
|
|
29358
29470
|
*/
|
|
29359
29471
|
getKeys(): string[];
|
|
29360
29472
|
/**
|
|
29361
|
-
* @SINCE 1.
|
|
29473
|
+
* @SINCE 1.84.1
|
|
29474
|
+
*
|
|
29475
|
+
* Gets current value of property {@link #getMaxConditions maxConditions}.
|
|
29476
|
+
*
|
|
29477
|
+
* Defines the maximum number of exclude ranges.
|
|
29478
|
+
*
|
|
29479
|
+
* Default value is `'-1'`.
|
|
29480
|
+
*/
|
|
29481
|
+
getMaxConditions(): string;
|
|
29482
|
+
/**
|
|
29483
|
+
* @deprecated - 1.84.1
|
|
29362
29484
|
*
|
|
29363
29485
|
* Gets current value of property {@link #getMaxExcludeRanges maxExcludeRanges}.
|
|
29364
29486
|
*
|
|
@@ -29368,7 +29490,7 @@ declare namespace sap {
|
|
|
29368
29490
|
*/
|
|
29369
29491
|
getMaxExcludeRanges(): string;
|
|
29370
29492
|
/**
|
|
29371
|
-
* @
|
|
29493
|
+
* @deprecated - 1.84.1
|
|
29372
29494
|
*
|
|
29373
29495
|
* Gets current value of property {@link #getMaxIncludeRanges maxIncludeRanges}.
|
|
29374
29496
|
*
|
|
@@ -29591,7 +29713,24 @@ declare namespace sap {
|
|
|
29591
29713
|
sKeys?: string[]
|
|
29592
29714
|
): this;
|
|
29593
29715
|
/**
|
|
29594
|
-
* @SINCE 1.
|
|
29716
|
+
* @SINCE 1.84.1
|
|
29717
|
+
*
|
|
29718
|
+
* Sets a new value for property {@link #getMaxConditions maxConditions}.
|
|
29719
|
+
*
|
|
29720
|
+
* Defines the maximum number of exclude ranges.
|
|
29721
|
+
*
|
|
29722
|
+
* When called with a value of `null` or `undefined`, the default value of the property will be restored.
|
|
29723
|
+
*
|
|
29724
|
+
* Default value is `'-1'`.
|
|
29725
|
+
*/
|
|
29726
|
+
setMaxConditions(
|
|
29727
|
+
/**
|
|
29728
|
+
* New value for property `maxConditions`
|
|
29729
|
+
*/
|
|
29730
|
+
sMaxConditions?: string
|
|
29731
|
+
): this;
|
|
29732
|
+
/**
|
|
29733
|
+
* @deprecated - 1.84.1
|
|
29595
29734
|
*
|
|
29596
29735
|
* Sets a new value for property {@link #getMaxExcludeRanges maxExcludeRanges}.
|
|
29597
29736
|
*
|
|
@@ -29608,7 +29747,7 @@ declare namespace sap {
|
|
|
29608
29747
|
sMaxExcludeRanges?: string
|
|
29609
29748
|
): this;
|
|
29610
29749
|
/**
|
|
29611
|
-
* @
|
|
29750
|
+
* @deprecated - 1.84.1
|
|
29612
29751
|
*
|
|
29613
29752
|
* Sets a new value for property {@link #getMaxIncludeRanges maxIncludeRanges}.
|
|
29614
29753
|
*
|