@sapui5/ts-types-esm 1.134.1 → 1.135.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.esh.search.ui.d.ts +1 -1
- package/types/sap.f.d.ts +2 -8
- 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 +5 -5
- package/types/sap.fe.ina.d.ts +1 -1
- package/types/sap.fe.macros.d.ts +807 -293
- 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 +6 -4
- package/types/sap.fe.tools.d.ts +1 -1
- package/types/sap.feedback.ui.d.ts +1 -1
- package/types/sap.gantt.d.ts +73 -15
- package/types/sap.insights.d.ts +1 -1
- package/types/sap.m.d.ts +330 -83
- 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 +248 -1229
- package/types/sap.suite.ui.commons.d.ts +72 -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 +215 -19
- 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 +90 -18
- package/types/sap.ui.core.d.ts +160 -40
- 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 +14 -6
- 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 -4
- package/types/sap.ui.layout.d.ts +14 -13
- package/types/sap.ui.mdc.d.ts +26 -6
- package/types/sap.ui.richtexteditor.d.ts +39 -1
- package/types/sap.ui.rta.d.ts +31 -5
- package/types/sap.ui.suite.d.ts +1 -1
- package/types/sap.ui.support.d.ts +30 -16
- package/types/sap.ui.table.d.ts +10 -18
- package/types/sap.ui.testrecorder.d.ts +1 -1
- package/types/sap.ui.unified.d.ts +32 -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 +11 -72
- 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 +18 -16
- package/types/sap.ushell_abap.d.ts +1 -1
- package/types/sap.uxap.d.ts +10 -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.fe.macros.d.ts
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
// For Library Version: 1.
|
|
1
|
+
// For Library Version: 1.135.0
|
|
2
2
|
|
|
3
3
|
declare module "sap/fe/macros/Chart" {
|
|
4
4
|
import {
|
|
@@ -381,6 +381,181 @@ declare module "sap/fe/macros/CollectionBindingInfo" {
|
|
|
381
381
|
}
|
|
382
382
|
}
|
|
383
383
|
|
|
384
|
+
declare module "sap/fe/macros/Field" {
|
|
385
|
+
import {
|
|
386
|
+
default as MacroAPI,
|
|
387
|
+
$MacroAPISettings,
|
|
388
|
+
} from "sap/fe/macros/MacroAPI";
|
|
389
|
+
|
|
390
|
+
import Control from "sap/ui/core/Control";
|
|
391
|
+
|
|
392
|
+
import { PropertyBindingInfo } from "sap/ui/base/ManagedObject";
|
|
393
|
+
|
|
394
|
+
import FieldFormatOptions from "sap/fe/macros/field/FieldFormatOptions";
|
|
395
|
+
|
|
396
|
+
import Event from "sap/ui/base/Event";
|
|
397
|
+
|
|
398
|
+
/**
|
|
399
|
+
* Building block for creating a field based on the metadata provided by OData V4.
|
|
400
|
+
*
|
|
401
|
+
*
|
|
402
|
+
* Usually, a DataField or DataPoint annotation is expected, but the field can also be used to display a
|
|
403
|
+
* property from the entity type.
|
|
404
|
+
* When creating a Field building block, you must provide an ID to ensure everything works correctly.
|
|
405
|
+
*
|
|
406
|
+
* Usage example:
|
|
407
|
+
*
|
|
408
|
+
* ```javascript
|
|
409
|
+
*
|
|
410
|
+
* <macros:Field id="MyField" metaPath="MyProperty" />
|
|
411
|
+
* ```
|
|
412
|
+
*
|
|
413
|
+
* Overview of Building Blocks
|
|
414
|
+
*/
|
|
415
|
+
export default class Field extends MacroAPI {
|
|
416
|
+
/**
|
|
417
|
+
* Adds a message to the field.
|
|
418
|
+
*
|
|
419
|
+
*
|
|
420
|
+
* @returns The id of the message
|
|
421
|
+
*/
|
|
422
|
+
addMessage(
|
|
423
|
+
/**
|
|
424
|
+
* The parameters to create message
|
|
425
|
+
*/
|
|
426
|
+
parameters: {
|
|
427
|
+
/**
|
|
428
|
+
* Message description
|
|
429
|
+
*/
|
|
430
|
+
description?: string;
|
|
431
|
+
/**
|
|
432
|
+
* Message text
|
|
433
|
+
*/
|
|
434
|
+
message?: string;
|
|
435
|
+
/**
|
|
436
|
+
* True if the message is persistent
|
|
437
|
+
*/
|
|
438
|
+
persistent?: boolean;
|
|
439
|
+
/**
|
|
440
|
+
* Type of the message
|
|
441
|
+
*/
|
|
442
|
+
type?: /* was: sap.ui.core.message.MessageType */ any;
|
|
443
|
+
}
|
|
444
|
+
): string;
|
|
445
|
+
/**
|
|
446
|
+
* Gets the current enablement state of the field.
|
|
447
|
+
*
|
|
448
|
+
*
|
|
449
|
+
* @returns Boolean value with the enablement state
|
|
450
|
+
*/
|
|
451
|
+
getEnabled(): boolean;
|
|
452
|
+
/**
|
|
453
|
+
* Retrieves the current value of the field.
|
|
454
|
+
*
|
|
455
|
+
*
|
|
456
|
+
* @returns The current value of the field
|
|
457
|
+
*/
|
|
458
|
+
getValue(): boolean | float | string | undefined;
|
|
459
|
+
/**
|
|
460
|
+
* Removes a message from the field.
|
|
461
|
+
*/
|
|
462
|
+
removeMessage(
|
|
463
|
+
/**
|
|
464
|
+
* The id of the message
|
|
465
|
+
*/
|
|
466
|
+
id: string
|
|
467
|
+
): void;
|
|
468
|
+
/**
|
|
469
|
+
* Sets the current enablement state of the field.
|
|
470
|
+
*
|
|
471
|
+
*
|
|
472
|
+
* @returns The current field reference
|
|
473
|
+
*/
|
|
474
|
+
setEnabled(): Control;
|
|
475
|
+
/**
|
|
476
|
+
* Sets the current value of the field.
|
|
477
|
+
*
|
|
478
|
+
*
|
|
479
|
+
* @returns The current field reference
|
|
480
|
+
*/
|
|
481
|
+
setValue(): Control;
|
|
482
|
+
}
|
|
483
|
+
/**
|
|
484
|
+
* Describes the settings that can be provided to the Field constructor.
|
|
485
|
+
*/
|
|
486
|
+
export interface $FieldSettings extends $MacroAPISettings {
|
|
487
|
+
/**
|
|
488
|
+
* Defines the path of the context used in the current page or block.
|
|
489
|
+
* This setting is defined by the framework.
|
|
490
|
+
*/
|
|
491
|
+
contextPath?: string | PropertyBindingInfo;
|
|
492
|
+
|
|
493
|
+
/**
|
|
494
|
+
* This is used to optionally provide an external description that comes from a different model than the
|
|
495
|
+
* oData model.
|
|
496
|
+
* This should be used in conjunction with the value property.
|
|
497
|
+
*/
|
|
498
|
+
description?: string | PropertyBindingInfo;
|
|
499
|
+
|
|
500
|
+
/**
|
|
501
|
+
* Defines the relative path of the property in the metamodel, based on the current contextPath.
|
|
502
|
+
*/
|
|
503
|
+
metaPath?: string | PropertyBindingInfo;
|
|
504
|
+
|
|
505
|
+
/**
|
|
506
|
+
* An expression that allows you to control the read-only state of the field.
|
|
507
|
+
* If you do not set any expression, SAP Fiori elements hooks into the standard lifecycle to determine the
|
|
508
|
+
* current state.
|
|
509
|
+
*/
|
|
510
|
+
readOnly?: boolean | PropertyBindingInfo | `{${string}}`;
|
|
511
|
+
|
|
512
|
+
/**
|
|
513
|
+
* Option to add semantic objects for a field.
|
|
514
|
+
* This parameter overwrites the semantic objects defined through annotations.
|
|
515
|
+
* Valid options are either a single semantic object, a stringified array of semantic objects,
|
|
516
|
+
* a formatter or a single binding expression returning either a single semantic object or an array of semantic
|
|
517
|
+
* objects.
|
|
518
|
+
*/
|
|
519
|
+
semanticObject?: string | PropertyBindingInfo;
|
|
520
|
+
|
|
521
|
+
/**
|
|
522
|
+
* This is used to optionally provide an external value that comes from a different model than the oData
|
|
523
|
+
* model.
|
|
524
|
+
* It is designed to work with a field with value help, and without support for complex value help (currency
|
|
525
|
+
* / unit).
|
|
526
|
+
*/
|
|
527
|
+
value?: string | PropertyBindingInfo;
|
|
528
|
+
|
|
529
|
+
/**
|
|
530
|
+
* A set of options that can be configured.
|
|
531
|
+
*/
|
|
532
|
+
formatOptions?: FieldFormatOptions;
|
|
533
|
+
}
|
|
534
|
+
|
|
535
|
+
/**
|
|
536
|
+
* Parameters of the Field#change event.
|
|
537
|
+
*/
|
|
538
|
+
export interface Field$ChangeEventParameters {}
|
|
539
|
+
|
|
540
|
+
/**
|
|
541
|
+
* Event object of the Field#change event.
|
|
542
|
+
*/
|
|
543
|
+
export type Field$ChangeEvent = Event<Field$ChangeEventParameters, Field>;
|
|
544
|
+
|
|
545
|
+
/**
|
|
546
|
+
* Parameters of the Field#liveChange event.
|
|
547
|
+
*/
|
|
548
|
+
export interface Field$LiveChangeEventParameters {}
|
|
549
|
+
|
|
550
|
+
/**
|
|
551
|
+
* Event object of the Field#liveChange event.
|
|
552
|
+
*/
|
|
553
|
+
export type Field$LiveChangeEvent = Event<
|
|
554
|
+
Field$LiveChangeEventParameters,
|
|
555
|
+
Field
|
|
556
|
+
>;
|
|
557
|
+
}
|
|
558
|
+
|
|
384
559
|
declare module "sap/fe/macros/KPITag" {
|
|
385
560
|
import {
|
|
386
561
|
default as BuildingBlock,
|
|
@@ -1241,219 +1416,22 @@ declare module "sap/fe/macros/fcl/FlexibleColumnLayoutActions.block" {
|
|
|
1241
1416
|
* ```javascript
|
|
1242
1417
|
*
|
|
1243
1418
|
* <macros:FlexibleColumnLayoutActions />
|
|
1244
|
-
* ```
|
|
1245
|
-
*
|
|
1246
|
-
*
|
|
1247
|
-
*
|
|
1248
|
-
* @since 1.93.0
|
|
1249
|
-
*/
|
|
1250
|
-
export default class FlexibleColumnLayoutActions extends Control {}
|
|
1251
|
-
/**
|
|
1252
|
-
* Describes the settings that can be provided to the FlexibleColumnLayoutActions constructor.
|
|
1253
|
-
*/
|
|
1254
|
-
export interface $FlexibleColumnLayoutActionsSettings
|
|
1255
|
-
extends $ControlSettings {}
|
|
1256
|
-
}
|
|
1257
|
-
|
|
1258
|
-
declare module "sap/fe/macros/field/Field" {
|
|
1259
|
-
import {
|
|
1260
|
-
default as BuildingBlockWithTemplating,
|
|
1261
|
-
$BuildingBlockWithTemplatingSettings,
|
|
1262
|
-
} from "sap/fe/macros/controls/BuildingBlockWithTemplating";
|
|
1263
|
-
|
|
1264
|
-
import { IFormContent } from "sap/ui/core/library";
|
|
1265
|
-
|
|
1266
|
-
import Control from "sap/ui/core/Control";
|
|
1267
|
-
|
|
1268
|
-
import { PropertyBindingInfo } from "sap/ui/base/ManagedObject";
|
|
1269
|
-
|
|
1270
|
-
import FieldFormatOptions from "sap/fe/macros/field/FieldFormatOptions";
|
|
1271
|
-
|
|
1272
|
-
import Event from "sap/ui/base/Event";
|
|
1273
|
-
|
|
1274
|
-
/**
|
|
1275
|
-
* Building block for creating a field based on the metadata provided by OData V4.
|
|
1276
|
-
*
|
|
1277
|
-
*
|
|
1278
|
-
* Usually, a DataField or DataPoint annotation is expected, but the field can also be used to display a
|
|
1279
|
-
* property from the entity type.
|
|
1280
|
-
* When creating a Field building block, you must provide an ID to ensure everything works correctly.
|
|
1281
|
-
* Usage example:
|
|
1282
|
-
*
|
|
1283
|
-
* ```javascript
|
|
1284
|
-
*
|
|
1285
|
-
* sap.ui.require(["sap/fe/macros/field/Field"], function(Field) {
|
|
1286
|
-
* ...
|
|
1287
|
-
* new Field("MyField", {metaPath:"MyProperty"})
|
|
1288
|
-
* })
|
|
1289
|
-
* ```
|
|
1290
|
-
*
|
|
1291
|
-
* This is currently an experimental API because the structure of the generated content will change to come
|
|
1292
|
-
* closer to the Field that you get out of templates.
|
|
1293
|
-
* The public method and property will not change but the internal structure will so be careful on your
|
|
1294
|
-
* usage.
|
|
1295
|
-
*
|
|
1296
|
-
*
|
|
1297
|
-
* @experimental
|
|
1298
|
-
*/
|
|
1299
|
-
export default class Field
|
|
1300
|
-
extends BuildingBlockWithTemplating
|
|
1301
|
-
implements IFormContent
|
|
1302
|
-
{
|
|
1303
|
-
__implements__sap_ui_core_IFormContent: boolean;
|
|
1304
|
-
|
|
1305
|
-
/**
|
|
1306
|
-
* Adds a message to the field.
|
|
1307
|
-
*
|
|
1308
|
-
*
|
|
1309
|
-
* @returns The id of the message
|
|
1310
|
-
*/
|
|
1311
|
-
addMessage(
|
|
1312
|
-
/**
|
|
1313
|
-
* The parameters to create message
|
|
1314
|
-
*/
|
|
1315
|
-
parameters: {
|
|
1316
|
-
/**
|
|
1317
|
-
* Message description
|
|
1318
|
-
*/
|
|
1319
|
-
description?: string;
|
|
1320
|
-
/**
|
|
1321
|
-
* Message text
|
|
1322
|
-
*/
|
|
1323
|
-
message?: string;
|
|
1324
|
-
/**
|
|
1325
|
-
* True if the message is persistent
|
|
1326
|
-
*/
|
|
1327
|
-
persistent?: boolean;
|
|
1328
|
-
/**
|
|
1329
|
-
* Type of the message
|
|
1330
|
-
*/
|
|
1331
|
-
type?: /* was: sap.ui.core.message.MessageType */ any;
|
|
1332
|
-
}
|
|
1333
|
-
): string;
|
|
1334
|
-
/**
|
|
1335
|
-
* Gets the current enablement state of the field.
|
|
1336
|
-
*
|
|
1337
|
-
*
|
|
1338
|
-
* @returns Boolean value with the enablement state
|
|
1339
|
-
*/
|
|
1340
|
-
getEnabled(): boolean;
|
|
1341
|
-
/**
|
|
1342
|
-
* Retrieves the current value of the field.
|
|
1343
|
-
*
|
|
1344
|
-
*
|
|
1345
|
-
* @returns The current value of the field
|
|
1346
|
-
*/
|
|
1347
|
-
getValue(): boolean | float | string | undefined;
|
|
1348
|
-
/**
|
|
1349
|
-
* Removes a message from the field.
|
|
1350
|
-
*/
|
|
1351
|
-
removeMessage(
|
|
1352
|
-
/**
|
|
1353
|
-
* The id of the message
|
|
1354
|
-
*/
|
|
1355
|
-
id: string
|
|
1356
|
-
): void;
|
|
1357
|
-
/**
|
|
1358
|
-
* Sets the current enablement state of the field.
|
|
1359
|
-
*
|
|
1360
|
-
*
|
|
1361
|
-
* @returns The current field reference
|
|
1362
|
-
*/
|
|
1363
|
-
setEnabled(): Control;
|
|
1364
|
-
/**
|
|
1365
|
-
* Sets the current value of the field.
|
|
1366
|
-
*
|
|
1367
|
-
*
|
|
1368
|
-
* @returns The current field reference
|
|
1369
|
-
*/
|
|
1370
|
-
setValue(): Control;
|
|
1371
|
-
}
|
|
1372
|
-
/**
|
|
1373
|
-
* Describes the settings that can be provided to the Field constructor.
|
|
1374
|
-
*
|
|
1375
|
-
* @experimental
|
|
1376
|
-
*/
|
|
1377
|
-
export interface $FieldSettings extends $BuildingBlockWithTemplatingSettings {
|
|
1378
|
-
/**
|
|
1379
|
-
* Defines the path of the context used in the current page or block.
|
|
1380
|
-
* This setting is defined by the framework.
|
|
1381
|
-
*/
|
|
1382
|
-
contextPath?: string | PropertyBindingInfo;
|
|
1383
|
-
|
|
1384
|
-
/**
|
|
1385
|
-
* This is used to optionally provide an external description that comes from a different model than the
|
|
1386
|
-
* oData model.
|
|
1387
|
-
* This should be used in conjunction with the value property.
|
|
1388
|
-
*/
|
|
1389
|
-
description?: string | PropertyBindingInfo;
|
|
1390
|
-
|
|
1391
|
-
/**
|
|
1392
|
-
* Defines the relative path of the property in the metamodel, based on the current contextPath.
|
|
1393
|
-
*/
|
|
1394
|
-
metaPath?: string | PropertyBindingInfo;
|
|
1395
|
-
|
|
1396
|
-
/**
|
|
1397
|
-
* An expression that allows you to control the read-only state of the field.
|
|
1398
|
-
* If you do not set any expression, SAP Fiori elements hooks into the standard lifecycle to determine the
|
|
1399
|
-
* current state.
|
|
1400
|
-
*/
|
|
1401
|
-
readOnly?: boolean | PropertyBindingInfo | `{${string}}`;
|
|
1402
|
-
|
|
1403
|
-
/**
|
|
1404
|
-
* Option to add semantic objects for a field.
|
|
1405
|
-
* This parameter overwrites the semantic objects defined through annotations.
|
|
1406
|
-
* Valid options are either a single semantic object, a stringified array of semantic objects,
|
|
1407
|
-
* a formatter or a single binding expression returning either a single semantic object or an array of semantic
|
|
1408
|
-
* objects.
|
|
1409
|
-
*/
|
|
1410
|
-
semanticObject?: string | PropertyBindingInfo;
|
|
1411
|
-
|
|
1412
|
-
/**
|
|
1413
|
-
* This is used to optionally provide an external value that comes from a different model than the oData
|
|
1414
|
-
* model.
|
|
1415
|
-
* It is designed to work with a field with value help, and without support for complex value help (currency
|
|
1416
|
-
* / unit).
|
|
1417
|
-
*/
|
|
1418
|
-
value?: string | PropertyBindingInfo;
|
|
1419
|
-
|
|
1420
|
-
/**
|
|
1421
|
-
* A set of options that can be configured.
|
|
1422
|
-
*/
|
|
1423
|
-
formatOptions?: FieldFormatOptions;
|
|
1424
|
-
}
|
|
1425
|
-
|
|
1426
|
-
/**
|
|
1427
|
-
* Parameters of the Field#change event.
|
|
1428
|
-
*/
|
|
1429
|
-
export interface Field$ChangeEventParameters {}
|
|
1430
|
-
|
|
1431
|
-
/**
|
|
1432
|
-
* Event object of the Field#change event.
|
|
1433
|
-
*/
|
|
1434
|
-
export type Field$ChangeEvent = Event<Field$ChangeEventParameters, Field>;
|
|
1435
|
-
|
|
1436
|
-
/**
|
|
1437
|
-
* Parameters of the Field#liveChange event.
|
|
1419
|
+
* ```
|
|
1420
|
+
*
|
|
1421
|
+
*
|
|
1422
|
+
*
|
|
1423
|
+
* @since 1.93.0
|
|
1438
1424
|
*/
|
|
1439
|
-
export
|
|
1440
|
-
|
|
1425
|
+
export default class FlexibleColumnLayoutActions extends Control {}
|
|
1441
1426
|
/**
|
|
1442
|
-
*
|
|
1427
|
+
* Describes the settings that can be provided to the FlexibleColumnLayoutActions constructor.
|
|
1443
1428
|
*/
|
|
1444
|
-
export
|
|
1445
|
-
|
|
1446
|
-
Field
|
|
1447
|
-
>;
|
|
1429
|
+
export interface $FlexibleColumnLayoutActionsSettings
|
|
1430
|
+
extends $ControlSettings {}
|
|
1448
1431
|
}
|
|
1449
1432
|
|
|
1450
|
-
declare module "sap/fe/macros/field/
|
|
1451
|
-
import {
|
|
1452
|
-
default as MacroAPI,
|
|
1453
|
-
$MacroAPISettings,
|
|
1454
|
-
} from "sap/fe/macros/MacroAPI";
|
|
1455
|
-
|
|
1456
|
-
import Control from "sap/ui/core/Control";
|
|
1433
|
+
declare module "sap/fe/macros/field/Field" {
|
|
1434
|
+
import { default as Control, $ControlSettings } from "sap/ui/core/Control";
|
|
1457
1435
|
|
|
1458
1436
|
import { PropertyBindingInfo } from "sap/ui/base/ManagedObject";
|
|
1459
1437
|
|
|
@@ -1468,17 +1446,26 @@ declare module "sap/fe/macros/field/FieldAPI" {
|
|
|
1468
1446
|
* Usually, a DataField or DataPoint annotation is expected, but the field can also be used to display a
|
|
1469
1447
|
* property from the entity type.
|
|
1470
1448
|
* When creating a Field building block, you must provide an ID to ensure everything works correctly.
|
|
1471
|
-
*
|
|
1472
1449
|
* Usage example:
|
|
1473
1450
|
*
|
|
1474
1451
|
* ```javascript
|
|
1475
1452
|
*
|
|
1476
|
-
*
|
|
1453
|
+
* sap.ui.require(["sap/fe/macros/field/Field"], function(Field) {
|
|
1454
|
+
* ...
|
|
1455
|
+
* new Field("MyField", {metaPath:"MyProperty"})
|
|
1456
|
+
* })
|
|
1477
1457
|
* ```
|
|
1478
1458
|
*
|
|
1479
|
-
*
|
|
1459
|
+
* This is currently an experimental API because the structure of the generated content will change to come
|
|
1460
|
+
* closer to the Field that you get out of templates.
|
|
1461
|
+
* The public method and property will not change but the internal structure will so be careful on your
|
|
1462
|
+
* usage.
|
|
1463
|
+
*
|
|
1464
|
+
*
|
|
1465
|
+
* @deprecated As of version 1.135. Use {@link sap.fe.macros.Field } instead
|
|
1466
|
+
* @experimental
|
|
1480
1467
|
*/
|
|
1481
|
-
export default class Field extends
|
|
1468
|
+
export default class Field extends Control {
|
|
1482
1469
|
/**
|
|
1483
1470
|
* Adds a message to the field.
|
|
1484
1471
|
*
|
|
@@ -1548,8 +1535,11 @@ declare module "sap/fe/macros/field/FieldAPI" {
|
|
|
1548
1535
|
}
|
|
1549
1536
|
/**
|
|
1550
1537
|
* Describes the settings that can be provided to the Field constructor.
|
|
1538
|
+
*
|
|
1539
|
+
* @deprecated As of version 1.135. Use {@link sap.fe.macros.Field } instead
|
|
1540
|
+
* @experimental
|
|
1551
1541
|
*/
|
|
1552
|
-
export interface $FieldSettings extends $
|
|
1542
|
+
export interface $FieldSettings extends $ControlSettings {
|
|
1553
1543
|
/**
|
|
1554
1544
|
* Defines the path of the context used in the current page or block.
|
|
1555
1545
|
* This setting is defined by the framework.
|
|
@@ -2329,7 +2319,8 @@ declare module "sap/fe/macros/filterBar/FilterField" {
|
|
|
2329
2319
|
required?: boolean | PropertyBindingInfo | `{${string}}`;
|
|
2330
2320
|
|
|
2331
2321
|
/**
|
|
2332
|
-
*
|
|
2322
|
+
* This property is not required at filter field level. To achieve the desired behavior, specify the showMessages
|
|
2323
|
+
* property in the FilterBar building block.
|
|
2333
2324
|
*/
|
|
2334
2325
|
showMessages?: boolean | PropertyBindingInfo | `{${string}}`;
|
|
2335
2326
|
}
|
|
@@ -2611,7 +2602,265 @@ declare module "sap/fe/macros/share/ShareOptions" {
|
|
|
2611
2602
|
extends $BuildingBlockObjectPropertySettings {}
|
|
2612
2603
|
}
|
|
2613
2604
|
|
|
2614
|
-
declare module "sap/fe/macros/table/Action" {
|
|
2605
|
+
declare module "sap/fe/macros/table/Action" {
|
|
2606
|
+
import {
|
|
2607
|
+
default as BuildingBlockObjectProperty,
|
|
2608
|
+
$BuildingBlockObjectPropertySettings,
|
|
2609
|
+
} from "sap/fe/macros/controls/BuildingBlockObjectProperty";
|
|
2610
|
+
|
|
2611
|
+
import { PropertyBindingInfo } from "sap/ui/base/ManagedObject";
|
|
2612
|
+
|
|
2613
|
+
/**
|
|
2614
|
+
* Definition of a custom action to be used inside the table toolbar
|
|
2615
|
+
*/
|
|
2616
|
+
export default class Action extends BuildingBlockObjectProperty {}
|
|
2617
|
+
/**
|
|
2618
|
+
* Describes the settings that can be provided to the Action constructor.
|
|
2619
|
+
*/
|
|
2620
|
+
export interface $ActionSettings
|
|
2621
|
+
extends $BuildingBlockObjectPropertySettings {
|
|
2622
|
+
/**
|
|
2623
|
+
* Reference to the key of another action already displayed in the toolbar to properly place this one
|
|
2624
|
+
*/
|
|
2625
|
+
anchor?: string | PropertyBindingInfo;
|
|
2626
|
+
|
|
2627
|
+
/**
|
|
2628
|
+
* Determines the shortcut combination to trigger the action
|
|
2629
|
+
*/
|
|
2630
|
+
command?: string | PropertyBindingInfo;
|
|
2631
|
+
|
|
2632
|
+
/**
|
|
2633
|
+
* Enables or disables the action
|
|
2634
|
+
*/
|
|
2635
|
+
enabled?: boolean | PropertyBindingInfo | `{${string}}`;
|
|
2636
|
+
|
|
2637
|
+
/**
|
|
2638
|
+
* Determines whether the action requires selecting one item or multiple items.
|
|
2639
|
+
* Allowed values are `single` and `multi`
|
|
2640
|
+
*/
|
|
2641
|
+
enableOnSelect?: string | PropertyBindingInfo;
|
|
2642
|
+
|
|
2643
|
+
/**
|
|
2644
|
+
* Unique identifier of the action
|
|
2645
|
+
*/
|
|
2646
|
+
key?: string | PropertyBindingInfo;
|
|
2647
|
+
|
|
2648
|
+
/**
|
|
2649
|
+
* Defines where this action should be placed relative to the defined anchor
|
|
2650
|
+
* Allowed values are `Before` and `After`
|
|
2651
|
+
*/
|
|
2652
|
+
placement?: string | PropertyBindingInfo;
|
|
2653
|
+
|
|
2654
|
+
/**
|
|
2655
|
+
* Event handler to be called when the user chooses the action
|
|
2656
|
+
*/
|
|
2657
|
+
press?: string | PropertyBindingInfo;
|
|
2658
|
+
|
|
2659
|
+
/**
|
|
2660
|
+
* Defines if the action requires a selection.
|
|
2661
|
+
*/
|
|
2662
|
+
requiresSelection?: boolean | PropertyBindingInfo | `{${string}}`;
|
|
2663
|
+
|
|
2664
|
+
/**
|
|
2665
|
+
* The text that will be displayed for this action
|
|
2666
|
+
*/
|
|
2667
|
+
text?: string | PropertyBindingInfo;
|
|
2668
|
+
|
|
2669
|
+
/**
|
|
2670
|
+
* Determines whether the action is visible.
|
|
2671
|
+
*/
|
|
2672
|
+
visible?: boolean | PropertyBindingInfo | `{${string}}`;
|
|
2673
|
+
}
|
|
2674
|
+
}
|
|
2675
|
+
|
|
2676
|
+
declare module "sap/fe/macros/table/ActionGroup" {
|
|
2677
|
+
import {
|
|
2678
|
+
default as BuildingBlockObjectProperty,
|
|
2679
|
+
$BuildingBlockObjectPropertySettings,
|
|
2680
|
+
} from "sap/fe/macros/controls/BuildingBlockObjectProperty";
|
|
2681
|
+
|
|
2682
|
+
import {
|
|
2683
|
+
PropertyBindingInfo,
|
|
2684
|
+
AggregationBindingInfo,
|
|
2685
|
+
} from "sap/ui/base/ManagedObject";
|
|
2686
|
+
|
|
2687
|
+
import ActionOverride from "sap/fe/macros/table/ActionOverride";
|
|
2688
|
+
|
|
2689
|
+
import Action from "sap/fe/macros/table/Action";
|
|
2690
|
+
|
|
2691
|
+
/**
|
|
2692
|
+
* Definition of a custom ActionGroup to be used inside the table toolbar
|
|
2693
|
+
*/
|
|
2694
|
+
export default class ActionGroup extends BuildingBlockObjectProperty {}
|
|
2695
|
+
/**
|
|
2696
|
+
* Describes the settings that can be provided to the ActionGroup constructor.
|
|
2697
|
+
*/
|
|
2698
|
+
export interface $ActionGroupSettings
|
|
2699
|
+
extends $BuildingBlockObjectPropertySettings {
|
|
2700
|
+
/**
|
|
2701
|
+
* Reference to the key of another action or action group already displayed in the toolbar to properly place
|
|
2702
|
+
* this one
|
|
2703
|
+
*/
|
|
2704
|
+
anchor?: string | PropertyBindingInfo;
|
|
2705
|
+
|
|
2706
|
+
/**
|
|
2707
|
+
* Determines the default action to be executed on the action group.
|
|
2708
|
+
*/
|
|
2709
|
+
defaultAction?: string | PropertyBindingInfo;
|
|
2710
|
+
|
|
2711
|
+
/**
|
|
2712
|
+
* Unique identifier of the ActionGroup
|
|
2713
|
+
*/
|
|
2714
|
+
key?: string | PropertyBindingInfo;
|
|
2715
|
+
|
|
2716
|
+
/**
|
|
2717
|
+
* Determines where this action group should be placed relative to the defined anchor
|
|
2718
|
+
* Allowed values are `Before` and `After`
|
|
2719
|
+
*/
|
|
2720
|
+
placement?: string | PropertyBindingInfo;
|
|
2721
|
+
|
|
2722
|
+
/**
|
|
2723
|
+
* The text that will be displayed for this action group
|
|
2724
|
+
*/
|
|
2725
|
+
text?: string | PropertyBindingInfo;
|
|
2726
|
+
|
|
2727
|
+
/**
|
|
2728
|
+
* Determines the nested actions
|
|
2729
|
+
*/
|
|
2730
|
+
actions?:
|
|
2731
|
+
| Array<ActionOverride | Action>
|
|
2732
|
+
| ActionOverride
|
|
2733
|
+
| Action
|
|
2734
|
+
| AggregationBindingInfo
|
|
2735
|
+
| `{${string}}`;
|
|
2736
|
+
}
|
|
2737
|
+
}
|
|
2738
|
+
|
|
2739
|
+
declare module "sap/fe/macros/table/ActionGroupOverride" {
|
|
2740
|
+
import {
|
|
2741
|
+
default as BuildingBlockObjectProperty,
|
|
2742
|
+
$BuildingBlockObjectPropertySettings,
|
|
2743
|
+
} from "sap/fe/macros/controls/BuildingBlockObjectProperty";
|
|
2744
|
+
|
|
2745
|
+
import {
|
|
2746
|
+
PropertyBindingInfo,
|
|
2747
|
+
AggregationBindingInfo,
|
|
2748
|
+
} from "sap/ui/base/ManagedObject";
|
|
2749
|
+
|
|
2750
|
+
import ActionOverride from "sap/fe/macros/table/ActionOverride";
|
|
2751
|
+
|
|
2752
|
+
import Action from "sap/fe/macros/table/Action";
|
|
2753
|
+
|
|
2754
|
+
/**
|
|
2755
|
+
* Definition of an action group override to be used inside the Table building block.
|
|
2756
|
+
*/
|
|
2757
|
+
export default class ActionGroupOverride extends BuildingBlockObjectProperty {}
|
|
2758
|
+
/**
|
|
2759
|
+
* Describes the settings that can be provided to the ActionGroupOverride constructor.
|
|
2760
|
+
*/
|
|
2761
|
+
export interface $ActionGroupOverrideSettings
|
|
2762
|
+
extends $BuildingBlockObjectPropertySettings {
|
|
2763
|
+
/**
|
|
2764
|
+
* Reference to the key of another action or action group already displayed in the toolbar to properly place
|
|
2765
|
+
* this one
|
|
2766
|
+
*/
|
|
2767
|
+
anchor?: string | PropertyBindingInfo;
|
|
2768
|
+
|
|
2769
|
+
/**
|
|
2770
|
+
* Unique identifier of the ActionGroup to overridden.
|
|
2771
|
+
*/
|
|
2772
|
+
key?: string | PropertyBindingInfo;
|
|
2773
|
+
|
|
2774
|
+
/**
|
|
2775
|
+
* Determines where this action group should be placed relative to the defined anchor
|
|
2776
|
+
* Allowed values are `Before` and `After`
|
|
2777
|
+
*/
|
|
2778
|
+
placement?: string | PropertyBindingInfo;
|
|
2779
|
+
|
|
2780
|
+
/**
|
|
2781
|
+
* Determines the nested actions
|
|
2782
|
+
*/
|
|
2783
|
+
actions?:
|
|
2784
|
+
| Array<ActionOverride | Action>
|
|
2785
|
+
| ActionOverride
|
|
2786
|
+
| Action
|
|
2787
|
+
| AggregationBindingInfo
|
|
2788
|
+
| `{${string}}`;
|
|
2789
|
+
}
|
|
2790
|
+
}
|
|
2791
|
+
|
|
2792
|
+
declare module "sap/fe/macros/table/ActionOverride" {
|
|
2793
|
+
import {
|
|
2794
|
+
default as BuildingBlockObjectProperty,
|
|
2795
|
+
$BuildingBlockObjectPropertySettings,
|
|
2796
|
+
} from "sap/fe/macros/controls/BuildingBlockObjectProperty";
|
|
2797
|
+
|
|
2798
|
+
import { PropertyBindingInfo } from "sap/ui/base/ManagedObject";
|
|
2799
|
+
|
|
2800
|
+
/**
|
|
2801
|
+
* Definition of an override for the action to be used inside the Table building block.
|
|
2802
|
+
*/
|
|
2803
|
+
export default class ActionOverride extends BuildingBlockObjectProperty {}
|
|
2804
|
+
/**
|
|
2805
|
+
* Describes the settings that can be provided to the ActionOverride constructor.
|
|
2806
|
+
*/
|
|
2807
|
+
export interface $ActionOverrideSettings
|
|
2808
|
+
extends $BuildingBlockObjectPropertySettings {
|
|
2809
|
+
/**
|
|
2810
|
+
* Reference to the key of another action already displayed in the toolbar to properly place this one
|
|
2811
|
+
*/
|
|
2812
|
+
anchor?: string | PropertyBindingInfo;
|
|
2813
|
+
|
|
2814
|
+
/**
|
|
2815
|
+
* Determines the shortcut combination to trigger the action
|
|
2816
|
+
*/
|
|
2817
|
+
command?: string | PropertyBindingInfo;
|
|
2818
|
+
|
|
2819
|
+
/**
|
|
2820
|
+
* Determines the function to get the default values of the action.
|
|
2821
|
+
*/
|
|
2822
|
+
defaultValuesFunction?: string | PropertyBindingInfo;
|
|
2823
|
+
|
|
2824
|
+
/**
|
|
2825
|
+
* Determines if the auto scroll is enabled after executing the action.
|
|
2826
|
+
*/
|
|
2827
|
+
enableAutoScroll?: boolean | PropertyBindingInfo | `{${string}}`;
|
|
2828
|
+
|
|
2829
|
+
/**
|
|
2830
|
+
* Enables or disables the action
|
|
2831
|
+
*/
|
|
2832
|
+
enabled?: boolean | PropertyBindingInfo | `{${string}}`;
|
|
2833
|
+
|
|
2834
|
+
/**
|
|
2835
|
+
* Determines whether the action requires selecting one item or multiple items.
|
|
2836
|
+
* Allowed values are `single` and `multi`
|
|
2837
|
+
*/
|
|
2838
|
+
enableOnSelect?: string | PropertyBindingInfo;
|
|
2839
|
+
|
|
2840
|
+
/**
|
|
2841
|
+
* Unique identifier of the action to overridden.
|
|
2842
|
+
*/
|
|
2843
|
+
key?: string | PropertyBindingInfo;
|
|
2844
|
+
|
|
2845
|
+
/**
|
|
2846
|
+
* Determines whether there is a navigation after executing the action.
|
|
2847
|
+
*/
|
|
2848
|
+
navigateToInstance?: boolean | PropertyBindingInfo | `{${string}}`;
|
|
2849
|
+
|
|
2850
|
+
/**
|
|
2851
|
+
* Defines where this action should be placed relative to the defined anchor
|
|
2852
|
+
* Allowed values are `Before` and `After`
|
|
2853
|
+
*/
|
|
2854
|
+
placement?: string | PropertyBindingInfo;
|
|
2855
|
+
|
|
2856
|
+
/**
|
|
2857
|
+
* Determines whether the action is visible.
|
|
2858
|
+
*/
|
|
2859
|
+
visible?: boolean | PropertyBindingInfo | `{${string}}`;
|
|
2860
|
+
}
|
|
2861
|
+
}
|
|
2862
|
+
|
|
2863
|
+
declare module "sap/fe/macros/table/Column" {
|
|
2615
2864
|
import {
|
|
2616
2865
|
default as BuildingBlockObjectProperty,
|
|
2617
2866
|
$BuildingBlockObjectPropertySettings,
|
|
@@ -2619,105 +2868,119 @@ declare module "sap/fe/macros/table/Action" {
|
|
|
2619
2868
|
|
|
2620
2869
|
import { PropertyBindingInfo } from "sap/ui/base/ManagedObject";
|
|
2621
2870
|
|
|
2871
|
+
import ColumnExportSettings from "sap/fe/macros/table/ColumnExportSettings";
|
|
2872
|
+
|
|
2622
2873
|
/**
|
|
2623
|
-
* Definition of a custom
|
|
2874
|
+
* Definition of a custom column to be used inside the table.
|
|
2875
|
+
* The template for the column has to be provided as the default aggregation
|
|
2624
2876
|
*/
|
|
2625
|
-
export default class
|
|
2877
|
+
export default class Column extends BuildingBlockObjectProperty {}
|
|
2626
2878
|
/**
|
|
2627
|
-
* Describes the settings that can be provided to the
|
|
2879
|
+
* Describes the settings that can be provided to the Column constructor.
|
|
2628
2880
|
*/
|
|
2629
|
-
export interface $
|
|
2881
|
+
export interface $ColumnSettings
|
|
2630
2882
|
extends $BuildingBlockObjectPropertySettings {
|
|
2631
2883
|
/**
|
|
2632
|
-
* Reference to the key of another
|
|
2884
|
+
* Reference to the key of another column already displayed in the table to properly place this one
|
|
2633
2885
|
*/
|
|
2634
2886
|
anchor?: string | PropertyBindingInfo;
|
|
2635
2887
|
|
|
2636
2888
|
/**
|
|
2637
|
-
*
|
|
2889
|
+
* The text that will be displayed for this column header
|
|
2638
2890
|
*/
|
|
2639
|
-
|
|
2891
|
+
header?: string | PropertyBindingInfo;
|
|
2640
2892
|
|
|
2641
2893
|
/**
|
|
2642
|
-
*
|
|
2894
|
+
* Aligns the header as well as the content horizontally
|
|
2895
|
+
*/
|
|
2896
|
+
horizontalAlign?: string | PropertyBindingInfo;
|
|
2897
|
+
|
|
2898
|
+
/**
|
|
2899
|
+
* Defines the column importance.
|
|
2900
|
+
* You can define which columns should be automatically moved to the pop-in area based on their importance
|
|
2901
|
+
*/
|
|
2902
|
+
importance?: string | PropertyBindingInfo;
|
|
2903
|
+
|
|
2904
|
+
/**
|
|
2905
|
+
* Unique identifier of the column
|
|
2643
2906
|
*/
|
|
2644
2907
|
key?: string | PropertyBindingInfo;
|
|
2645
2908
|
|
|
2646
2909
|
/**
|
|
2647
|
-
*
|
|
2910
|
+
* Determines where this column should be placed relative to the defined anchor
|
|
2648
2911
|
* Allowed values are `Before` and `After`
|
|
2649
2912
|
*/
|
|
2650
2913
|
placement?: string | PropertyBindingInfo;
|
|
2651
2914
|
|
|
2652
2915
|
/**
|
|
2653
|
-
*
|
|
2916
|
+
* Determines the properties displayed in the column
|
|
2917
|
+
* The properties allow to export, sort, group, copy, and paste in the column
|
|
2654
2918
|
*/
|
|
2655
|
-
|
|
2919
|
+
properties?: string[] | PropertyBindingInfo | `{${string}}`;
|
|
2656
2920
|
|
|
2657
2921
|
/**
|
|
2658
|
-
*
|
|
2922
|
+
* Determines the column's width.
|
|
2923
|
+
* Allowed values are 'auto', 'value', and 'inherit', according to {@link sap.ui.core.CSSSize }
|
|
2659
2924
|
*/
|
|
2660
|
-
|
|
2925
|
+
width?: string | PropertyBindingInfo;
|
|
2661
2926
|
|
|
2662
2927
|
/**
|
|
2663
|
-
*
|
|
2928
|
+
* Indicates if the column header should be a part of the width calculation.
|
|
2664
2929
|
*/
|
|
2665
|
-
|
|
2930
|
+
widthIncludingColumnHeader?: boolean | PropertyBindingInfo | `{${string}}`;
|
|
2931
|
+
|
|
2932
|
+
/**
|
|
2933
|
+
* Determines the export settings for the column.
|
|
2934
|
+
*/
|
|
2935
|
+
exportSettings?: ColumnExportSettings;
|
|
2666
2936
|
}
|
|
2667
2937
|
}
|
|
2668
2938
|
|
|
2669
|
-
declare module "sap/fe/macros/table/
|
|
2939
|
+
declare module "sap/fe/macros/table/ColumnExportSettings" {
|
|
2670
2940
|
import {
|
|
2671
2941
|
default as BuildingBlockObjectProperty,
|
|
2672
2942
|
$BuildingBlockObjectPropertySettings,
|
|
2673
2943
|
} from "sap/fe/macros/controls/BuildingBlockObjectProperty";
|
|
2674
2944
|
|
|
2675
|
-
import {
|
|
2676
|
-
PropertyBindingInfo,
|
|
2677
|
-
AggregationBindingInfo,
|
|
2678
|
-
} from "sap/ui/base/ManagedObject";
|
|
2679
|
-
|
|
2680
|
-
import Action from "sap/fe/macros/table/Action";
|
|
2945
|
+
import { PropertyBindingInfo } from "sap/ui/base/ManagedObject";
|
|
2681
2946
|
|
|
2682
2947
|
/**
|
|
2683
|
-
* Definition of
|
|
2948
|
+
* Definition of the export settings applied to a column within the table.
|
|
2684
2949
|
*/
|
|
2685
|
-
export default class
|
|
2950
|
+
export default class ColumnExportSettings extends BuildingBlockObjectProperty {}
|
|
2686
2951
|
/**
|
|
2687
|
-
* Describes the settings that can be provided to the
|
|
2952
|
+
* Describes the settings that can be provided to the ColumnExportSettings constructor.
|
|
2688
2953
|
*/
|
|
2689
|
-
export interface $
|
|
2954
|
+
export interface $ColumnExportSettingsSettings
|
|
2690
2955
|
extends $BuildingBlockObjectPropertySettings {
|
|
2691
2956
|
/**
|
|
2692
|
-
*
|
|
2693
|
-
* this one
|
|
2957
|
+
* Determines the properties of the column.
|
|
2694
2958
|
*/
|
|
2695
|
-
|
|
2959
|
+
property?: string[] | PropertyBindingInfo | `{${string}}`;
|
|
2696
2960
|
|
|
2697
2961
|
/**
|
|
2698
|
-
*
|
|
2962
|
+
* Determines a formatting template that supports indexed placeholders within curly brackets.
|
|
2699
2963
|
*/
|
|
2700
|
-
|
|
2964
|
+
template?: string | PropertyBindingInfo;
|
|
2701
2965
|
|
|
2702
2966
|
/**
|
|
2703
|
-
*
|
|
2704
|
-
* Allowed values are `Before` and `After`
|
|
2967
|
+
* Determines the data type of the field
|
|
2705
2968
|
*/
|
|
2706
|
-
|
|
2969
|
+
type?: string | PropertyBindingInfo;
|
|
2707
2970
|
|
|
2708
2971
|
/**
|
|
2709
|
-
*
|
|
2972
|
+
* Determines the width of the column in characters
|
|
2710
2973
|
*/
|
|
2711
|
-
|
|
2974
|
+
width?: number | PropertyBindingInfo | `{${string}}`;
|
|
2712
2975
|
|
|
2713
2976
|
/**
|
|
2714
|
-
*
|
|
2977
|
+
* Determines if the content needs to be wrapped.
|
|
2715
2978
|
*/
|
|
2716
|
-
|
|
2979
|
+
wrap?: boolean | PropertyBindingInfo | `{${string}}`;
|
|
2717
2980
|
}
|
|
2718
2981
|
}
|
|
2719
2982
|
|
|
2720
|
-
declare module "sap/fe/macros/table/
|
|
2983
|
+
declare module "sap/fe/macros/table/ColumnOverride" {
|
|
2721
2984
|
import {
|
|
2722
2985
|
default as BuildingBlockObjectProperty,
|
|
2723
2986
|
$BuildingBlockObjectPropertySettings,
|
|
@@ -2725,64 +2988,119 @@ declare module "sap/fe/macros/table/Column" {
|
|
|
2725
2988
|
|
|
2726
2989
|
import { PropertyBindingInfo } from "sap/ui/base/ManagedObject";
|
|
2727
2990
|
|
|
2991
|
+
import ColumnExportSettings from "sap/fe/macros/table/ColumnExportSettings";
|
|
2992
|
+
|
|
2728
2993
|
/**
|
|
2729
|
-
* Definition of
|
|
2730
|
-
* The template for the column has to be provided as the default aggregation
|
|
2994
|
+
* Definition of an override for the column to be used inside the Table building block.
|
|
2731
2995
|
*/
|
|
2732
|
-
export default class
|
|
2996
|
+
export default class ColumnOverride extends BuildingBlockObjectProperty {}
|
|
2733
2997
|
/**
|
|
2734
|
-
* Describes the settings that can be provided to the
|
|
2998
|
+
* Describes the settings that can be provided to the ColumnOverride constructor.
|
|
2735
2999
|
*/
|
|
2736
|
-
export interface $
|
|
3000
|
+
export interface $ColumnOverrideSettings
|
|
2737
3001
|
extends $BuildingBlockObjectPropertySettings {
|
|
2738
3002
|
/**
|
|
2739
|
-
*
|
|
3003
|
+
* Aligns the header as well as the content horizontally
|
|
2740
3004
|
*/
|
|
2741
|
-
|
|
3005
|
+
horizontalAlign?: string | PropertyBindingInfo;
|
|
2742
3006
|
|
|
2743
3007
|
/**
|
|
2744
|
-
*
|
|
3008
|
+
* Defines the importance of the column.
|
|
3009
|
+
* You can define which columns should be automatically moved to the pop-in area based on their importance
|
|
2745
3010
|
*/
|
|
2746
|
-
|
|
3011
|
+
importance?: string | PropertyBindingInfo;
|
|
2747
3012
|
|
|
2748
3013
|
/**
|
|
2749
|
-
*
|
|
3014
|
+
* Unique identifier of the column to overridden.
|
|
2750
3015
|
*/
|
|
2751
|
-
|
|
3016
|
+
key?: string | PropertyBindingInfo;
|
|
2752
3017
|
|
|
2753
3018
|
/**
|
|
2754
|
-
*
|
|
2755
|
-
*
|
|
3019
|
+
* Determines the column's width.
|
|
3020
|
+
* Allowed values are 'auto', 'value', and 'inherit', according to {@link sap.ui.core.CSSSize }
|
|
2756
3021
|
*/
|
|
2757
|
-
|
|
3022
|
+
width?: string | PropertyBindingInfo;
|
|
2758
3023
|
|
|
2759
3024
|
/**
|
|
2760
|
-
*
|
|
3025
|
+
* Indicates if the column header should be a part of the width calculation.
|
|
2761
3026
|
*/
|
|
2762
|
-
|
|
3027
|
+
widthIncludingColumnHeader?: boolean | PropertyBindingInfo | `{${string}}`;
|
|
2763
3028
|
|
|
2764
3029
|
/**
|
|
2765
|
-
*
|
|
2766
|
-
* Allowed values are `Before` and `After`
|
|
3030
|
+
* Determines the export settings for the column.
|
|
2767
3031
|
*/
|
|
2768
|
-
|
|
3032
|
+
exportSettings?: ColumnExportSettings;
|
|
3033
|
+
}
|
|
3034
|
+
}
|
|
3035
|
+
|
|
3036
|
+
declare module "sap/fe/macros/table/MassEdit" {
|
|
3037
|
+
import {
|
|
3038
|
+
default as BuildingBlockObjectProperty,
|
|
3039
|
+
$BuildingBlockObjectPropertySettings,
|
|
3040
|
+
} from "sap/fe/macros/controls/BuildingBlockObjectProperty";
|
|
3041
|
+
|
|
3042
|
+
import { PropertyBindingInfo } from "sap/ui/base/ManagedObject";
|
|
3043
|
+
|
|
3044
|
+
import FormContainer from "sap/ui/layout/form/FormContainer";
|
|
3045
|
+
|
|
3046
|
+
/**
|
|
3047
|
+
* Definition of the mass edit to be used inside the table.
|
|
3048
|
+
*/
|
|
3049
|
+
export default class MassEdit extends BuildingBlockObjectProperty {}
|
|
3050
|
+
/**
|
|
3051
|
+
* Describes the settings that can be provided to the MassEdit constructor.
|
|
3052
|
+
*/
|
|
3053
|
+
export interface $MassEditSettings
|
|
3054
|
+
extends $BuildingBlockObjectPropertySettings {
|
|
3055
|
+
/**
|
|
3056
|
+
* Defines the list of fields that should be ignored in the mass edit dialog
|
|
3057
|
+
*/
|
|
3058
|
+
ignoredFields?: string[] | PropertyBindingInfo | `{${string}}`;
|
|
2769
3059
|
|
|
2770
3060
|
/**
|
|
2771
|
-
* Defines the
|
|
2772
|
-
*
|
|
3061
|
+
* Defines the mode of the operation grouping to save the new values
|
|
3062
|
+
* Allowed values are `ChangeSet` and `Isolated`
|
|
2773
3063
|
*/
|
|
2774
|
-
|
|
3064
|
+
operationGroupingMode?: string | PropertyBindingInfo;
|
|
2775
3065
|
|
|
2776
3066
|
/**
|
|
2777
|
-
* Defines the
|
|
2778
|
-
* Allowed values are `auto`, `value` and `inherit` according to {@link sap.ui.core.CSSSize }
|
|
3067
|
+
* Defines the list of fields that should be visible in the mass edit dialog
|
|
2779
3068
|
*/
|
|
2780
|
-
|
|
3069
|
+
visibleFields?: string[] | PropertyBindingInfo | `{${string}}`;
|
|
2781
3070
|
|
|
2782
3071
|
/**
|
|
2783
|
-
*
|
|
3072
|
+
* The custom form container that can be displayed at the top of the mass edit dialog
|
|
2784
3073
|
*/
|
|
2785
|
-
|
|
3074
|
+
customContent?: FormContainer;
|
|
3075
|
+
}
|
|
3076
|
+
}
|
|
3077
|
+
|
|
3078
|
+
declare module "sap/fe/macros/table/QuickVariantSelection" {
|
|
3079
|
+
import {
|
|
3080
|
+
default as BuildingBlock,
|
|
3081
|
+
$BuildingBlockSettings,
|
|
3082
|
+
} from "sap/fe/core/buildingBlocks/BuildingBlock";
|
|
3083
|
+
|
|
3084
|
+
import { PropertyBindingInfo } from "sap/ui/base/ManagedObject";
|
|
3085
|
+
|
|
3086
|
+
/**
|
|
3087
|
+
* Definition of the quickVariantSelection to be used inside the table.
|
|
3088
|
+
*/
|
|
3089
|
+
export default class QuickVariantSelection extends BuildingBlock {}
|
|
3090
|
+
/**
|
|
3091
|
+
* Describes the settings that can be provided to the QuickVariantSelection constructor.
|
|
3092
|
+
*/
|
|
3093
|
+
export interface $QuickVariantSelectionSettings
|
|
3094
|
+
extends $BuildingBlockSettings {
|
|
3095
|
+
/**
|
|
3096
|
+
* Defines the list of paths pointing to the selection variants that should be used as quick filters
|
|
3097
|
+
*/
|
|
3098
|
+
paths?: string[] | PropertyBindingInfo | `{${string}}`;
|
|
3099
|
+
|
|
3100
|
+
/**
|
|
3101
|
+
* Defines whether the counts should be displayed next to the text
|
|
3102
|
+
*/
|
|
3103
|
+
showCounts?: boolean | PropertyBindingInfo | `{${string}}`;
|
|
2786
3104
|
}
|
|
2787
3105
|
}
|
|
2788
3106
|
|
|
@@ -2809,19 +3127,25 @@ declare module "sap/fe/macros/table/Table.block" {
|
|
|
2809
3127
|
|
|
2810
3128
|
import Action from "sap/fe/macros/table/Action";
|
|
2811
3129
|
|
|
3130
|
+
import ColumnOverride from "sap/fe/macros/table/ColumnOverride";
|
|
3131
|
+
|
|
2812
3132
|
import Column from "sap/fe/macros/table/Column";
|
|
2813
3133
|
|
|
3134
|
+
import MassEdit from "sap/fe/macros/table/MassEdit";
|
|
3135
|
+
|
|
2814
3136
|
import Text from "sap/m/Text";
|
|
2815
3137
|
|
|
2816
3138
|
import IllustratedMessage from "sap/m/IllustratedMessage";
|
|
2817
3139
|
|
|
3140
|
+
import QuickVariantSelection from "sap/fe/macros/table/QuickVariantSelection";
|
|
3141
|
+
|
|
2818
3142
|
import Event from "sap/ui/base/Event";
|
|
2819
3143
|
|
|
2820
3144
|
/**
|
|
2821
3145
|
* Building block used to create a table based on the metadata provided by OData V4.
|
|
2822
3146
|
*
|
|
2823
3147
|
*
|
|
2824
|
-
* Usually, a LineItem, PresentationVariant or SelectionPresentationVariant annotation is expected, but
|
|
3148
|
+
* Usually, a LineItem, PresentationVariant, or SelectionPresentationVariant annotation is expected, but
|
|
2825
3149
|
* the Table building block can also be used to display an EntitySet.
|
|
2826
3150
|
*
|
|
2827
3151
|
*
|
|
@@ -3011,6 +3335,11 @@ declare module "sap/fe/macros/table/Table.block" {
|
|
|
3011
3335
|
*/
|
|
3012
3336
|
busy?: boolean | PropertyBindingInfo | `{${string}}`;
|
|
3013
3337
|
|
|
3338
|
+
/**
|
|
3339
|
+
* Determines whether the table adapts to the condensed layout.
|
|
3340
|
+
*/
|
|
3341
|
+
condensedTableLayout?: boolean | PropertyBindingInfo | `{${string}}`;
|
|
3342
|
+
|
|
3014
3343
|
/**
|
|
3015
3344
|
* Defines the path of the context used in the current page or block.
|
|
3016
3345
|
* This setting is defined by the framework.
|
|
@@ -3047,6 +3376,20 @@ declare module "sap/fe/macros/table/Table.block" {
|
|
|
3047
3376
|
*/
|
|
3048
3377
|
enablePaste?: boolean | PropertyBindingInfo | `{${string}}`;
|
|
3049
3378
|
|
|
3379
|
+
/**
|
|
3380
|
+
* Determine whether the data copied to the computed columns is sent to the back end.
|
|
3381
|
+
*/
|
|
3382
|
+
enablePastingOfComputedProperties?:
|
|
3383
|
+
| boolean
|
|
3384
|
+
| PropertyBindingInfo
|
|
3385
|
+
| `{${string}}`;
|
|
3386
|
+
|
|
3387
|
+
/**
|
|
3388
|
+
* Determines whether the Clear All button is enabled by default.
|
|
3389
|
+
* To enable the Clear All button by default, you must set this property to false.
|
|
3390
|
+
*/
|
|
3391
|
+
enableSelectAll?: boolean | PropertyBindingInfo | `{${string}}`;
|
|
3392
|
+
|
|
3050
3393
|
/**
|
|
3051
3394
|
* Maximum allowed number of records to be exported in one request.
|
|
3052
3395
|
*/
|
|
@@ -3153,7 +3496,13 @@ declare module "sap/fe/macros/table/Table.block" {
|
|
|
3153
3496
|
* Defines how many additional data records are requested from the back-end system when the user scrolls
|
|
3154
3497
|
* vertically in the table.
|
|
3155
3498
|
*/
|
|
3156
|
-
scrollThreshold?:
|
|
3499
|
+
scrollThreshold?: int | PropertyBindingInfo | `{${string}}`;
|
|
3500
|
+
|
|
3501
|
+
/**
|
|
3502
|
+
* Defines the maximum number of rows that can be selected at once in the table.
|
|
3503
|
+
* This property does not apply to responsive tables.
|
|
3504
|
+
*/
|
|
3505
|
+
selectionLimit?: number | PropertyBindingInfo | `{${string}}`;
|
|
3157
3506
|
|
|
3158
3507
|
/**
|
|
3159
3508
|
* Defines the selection mode to be used by the table.
|
|
@@ -3200,12 +3549,27 @@ declare module "sap/fe/macros/table/Table.block" {
|
|
|
3200
3549
|
/**
|
|
3201
3550
|
* Aggregate columns of the table.
|
|
3202
3551
|
*/
|
|
3203
|
-
columns?:
|
|
3552
|
+
columns?:
|
|
3553
|
+
| Array<ColumnOverride | Column>
|
|
3554
|
+
| ColumnOverride
|
|
3555
|
+
| Column
|
|
3556
|
+
| AggregationBindingInfo
|
|
3557
|
+
| `{${string}}`;
|
|
3558
|
+
|
|
3559
|
+
/**
|
|
3560
|
+
* Aggregate mass edit of the table.
|
|
3561
|
+
*/
|
|
3562
|
+
massEdit?: MassEdit;
|
|
3204
3563
|
|
|
3205
3564
|
/**
|
|
3206
3565
|
* Aggregation to forward the IllustratedMessage control to the mdc control.
|
|
3207
3566
|
*/
|
|
3208
3567
|
noData?: Text | IllustratedMessage | PropertyBindingInfo | `{${string}}`;
|
|
3568
|
+
|
|
3569
|
+
/**
|
|
3570
|
+
* Aggregate quickVariantSelection of the table.
|
|
3571
|
+
*/
|
|
3572
|
+
quickVariantSelection?: QuickVariantSelection;
|
|
3209
3573
|
}
|
|
3210
3574
|
|
|
3211
3575
|
/**
|
|
@@ -3270,10 +3634,16 @@ declare module "sap/fe/macros/table/Table" {
|
|
|
3270
3634
|
|
|
3271
3635
|
import ActionGroup from "sap/fe/macros/table/ActionGroup";
|
|
3272
3636
|
|
|
3637
|
+
import ColumnOverride from "sap/fe/macros/table/ColumnOverride";
|
|
3638
|
+
|
|
3639
|
+
import MassEdit from "sap/fe/macros/table/MassEdit";
|
|
3640
|
+
|
|
3273
3641
|
import Text from "sap/m/Text";
|
|
3274
3642
|
|
|
3275
3643
|
import IllustratedMessage from "sap/m/IllustratedMessage";
|
|
3276
3644
|
|
|
3645
|
+
import QuickVariantSelection from "sap/fe/macros/table/QuickVariantSelection";
|
|
3646
|
+
|
|
3277
3647
|
import Event from "sap/ui/base/Event";
|
|
3278
3648
|
|
|
3279
3649
|
/**
|
|
@@ -3561,6 +3931,11 @@ declare module "sap/fe/macros/table/Table" {
|
|
|
3561
3931
|
*/
|
|
3562
3932
|
busy?: boolean | PropertyBindingInfo | `{${string}}`;
|
|
3563
3933
|
|
|
3934
|
+
/**
|
|
3935
|
+
* Determines whether the table adapts to the condensed layout.
|
|
3936
|
+
*/
|
|
3937
|
+
condensedTableLayout?: boolean | PropertyBindingInfo | `{${string}}`;
|
|
3938
|
+
|
|
3564
3939
|
/**
|
|
3565
3940
|
* Defines the path of the context used in the current page or block.
|
|
3566
3941
|
* This setting is defined by the framework.
|
|
@@ -3597,6 +3972,20 @@ declare module "sap/fe/macros/table/Table" {
|
|
|
3597
3972
|
*/
|
|
3598
3973
|
enablePaste?: boolean | PropertyBindingInfo | `{${string}}`;
|
|
3599
3974
|
|
|
3975
|
+
/**
|
|
3976
|
+
* Determine whether the data copied to the computed columns is sent to the back end.
|
|
3977
|
+
*/
|
|
3978
|
+
enablePastingOfComputedProperties?:
|
|
3979
|
+
| boolean
|
|
3980
|
+
| PropertyBindingInfo
|
|
3981
|
+
| `{${string}}`;
|
|
3982
|
+
|
|
3983
|
+
/**
|
|
3984
|
+
* Determines whether the Clear All button is enabled by default.
|
|
3985
|
+
* To enable the Clear All button by default, you must set this property to false.
|
|
3986
|
+
*/
|
|
3987
|
+
enableSelectAll?: boolean | PropertyBindingInfo | `{${string}}`;
|
|
3988
|
+
|
|
3600
3989
|
/**
|
|
3601
3990
|
* Maximum allowed number of records to be exported in one request.
|
|
3602
3991
|
*/
|
|
@@ -3703,7 +4092,13 @@ declare module "sap/fe/macros/table/Table" {
|
|
|
3703
4092
|
* Defines how many additional data records are requested from the back-end system when the user scrolls
|
|
3704
4093
|
* vertically in the table.
|
|
3705
4094
|
*/
|
|
3706
|
-
scrollThreshold?:
|
|
4095
|
+
scrollThreshold?: int | PropertyBindingInfo | `{${string}}`;
|
|
4096
|
+
|
|
4097
|
+
/**
|
|
4098
|
+
* Defines the maximum number of rows that can be selected at once in the table.
|
|
4099
|
+
* This property does not apply to responsive tables.
|
|
4100
|
+
*/
|
|
4101
|
+
selectionLimit?: number | PropertyBindingInfo | `{${string}}`;
|
|
3707
4102
|
|
|
3708
4103
|
/**
|
|
3709
4104
|
* Defines the selection mode to be used by the table.
|
|
@@ -3750,12 +4145,27 @@ declare module "sap/fe/macros/table/Table" {
|
|
|
3750
4145
|
/**
|
|
3751
4146
|
* Aggregate columns of the table.
|
|
3752
4147
|
*/
|
|
3753
|
-
columns?:
|
|
4148
|
+
columns?:
|
|
4149
|
+
| Array<ColumnOverride | Column>
|
|
4150
|
+
| ColumnOverride
|
|
4151
|
+
| Column
|
|
4152
|
+
| AggregationBindingInfo
|
|
4153
|
+
| `{${string}}`;
|
|
4154
|
+
|
|
4155
|
+
/**
|
|
4156
|
+
* Aggregate mass edit of the table.
|
|
4157
|
+
*/
|
|
4158
|
+
massEdit?: MassEdit;
|
|
3754
4159
|
|
|
3755
4160
|
/**
|
|
3756
4161
|
* Aggregation to forward the IllustratedMessage control to the mdc control.
|
|
3757
4162
|
*/
|
|
3758
4163
|
noData?: Text | IllustratedMessage | PropertyBindingInfo | `{${string}}`;
|
|
4164
|
+
|
|
4165
|
+
/**
|
|
4166
|
+
* Aggregate quickVariantSelection of the table.
|
|
4167
|
+
*/
|
|
4168
|
+
quickVariantSelection?: QuickVariantSelection;
|
|
3759
4169
|
}
|
|
3760
4170
|
|
|
3761
4171
|
/**
|
|
@@ -3892,12 +4302,18 @@ declare module "sap/fe/macros/table/TreeTable.block" {
|
|
|
3892
4302
|
|
|
3893
4303
|
import Action from "sap/fe/macros/table/Action";
|
|
3894
4304
|
|
|
4305
|
+
import ColumnOverride from "sap/fe/macros/table/ColumnOverride";
|
|
4306
|
+
|
|
3895
4307
|
import Column from "sap/fe/macros/table/Column";
|
|
3896
4308
|
|
|
4309
|
+
import MassEdit from "sap/fe/macros/table/MassEdit";
|
|
4310
|
+
|
|
3897
4311
|
import Text from "sap/m/Text";
|
|
3898
4312
|
|
|
3899
4313
|
import IllustratedMessage from "sap/m/IllustratedMessage";
|
|
3900
4314
|
|
|
4315
|
+
import QuickVariantSelection from "sap/fe/macros/table/QuickVariantSelection";
|
|
4316
|
+
|
|
3901
4317
|
import Event from "sap/ui/base/Event";
|
|
3902
4318
|
|
|
3903
4319
|
/**
|
|
@@ -4076,6 +4492,11 @@ declare module "sap/fe/macros/table/TreeTable.block" {
|
|
|
4076
4492
|
*/
|
|
4077
4493
|
busy?: boolean | PropertyBindingInfo | `{${string}}`;
|
|
4078
4494
|
|
|
4495
|
+
/**
|
|
4496
|
+
* Determines whether the table adapts to the condensed layout.
|
|
4497
|
+
*/
|
|
4498
|
+
condensedTableLayout?: boolean | PropertyBindingInfo | `{${string}}`;
|
|
4499
|
+
|
|
4079
4500
|
/**
|
|
4080
4501
|
* Defines the path of the context used in the current page or block.
|
|
4081
4502
|
* This setting is defined by the framework.
|
|
@@ -4115,6 +4536,20 @@ declare module "sap/fe/macros/table/TreeTable.block" {
|
|
|
4115
4536
|
*/
|
|
4116
4537
|
enablePaste?: boolean | PropertyBindingInfo | `{${string}}`;
|
|
4117
4538
|
|
|
4539
|
+
/**
|
|
4540
|
+
* Determine whether the data copied to the computed columns is sent to the back end.
|
|
4541
|
+
*/
|
|
4542
|
+
enablePastingOfComputedProperties?:
|
|
4543
|
+
| boolean
|
|
4544
|
+
| PropertyBindingInfo
|
|
4545
|
+
| `{${string}}`;
|
|
4546
|
+
|
|
4547
|
+
/**
|
|
4548
|
+
* Determines whether the Clear All button is enabled by default.
|
|
4549
|
+
* To enable the Clear All button by default, you must set this property to false.
|
|
4550
|
+
*/
|
|
4551
|
+
enableSelectAll?: boolean | PropertyBindingInfo | `{${string}}`;
|
|
4552
|
+
|
|
4118
4553
|
/**
|
|
4119
4554
|
* Maximum allowed number of records to be exported in one request.
|
|
4120
4555
|
*/
|
|
@@ -4236,7 +4671,13 @@ declare module "sap/fe/macros/table/TreeTable.block" {
|
|
|
4236
4671
|
* Defines how many additional data records are requested from the back-end system when the user scrolls
|
|
4237
4672
|
* vertically in the table.
|
|
4238
4673
|
*/
|
|
4239
|
-
scrollThreshold?:
|
|
4674
|
+
scrollThreshold?: int | PropertyBindingInfo | `{${string}}`;
|
|
4675
|
+
|
|
4676
|
+
/**
|
|
4677
|
+
* Defines the maximum number of rows that can be selected at once in the table.
|
|
4678
|
+
* This property does not apply to responsive tables.
|
|
4679
|
+
*/
|
|
4680
|
+
selectionLimit?: number | PropertyBindingInfo | `{${string}}`;
|
|
4240
4681
|
|
|
4241
4682
|
/**
|
|
4242
4683
|
* Defines the selection mode to be used by the table.
|
|
@@ -4284,12 +4725,27 @@ declare module "sap/fe/macros/table/TreeTable.block" {
|
|
|
4284
4725
|
/**
|
|
4285
4726
|
* Aggregate columns of the table.
|
|
4286
4727
|
*/
|
|
4287
|
-
columns?:
|
|
4728
|
+
columns?:
|
|
4729
|
+
| Array<ColumnOverride | Column>
|
|
4730
|
+
| ColumnOverride
|
|
4731
|
+
| Column
|
|
4732
|
+
| AggregationBindingInfo
|
|
4733
|
+
| `{${string}}`;
|
|
4734
|
+
|
|
4735
|
+
/**
|
|
4736
|
+
* Aggregate mass edit of the table.
|
|
4737
|
+
*/
|
|
4738
|
+
massEdit?: MassEdit;
|
|
4288
4739
|
|
|
4289
4740
|
/**
|
|
4290
4741
|
* Aggregation to forward the IllustratedMessage control to the mdc control.
|
|
4291
4742
|
*/
|
|
4292
4743
|
noData?: Text | IllustratedMessage | PropertyBindingInfo | `{${string}}`;
|
|
4744
|
+
|
|
4745
|
+
/**
|
|
4746
|
+
* Aggregate quickVariantSelection of the table.
|
|
4747
|
+
*/
|
|
4748
|
+
quickVariantSelection?: QuickVariantSelection;
|
|
4293
4749
|
}
|
|
4294
4750
|
|
|
4295
4751
|
/**
|
|
@@ -4357,10 +4813,16 @@ declare module "sap/fe/macros/table/TreeTable" {
|
|
|
4357
4813
|
|
|
4358
4814
|
import ActionGroup from "sap/fe/macros/table/ActionGroup";
|
|
4359
4815
|
|
|
4816
|
+
import ColumnOverride from "sap/fe/macros/table/ColumnOverride";
|
|
4817
|
+
|
|
4818
|
+
import MassEdit from "sap/fe/macros/table/MassEdit";
|
|
4819
|
+
|
|
4360
4820
|
import Text from "sap/m/Text";
|
|
4361
4821
|
|
|
4362
4822
|
import IllustratedMessage from "sap/m/IllustratedMessage";
|
|
4363
4823
|
|
|
4824
|
+
import QuickVariantSelection from "sap/fe/macros/table/QuickVariantSelection";
|
|
4825
|
+
|
|
4364
4826
|
import Event from "sap/ui/base/Event";
|
|
4365
4827
|
|
|
4366
4828
|
/**
|
|
@@ -4649,6 +5111,11 @@ declare module "sap/fe/macros/table/TreeTable" {
|
|
|
4649
5111
|
*/
|
|
4650
5112
|
busy?: boolean | PropertyBindingInfo | `{${string}}`;
|
|
4651
5113
|
|
|
5114
|
+
/**
|
|
5115
|
+
* Determines whether the table adapts to the condensed layout.
|
|
5116
|
+
*/
|
|
5117
|
+
condensedTableLayout?: boolean | PropertyBindingInfo | `{${string}}`;
|
|
5118
|
+
|
|
4652
5119
|
/**
|
|
4653
5120
|
* Defines the path of the context used in the current page or block.
|
|
4654
5121
|
* This setting is defined by the framework.
|
|
@@ -4688,6 +5155,20 @@ declare module "sap/fe/macros/table/TreeTable" {
|
|
|
4688
5155
|
*/
|
|
4689
5156
|
enablePaste?: boolean | PropertyBindingInfo | `{${string}}`;
|
|
4690
5157
|
|
|
5158
|
+
/**
|
|
5159
|
+
* Determine whether the data copied to the computed columns is sent to the back end.
|
|
5160
|
+
*/
|
|
5161
|
+
enablePastingOfComputedProperties?:
|
|
5162
|
+
| boolean
|
|
5163
|
+
| PropertyBindingInfo
|
|
5164
|
+
| `{${string}}`;
|
|
5165
|
+
|
|
5166
|
+
/**
|
|
5167
|
+
* Determines whether the Clear All button is enabled by default.
|
|
5168
|
+
* To enable the Clear All button by default, you must set this property to false.
|
|
5169
|
+
*/
|
|
5170
|
+
enableSelectAll?: boolean | PropertyBindingInfo | `{${string}}`;
|
|
5171
|
+
|
|
4691
5172
|
/**
|
|
4692
5173
|
* Maximum allowed number of records to be exported in one request.
|
|
4693
5174
|
*/
|
|
@@ -4809,7 +5290,13 @@ declare module "sap/fe/macros/table/TreeTable" {
|
|
|
4809
5290
|
* Defines how many additional data records are requested from the back-end system when the user scrolls
|
|
4810
5291
|
* vertically in the table.
|
|
4811
5292
|
*/
|
|
4812
|
-
scrollThreshold?:
|
|
5293
|
+
scrollThreshold?: int | PropertyBindingInfo | `{${string}}`;
|
|
5294
|
+
|
|
5295
|
+
/**
|
|
5296
|
+
* Defines the maximum number of rows that can be selected at once in the table.
|
|
5297
|
+
* This property does not apply to responsive tables.
|
|
5298
|
+
*/
|
|
5299
|
+
selectionLimit?: number | PropertyBindingInfo | `{${string}}`;
|
|
4813
5300
|
|
|
4814
5301
|
/**
|
|
4815
5302
|
* Defines the selection mode to be used by the table.
|
|
@@ -4857,12 +5344,27 @@ declare module "sap/fe/macros/table/TreeTable" {
|
|
|
4857
5344
|
/**
|
|
4858
5345
|
* Aggregate columns of the table.
|
|
4859
5346
|
*/
|
|
4860
|
-
columns?:
|
|
5347
|
+
columns?:
|
|
5348
|
+
| Array<ColumnOverride | Column>
|
|
5349
|
+
| ColumnOverride
|
|
5350
|
+
| Column
|
|
5351
|
+
| AggregationBindingInfo
|
|
5352
|
+
| `{${string}}`;
|
|
5353
|
+
|
|
5354
|
+
/**
|
|
5355
|
+
* Aggregate mass edit of the table.
|
|
5356
|
+
*/
|
|
5357
|
+
massEdit?: MassEdit;
|
|
4861
5358
|
|
|
4862
5359
|
/**
|
|
4863
5360
|
* Aggregation to forward the IllustratedMessage control to the mdc control.
|
|
4864
5361
|
*/
|
|
4865
5362
|
noData?: Text | IllustratedMessage | PropertyBindingInfo | `{${string}}`;
|
|
5363
|
+
|
|
5364
|
+
/**
|
|
5365
|
+
* Aggregate quickVariantSelection of the table.
|
|
5366
|
+
*/
|
|
5367
|
+
quickVariantSelection?: QuickVariantSelection;
|
|
4866
5368
|
}
|
|
4867
5369
|
|
|
4868
5370
|
/**
|
|
@@ -5097,9 +5599,9 @@ declare namespace sap {
|
|
|
5097
5599
|
|
|
5098
5600
|
"sap/fe/macros/fcl/FlexibleColumnLayoutActions.block": undefined;
|
|
5099
5601
|
|
|
5100
|
-
"sap/fe/macros/
|
|
5602
|
+
"sap/fe/macros/Field": undefined;
|
|
5101
5603
|
|
|
5102
|
-
"sap/fe/macros/field/
|
|
5604
|
+
"sap/fe/macros/field/Field": undefined;
|
|
5103
5605
|
|
|
5104
5606
|
"sap/fe/macros/field/FieldFormatOptions": undefined;
|
|
5105
5607
|
|
|
@@ -5143,8 +5645,20 @@ declare namespace sap {
|
|
|
5143
5645
|
|
|
5144
5646
|
"sap/fe/macros/table/ActionGroup": undefined;
|
|
5145
5647
|
|
|
5648
|
+
"sap/fe/macros/table/ActionGroupOverride": undefined;
|
|
5649
|
+
|
|
5650
|
+
"sap/fe/macros/table/ActionOverride": undefined;
|
|
5651
|
+
|
|
5146
5652
|
"sap/fe/macros/table/Column": undefined;
|
|
5147
5653
|
|
|
5654
|
+
"sap/fe/macros/table/ColumnExportSettings": undefined;
|
|
5655
|
+
|
|
5656
|
+
"sap/fe/macros/table/ColumnOverride": undefined;
|
|
5657
|
+
|
|
5658
|
+
"sap/fe/macros/table/MassEdit": undefined;
|
|
5659
|
+
|
|
5660
|
+
"sap/fe/macros/table/QuickVariantSelection": undefined;
|
|
5661
|
+
|
|
5148
5662
|
"sap/fe/macros/table/Table": undefined;
|
|
5149
5663
|
|
|
5150
5664
|
"sap/fe/macros/table/Table.block": undefined;
|