@sapui5/ts-types 1.135.0 → 1.136.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/sap.apf.d.ts +1 -1
- package/types/sap.ca.ui.d.ts +1 -1
- package/types/sap.chart.d.ts +1 -1
- package/types/sap.collaboration.d.ts +1 -1
- package/types/sap.cux.home.d.ts +80 -0
- package/types/sap.esh.search.ui.d.ts +1 -1
- package/types/sap.f.d.ts +105 -1
- package/types/sap.fe.base.d.ts +1 -1
- package/types/sap.fe.controls.d.ts +1 -1
- package/types/sap.fe.core.d.ts +30 -2
- package/types/sap.fe.ina.d.ts +1 -1
- package/types/sap.fe.macros.d.ts +421 -47
- 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 +1 -1
- 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 +78 -8
- package/types/sap.insights.d.ts +1 -1
- package/types/sap.m.d.ts +497 -32
- 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 +4 -4
- package/types/sap.suite.ui.commons.d.ts +12 -1
- package/types/sap.suite.ui.generic.template.d.ts +8 -2
- package/types/sap.suite.ui.microchart.d.ts +1 -1
- package/types/sap.tnt.d.ts +1 -1
- package/types/sap.ui.codeeditor.d.ts +1 -1
- package/types/sap.ui.commons.d.ts +1 -1
- package/types/sap.ui.comp.d.ts +3474 -380
- package/types/sap.ui.core.d.ts +108 -111
- 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 +1 -1
- package/types/sap.ui.generic.app.d.ts +1 -1
- package/types/sap.ui.generic.template.d.ts +1 -1
- package/types/sap.ui.integration.d.ts +2 -2
- package/types/sap.ui.layout.d.ts +1 -1
- package/types/sap.ui.mdc.d.ts +127 -8
- package/types/sap.ui.richtexteditor.d.ts +8 -6
- package/types/sap.ui.rta.d.ts +1 -1
- package/types/sap.ui.suite.d.ts +1 -1
- package/types/sap.ui.support.d.ts +1 -1
- package/types/sap.ui.table.d.ts +7 -1
- package/types/sap.ui.testrecorder.d.ts +1 -1
- package/types/sap.ui.unified.d.ts +11 -31
- 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 +295 -25
- package/types/sap.ui.vtm.d.ts +1 -1
- package/types/sap.ui.webc.common.d.ts +1 -1
- package/types/sap.ui.webc.fiori.d.ts +1 -1
- package/types/sap.ui.webc.main.d.ts +1 -1
- package/types/sap.uiext.inbox.d.ts +1 -1
- package/types/sap.ushell.d.ts +46 -37
- package/types/sap.ushell_abap.d.ts +1 -1
- package/types/sap.uxap.d.ts +2 -21
- package/types/sap.viz.d.ts +1 -1
- package/types/sap.webanalytics.core.d.ts +1 -1
- package/types/sap.zen.commons.d.ts +1 -1
- package/types/sap.zen.crosstab.d.ts +1 -1
- package/types/sap.zen.dsh.d.ts +1 -1
package/types/sap.fe.macros.d.ts
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
// For Library Version: 1.
|
|
1
|
+
// For Library Version: 1.136.0
|
|
2
2
|
|
|
3
3
|
declare namespace sap {
|
|
4
4
|
namespace fe {
|
|
@@ -1204,22 +1204,37 @@ declare namespace sap {
|
|
|
1204
1204
|
/**
|
|
1205
1205
|
* Describes the settings that can be provided to the MicroChart constructor.
|
|
1206
1206
|
*
|
|
1207
|
+
* @deprecated As of version 1.130. Use {@link sap.fe.macros.MicroChart } instead
|
|
1207
1208
|
* @experimental
|
|
1208
1209
|
*/
|
|
1209
1210
|
interface $MicroChartSettings
|
|
1210
|
-
extends sap.fe.macros
|
|
1211
|
+
extends sap.fe.macros.$MicroChartSettings {
|
|
1212
|
+
/**
|
|
1213
|
+
* context path to the MicroChart.
|
|
1214
|
+
*/
|
|
1215
|
+
contextPath?: string | sap.ui.base.ManagedObject.PropertyBindingInfo;
|
|
1216
|
+
|
|
1211
1217
|
/**
|
|
1212
1218
|
* Show blank space in case there is no data in the chart
|
|
1213
1219
|
*/
|
|
1214
|
-
hideOnNoData?:
|
|
1220
|
+
hideOnNoData?:
|
|
1221
|
+
| boolean
|
|
1222
|
+
| sap.ui.base.ManagedObject.PropertyBindingInfo
|
|
1223
|
+
| `{${string}}`;
|
|
1224
|
+
|
|
1225
|
+
/**
|
|
1226
|
+
* Metadata path to the MicroChart.
|
|
1227
|
+
*/
|
|
1228
|
+
metaPath?: string | sap.ui.base.ManagedObject.PropertyBindingInfo;
|
|
1215
1229
|
|
|
1216
1230
|
/**
|
|
1217
1231
|
* To control the rendering of Title, Subtitle and Currency Labels. When the size is xs then we do
|
|
1218
1232
|
* not see the inner labels of the MicroChart as well.
|
|
1219
1233
|
*/
|
|
1220
1234
|
showOnlyChart?:
|
|
1221
|
-
|
|
|
1222
|
-
| sap.ui.base.ManagedObject.PropertyBindingInfo
|
|
1235
|
+
| boolean
|
|
1236
|
+
| sap.ui.base.ManagedObject.PropertyBindingInfo
|
|
1237
|
+
| `{${string}}`;
|
|
1223
1238
|
|
|
1224
1239
|
/**
|
|
1225
1240
|
* Size of the MicroChart
|
|
@@ -1229,6 +1244,9 @@ declare namespace sap {
|
|
|
1229
1244
|
|
|
1230
1245
|
/**
|
|
1231
1246
|
* Building block used to create a MicroChart based on the metadata provided by OData V4.
|
|
1247
|
+
*
|
|
1248
|
+
*
|
|
1249
|
+
* Usually, a contextPath and metaPath is expected.
|
|
1232
1250
|
* Usage example:
|
|
1233
1251
|
*
|
|
1234
1252
|
* ```javascript
|
|
@@ -1245,10 +1263,81 @@ declare namespace sap {
|
|
|
1245
1263
|
* usage.
|
|
1246
1264
|
*
|
|
1247
1265
|
*
|
|
1266
|
+
* @deprecated As of version 1.130. Use {@link sap.fe.macros.MicroChart } instead
|
|
1248
1267
|
* @experimental
|
|
1249
1268
|
*/
|
|
1250
|
-
class MicroChart extends sap.fe.macros.
|
|
1251
|
-
|
|
1269
|
+
class MicroChart extends sap.fe.macros.MicroChart {
|
|
1270
|
+
/**
|
|
1271
|
+
* Gets current value of property contextPath.
|
|
1272
|
+
*
|
|
1273
|
+
*
|
|
1274
|
+
* @returns Value of property `contextPath`
|
|
1275
|
+
*/
|
|
1276
|
+
getContextPath(): string;
|
|
1277
|
+
/**
|
|
1278
|
+
* Gets current value of property hideOnNoData.
|
|
1279
|
+
*
|
|
1280
|
+
*
|
|
1281
|
+
* @returns Value of property `hideOnNoData`
|
|
1282
|
+
*/
|
|
1283
|
+
getHideOnNoData(): boolean;
|
|
1284
|
+
/**
|
|
1285
|
+
* Gets current value of property metaPath.
|
|
1286
|
+
*
|
|
1287
|
+
*
|
|
1288
|
+
* @returns Value of property `metaPath`
|
|
1289
|
+
*/
|
|
1290
|
+
getMetaPath(): string;
|
|
1291
|
+
/**
|
|
1292
|
+
* Gets current value of property showOnlyChart.
|
|
1293
|
+
*
|
|
1294
|
+
*
|
|
1295
|
+
* @returns Value of property `showOnlyChart`
|
|
1296
|
+
*/
|
|
1297
|
+
getShowOnlyChart(): boolean;
|
|
1298
|
+
/**
|
|
1299
|
+
* Gets current value of property size.
|
|
1300
|
+
*
|
|
1301
|
+
*
|
|
1302
|
+
* @returns Value of property `size`
|
|
1303
|
+
*/
|
|
1304
|
+
getSize(): string;
|
|
1305
|
+
/**
|
|
1306
|
+
* Gets current value of property contextPath.
|
|
1307
|
+
*
|
|
1308
|
+
*
|
|
1309
|
+
* @returns Value of property `contextPath`
|
|
1310
|
+
*/
|
|
1311
|
+
setContextPath(): string;
|
|
1312
|
+
/**
|
|
1313
|
+
* Gets current value of property hideOnNoData.
|
|
1314
|
+
*
|
|
1315
|
+
*
|
|
1316
|
+
* @returns Value of property `hideOnNoData`
|
|
1317
|
+
*/
|
|
1318
|
+
setHideOnNoData(): boolean;
|
|
1319
|
+
/**
|
|
1320
|
+
* Gets current value of property metaPath.
|
|
1321
|
+
*
|
|
1322
|
+
*
|
|
1323
|
+
* @returns Value of property `metaPath`
|
|
1324
|
+
*/
|
|
1325
|
+
setMetaPath(): string;
|
|
1326
|
+
/**
|
|
1327
|
+
* Gets current value of property showOnlyChart.
|
|
1328
|
+
*
|
|
1329
|
+
*
|
|
1330
|
+
* @returns Value of property `showOnlyChart`
|
|
1331
|
+
*/
|
|
1332
|
+
setShowOnlyChart(): boolean;
|
|
1333
|
+
/**
|
|
1334
|
+
* Gets current value of property size.
|
|
1335
|
+
*
|
|
1336
|
+
*
|
|
1337
|
+
* @returns Value of property `size`
|
|
1338
|
+
*/
|
|
1339
|
+
setSize(): string;
|
|
1340
|
+
}
|
|
1252
1341
|
}
|
|
1253
1342
|
|
|
1254
1343
|
namespace richtexteditor {
|
|
@@ -1374,11 +1463,6 @@ declare namespace sap {
|
|
|
1374
1463
|
*/
|
|
1375
1464
|
placement?: string | sap.ui.base.ManagedObject.PropertyBindingInfo;
|
|
1376
1465
|
|
|
1377
|
-
/**
|
|
1378
|
-
* Event handler to be called when the user chooses the action
|
|
1379
|
-
*/
|
|
1380
|
-
press?: string | sap.ui.base.ManagedObject.PropertyBindingInfo;
|
|
1381
|
-
|
|
1382
1466
|
/**
|
|
1383
1467
|
* Defines if the action requires a selection.
|
|
1384
1468
|
*/
|
|
@@ -1557,6 +1641,20 @@ declare namespace sap {
|
|
|
1557
1641
|
| `{${string}}`;
|
|
1558
1642
|
}
|
|
1559
1643
|
|
|
1644
|
+
/**
|
|
1645
|
+
* Describes the settings that can be provided to the AnalyticalConfiguration constructor.
|
|
1646
|
+
*/
|
|
1647
|
+
interface $AnalyticalConfigurationSettings
|
|
1648
|
+
extends sap.fe.macros.controls.$BuildingBlockObjectPropertySettings {
|
|
1649
|
+
/**
|
|
1650
|
+
* True if leaf level rows shall display aggregated data
|
|
1651
|
+
*/
|
|
1652
|
+
aggregationOnLeafLevel?:
|
|
1653
|
+
| boolean
|
|
1654
|
+
| sap.ui.base.ManagedObject.PropertyBindingInfo
|
|
1655
|
+
| `{${string}}`;
|
|
1656
|
+
}
|
|
1657
|
+
|
|
1560
1658
|
/**
|
|
1561
1659
|
* Describes the settings that can be provided to the Column constructor.
|
|
1562
1660
|
*/
|
|
@@ -1747,7 +1845,7 @@ declare namespace sap {
|
|
|
1747
1845
|
* Describes the settings that can be provided to the QuickVariantSelection constructor.
|
|
1748
1846
|
*/
|
|
1749
1847
|
interface $QuickVariantSelectionSettings
|
|
1750
|
-
extends sap.fe.
|
|
1848
|
+
extends sap.fe.macros.controls.$BuildingBlockObjectPropertySettings {
|
|
1751
1849
|
/**
|
|
1752
1850
|
* Defines the list of paths pointing to the selection variants that should be used as quick filters
|
|
1753
1851
|
*/
|
|
@@ -1947,6 +2045,12 @@ declare namespace sap {
|
|
|
1947
2045
|
* - Column
|
|
1948
2046
|
*
|
|
1949
2047
|
* - Filter
|
|
2048
|
+
*
|
|
2049
|
+
* - Group
|
|
2050
|
+
*
|
|
2051
|
+
*
|
|
2052
|
+
*
|
|
2053
|
+
* The Group option is only applicable to analytical tables and responsive tables.
|
|
1950
2054
|
*/
|
|
1951
2055
|
personalization?:
|
|
1952
2056
|
| string
|
|
@@ -2054,6 +2158,11 @@ declare namespace sap {
|
|
|
2054
2158
|
| sap.ui.base.ManagedObject.AggregationBindingInfo
|
|
2055
2159
|
| `{${string}}`;
|
|
2056
2160
|
|
|
2161
|
+
/**
|
|
2162
|
+
* A set of options that can be configured to control the aggregation behavior
|
|
2163
|
+
*/
|
|
2164
|
+
analyticalConfiguration?: sap.fe.macros.table.AnalyticalConfiguration;
|
|
2165
|
+
|
|
2057
2166
|
/**
|
|
2058
2167
|
* Aggregate columns of the table.
|
|
2059
2168
|
*/
|
|
@@ -2301,12 +2410,26 @@ declare namespace sap {
|
|
|
2301
2410
|
| sap.ui.base.ManagedObject.PropertyBindingInfo;
|
|
2302
2411
|
|
|
2303
2412
|
/**
|
|
2304
|
-
* Defines the extension point to control
|
|
2413
|
+
* Defines the extension point to control whether a source node can be copied to a specific parent node.
|
|
2414
|
+
*/
|
|
2415
|
+
isCopyToPositionAllowed?:
|
|
2416
|
+
| string
|
|
2417
|
+
| sap.ui.base.ManagedObject.PropertyBindingInfo;
|
|
2418
|
+
|
|
2419
|
+
/**
|
|
2420
|
+
* Defines the extension point to control whether a source node can be dropped on a specific parent node.
|
|
2305
2421
|
*/
|
|
2306
2422
|
isMoveToPositionAllowed?:
|
|
2307
2423
|
| string
|
|
2308
2424
|
| sap.ui.base.ManagedObject.PropertyBindingInfo;
|
|
2309
2425
|
|
|
2426
|
+
/**
|
|
2427
|
+
* efines the extension point to control whether a node can be copied.
|
|
2428
|
+
*/
|
|
2429
|
+
isNodeCopyable?:
|
|
2430
|
+
| string
|
|
2431
|
+
| sap.ui.base.ManagedObject.PropertyBindingInfo;
|
|
2432
|
+
|
|
2310
2433
|
/**
|
|
2311
2434
|
* Defines the extension point to control if a node can be dragged.
|
|
2312
2435
|
*/
|
|
@@ -2355,6 +2478,12 @@ declare namespace sap {
|
|
|
2355
2478
|
* - Column
|
|
2356
2479
|
*
|
|
2357
2480
|
* - Filter
|
|
2481
|
+
*
|
|
2482
|
+
* - Group
|
|
2483
|
+
*
|
|
2484
|
+
*
|
|
2485
|
+
*
|
|
2486
|
+
* The Group option is only applicable to analytical tables and responsive tables.
|
|
2358
2487
|
*/
|
|
2359
2488
|
personalization?:
|
|
2360
2489
|
| string
|
|
@@ -2463,6 +2592,11 @@ declare namespace sap {
|
|
|
2463
2592
|
| sap.ui.base.ManagedObject.AggregationBindingInfo
|
|
2464
2593
|
| `{${string}}`;
|
|
2465
2594
|
|
|
2595
|
+
/**
|
|
2596
|
+
* A set of options that can be configured to control the aggregation behavior
|
|
2597
|
+
*/
|
|
2598
|
+
analyticalConfiguration?: sap.fe.macros.table.AnalyticalConfiguration;
|
|
2599
|
+
|
|
2466
2600
|
/**
|
|
2467
2601
|
* Aggregate columns of the table.
|
|
2468
2602
|
*/
|
|
@@ -2563,6 +2697,11 @@ declare namespace sap {
|
|
|
2563
2697
|
| `{${string}}`;
|
|
2564
2698
|
}
|
|
2565
2699
|
|
|
2700
|
+
/**
|
|
2701
|
+
* Parameters of the Action#press event.
|
|
2702
|
+
*/
|
|
2703
|
+
interface Action$PressEventParameters {}
|
|
2704
|
+
|
|
2566
2705
|
/**
|
|
2567
2706
|
* Parameters of the Table#beforeRebindTable event.
|
|
2568
2707
|
*/
|
|
@@ -2613,6 +2752,11 @@ declare namespace sap {
|
|
|
2613
2752
|
*/
|
|
2614
2753
|
class ActionOverride extends sap.fe.macros.controls
|
|
2615
2754
|
.BuildingBlockObjectProperty {}
|
|
2755
|
+
/**
|
|
2756
|
+
* A set of options that can be configured to control the aggregation behavior
|
|
2757
|
+
*/
|
|
2758
|
+
class AnalyticalConfiguration extends sap.fe.macros.controls
|
|
2759
|
+
.BuildingBlockObjectProperty {}
|
|
2616
2760
|
/**
|
|
2617
2761
|
* Definition of a custom column to be used inside the table.
|
|
2618
2762
|
* The template for the column has to be provided as the default aggregation
|
|
@@ -2637,8 +2781,8 @@ declare namespace sap {
|
|
|
2637
2781
|
/**
|
|
2638
2782
|
* Definition of the quickVariantSelection to be used inside the table.
|
|
2639
2783
|
*/
|
|
2640
|
-
class QuickVariantSelection extends sap.fe.
|
|
2641
|
-
.
|
|
2784
|
+
class QuickVariantSelection extends sap.fe.macros.controls
|
|
2785
|
+
.BuildingBlockObjectProperty {}
|
|
2642
2786
|
/**
|
|
2643
2787
|
* Building block used to create a table based on the metadata provided by OData V4.
|
|
2644
2788
|
*
|
|
@@ -3199,6 +3343,14 @@ declare namespace sap {
|
|
|
3199
3343
|
class TreeTableCreationOptions extends sap.fe.macros.controls
|
|
3200
3344
|
.BuildingBlockObjectProperty {}
|
|
3201
3345
|
|
|
3346
|
+
/**
|
|
3347
|
+
* Event object of the Action#press event.
|
|
3348
|
+
*/
|
|
3349
|
+
type Action$PressEvent = sap.ui.base.Event<
|
|
3350
|
+
Action$PressEventParameters,
|
|
3351
|
+
Action
|
|
3352
|
+
>;
|
|
3353
|
+
|
|
3202
3354
|
/**
|
|
3203
3355
|
* Event object of the Table#beforeRebindTable event.
|
|
3204
3356
|
*/
|
|
@@ -3460,6 +3612,52 @@ declare namespace sap {
|
|
|
3460
3612
|
metaPath?: string | sap.ui.base.ManagedObject.PropertyBindingInfo;
|
|
3461
3613
|
}
|
|
3462
3614
|
|
|
3615
|
+
/**
|
|
3616
|
+
* Describes the settings that can be provided to the MessageButton constructor.
|
|
3617
|
+
*
|
|
3618
|
+
* @experimental
|
|
3619
|
+
*/
|
|
3620
|
+
interface $MessageButtonSettings
|
|
3621
|
+
extends sap.fe.core.buildingBlocks.$BuildingBlockSettings {}
|
|
3622
|
+
|
|
3623
|
+
/**
|
|
3624
|
+
* Describes the settings that can be provided to the MicroChart constructor.
|
|
3625
|
+
*/
|
|
3626
|
+
interface $MicroChartSettings
|
|
3627
|
+
extends sap.fe.core.buildingBlocks.$BuildingBlockSettings {
|
|
3628
|
+
/**
|
|
3629
|
+
* context path to the MicroChart.
|
|
3630
|
+
*/
|
|
3631
|
+
contextPath?: string | sap.ui.base.ManagedObject.PropertyBindingInfo;
|
|
3632
|
+
|
|
3633
|
+
/**
|
|
3634
|
+
* Show blank space in case there is no data in the chart
|
|
3635
|
+
*/
|
|
3636
|
+
hideOnNoData?:
|
|
3637
|
+
| boolean
|
|
3638
|
+
| sap.ui.base.ManagedObject.PropertyBindingInfo
|
|
3639
|
+
| `{${string}}`;
|
|
3640
|
+
|
|
3641
|
+
/**
|
|
3642
|
+
* Metadata path to the MicroChart.
|
|
3643
|
+
*/
|
|
3644
|
+
metaPath?: string | sap.ui.base.ManagedObject.PropertyBindingInfo;
|
|
3645
|
+
|
|
3646
|
+
/**
|
|
3647
|
+
* To control the rendering of Title, Subtitle and Currency Labels. When the size is xs then we do
|
|
3648
|
+
* not see the inner labels of the MicroChart as well.
|
|
3649
|
+
*/
|
|
3650
|
+
showOnlyChart?:
|
|
3651
|
+
| boolean
|
|
3652
|
+
| sap.ui.base.ManagedObject.PropertyBindingInfo
|
|
3653
|
+
| `{${string}}`;
|
|
3654
|
+
|
|
3655
|
+
/**
|
|
3656
|
+
* Size of the MicroChart
|
|
3657
|
+
*/
|
|
3658
|
+
size?: string | sap.ui.base.ManagedObject.PropertyBindingInfo;
|
|
3659
|
+
}
|
|
3660
|
+
|
|
3463
3661
|
/**
|
|
3464
3662
|
* Describes the settings that can be provided to the MultiValueField constructor.
|
|
3465
3663
|
*
|
|
@@ -3495,6 +3693,38 @@ declare namespace sap {
|
|
|
3495
3693
|
| `{${string}}`;
|
|
3496
3694
|
}
|
|
3497
3695
|
|
|
3696
|
+
/**
|
|
3697
|
+
* Describes the settings that can be provided to the Page constructor.
|
|
3698
|
+
*/
|
|
3699
|
+
interface $PageSettings
|
|
3700
|
+
extends sap.fe.core.buildingBlocks.$BuildingBlockSettings {
|
|
3701
|
+
/**
|
|
3702
|
+
* Avatar source of the page. It is considered only if the title property is specified.
|
|
3703
|
+
*/
|
|
3704
|
+
avatarSrc?: string | sap.ui.base.ManagedObject.PropertyBindingInfo;
|
|
3705
|
+
|
|
3706
|
+
/**
|
|
3707
|
+
* Description of the page. It is considered only if the title property is specified.
|
|
3708
|
+
*/
|
|
3709
|
+
description?: string | sap.ui.base.ManagedObject.PropertyBindingInfo;
|
|
3710
|
+
|
|
3711
|
+
/**
|
|
3712
|
+
* Title of the page
|
|
3713
|
+
* If title is not given, then we will add a title, avatar and description based on the unqualified HeaderInfo
|
|
3714
|
+
* associated to the entity
|
|
3715
|
+
*/
|
|
3716
|
+
title?: string | sap.ui.base.ManagedObject.PropertyBindingInfo;
|
|
3717
|
+
|
|
3718
|
+
/**
|
|
3719
|
+
* Content(s) of the page
|
|
3720
|
+
*/
|
|
3721
|
+
items?:
|
|
3722
|
+
| sap.ui.core.Control[]
|
|
3723
|
+
| sap.ui.core.Control
|
|
3724
|
+
| sap.ui.base.ManagedObject.AggregationBindingInfo
|
|
3725
|
+
| `{${string}}`;
|
|
3726
|
+
}
|
|
3727
|
+
|
|
3498
3728
|
/**
|
|
3499
3729
|
* Describes the settings that can be provided to the Paginator constructor.
|
|
3500
3730
|
*/
|
|
@@ -3759,27 +3989,6 @@ declare namespace sap {
|
|
|
3759
3989
|
fields?: sap.ui.core.Control;
|
|
3760
3990
|
}
|
|
3761
3991
|
|
|
3762
|
-
/**
|
|
3763
|
-
* Describes the settings that can be provided to the MicroChart constructor.
|
|
3764
|
-
*/
|
|
3765
|
-
interface $MicroChartSettings extends sap.ui.core.$ControlSettings {
|
|
3766
|
-
/**
|
|
3767
|
-
* Show blank space in case there is no data in the chart
|
|
3768
|
-
*/
|
|
3769
|
-
hideOnNoData?: string | sap.ui.base.ManagedObject.PropertyBindingInfo;
|
|
3770
|
-
|
|
3771
|
-
/**
|
|
3772
|
-
* To control the rendering of Title, Subtitle and Currency Labels. When the size is xs then we do
|
|
3773
|
-
* not see the inner labels of the MicroChart as well.
|
|
3774
|
-
*/
|
|
3775
|
-
showOnlyChart?: string | sap.ui.base.ManagedObject.PropertyBindingInfo;
|
|
3776
|
-
|
|
3777
|
-
/**
|
|
3778
|
-
* Size of the MicroChart
|
|
3779
|
-
*/
|
|
3780
|
-
size?: string | sap.ui.base.ManagedObject.PropertyBindingInfo;
|
|
3781
|
-
}
|
|
3782
|
-
|
|
3783
3992
|
/**
|
|
3784
3993
|
* Describes the settings that can be provided to the Table constructor.
|
|
3785
3994
|
*/
|
|
@@ -3957,6 +4166,12 @@ declare namespace sap {
|
|
|
3957
4166
|
* - Column
|
|
3958
4167
|
*
|
|
3959
4168
|
* - Filter
|
|
4169
|
+
*
|
|
4170
|
+
* - Group
|
|
4171
|
+
*
|
|
4172
|
+
*
|
|
4173
|
+
*
|
|
4174
|
+
* The Group option is only applicable to analytical tables and responsive tables.
|
|
3960
4175
|
*/
|
|
3961
4176
|
personalization?:
|
|
3962
4177
|
| string
|
|
@@ -4060,6 +4275,11 @@ declare namespace sap {
|
|
|
4060
4275
|
| sap.ui.base.ManagedObject.AggregationBindingInfo
|
|
4061
4276
|
| `{${string}}`;
|
|
4062
4277
|
|
|
4278
|
+
/**
|
|
4279
|
+
* A set of options that can be configured to control the aggregation behavior
|
|
4280
|
+
*/
|
|
4281
|
+
analyticalConfiguration?: sap.fe.macros.table.AnalyticalConfiguration;
|
|
4282
|
+
|
|
4063
4283
|
/**
|
|
4064
4284
|
* Aggregate columns of the table.
|
|
4065
4285
|
*/
|
|
@@ -4236,12 +4456,24 @@ declare namespace sap {
|
|
|
4236
4456
|
ignoredFields?: string | sap.ui.base.ManagedObject.PropertyBindingInfo;
|
|
4237
4457
|
|
|
4238
4458
|
/**
|
|
4239
|
-
* Defines the extension point to control
|
|
4459
|
+
* Defines the extension point to control whether a source node can be copied to a specific parent node.
|
|
4460
|
+
*/
|
|
4461
|
+
isCopyToPositionAllowed?:
|
|
4462
|
+
| string
|
|
4463
|
+
| sap.ui.base.ManagedObject.PropertyBindingInfo;
|
|
4464
|
+
|
|
4465
|
+
/**
|
|
4466
|
+
* Defines the extension point to control whether a source node can be dropped on a specific parent node.
|
|
4240
4467
|
*/
|
|
4241
4468
|
isMoveToPositionAllowed?:
|
|
4242
4469
|
| string
|
|
4243
4470
|
| sap.ui.base.ManagedObject.PropertyBindingInfo;
|
|
4244
4471
|
|
|
4472
|
+
/**
|
|
4473
|
+
* efines the extension point to control whether a node can be copied.
|
|
4474
|
+
*/
|
|
4475
|
+
isNodeCopyable?: string | sap.ui.base.ManagedObject.PropertyBindingInfo;
|
|
4476
|
+
|
|
4245
4477
|
/**
|
|
4246
4478
|
* Defines the extension point to control if a node can be dragged.
|
|
4247
4479
|
*/
|
|
@@ -4288,6 +4520,12 @@ declare namespace sap {
|
|
|
4288
4520
|
* - Column
|
|
4289
4521
|
*
|
|
4290
4522
|
* - Filter
|
|
4523
|
+
*
|
|
4524
|
+
* - Group
|
|
4525
|
+
*
|
|
4526
|
+
*
|
|
4527
|
+
*
|
|
4528
|
+
* The Group option is only applicable to analytical tables and responsive tables.
|
|
4291
4529
|
*/
|
|
4292
4530
|
personalization?:
|
|
4293
4531
|
| string
|
|
@@ -4392,6 +4630,11 @@ declare namespace sap {
|
|
|
4392
4630
|
| sap.ui.base.ManagedObject.AggregationBindingInfo
|
|
4393
4631
|
| `{${string}}`;
|
|
4394
4632
|
|
|
4633
|
+
/**
|
|
4634
|
+
* A set of options that can be configured to control the aggregation behavior
|
|
4635
|
+
*/
|
|
4636
|
+
analyticalConfiguration?: sap.fe.macros.table.AnalyticalConfiguration;
|
|
4637
|
+
|
|
4395
4638
|
/**
|
|
4396
4639
|
* Aggregate columns of the table.
|
|
4397
4640
|
*/
|
|
@@ -4444,6 +4687,11 @@ declare namespace sap {
|
|
|
4444
4687
|
*/
|
|
4445
4688
|
interface KPITag$PressEventParameters {}
|
|
4446
4689
|
|
|
4690
|
+
/**
|
|
4691
|
+
* Parameters of the MessageButton#visibilityChange event.
|
|
4692
|
+
*/
|
|
4693
|
+
interface MessageButton$VisibilityChangeEventParameters {}
|
|
4694
|
+
|
|
4447
4695
|
/**
|
|
4448
4696
|
* Parameters of the FilterBar#afterClear event.
|
|
4449
4697
|
*/
|
|
@@ -4849,6 +5097,120 @@ declare namespace sap {
|
|
|
4849
5097
|
{
|
|
4850
5098
|
__implements__sap_ui_core_IFormContent: boolean;
|
|
4851
5099
|
}
|
|
5100
|
+
/**
|
|
5101
|
+
* Building block used to show bound messages.
|
|
5102
|
+
* The Message Button Building Block gets the bound messages from the MessageModel.
|
|
5103
|
+
* Usage example:
|
|
5104
|
+
*
|
|
5105
|
+
* ```javascript
|
|
5106
|
+
*
|
|
5107
|
+
* <macros:MessageButton visibilityChange=".handler.onMessageButtonVisibilityChange" />
|
|
5108
|
+
* ```
|
|
5109
|
+
*
|
|
5110
|
+
*
|
|
5111
|
+
*
|
|
5112
|
+
* @experimental
|
|
5113
|
+
*/
|
|
5114
|
+
class MessageButton extends sap.fe.core.buildingBlocks.BuildingBlock {}
|
|
5115
|
+
/**
|
|
5116
|
+
* Building block used to create a MicroChart based on the metadata provided by OData V4.
|
|
5117
|
+
* {@link demo:sap/fe/core/fpmExplorer/index.html#/buildingBlocks/microchart/ Overview of Micro Chart Building Block}
|
|
5118
|
+
*
|
|
5119
|
+
*
|
|
5120
|
+
* Usually, a contextPath and metaPath is expected.
|
|
5121
|
+
*
|
|
5122
|
+
* Usage example:
|
|
5123
|
+
*
|
|
5124
|
+
* ```javascript
|
|
5125
|
+
*
|
|
5126
|
+
* <macros:MicroChart id="MyMicroChart" contextPath="/RootEntity" metaPath="@com.sap.vocabularies.UI.v1.Chart" />
|
|
5127
|
+
* ```
|
|
5128
|
+
*
|
|
5129
|
+
*
|
|
5130
|
+
* ```javascript
|
|
5131
|
+
*
|
|
5132
|
+
* sap.ui.require(["sap/fe/macros/MicroChart"], function(MicroChart) {
|
|
5133
|
+
* ...
|
|
5134
|
+
* new MicroChart("myMicroChart", {metaPath:"@com.sap.vocabularies.UI.v1.Chart"})
|
|
5135
|
+
* })
|
|
5136
|
+
* ```
|
|
5137
|
+
*
|
|
5138
|
+
*
|
|
5139
|
+
*
|
|
5140
|
+
* @since 1.93.0
|
|
5141
|
+
*/
|
|
5142
|
+
class MicroChart extends sap.fe.core.buildingBlocks.BuildingBlock {
|
|
5143
|
+
/**
|
|
5144
|
+
* Gets current value of property contextPath.
|
|
5145
|
+
*
|
|
5146
|
+
*
|
|
5147
|
+
* @returns Value of property `contextPath`
|
|
5148
|
+
*/
|
|
5149
|
+
getContextPath(): string;
|
|
5150
|
+
/**
|
|
5151
|
+
* Gets current value of property hideOnNoData.
|
|
5152
|
+
*
|
|
5153
|
+
*
|
|
5154
|
+
* @returns Value of property `hideOnNoData`
|
|
5155
|
+
*/
|
|
5156
|
+
getHideOnNoData(): boolean;
|
|
5157
|
+
/**
|
|
5158
|
+
* Gets current value of property metaPath.
|
|
5159
|
+
*
|
|
5160
|
+
*
|
|
5161
|
+
* @returns Value of property `metaPath`
|
|
5162
|
+
*/
|
|
5163
|
+
getMetaPath(): string;
|
|
5164
|
+
/**
|
|
5165
|
+
* Gets current value of property showOnlyChart.
|
|
5166
|
+
*
|
|
5167
|
+
*
|
|
5168
|
+
* @returns Value of property `showOnlyChart`
|
|
5169
|
+
*/
|
|
5170
|
+
getShowOnlyChart(): boolean;
|
|
5171
|
+
/**
|
|
5172
|
+
* Gets current value of property size.
|
|
5173
|
+
*
|
|
5174
|
+
*
|
|
5175
|
+
* @returns Value of property `size`
|
|
5176
|
+
*/
|
|
5177
|
+
getSize(): string;
|
|
5178
|
+
/**
|
|
5179
|
+
* Gets current value of property contextPath.
|
|
5180
|
+
*
|
|
5181
|
+
*
|
|
5182
|
+
* @returns Value of property `contextPath`
|
|
5183
|
+
*/
|
|
5184
|
+
setContextPath(): string;
|
|
5185
|
+
/**
|
|
5186
|
+
* Gets current value of property hideOnNoData.
|
|
5187
|
+
*
|
|
5188
|
+
*
|
|
5189
|
+
* @returns Value of property `hideOnNoData`
|
|
5190
|
+
*/
|
|
5191
|
+
setHideOnNoData(): boolean;
|
|
5192
|
+
/**
|
|
5193
|
+
* Gets current value of property metaPath.
|
|
5194
|
+
*
|
|
5195
|
+
*
|
|
5196
|
+
* @returns Value of property `metaPath`
|
|
5197
|
+
*/
|
|
5198
|
+
setMetaPath(): string;
|
|
5199
|
+
/**
|
|
5200
|
+
* Gets current value of property showOnlyChart.
|
|
5201
|
+
*
|
|
5202
|
+
*
|
|
5203
|
+
* @returns Value of property `showOnlyChart`
|
|
5204
|
+
*/
|
|
5205
|
+
setShowOnlyChart(): boolean;
|
|
5206
|
+
/**
|
|
5207
|
+
* Gets current value of property size.
|
|
5208
|
+
*
|
|
5209
|
+
*
|
|
5210
|
+
* @returns Value of property `size`
|
|
5211
|
+
*/
|
|
5212
|
+
setSize(): string;
|
|
5213
|
+
}
|
|
4852
5214
|
/**
|
|
4853
5215
|
* Building block for creating a MultiValueField based on the metadata provided by OData V4.
|
|
4854
5216
|
*
|
|
@@ -4873,6 +5235,11 @@ declare namespace sap {
|
|
|
4873
5235
|
* @experimental As of version 1.118.0.
|
|
4874
5236
|
*/
|
|
4875
5237
|
class MultiValueField extends sap.fe.core.buildingBlocks.BuildingBlock {}
|
|
5238
|
+
/**
|
|
5239
|
+
* Provides a Page building block that can be used to create a page with a title and content
|
|
5240
|
+
* By default, the page comes with an ObjectTitle
|
|
5241
|
+
*/
|
|
5242
|
+
class Page extends sap.fe.core.buildingBlocks.BuildingBlock {}
|
|
4876
5243
|
/**
|
|
4877
5244
|
* Building block used to create a paginator control.
|
|
4878
5245
|
* Usage example:
|
|
@@ -5145,13 +5512,6 @@ declare namespace sap {
|
|
|
5145
5512
|
* @since 1.90.0
|
|
5146
5513
|
*/
|
|
5147
5514
|
class FormElement extends sap.ui.core.Control {}
|
|
5148
|
-
/**
|
|
5149
|
-
* Building block used to create a MicroChart based on the metadata provided by OData V4.
|
|
5150
|
-
* {@link demo:sap/fe/core/fpmExplorer/index.html#/buildingBlocks/microchart/microChartDefault Overview of Building Blocks}
|
|
5151
|
-
*
|
|
5152
|
-
* @since 1.93.0
|
|
5153
|
-
*/
|
|
5154
|
-
class MicroChart extends sap.ui.core.Control {}
|
|
5155
5515
|
/**
|
|
5156
5516
|
* Building block used to create a table based on the metadata provided by OData V4.
|
|
5157
5517
|
*
|
|
@@ -5537,6 +5897,14 @@ declare namespace sap {
|
|
|
5537
5897
|
KPITag
|
|
5538
5898
|
>;
|
|
5539
5899
|
|
|
5900
|
+
/**
|
|
5901
|
+
* Event object of the MessageButton#visibilityChange event.
|
|
5902
|
+
*/
|
|
5903
|
+
type MessageButton$VisibilityChangeEvent = sap.ui.base.Event<
|
|
5904
|
+
MessageButton$VisibilityChangeEventParameters,
|
|
5905
|
+
MessageButton
|
|
5906
|
+
>;
|
|
5907
|
+
|
|
5540
5908
|
/**
|
|
5541
5909
|
* Event object of the FilterBar#afterClear event.
|
|
5542
5910
|
*/
|
|
@@ -5660,12 +6028,16 @@ declare namespace sap {
|
|
|
5660
6028
|
|
|
5661
6029
|
"sap/fe/macros/MacroAPI": undefined;
|
|
5662
6030
|
|
|
5663
|
-
"sap/fe/macros/
|
|
6031
|
+
"sap/fe/macros/MessageButton": undefined;
|
|
6032
|
+
|
|
6033
|
+
"sap/fe/macros/MicroChart": undefined;
|
|
5664
6034
|
|
|
5665
|
-
"sap/fe/macros/microchart/MicroChart
|
|
6035
|
+
"sap/fe/macros/microchart/MicroChart": undefined;
|
|
5666
6036
|
|
|
5667
6037
|
"sap/fe/macros/MultiValueField": undefined;
|
|
5668
6038
|
|
|
6039
|
+
"sap/fe/macros/Page": undefined;
|
|
6040
|
+
|
|
5669
6041
|
"sap/fe/macros/Paginator": undefined;
|
|
5670
6042
|
|
|
5671
6043
|
"sap/fe/macros/RichTextEditor": undefined;
|
|
@@ -5688,6 +6060,8 @@ declare namespace sap {
|
|
|
5688
6060
|
|
|
5689
6061
|
"sap/fe/macros/table/ActionOverride": undefined;
|
|
5690
6062
|
|
|
6063
|
+
"sap/fe/macros/table/AnalyticalConfiguration": undefined;
|
|
6064
|
+
|
|
5691
6065
|
"sap/fe/macros/table/Column": undefined;
|
|
5692
6066
|
|
|
5693
6067
|
"sap/fe/macros/table/ColumnExportSettings": undefined;
|