@sapui5/ts-types 1.123.1 → 1.124.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/LICENSE.txt +13 -10
- package/README.md +1 -1
- 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 +5 -3
- package/types/sap.esh.search.ui.d.ts +127 -1
- package/types/sap.f.d.ts +55 -15
- package/types/sap.fe.core.d.ts +12 -6
- package/types/sap.fe.macros.d.ts +2041 -186
- package/types/sap.fe.navigation.d.ts +1 -1
- package/types/sap.fe.placeholder.d.ts +1 -1
- package/types/sap.fe.plugins.managecache.d.ts +1 -1
- package/types/sap.fe.templates.d.ts +31 -4
- package/types/sap.fe.test.d.ts +1 -1
- package/types/sap.fe.tools.d.ts +1 -1
- package/types/sap.feedback.ui.d.ts +1 -1
- package/types/sap.gantt.d.ts +8 -6
- package/types/sap.insights.d.ts +1 -1
- package/types/sap.m.d.ts +3924 -239
- 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 +195 -82
- package/types/sap.suite.ui.commons.d.ts +15 -11
- package/types/sap.suite.ui.generic.template.d.ts +34 -1
- package/types/sap.suite.ui.microchart.d.ts +1 -1
- package/types/sap.tnt.d.ts +5 -3
- package/types/sap.ui.codeeditor.d.ts +1 -1
- package/types/sap.ui.commons.d.ts +33 -17
- package/types/sap.ui.comp.d.ts +197 -49
- package/types/sap.ui.core.d.ts +496 -558
- package/types/sap.ui.dt.d.ts +6 -2
- package/types/sap.ui.export.d.ts +1 -1
- package/types/sap.ui.fl.d.ts +3 -2
- 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 +1 -1
- package/types/sap.ui.layout.d.ts +7 -4
- package/types/sap.ui.mdc.d.ts +623 -908
- 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 +1 -1
- package/types/sap.ui.table.d.ts +1 -1
- package/types/sap.ui.testrecorder.d.ts +1 -1
- package/types/sap.ui.unified.d.ts +6 -4
- package/types/sap.ui.ux3.d.ts +7 -4
- package/types/sap.ui.vbm.d.ts +3 -2
- package/types/sap.ui.vk.d.ts +86 -30
- package/types/sap.ui.vtm.d.ts +23 -12
- package/types/sap.ui.webc.common.d.ts +1 -1
- package/types/sap.ui.webc.fiori.d.ts +31 -16
- package/types/sap.ui.webc.main.d.ts +109 -57
- package/types/sap.uiext.inbox.d.ts +73 -17
- package/types/sap.ushell.d.ts +616 -192
- package/types/sap.ushell_abap.d.ts +1 -1
- package/types/sap.uxap.d.ts +16 -10
- 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.makit.d.ts
CHANGED
package/types/sap.me.d.ts
CHANGED
package/types/sap.ndc.d.ts
CHANGED
package/types/sap.ovp.d.ts
CHANGED
package/types/sap.rules.ui.d.ts
CHANGED
package/types/sap.sac.df.d.ts
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
// For Library Version: 1.
|
|
1
|
+
// For Library Version: 1.124.0
|
|
2
2
|
|
|
3
3
|
declare namespace sap {
|
|
4
4
|
namespace sac {
|
|
@@ -87,6 +87,16 @@ declare namespace sap {
|
|
|
87
87
|
}
|
|
88
88
|
|
|
89
89
|
namespace model {
|
|
90
|
+
/**
|
|
91
|
+
* Parameters of the DataProvider#dataUpdated event.
|
|
92
|
+
*/
|
|
93
|
+
interface DataProvider$DataUpdatedEventParameters {}
|
|
94
|
+
|
|
95
|
+
/**
|
|
96
|
+
* Parameters of the MultiDimModel#dataLoaded event.
|
|
97
|
+
*/
|
|
98
|
+
interface MultiDimModel$DataLoadedEventParameters {}
|
|
99
|
+
|
|
90
100
|
/**
|
|
91
101
|
* Parameters of the MultiDimModel#dataProviderAdded event.
|
|
92
102
|
*/
|
|
@@ -107,6 +117,11 @@ declare namespace sap {
|
|
|
107
117
|
*/
|
|
108
118
|
interface MultiDimModel$LoadedEventParameters {}
|
|
109
119
|
|
|
120
|
+
/**
|
|
121
|
+
* Parameters of the MultiDimModel#variableGroupsAdded event.
|
|
122
|
+
*/
|
|
123
|
+
interface MultiDimModel$VariableGroupsAddedEventParameters {}
|
|
124
|
+
|
|
110
125
|
/**
|
|
111
126
|
* Axis Layout showing which dimensions are set on rows and which on columns.
|
|
112
127
|
*
|
|
@@ -196,17 +211,23 @@ declare namespace sap {
|
|
|
196
211
|
* },
|
|
197
212
|
* "Grid": { },
|
|
198
213
|
* "Messages": [ ]
|
|
214
|
+
* "AutoFetchEnabled": ""
|
|
199
215
|
* ```
|
|
200
216
|
*
|
|
201
217
|
*
|
|
202
218
|
* @since 1.119
|
|
203
219
|
* @experimental (since 1.119)
|
|
204
220
|
*/
|
|
205
|
-
class DataProvider extends sap.ui.
|
|
221
|
+
class DataProvider extends sap.ui.model.json.JSONModel {
|
|
206
222
|
/**
|
|
207
223
|
* @ui5-protected Do not call from applications (only from related classes in the framework)
|
|
208
224
|
*/
|
|
209
225
|
protected constructor();
|
|
226
|
+
/**
|
|
227
|
+
* Indicator if the result set should be fetched automatically. The default value is true.
|
|
228
|
+
*/
|
|
229
|
+
AutoFetchEnabled: boolean;
|
|
230
|
+
|
|
210
231
|
/**
|
|
211
232
|
* AxesLayout
|
|
212
233
|
*/
|
|
@@ -241,7 +262,7 @@ declare namespace sap {
|
|
|
241
262
|
* Creates a new subclass of class sap.sac.df.model.DataProvider with name `sClassName` and enriches it
|
|
242
263
|
* with the information contained in `oClassInfo`.
|
|
243
264
|
*
|
|
244
|
-
* `oClassInfo` might contain the same kind of information as described in {@link sap.ui.
|
|
265
|
+
* `oClassInfo` might contain the same kind of information as described in {@link sap.ui.model.json.JSONModel.extend}.
|
|
245
266
|
*
|
|
246
267
|
*
|
|
247
268
|
* @returns Created class / constructor function
|
|
@@ -297,6 +318,22 @@ declare namespace sap {
|
|
|
297
318
|
*/
|
|
298
319
|
oDataExportConfig: object
|
|
299
320
|
): void;
|
|
321
|
+
/**
|
|
322
|
+
* Fires event {@link #event:dataUpdated dataUpdated} to attached listeners.
|
|
323
|
+
*
|
|
324
|
+
*
|
|
325
|
+
* @returns Reference to this in order to allow method chaining
|
|
326
|
+
*/
|
|
327
|
+
fireDataUpdated(
|
|
328
|
+
/**
|
|
329
|
+
* Parameters to pass along with the event
|
|
330
|
+
*/
|
|
331
|
+
oParameters?: object
|
|
332
|
+
): this;
|
|
333
|
+
/**
|
|
334
|
+
* Get the property AutoFetchEnabled
|
|
335
|
+
*/
|
|
336
|
+
getAutoFetchEnabled(): boolean;
|
|
300
337
|
/**
|
|
301
338
|
* Get axis Layout
|
|
302
339
|
*
|
|
@@ -380,14 +417,19 @@ declare namespace sap {
|
|
|
380
417
|
*/
|
|
381
418
|
getMeasureStructureDimension(): sap.sac.df.model.Dimension;
|
|
382
419
|
/**
|
|
383
|
-
*
|
|
420
|
+
* Trigger data update
|
|
421
|
+
*
|
|
422
|
+
* @deprecated (since 1.124) - Replaced by {@link sap.sac.df.model.DataProvider#setAutoFetchEnabled setAutoFetchEnabled }
|
|
423
|
+
* API to refresh the data.
|
|
424
|
+
*
|
|
425
|
+
* @returns Promise with reference to this in order to allow method chaining
|
|
384
426
|
*/
|
|
385
427
|
getResultSet(
|
|
386
428
|
/**
|
|
387
429
|
* Enforce result set update
|
|
388
430
|
*/
|
|
389
|
-
|
|
390
|
-
):
|
|
431
|
+
bEnforceDataUpdate?: boolean
|
|
432
|
+
): Promise<this>;
|
|
391
433
|
/**
|
|
392
434
|
* Get the scaling factor of a measure or cell
|
|
393
435
|
*
|
|
@@ -442,6 +484,10 @@ declare namespace sap {
|
|
|
442
484
|
*/
|
|
443
485
|
sFormat?: string
|
|
444
486
|
): object;
|
|
487
|
+
/**
|
|
488
|
+
* Set the property `AutoFetchEnabled`, if the data should be automatically be refreshed on invalid.
|
|
489
|
+
*/
|
|
490
|
+
setAutoFetchEnabled(bAutoFetchEnabled: boolean): void;
|
|
445
491
|
/**
|
|
446
492
|
* Set the number of decimal places of a measure or cell
|
|
447
493
|
*
|
|
@@ -951,6 +997,22 @@ declare namespace sap {
|
|
|
951
997
|
* @returns Metadata object describing this class
|
|
952
998
|
*/
|
|
953
999
|
static getMetadata(): sap.ui.base.Metadata;
|
|
1000
|
+
/**
|
|
1001
|
+
* Create and retrieve document in the document store
|
|
1002
|
+
*
|
|
1003
|
+
*
|
|
1004
|
+
* @returns a promise which resolves with the newly created document.
|
|
1005
|
+
*/
|
|
1006
|
+
createAndRetrieveDocument(
|
|
1007
|
+
/**
|
|
1008
|
+
* the document ID
|
|
1009
|
+
*/
|
|
1010
|
+
sDocumentId: undefined,
|
|
1011
|
+
/**
|
|
1012
|
+
* the content of the document
|
|
1013
|
+
*/
|
|
1014
|
+
sContent: undefined
|
|
1015
|
+
): Promise<object>;
|
|
954
1016
|
/**
|
|
955
1017
|
* Create a document in the document store
|
|
956
1018
|
*
|
|
@@ -1063,12 +1125,26 @@ declare namespace sap {
|
|
|
1063
1125
|
aDocumentIds: undefined
|
|
1064
1126
|
): Promise<object>;
|
|
1065
1127
|
/**
|
|
1066
|
-
* Is document storage supporting
|
|
1128
|
+
* Is document storage supporting delete access
|
|
1129
|
+
*
|
|
1130
|
+
*
|
|
1131
|
+
* @returns if delete access is supported
|
|
1132
|
+
*/
|
|
1133
|
+
supportsDelete(): boolean;
|
|
1134
|
+
/**
|
|
1135
|
+
* Is document storage supporting read access
|
|
1067
1136
|
*
|
|
1068
1137
|
*
|
|
1069
|
-
* @returns if
|
|
1138
|
+
* @returns if read access is supported
|
|
1070
1139
|
*/
|
|
1071
|
-
|
|
1140
|
+
supportsRead(): boolean;
|
|
1141
|
+
/**
|
|
1142
|
+
* Is document storage supporting write (create and change) access
|
|
1143
|
+
*
|
|
1144
|
+
*
|
|
1145
|
+
* @returns if write (create and change) access is supported
|
|
1146
|
+
*/
|
|
1147
|
+
supportsWrite(): boolean;
|
|
1072
1148
|
/**
|
|
1073
1149
|
* Update a document in the document store
|
|
1074
1150
|
*
|
|
@@ -1272,7 +1348,11 @@ declare namespace sap {
|
|
|
1272
1348
|
/**
|
|
1273
1349
|
* Data source type
|
|
1274
1350
|
*/
|
|
1275
|
-
sDataSourceType?: sap.sac.df.types.DataSourceType
|
|
1351
|
+
sDataSourceType?: sap.sac.df.types.DataSourceType,
|
|
1352
|
+
/**
|
|
1353
|
+
* if the data should be fetched automatically
|
|
1354
|
+
*/
|
|
1355
|
+
bAutoFetchEnabled?: boolean
|
|
1276
1356
|
): Promise<sap.sac.df.model.DataProvider>;
|
|
1277
1357
|
/**
|
|
1278
1358
|
* Creates a new variable group and attaches it to the model.
|
|
@@ -1280,6 +1360,8 @@ declare namespace sap {
|
|
|
1280
1360
|
* A variable group defines which variables of the underlying data providers should behave as the same variable.
|
|
1281
1361
|
* The group is defined by a name and a rule. The first added variable becomes automatically the `MergedVariable`.
|
|
1282
1362
|
*
|
|
1363
|
+
* @deprecated (since 1.124) - Replaced by {@link sap.sac.df.model.MultiDimModel#setVariableGroups setAutoFetchEnabled }
|
|
1364
|
+
* API to set the variables.
|
|
1283
1365
|
*
|
|
1284
1366
|
* @returns Promise which resolves the created variable group
|
|
1285
1367
|
*/
|
|
@@ -1304,6 +1386,8 @@ declare namespace sap {
|
|
|
1304
1386
|
* A variable group defines which variables of the underlying data providers should behave as the same variable.
|
|
1305
1387
|
* The group is defined by a name and a rule. The first added variable becomes automatically the `MergedVariable`.
|
|
1306
1388
|
*
|
|
1389
|
+
* @deprecated (since 1.124) - Replaced by {@link sap.sac.df.model.MultiDimModel#setVariableGroups setAutoFetchEnabled }
|
|
1390
|
+
* API to set the variables.
|
|
1307
1391
|
*
|
|
1308
1392
|
* @returns created variable group
|
|
1309
1393
|
*/
|
|
@@ -1453,6 +1537,8 @@ declare namespace sap {
|
|
|
1453
1537
|
/**
|
|
1454
1538
|
* Remove a variable group from the model
|
|
1455
1539
|
*
|
|
1540
|
+
* @deprecated (since 1.124) - Replaced by {@link sap.sac.df.model.MultiDimModel#setVariableGroups setAutoFetchEnabled }
|
|
1541
|
+
* API to set the variables.
|
|
1456
1542
|
*
|
|
1457
1543
|
* @returns Promise which resolves when the removing s finished
|
|
1458
1544
|
*/
|
|
@@ -1955,6 +2041,22 @@ declare namespace sap {
|
|
|
1955
2041
|
): this;
|
|
1956
2042
|
}
|
|
1957
2043
|
|
|
2044
|
+
/**
|
|
2045
|
+
* Event object of the DataProvider#dataUpdated event.
|
|
2046
|
+
*/
|
|
2047
|
+
type DataProvider$DataUpdatedEvent = sap.ui.base.Event<
|
|
2048
|
+
DataProvider$DataUpdatedEventParameters,
|
|
2049
|
+
DataProvider
|
|
2050
|
+
>;
|
|
2051
|
+
|
|
2052
|
+
/**
|
|
2053
|
+
* Event object of the MultiDimModel#dataLoaded event.
|
|
2054
|
+
*/
|
|
2055
|
+
type MultiDimModel$DataLoadedEvent = sap.ui.base.Event<
|
|
2056
|
+
MultiDimModel$DataLoadedEventParameters,
|
|
2057
|
+
MultiDimModel
|
|
2058
|
+
>;
|
|
2059
|
+
|
|
1958
2060
|
/**
|
|
1959
2061
|
* Event object of the MultiDimModel#dataProviderAdded event.
|
|
1960
2062
|
*/
|
|
@@ -1986,6 +2088,14 @@ declare namespace sap {
|
|
|
1986
2088
|
MultiDimModel$LoadedEventParameters,
|
|
1987
2089
|
MultiDimModel
|
|
1988
2090
|
>;
|
|
2091
|
+
|
|
2092
|
+
/**
|
|
2093
|
+
* Event object of the MultiDimModel#variableGroupsAdded event.
|
|
2094
|
+
*/
|
|
2095
|
+
type MultiDimModel$VariableGroupsAddedEvent = sap.ui.base.Event<
|
|
2096
|
+
MultiDimModel$VariableGroupsAddedEventParameters,
|
|
2097
|
+
MultiDimModel
|
|
2098
|
+
>;
|
|
1989
2099
|
}
|
|
1990
2100
|
|
|
1991
2101
|
namespace types {
|
|
@@ -2027,7 +2137,7 @@ declare namespace sap {
|
|
|
2027
2137
|
*/
|
|
2028
2138
|
Read = "READ",
|
|
2029
2139
|
/**
|
|
2030
|
-
* Read, create, change documents support
|
|
2140
|
+
* Read, create, change documents support.
|
|
2031
2141
|
*/
|
|
2032
2142
|
ReadCreateChange = "READ_CREATE_CHANGE",
|
|
2033
2143
|
/**
|
|
@@ -2072,10 +2182,9 @@ declare namespace sap {
|
|
|
2072
2182
|
/**
|
|
2073
2183
|
* Describes the settings that can be provided to the FilterField constructor.
|
|
2074
2184
|
*
|
|
2075
|
-
* @experimental (since 1.
|
|
2185
|
+
* @experimental (since 1.121)
|
|
2076
2186
|
*/
|
|
2077
|
-
interface $FilterFieldSettings
|
|
2078
|
-
extends sap.ui.mdc.field.$FieldBaseSettings {
|
|
2187
|
+
interface $FilterFieldSettings extends sap.ui.mdc.$FilterFieldSettings {
|
|
2079
2188
|
/**
|
|
2080
2189
|
* Defines the relative path of the property in the metamodel, based on the current contextPath.
|
|
2081
2190
|
*/
|
|
@@ -2111,6 +2220,9 @@ declare namespace sap {
|
|
|
2111
2220
|
|
|
2112
2221
|
/**
|
|
2113
2222
|
* Indicates if Flexible Analysis component automatically requests the ResultSet for the shown data source
|
|
2223
|
+
*
|
|
2224
|
+
* @deprecated (since 1.124) - the concept has been discarded. Refreshing the data is handled by the data
|
|
2225
|
+
* provider.
|
|
2114
2226
|
*/
|
|
2115
2227
|
autoUpdate?:
|
|
2116
2228
|
| boolean
|
|
@@ -2133,7 +2245,7 @@ declare namespace sap {
|
|
|
2133
2245
|
| `{${string}}`;
|
|
2134
2246
|
|
|
2135
2247
|
/**
|
|
2136
|
-
*
|
|
2248
|
+
* Configuration Id
|
|
2137
2249
|
*/
|
|
2138
2250
|
configId?: string | sap.ui.base.ManagedObject.PropertyBindingInfo;
|
|
2139
2251
|
|
|
@@ -2217,26 +2329,24 @@ declare namespace sap {
|
|
|
2217
2329
|
| sap.ui.base.ManagedObject.PropertyBindingInfo
|
|
2218
2330
|
| `{${string}}`;
|
|
2219
2331
|
|
|
2220
|
-
/**
|
|
2221
|
-
* Additional Flag to be passed to the control TODO: Document the possibilities
|
|
2222
|
-
*/
|
|
2223
|
-
environment?:
|
|
2224
|
-
| string[]
|
|
2225
|
-
| sap.ui.base.ManagedObject.PropertyBindingInfo
|
|
2226
|
-
| `{${string}}`;
|
|
2227
|
-
|
|
2228
2332
|
/**
|
|
2229
2333
|
* System to take data from. If not set or set to "local" current url will be used to determine the system
|
|
2334
|
+
*
|
|
2335
|
+
* @deprecated (since 1.124) - Replaced by metaPath property and the corresponding data provider definition.
|
|
2230
2336
|
*/
|
|
2231
2337
|
systemName?: string | sap.ui.base.ManagedObject.PropertyBindingInfo;
|
|
2232
2338
|
|
|
2233
2339
|
/**
|
|
2234
2340
|
* Data source (Query name/ View, InA model etc) to be used to get the data from
|
|
2341
|
+
*
|
|
2342
|
+
* @deprecated (since 1.124) - Replaced by metaPath property and the corresponding data provider definition.
|
|
2235
2343
|
*/
|
|
2236
2344
|
dataSource?: string | sap.ui.base.ManagedObject.PropertyBindingInfo;
|
|
2237
2345
|
|
|
2238
2346
|
/**
|
|
2239
2347
|
* Type the system to connect to get data
|
|
2348
|
+
*
|
|
2349
|
+
* @deprecated (since 1.124) - Replaced by metaPath property and the corresponding data provider definition.
|
|
2240
2350
|
*/
|
|
2241
2351
|
systemType?:
|
|
2242
2352
|
| sap.sac.df.types.SystemType
|
|
@@ -2253,6 +2363,8 @@ declare namespace sap {
|
|
|
2253
2363
|
|
|
2254
2364
|
/**
|
|
2255
2365
|
* Client Identifier to be used for underlying InA queries
|
|
2366
|
+
*
|
|
2367
|
+
* @deprecated (since 1.124) - Replaced by metaPath property and the corresponding data provider definition.
|
|
2256
2368
|
*/
|
|
2257
2369
|
clientIdentifier?:
|
|
2258
2370
|
| string
|
|
@@ -2260,6 +2372,8 @@ declare namespace sap {
|
|
|
2260
2372
|
|
|
2261
2373
|
/**
|
|
2262
2374
|
* Name of the Data Provider from the corresponding MultiDimModel to be used
|
|
2375
|
+
*
|
|
2376
|
+
* @deprecated (since 1.124) - Replaced by metaPath property and the corresponding data provider definition.
|
|
2263
2377
|
*/
|
|
2264
2378
|
dataProvider?:
|
|
2265
2379
|
| any
|
|
@@ -2268,11 +2382,18 @@ declare namespace sap {
|
|
|
2268
2382
|
|
|
2269
2383
|
/**
|
|
2270
2384
|
* Id of the MultiDimModel to use
|
|
2385
|
+
*
|
|
2386
|
+
* @deprecated (since 1.124) - Replaced by metaPath property and the corresponding data provider definition.
|
|
2271
2387
|
*/
|
|
2272
2388
|
multiDimModelId?:
|
|
2273
2389
|
| string
|
|
2274
2390
|
| sap.ui.base.ManagedObject.PropertyBindingInfo;
|
|
2275
2391
|
|
|
2392
|
+
/**
|
|
2393
|
+
* Defines the relative path to the data provider in the multidimensional model.
|
|
2394
|
+
*/
|
|
2395
|
+
metaPath?: string | sap.ui.base.ManagedObject.PropertyBindingInfo;
|
|
2396
|
+
|
|
2276
2397
|
/**
|
|
2277
2398
|
* Indicates if the variable are handled internal handling by FlexAnalysis. If set to false it is done via
|
|
2278
2399
|
* corresponding MultiDimModel
|
|
@@ -2416,40 +2537,18 @@ declare namespace sap {
|
|
|
2416
2537
|
}
|
|
2417
2538
|
/**
|
|
2418
2539
|
* The `FilterField` control is used to filter data based on the conditions. The conditions are managed
|
|
2419
|
-
* in the corresponding {@link sap.ui.mdc.condition.ConditionModel ConditionModel}.
|
|
2420
|
-
* property must be bound to the related conditions in the {@link sap.ui.mdc.condition.ConditionModel ConditionModel}.
|
|
2421
|
-
* The type of this data must be defined in the `dataType` property.
|
|
2540
|
+
* in the corresponding {@link sap.ui.mdc.condition.ConditionModel ConditionModel}.
|
|
2422
2541
|
*
|
|
2423
|
-
*
|
|
2424
|
-
*
|
|
2425
|
-
*
|
|
2426
|
-
* - In display mode, usually a {@link sap.m.Text Text} control is rendered.
|
|
2427
|
-
* - If `multipleLines` is set, an {@link sap.m.ExpandableText ExpandableText} control is rendered.
|
|
2428
|
-
* - If multiple values are allowed, a {@link sap.m.Tokenizer Tokenizer} control is rendered.
|
|
2429
|
-
* - In edit mode, usually an {@link sap.m.Input Input} control is rendered.
|
|
2430
|
-
* - If multiple values are allowed, a {@link sap.m.MultiInput MultiInput} control is rendered.
|
|
2431
|
-
* - If `multipleLines` is set, a {@link sap.m.TextArea TextArea} control is rendered.
|
|
2432
|
-
* - If a date type or a date/time type is used, a {@link sap.m.DateRangeSelection DateRangeSelection }
|
|
2433
|
-
* control is rendered.
|
|
2434
|
-
* - If a date type is used and only single values are allowed, a {@link sap.m.DatePicker DatePicker }
|
|
2435
|
-
* control is rendered.
|
|
2436
|
-
* - If a date type is used and only single ranges are allowed, a {@link sap.m.DateRangeSelection DateRangeSelection }
|
|
2437
|
-
* control is rendered.
|
|
2438
|
-
* - If a date/time type is used and only single values are allowed, a {@link sap.m.DateTimePicker DateTimePicker }
|
|
2439
|
-
* control is rendered.
|
|
2440
|
-
* - If a time type is used and only single values are allowed, a {@link sap.m.TimePicker TimePicker }
|
|
2441
|
-
* control is rendered.
|
|
2442
|
-
* - If used for search, a {@link sap.m.SearchField SearchField} control is rendered.
|
|
2443
|
-
*
|
|
2444
|
-
* @since 1.48.0
|
|
2445
|
-
* @experimental (since 1.48.0)
|
|
2542
|
+
* @since 1.121
|
|
2543
|
+
* @experimental (since 1.121)
|
|
2446
2544
|
*/
|
|
2447
2545
|
class FilterField
|
|
2448
|
-
extends sap.ui.mdc.
|
|
2546
|
+
extends sap.ui.mdc.FilterField
|
|
2449
2547
|
implements
|
|
2450
2548
|
sap.ui.core.IFormContent,
|
|
2451
2549
|
sap.ui.core.ISemanticFormContent,
|
|
2452
|
-
sap.m.IOverflowToolbarContent
|
|
2550
|
+
sap.m.IOverflowToolbarContent
|
|
2551
|
+
{
|
|
2453
2552
|
__implements__sap_ui_core_IFormContent: boolean;
|
|
2454
2553
|
__implements__sap_ui_core_ISemanticFormContent: boolean;
|
|
2455
2554
|
__implements__sap_m_IOverflowToolbarContent: boolean;
|
|
@@ -2679,6 +2778,7 @@ declare namespace sap {
|
|
|
2679
2778
|
* See {@link sap.ui.base.ManagedObject#bindProperty ManagedObject.bindProperty} for a detailed description
|
|
2680
2779
|
* of the possible properties of `oBindingInfo`
|
|
2681
2780
|
*
|
|
2781
|
+
* @deprecated (since 1.124) - Replaced by metaPath property and the corresponding data provider definition.
|
|
2682
2782
|
*
|
|
2683
2783
|
* @returns Reference to `this` in order to allow method chaining
|
|
2684
2784
|
*/
|
|
@@ -2733,6 +2833,8 @@ declare namespace sap {
|
|
|
2733
2833
|
*
|
|
2734
2834
|
* Default value is `true`.
|
|
2735
2835
|
*
|
|
2836
|
+
* @deprecated (since 1.124) - the concept has been discarded. Refreshing the data is handled by the data
|
|
2837
|
+
* provider.
|
|
2736
2838
|
*
|
|
2737
2839
|
* @returns Value of property `autoUpdate`
|
|
2738
2840
|
*/
|
|
@@ -2742,6 +2844,7 @@ declare namespace sap {
|
|
|
2742
2844
|
*
|
|
2743
2845
|
* Client Identifier to be used for underlying InA queries
|
|
2744
2846
|
*
|
|
2847
|
+
* @deprecated (since 1.124) - Replaced by metaPath property and the corresponding data provider definition.
|
|
2745
2848
|
*
|
|
2746
2849
|
* @returns Value of property `clientIdentifier`
|
|
2747
2850
|
*/
|
|
@@ -2749,7 +2852,7 @@ declare namespace sap {
|
|
|
2749
2852
|
/**
|
|
2750
2853
|
* Gets current value of property {@link #getConfigId configId}.
|
|
2751
2854
|
*
|
|
2752
|
-
*
|
|
2855
|
+
* Configuration Id
|
|
2753
2856
|
*
|
|
2754
2857
|
*
|
|
2755
2858
|
* @returns Value of property `configId`
|
|
@@ -2784,6 +2887,7 @@ declare namespace sap {
|
|
|
2784
2887
|
*
|
|
2785
2888
|
* Name of the Data Provider from the corresponding MultiDimModel to be used
|
|
2786
2889
|
*
|
|
2890
|
+
* @deprecated (since 1.124) - Replaced by metaPath property and the corresponding data provider definition.
|
|
2787
2891
|
*
|
|
2788
2892
|
* @returns Value of property `dataProvider`
|
|
2789
2893
|
*/
|
|
@@ -2795,21 +2899,11 @@ declare namespace sap {
|
|
|
2795
2899
|
*
|
|
2796
2900
|
* Default value is `"$datasource"`.
|
|
2797
2901
|
*
|
|
2902
|
+
* @deprecated (since 1.124) - Replaced by metaPath property and the corresponding data provider definition.
|
|
2798
2903
|
*
|
|
2799
2904
|
* @returns Value of property `dataSource`
|
|
2800
2905
|
*/
|
|
2801
2906
|
getDataSource(): string;
|
|
2802
|
-
/**
|
|
2803
|
-
* Gets current value of property {@link #getEnvironment environment}.
|
|
2804
|
-
*
|
|
2805
|
-
* Additional Flag to be passed to the control TODO: Document the possibilities
|
|
2806
|
-
*
|
|
2807
|
-
* Default value is `[]`.
|
|
2808
|
-
*
|
|
2809
|
-
*
|
|
2810
|
-
* @returns Value of property `environment`
|
|
2811
|
-
*/
|
|
2812
|
-
getEnvironment(): string[];
|
|
2813
2907
|
/**
|
|
2814
2908
|
* Gets current value of property {@link #getHeight height}.
|
|
2815
2909
|
*
|
|
@@ -2932,6 +3026,15 @@ declare namespace sap {
|
|
|
2932
3026
|
* @returns Value of property `keepAliveInterval`
|
|
2933
3027
|
*/
|
|
2934
3028
|
getKeepAliveInterval(): int;
|
|
3029
|
+
/**
|
|
3030
|
+
* Gets current value of property {@link #getMetaPath metaPath}.
|
|
3031
|
+
*
|
|
3032
|
+
* Defines the relative path to the data provider in the multidimensional model.
|
|
3033
|
+
*
|
|
3034
|
+
*
|
|
3035
|
+
* @returns Value of property `metaPath`
|
|
3036
|
+
*/
|
|
3037
|
+
getMetaPath(): string;
|
|
2935
3038
|
/**
|
|
2936
3039
|
* Gets current value of property {@link #getMultiDimModelId multiDimModelId}.
|
|
2937
3040
|
*
|
|
@@ -2939,6 +3042,7 @@ declare namespace sap {
|
|
|
2939
3042
|
*
|
|
2940
3043
|
* Default value is `"om"`.
|
|
2941
3044
|
*
|
|
3045
|
+
* @deprecated (since 1.124) - Replaced by metaPath property and the corresponding data provider definition.
|
|
2942
3046
|
*
|
|
2943
3047
|
* @returns Value of property `multiDimModelId`
|
|
2944
3048
|
*/
|
|
@@ -2969,6 +3073,7 @@ declare namespace sap {
|
|
|
2969
3073
|
*
|
|
2970
3074
|
* System to take data from. If not set or set to "local" current url will be used to determine the system
|
|
2971
3075
|
*
|
|
3076
|
+
* @deprecated (since 1.124) - Replaced by metaPath property and the corresponding data provider definition.
|
|
2972
3077
|
*
|
|
2973
3078
|
* @returns Value of property `systemName`
|
|
2974
3079
|
*/
|
|
@@ -2980,6 +3085,7 @@ declare namespace sap {
|
|
|
2980
3085
|
*
|
|
2981
3086
|
* Default value is `BW`.
|
|
2982
3087
|
*
|
|
3088
|
+
* @deprecated (since 1.124) - Replaced by metaPath property and the corresponding data provider definition.
|
|
2983
3089
|
*
|
|
2984
3090
|
* @returns Value of property `systemType`
|
|
2985
3091
|
*/
|
|
@@ -3065,6 +3171,8 @@ declare namespace sap {
|
|
|
3065
3171
|
*
|
|
3066
3172
|
* Default value is `true`.
|
|
3067
3173
|
*
|
|
3174
|
+
* @deprecated (since 1.124) - the concept has been discarded. Refreshing the data is handled by the data
|
|
3175
|
+
* provider.
|
|
3068
3176
|
*
|
|
3069
3177
|
* @returns Reference to `this` in order to allow method chaining
|
|
3070
3178
|
*/
|
|
@@ -3081,6 +3189,7 @@ declare namespace sap {
|
|
|
3081
3189
|
*
|
|
3082
3190
|
* When called with a value of `null` or `undefined`, the default value of the property will be restored.
|
|
3083
3191
|
*
|
|
3192
|
+
* @deprecated (since 1.124) - Replaced by metaPath property and the corresponding data provider definition.
|
|
3084
3193
|
*
|
|
3085
3194
|
* @returns Reference to `this` in order to allow method chaining
|
|
3086
3195
|
*/
|
|
@@ -3093,7 +3202,7 @@ declare namespace sap {
|
|
|
3093
3202
|
/**
|
|
3094
3203
|
* Sets a new value for property {@link #getConfigId configId}.
|
|
3095
3204
|
*
|
|
3096
|
-
*
|
|
3205
|
+
* Configuration Id
|
|
3097
3206
|
*
|
|
3098
3207
|
* When called with a value of `null` or `undefined`, the default value of the property will be restored.
|
|
3099
3208
|
*
|
|
@@ -3145,6 +3254,7 @@ declare namespace sap {
|
|
|
3145
3254
|
*
|
|
3146
3255
|
* When called with a value of `null` or `undefined`, the default value of the property will be restored.
|
|
3147
3256
|
*
|
|
3257
|
+
* @deprecated (since 1.124) - Replaced by metaPath property and the corresponding data provider definition.
|
|
3148
3258
|
*
|
|
3149
3259
|
* @returns Reference to `this` in order to allow method chaining
|
|
3150
3260
|
*/
|
|
@@ -3163,6 +3273,7 @@ declare namespace sap {
|
|
|
3163
3273
|
*
|
|
3164
3274
|
* Default value is `"$datasource"`.
|
|
3165
3275
|
*
|
|
3276
|
+
* @deprecated (since 1.124) - Replaced by metaPath property and the corresponding data provider definition.
|
|
3166
3277
|
*
|
|
3167
3278
|
* @returns Reference to `this` in order to allow method chaining
|
|
3168
3279
|
*/
|
|
@@ -3172,24 +3283,6 @@ declare namespace sap {
|
|
|
3172
3283
|
*/
|
|
3173
3284
|
sDataSource?: string
|
|
3174
3285
|
): this;
|
|
3175
|
-
/**
|
|
3176
|
-
* Sets a new value for property {@link #getEnvironment environment}.
|
|
3177
|
-
*
|
|
3178
|
-
* Additional Flag to be passed to the control TODO: Document the possibilities
|
|
3179
|
-
*
|
|
3180
|
-
* When called with a value of `null` or `undefined`, the default value of the property will be restored.
|
|
3181
|
-
*
|
|
3182
|
-
* Default value is `[]`.
|
|
3183
|
-
*
|
|
3184
|
-
*
|
|
3185
|
-
* @returns Reference to `this` in order to allow method chaining
|
|
3186
|
-
*/
|
|
3187
|
-
setEnvironment(
|
|
3188
|
-
/**
|
|
3189
|
-
* New value for property `environment`
|
|
3190
|
-
*/
|
|
3191
|
-
sEnvironment?: string[]
|
|
3192
|
-
): this;
|
|
3193
3286
|
/**
|
|
3194
3287
|
* Sets a new value for property {@link #getHeight height}.
|
|
3195
3288
|
*
|
|
@@ -3389,6 +3482,22 @@ declare namespace sap {
|
|
|
3389
3482
|
*/
|
|
3390
3483
|
iKeepAliveInterval?: int
|
|
3391
3484
|
): this;
|
|
3485
|
+
/**
|
|
3486
|
+
* Sets a new value for property {@link #getMetaPath metaPath}.
|
|
3487
|
+
*
|
|
3488
|
+
* Defines the relative path to the data provider in the multidimensional model.
|
|
3489
|
+
*
|
|
3490
|
+
* When called with a value of `null` or `undefined`, the default value of the property will be restored.
|
|
3491
|
+
*
|
|
3492
|
+
*
|
|
3493
|
+
* @returns Reference to `this` in order to allow method chaining
|
|
3494
|
+
*/
|
|
3495
|
+
setMetaPath(
|
|
3496
|
+
/**
|
|
3497
|
+
* New value for property `metaPath`
|
|
3498
|
+
*/
|
|
3499
|
+
sMetaPath: string
|
|
3500
|
+
): this;
|
|
3392
3501
|
/**
|
|
3393
3502
|
* Sets a new value for property {@link #getMultiDimModelId multiDimModelId}.
|
|
3394
3503
|
*
|
|
@@ -3398,6 +3507,7 @@ declare namespace sap {
|
|
|
3398
3507
|
*
|
|
3399
3508
|
* Default value is `"om"`.
|
|
3400
3509
|
*
|
|
3510
|
+
* @deprecated (since 1.124) - Replaced by metaPath property and the corresponding data provider definition.
|
|
3401
3511
|
*
|
|
3402
3512
|
* @returns Reference to `this` in order to allow method chaining
|
|
3403
3513
|
*/
|
|
@@ -3449,6 +3559,7 @@ declare namespace sap {
|
|
|
3449
3559
|
*
|
|
3450
3560
|
* When called with a value of `null` or `undefined`, the default value of the property will be restored.
|
|
3451
3561
|
*
|
|
3562
|
+
* @deprecated (since 1.124) - Replaced by metaPath property and the corresponding data provider definition.
|
|
3452
3563
|
*
|
|
3453
3564
|
* @returns Reference to `this` in order to allow method chaining
|
|
3454
3565
|
*/
|
|
@@ -3467,6 +3578,7 @@ declare namespace sap {
|
|
|
3467
3578
|
*
|
|
3468
3579
|
* Default value is `BW`.
|
|
3469
3580
|
*
|
|
3581
|
+
* @deprecated (since 1.124) - Replaced by metaPath property and the corresponding data provider definition.
|
|
3470
3582
|
*
|
|
3471
3583
|
* @returns Reference to `this` in order to allow method chaining
|
|
3472
3584
|
*/
|
|
@@ -3513,6 +3625,7 @@ declare namespace sap {
|
|
|
3513
3625
|
/**
|
|
3514
3626
|
* Unbinds property {@link #getDataProvider dataProvider} from model data.
|
|
3515
3627
|
*
|
|
3628
|
+
* @deprecated (since 1.124) - Replaced by metaPath property and the corresponding data provider definition.
|
|
3516
3629
|
*
|
|
3517
3630
|
* @returns Reference to `this` in order to allow method chaining
|
|
3518
3631
|
*/
|