@sapui5/ts-types 1.113.0 → 1.115.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/index.d.ts +0 -1
- package/types/sap.apf.d.ts +2 -2
- package/types/sap.ca.ui.d.ts +135 -67
- package/types/sap.chart.d.ts +154 -125
- package/types/sap.collaboration.d.ts +80 -78
- package/types/sap.esh.search.ui.d.ts +137 -1
- package/types/sap.f.d.ts +1357 -926
- package/types/sap.fe.core.d.ts +45 -155
- package/types/sap.fe.macros.d.ts +80 -9
- package/types/sap.fe.navigation.d.ts +34 -27
- package/types/sap.fe.templates.d.ts +8 -275
- package/types/sap.fe.test.d.ts +4 -10
- package/types/sap.feedback.ui.d.ts +1 -1
- package/types/sap.gantt.d.ts +1716 -1087
- package/types/sap.insights.d.ts +1 -1
- package/types/sap.landvisz.d.ts +35 -9
- package/types/sap.m.d.ts +7689 -5451
- package/types/sap.makit.d.ts +17 -5
- package/types/sap.me.d.ts +122 -63
- package/types/sap.ndc.d.ts +99 -39
- package/types/sap.ovp.d.ts +1 -2
- package/types/sap.rules.ui.d.ts +43 -19
- package/types/sap.sac.df.d.ts +31 -579
- package/types/sap.suite.ui.commons.d.ts +2060 -1282
- package/types/sap.suite.ui.generic.template.d.ts +29 -40
- package/types/sap.suite.ui.microchart.d.ts +188 -136
- package/types/sap.tnt.d.ts +134 -54
- package/types/sap.ui.codeeditor.d.ts +51 -29
- package/types/sap.ui.commons.d.ts +1017 -599
- package/types/sap.ui.comp.d.ts +2755 -1772
- package/types/sap.ui.core.d.ts +5398 -3172
- package/types/sap.ui.dt.d.ts +1 -1
- package/types/sap.ui.export.d.ts +32 -29
- package/types/sap.ui.fl.d.ts +123 -82
- package/types/sap.ui.generic.app.d.ts +41 -40
- package/types/sap.ui.generic.template.d.ts +1 -1
- package/types/sap.ui.integration.d.ts +344 -163
- package/types/sap.ui.layout.d.ts +312 -355
- package/types/sap.ui.mdc.d.ts +21839 -8
- package/types/sap.ui.richtexteditor.d.ts +61 -49
- package/types/sap.ui.rta.d.ts +1 -2
- package/types/sap.ui.suite.d.ts +9 -9
- package/types/sap.ui.support.d.ts +5 -7
- package/types/sap.ui.table.d.ts +713 -452
- package/types/sap.ui.testrecorder.d.ts +1 -1
- package/types/sap.ui.unified.d.ts +1077 -727
- package/types/sap.ui.ux3.d.ts +1038 -549
- package/types/sap.ui.vbm.d.ts +1262 -710
- package/types/sap.ui.vk.d.ts +3020 -1751
- package/types/sap.ui.vtm.d.ts +704 -457
- package/types/sap.ui.webc.common.d.ts +1 -1
- package/types/sap.ui.webc.fiori.d.ts +532 -301
- package/types/sap.ui.webc.main.d.ts +1222 -720
- package/types/sap.uiext.inbox.d.ts +47 -24
- package/types/sap.ushell.d.ts +360 -174
- package/types/sap.ushell_abap.d.ts +1 -1
- package/types/sap.uxap.d.ts +287 -199
- package/types/sap.viz.d.ts +678 -391
- package/types/sap.webanalytics.core.d.ts +1 -1
- package/types/sap.zen.commons.d.ts +5 -5
- package/types/sap.zen.crosstab.d.ts +1 -1
- package/types/sap.zen.dsh.d.ts +147 -81
- package/types/sap.sac.grid.d.ts +0 -760
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
// For Library Version: 1.
|
|
1
|
+
// For Library Version: 1.115.0
|
|
2
2
|
|
|
3
3
|
declare namespace sap {
|
|
4
4
|
/**
|
|
@@ -271,14 +271,14 @@ declare namespace sap {
|
|
|
271
271
|
* This object represents business related information, such as a sales order, an opportunity, etc. It contains
|
|
272
272
|
* the following properties:
|
|
273
273
|
* - id: The Business Object ID to be posted in the SAP Jam Feed. It needs to be an OData URL
|
|
274
|
-
*
|
|
274
|
+
* containing the relative path to the object in the back-end.
|
|
275
275
|
* - type: the type of the business object. It can be any text or it can be the OData meta data
|
|
276
|
-
*
|
|
276
|
+
* URL to the object Entity Type.
|
|
277
277
|
* - name (optional): the description of the business object to be displayed in SAP Jam, i.e.
|
|
278
|
-
*
|
|
278
|
+
* "SO 57746", "Opportunity 123", etc.
|
|
279
279
|
* - ui_url (optional): the URL to navigate to the same business object in the application.
|
|
280
|
-
*
|
|
281
|
-
*
|
|
280
|
+
* Note: The object is passed by reference, which means that the attributes will be modified in the original
|
|
281
|
+
* object, for example, when the URLs contained in the id and type attributes are mapped (via OData call).
|
|
282
282
|
*/
|
|
283
283
|
object?:
|
|
284
284
|
| object
|
|
@@ -290,14 +290,14 @@ declare namespace sap {
|
|
|
290
290
|
* such as a sales order, an opportunity, etc. It contains the following properties:
|
|
291
291
|
* - {string} appContext: The application context. Example: "CRM", "CB", "SD", etc.
|
|
292
292
|
* - {string} odataServicePath: The path to the OData Service and the Service name. Example:
|
|
293
|
-
*
|
|
293
|
+
* "/sap/opu/odata/sap/APPLICATION_SRV".
|
|
294
294
|
* - {string} collection: The name of the OData Collection. Example: "Account", "Opportunity",
|
|
295
|
-
*
|
|
295
|
+
* etc.
|
|
296
296
|
* - {string} key: The key to identify a particular instance of the Business Object. It can be
|
|
297
|
-
*
|
|
298
|
-
*
|
|
297
|
+
* a simple ID or a compound key. Example: "123", "ObjectID='123'", "ObjectID='123',ObjectType='BUS000123'",
|
|
298
|
+
* etc.
|
|
299
299
|
* - {string} name: The short name of the Business Object. Example: "Sales Order 123", "Opportunity
|
|
300
|
-
*
|
|
300
|
+
* 123", "Account 123", etc.
|
|
301
301
|
* - {string} ui_url: The URL to navigate to the same business object in the application.
|
|
302
302
|
*/
|
|
303
303
|
businessObject?:
|
|
@@ -390,14 +390,14 @@ declare namespace sap {
|
|
|
390
390
|
* such as a sales order, an opportunity, etc. It contains the following properties:
|
|
391
391
|
* - {string} appContext: The application context. Example: "CRM", "CB", "SD", etc.
|
|
392
392
|
* - {string} odataServicePath: The path to the OData Service and the Service name. Example:
|
|
393
|
-
*
|
|
393
|
+
* "/sap/opu/odata/sap/APPLICATION_SRV".
|
|
394
394
|
* - {string} collection: The name of the OData Collection. Example: "Account", "Opportunity",
|
|
395
|
-
*
|
|
395
|
+
* etc.
|
|
396
396
|
* - {string} key: The key to identify a particular instance of the Business Object. It can be
|
|
397
|
-
*
|
|
398
|
-
*
|
|
397
|
+
* a simple ID or a compound key. Example: "123", "ObjectID='123'", "ObjectID='123',ObjectType='BUS000123'",
|
|
398
|
+
* etc.
|
|
399
399
|
* - {string} name: The short name of the Business Object. Example: "Sales Order 123", "Opportunity
|
|
400
|
-
*
|
|
400
|
+
* 123", "Account 123", etc.
|
|
401
401
|
* - {string} ui_url: The URL to navigate to the same business object in the application.
|
|
402
402
|
*
|
|
403
403
|
* @returns Value of property `businessObject`
|
|
@@ -442,14 +442,14 @@ declare namespace sap {
|
|
|
442
442
|
* This object represents business related information, such as a sales order, an opportunity, etc. It contains
|
|
443
443
|
* the following properties:
|
|
444
444
|
* - id: The Business Object ID to be posted in the SAP Jam Feed. It needs to be an OData URL
|
|
445
|
-
*
|
|
445
|
+
* containing the relative path to the object in the back-end.
|
|
446
446
|
* - type: the type of the business object. It can be any text or it can be the OData meta data
|
|
447
|
-
*
|
|
447
|
+
* URL to the object Entity Type.
|
|
448
448
|
* - name (optional): the description of the business object to be displayed in SAP Jam, i.e.
|
|
449
|
-
*
|
|
449
|
+
* "SO 57746", "Opportunity 123", etc.
|
|
450
450
|
* - ui_url (optional): the URL to navigate to the same business object in the application.
|
|
451
|
-
*
|
|
452
|
-
*
|
|
451
|
+
* Note: The object is passed by reference, which means that the attributes will be modified in the original
|
|
452
|
+
* object, for example, when the URLs contained in the id and type attributes are mapped (via OData call).
|
|
453
453
|
*
|
|
454
454
|
* @returns Value of property `object`
|
|
455
455
|
*/
|
|
@@ -475,14 +475,14 @@ declare namespace sap {
|
|
|
475
475
|
* such as a sales order, an opportunity, etc. It contains the following properties:
|
|
476
476
|
* - {string} appContext: The application context. Example: "CRM", "CB", "SD", etc.
|
|
477
477
|
* - {string} odataServicePath: The path to the OData Service and the Service name. Example:
|
|
478
|
-
*
|
|
478
|
+
* "/sap/opu/odata/sap/APPLICATION_SRV".
|
|
479
479
|
* - {string} collection: The name of the OData Collection. Example: "Account", "Opportunity",
|
|
480
|
-
*
|
|
480
|
+
* etc.
|
|
481
481
|
* - {string} key: The key to identify a particular instance of the Business Object. It can be
|
|
482
|
-
*
|
|
483
|
-
*
|
|
482
|
+
* a simple ID or a compound key. Example: "123", "ObjectID='123'", "ObjectID='123',ObjectType='BUS000123'",
|
|
483
|
+
* etc.
|
|
484
484
|
* - {string} name: The short name of the Business Object. Example: "Sales Order 123", "Opportunity
|
|
485
|
-
*
|
|
485
|
+
* 123", "Account 123", etc.
|
|
486
486
|
* - {string} ui_url: The URL to navigate to the same business object in the application.
|
|
487
487
|
*
|
|
488
488
|
* When called with a value of `null` or `undefined`, the default value of the property will be restored.
|
|
@@ -555,14 +555,14 @@ declare namespace sap {
|
|
|
555
555
|
* This object represents business related information, such as a sales order, an opportunity, etc. It contains
|
|
556
556
|
* the following properties:
|
|
557
557
|
* - id: The Business Object ID to be posted in the SAP Jam Feed. It needs to be an OData URL
|
|
558
|
-
*
|
|
558
|
+
* containing the relative path to the object in the back-end.
|
|
559
559
|
* - type: the type of the business object. It can be any text or it can be the OData meta data
|
|
560
|
-
*
|
|
560
|
+
* URL to the object Entity Type.
|
|
561
561
|
* - name (optional): the description of the business object to be displayed in SAP Jam, i.e.
|
|
562
|
-
*
|
|
562
|
+
* "SO 57746", "Opportunity 123", etc.
|
|
563
563
|
* - ui_url (optional): the URL to navigate to the same business object in the application.
|
|
564
|
-
*
|
|
565
|
-
*
|
|
564
|
+
* Note: The object is passed by reference, which means that the attributes will be modified in the original
|
|
565
|
+
* object, for example, when the URLs contained in the id and type attributes are mapped (via OData call).
|
|
566
566
|
*
|
|
567
567
|
* When called with a value of `null` or `undefined`, the default value of the property will be restored.
|
|
568
568
|
*
|
|
@@ -585,7 +585,7 @@ declare namespace sap {
|
|
|
585
585
|
*
|
|
586
586
|
* - {string} **[DEPRECATED]** [groupIds?]: a comma separated list of group IDs.
|
|
587
587
|
* - {object} **[DEPRECATED]** object: the representation of a business object. Use businessObject
|
|
588
|
-
*
|
|
588
|
+
* instead
|
|
589
589
|
*/
|
|
590
590
|
oSettings: object
|
|
591
591
|
): void;
|
|
@@ -652,11 +652,11 @@ declare namespace sap {
|
|
|
652
652
|
* This object represents business related information, such as a sales order, an opportunity, etc. It contains
|
|
653
653
|
* the following properties:
|
|
654
654
|
* - **id**: The Business Object ID to be posted in the SAP Jam Feed. It needs to be an OData
|
|
655
|
-
*
|
|
655
|
+
* URL containing the relative path to the object in the back-end.
|
|
656
656
|
* - **type**: The type of the Business Object. It needs to be the OData meta data URL to the
|
|
657
|
-
*
|
|
657
|
+
* corresponding Entity Collection.
|
|
658
658
|
* - **name?** (optional): The description of the Business Object to be displayed in SAP Jam,
|
|
659
|
-
*
|
|
659
|
+
* i.e. "SO 57746", "Opportunity 123", etc.
|
|
660
660
|
* - **ui_url?** (optional): The URL to navigate to the same Business Object in the application.
|
|
661
661
|
*/
|
|
662
662
|
object?:
|
|
@@ -776,11 +776,11 @@ declare namespace sap {
|
|
|
776
776
|
* This object represents business related information, such as a sales order, an opportunity, etc. It contains
|
|
777
777
|
* the following properties:
|
|
778
778
|
* - **id**: The Business Object ID to be posted in the SAP Jam Feed. It needs to be an OData
|
|
779
|
-
*
|
|
779
|
+
* URL containing the relative path to the object in the back-end.
|
|
780
780
|
* - **type**: The type of the Business Object. It needs to be the OData meta data URL to the
|
|
781
|
-
*
|
|
781
|
+
* corresponding Entity Collection.
|
|
782
782
|
* - **name?** (optional): The description of the Business Object to be displayed in SAP Jam,
|
|
783
|
-
*
|
|
783
|
+
* i.e. "SO 57746", "Opportunity 123", etc.
|
|
784
784
|
* - **ui_url?** (optional): The URL to navigate to the same Business Object in the application.
|
|
785
785
|
*
|
|
786
786
|
*
|
|
@@ -863,11 +863,11 @@ declare namespace sap {
|
|
|
863
863
|
* This object represents business related information, such as a sales order, an opportunity, etc. It contains
|
|
864
864
|
* the following properties:
|
|
865
865
|
* - **id**: The Business Object ID to be posted in the SAP Jam Feed. It needs to be an OData
|
|
866
|
-
*
|
|
866
|
+
* URL containing the relative path to the object in the back-end.
|
|
867
867
|
* - **type**: The type of the Business Object. It needs to be the OData meta data URL to the
|
|
868
|
-
*
|
|
868
|
+
* corresponding Entity Collection.
|
|
869
869
|
* - **name?** (optional): The description of the Business Object to be displayed in SAP Jam,
|
|
870
|
-
*
|
|
870
|
+
* i.e. "SO 57746", "Opportunity 123", etc.
|
|
871
871
|
* - **ui_url?** (optional): The URL to navigate to the same Business Object in the application.
|
|
872
872
|
*
|
|
873
873
|
*
|
|
@@ -1253,8 +1253,8 @@ declare namespace sap {
|
|
|
1253
1253
|
/**
|
|
1254
1254
|
* When you want to provide the user with the option to share file attachments, then the following properties
|
|
1255
1255
|
* need to be specified:
|
|
1256
|
-
* - attachmentsArray: An array of {@link sap.collaboration.components.fiori.sharing.attachment.Attachment}
|
|
1257
|
-
*
|
|
1256
|
+
* - attachmentsArray: An array of {@link sap.collaboration.components.fiori.sharing.attachment.Attachment }
|
|
1257
|
+
* objects. This array offers users a list of files they can attach.
|
|
1258
1258
|
*/
|
|
1259
1259
|
attachments?:
|
|
1260
1260
|
| object
|
|
@@ -1264,7 +1264,7 @@ declare namespace sap {
|
|
|
1264
1264
|
/**
|
|
1265
1265
|
* A JSON object passed to the share component. This object contains the following properties:
|
|
1266
1266
|
* - id (optional): is the object Id to be shared in SAP Jam, i.e a URL( or a callback function that returns
|
|
1267
|
-
*
|
|
1267
|
+
* a URL) that navigates back to the same object in the application
|
|
1268
1268
|
* - display (optional): is a UI5 control to be displayed in the component UI
|
|
1269
1269
|
* **Note:** The preferred object to pass in the display parameter is `sap.m.ObjectListItem`. Using other
|
|
1270
1270
|
* type of objects (for example: `ap.ui.commons.TextView`) may result in problems in the rendering of the
|
|
@@ -1284,12 +1284,12 @@ declare namespace sap {
|
|
|
1284
1284
|
*
|
|
1285
1285
|
* - {string} collection: The name of the OData Collection. Example: "Account", "Opportunity", etc.
|
|
1286
1286
|
* - {string} key: The key to identify a particular instance of the Business Object. It can be a simple
|
|
1287
|
-
*
|
|
1287
|
+
* ID or a compound key. Example: "123", "ObjectID='123'", "ObjectID='123',ObjectType='BUS000123'", etc.
|
|
1288
1288
|
*
|
|
1289
1289
|
* - {string} name: The short name of the Business Object. Example: "Sales Order 123", "Opportunity 123",
|
|
1290
|
-
*
|
|
1291
|
-
*
|
|
1292
|
-
*
|
|
1290
|
+
* "Account 123", etc. These attributes are not enforced by the UI (missing or incorrect values
|
|
1291
|
+
* are not validated), but they are required to make the integration work. These attributes also should
|
|
1292
|
+
* be mapped in the Back-end System and Jam in order to make the External Object work.
|
|
1293
1293
|
* **Note:** the externalObject is dependent on object.id, therefore, the object.id must also be passed
|
|
1294
1294
|
* to the Share Component. See the parameter "object" for more information.
|
|
1295
1295
|
*/
|
|
@@ -1374,8 +1374,8 @@ declare namespace sap {
|
|
|
1374
1374
|
*
|
|
1375
1375
|
* When you want to provide the user with the option to share file attachments, then the following properties
|
|
1376
1376
|
* need to be specified:
|
|
1377
|
-
* - attachmentsArray: An array of {@link sap.collaboration.components.fiori.sharing.attachment.Attachment}
|
|
1378
|
-
*
|
|
1377
|
+
* - attachmentsArray: An array of {@link sap.collaboration.components.fiori.sharing.attachment.Attachment }
|
|
1378
|
+
* objects. This array offers users a list of files they can attach.
|
|
1379
1379
|
*
|
|
1380
1380
|
* @returns Value of property `attachments`
|
|
1381
1381
|
*/
|
|
@@ -1390,12 +1390,12 @@ declare namespace sap {
|
|
|
1390
1390
|
*
|
|
1391
1391
|
* - {string} collection: The name of the OData Collection. Example: "Account", "Opportunity", etc.
|
|
1392
1392
|
* - {string} key: The key to identify a particular instance of the Business Object. It can be a simple
|
|
1393
|
-
*
|
|
1393
|
+
* ID or a compound key. Example: "123", "ObjectID='123'", "ObjectID='123',ObjectType='BUS000123'", etc.
|
|
1394
1394
|
*
|
|
1395
1395
|
* - {string} name: The short name of the Business Object. Example: "Sales Order 123", "Opportunity 123",
|
|
1396
|
-
*
|
|
1397
|
-
*
|
|
1398
|
-
*
|
|
1396
|
+
* "Account 123", etc. These attributes are not enforced by the UI (missing or incorrect values
|
|
1397
|
+
* are not validated), but they are required to make the integration work. These attributes also should
|
|
1398
|
+
* be mapped in the Back-end System and Jam in order to make the External Object work.
|
|
1399
1399
|
* **Note:** the externalObject is dependent on object.id, therefore, the object.id must also be passed
|
|
1400
1400
|
* to the Share Component. See the parameter "object" for more information.
|
|
1401
1401
|
*
|
|
@@ -1407,7 +1407,7 @@ declare namespace sap {
|
|
|
1407
1407
|
*
|
|
1408
1408
|
* A JSON object passed to the share component. This object contains the following properties:
|
|
1409
1409
|
* - id (optional): is the object Id to be shared in SAP Jam, i.e a URL( or a callback function that returns
|
|
1410
|
-
*
|
|
1410
|
+
* a URL) that navigates back to the same object in the application
|
|
1411
1411
|
* - display (optional): is a UI5 control to be displayed in the component UI
|
|
1412
1412
|
* **Note:** The preferred object to pass in the display parameter is `sap.m.ObjectListItem`. Using other
|
|
1413
1413
|
* type of objects (for example: `ap.ui.commons.TextView`) may result in problems in the rendering of the
|
|
@@ -1427,8 +1427,8 @@ declare namespace sap {
|
|
|
1427
1427
|
*
|
|
1428
1428
|
* When you want to provide the user with the option to share file attachments, then the following properties
|
|
1429
1429
|
* need to be specified:
|
|
1430
|
-
* - attachmentsArray: An array of {@link sap.collaboration.components.fiori.sharing.attachment.Attachment}
|
|
1431
|
-
*
|
|
1430
|
+
* - attachmentsArray: An array of {@link sap.collaboration.components.fiori.sharing.attachment.Attachment }
|
|
1431
|
+
* objects. This array offers users a list of files they can attach.
|
|
1432
1432
|
*
|
|
1433
1433
|
* When called with a value of `null` or `undefined`, the default value of the property will be restored.
|
|
1434
1434
|
*
|
|
@@ -1450,12 +1450,12 @@ declare namespace sap {
|
|
|
1450
1450
|
*
|
|
1451
1451
|
* - {string} collection: The name of the OData Collection. Example: "Account", "Opportunity", etc.
|
|
1452
1452
|
* - {string} key: The key to identify a particular instance of the Business Object. It can be a simple
|
|
1453
|
-
*
|
|
1453
|
+
* ID or a compound key. Example: "123", "ObjectID='123'", "ObjectID='123',ObjectType='BUS000123'", etc.
|
|
1454
1454
|
*
|
|
1455
1455
|
* - {string} name: The short name of the Business Object. Example: "Sales Order 123", "Opportunity 123",
|
|
1456
|
-
*
|
|
1457
|
-
*
|
|
1458
|
-
*
|
|
1456
|
+
* "Account 123", etc. These attributes are not enforced by the UI (missing or incorrect values
|
|
1457
|
+
* are not validated), but they are required to make the integration work. These attributes also should
|
|
1458
|
+
* be mapped in the Back-end System and Jam in order to make the External Object work.
|
|
1459
1459
|
* **Note:** the externalObject is dependent on object.id, therefore, the object.id must also be passed
|
|
1460
1460
|
* to the Share Component. See the parameter "object" for more information.
|
|
1461
1461
|
*
|
|
@@ -1474,7 +1474,7 @@ declare namespace sap {
|
|
|
1474
1474
|
*
|
|
1475
1475
|
* A JSON object passed to the share component. This object contains the following properties:
|
|
1476
1476
|
* - id (optional): is the object Id to be shared in SAP Jam, i.e a URL( or a callback function that returns
|
|
1477
|
-
*
|
|
1477
|
+
* a URL) that navigates back to the same object in the application
|
|
1478
1478
|
* - display (optional): is a UI5 control to be displayed in the component UI
|
|
1479
1479
|
* **Note:** The preferred object to pass in the display parameter is `sap.m.ObjectListItem`. Using other
|
|
1480
1480
|
* type of objects (for example: `ap.ui.commons.TextView`) may result in problems in the rendering of the
|
|
@@ -1538,7 +1538,7 @@ declare namespace sap {
|
|
|
1538
1538
|
/**
|
|
1539
1539
|
* A JSON object passed to the share component. This object contains the following properties:
|
|
1540
1540
|
* - id (optional): is the object Id to be shared in SAP Jam, i.e a URL that navigates back to the same
|
|
1541
|
-
*
|
|
1541
|
+
* object in the application
|
|
1542
1542
|
* - display (optional): is a UI5 control to be displayed in the component UI
|
|
1543
1543
|
* - share (optional): is a note that will be displayed in the component UI and shared to SAP Jam too
|
|
1544
1544
|
*/
|
|
@@ -1560,12 +1560,12 @@ declare namespace sap {
|
|
|
1560
1560
|
*
|
|
1561
1561
|
* - {string} collection: The name of the OData Collection. Example: "Account", "Opportunity", etc.
|
|
1562
1562
|
* - {string} key: The key to identify a particular instance of the Business Object. It can be a simple
|
|
1563
|
-
*
|
|
1563
|
+
* ID or a compound key. Example: "123", "ObjectID='123'", "ObjectID='123',ObjectType='BUS000123'", etc.
|
|
1564
1564
|
*
|
|
1565
1565
|
* - {string} name: The short name of the Business Object. Example: "Sales Order 123", "Opportunity 123",
|
|
1566
|
-
*
|
|
1567
|
-
*
|
|
1568
|
-
*
|
|
1566
|
+
* "Account 123", etc. These attributes are not enforced by the UI (missing or incorrect values
|
|
1567
|
+
* are not validated), but they are required to make the integration work. These attributes also should
|
|
1568
|
+
* be mapped in the Back-end System and Jam in order to make the External Object work.
|
|
1569
1569
|
* **Note:** the externalObject is dependent on object.id, therefore, the object.id must also be passed
|
|
1570
1570
|
* to the Share Component. See the parameter "object" for more information.
|
|
1571
1571
|
*/
|
|
@@ -1670,12 +1670,12 @@ declare namespace sap {
|
|
|
1670
1670
|
*
|
|
1671
1671
|
* - {string} collection: The name of the OData Collection. Example: "Account", "Opportunity", etc.
|
|
1672
1672
|
* - {string} key: The key to identify a particular instance of the Business Object. It can be a simple
|
|
1673
|
-
*
|
|
1673
|
+
* ID or a compound key. Example: "123", "ObjectID='123'", "ObjectID='123',ObjectType='BUS000123'", etc.
|
|
1674
1674
|
*
|
|
1675
1675
|
* - {string} name: The short name of the Business Object. Example: "Sales Order 123", "Opportunity 123",
|
|
1676
|
-
*
|
|
1677
|
-
*
|
|
1678
|
-
*
|
|
1676
|
+
* "Account 123", etc. These attributes are not enforced by the UI (missing or incorrect values
|
|
1677
|
+
* are not validated), but they are required to make the integration work. These attributes also should
|
|
1678
|
+
* be mapped in the Back-end System and Jam in order to make the External Object work.
|
|
1679
1679
|
* **Note:** the externalObject is dependent on object.id, therefore, the object.id must also be passed
|
|
1680
1680
|
* to the Share Component. See the parameter "object" for more information.
|
|
1681
1681
|
*
|
|
@@ -1695,7 +1695,7 @@ declare namespace sap {
|
|
|
1695
1695
|
*
|
|
1696
1696
|
* A JSON object passed to the share component. This object contains the following properties:
|
|
1697
1697
|
* - id (optional): is the object Id to be shared in SAP Jam, i.e a URL that navigates back to the same
|
|
1698
|
-
*
|
|
1698
|
+
* object in the application
|
|
1699
1699
|
* - display (optional): is a UI5 control to be displayed in the component UI
|
|
1700
1700
|
* - share (optional): is a note that will be displayed in the component UI and shared to SAP Jam too
|
|
1701
1701
|
*
|
|
@@ -1767,12 +1767,12 @@ declare namespace sap {
|
|
|
1767
1767
|
*
|
|
1768
1768
|
* - {string} collection: The name of the OData Collection. Example: "Account", "Opportunity", etc.
|
|
1769
1769
|
* - {string} key: The key to identify a particular instance of the Business Object. It can be a simple
|
|
1770
|
-
*
|
|
1770
|
+
* ID or a compound key. Example: "123", "ObjectID='123'", "ObjectID='123',ObjectType='BUS000123'", etc.
|
|
1771
1771
|
*
|
|
1772
1772
|
* - {string} name: The short name of the Business Object. Example: "Sales Order 123", "Opportunity 123",
|
|
1773
|
-
*
|
|
1774
|
-
*
|
|
1775
|
-
*
|
|
1773
|
+
* "Account 123", etc. These attributes are not enforced by the UI (missing or incorrect values
|
|
1774
|
+
* are not validated), but they are required to make the integration work. These attributes also should
|
|
1775
|
+
* be mapped in the Back-end System and Jam in order to make the External Object work.
|
|
1776
1776
|
* **Note:** the externalObject is dependent on object.id, therefore, the object.id must also be passed
|
|
1777
1777
|
* to the Share Component. See the parameter "object" for more information.
|
|
1778
1778
|
*
|
|
@@ -1806,7 +1806,7 @@ declare namespace sap {
|
|
|
1806
1806
|
*
|
|
1807
1807
|
* A JSON object passed to the share component. This object contains the following properties:
|
|
1808
1808
|
* - id (optional): is the object Id to be shared in SAP Jam, i.e a URL that navigates back to the same
|
|
1809
|
-
*
|
|
1809
|
+
* object in the application
|
|
1810
1810
|
* - display (optional): is a UI5 control to be displayed in the component UI
|
|
1811
1811
|
* - share (optional): is a note that will be displayed in the component UI and shared to SAP Jam too
|
|
1812
1812
|
*
|
|
@@ -2193,6 +2193,8 @@ declare namespace sap {
|
|
|
2193
2193
|
customActionPress?: (oEvent: sap.ui.base.Event) => void;
|
|
2194
2194
|
}
|
|
2195
2195
|
|
|
2196
|
+
interface $ComponentCustomActionPressEventParameters {}
|
|
2197
|
+
|
|
2196
2198
|
/**
|
|
2197
2199
|
* @deprecated (since 1.34.0) - For new integrations and existing implementations running on release 1.32
|
|
2198
2200
|
* or later, use the Group Feed component (sap.collaboration.components.feed.Component), Business Object
|
|
@@ -2335,7 +2337,7 @@ declare namespace sap {
|
|
|
2335
2337
|
static setBusinessObjectMap(
|
|
2336
2338
|
/**
|
|
2337
2339
|
* required - JSON object containing the following properties:
|
|
2338
|
-
* {sap.ui.model.odata.ODataModel} serviceModel required - OData model to retrieve timeline entries {string}
|
|
2340
|
+
* {sap.ui.model.odata.ODataModel} serviceModel required - OData model to retrieve timeline entries {string }
|
|
2339
2341
|
* servicePath: The relative path to the OData service for the business object (example: "/sap/opu/odata/sap/ODATA_SRV")
|
|
2340
2342
|
* {string} collection: Entity collection name of the business object {string} applicationContext:
|
|
2341
2343
|
* The application context (example: "CRM", "SD", etc.) {function} customActionCallback: A callback
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
// For Library Version: 1.
|
|
1
|
+
// For Library Version: 1.115.0
|
|
2
2
|
|
|
3
3
|
declare namespace sap {
|
|
4
4
|
namespace esh {
|
|
@@ -142,6 +142,17 @@ declare namespace sap {
|
|
|
142
142
|
| sap.ui.base.ManagedObject.PropertyBindingInfo
|
|
143
143
|
| `{${string}}`;
|
|
144
144
|
|
|
145
|
+
/**
|
|
146
|
+
* @SINCE 1.114.0
|
|
147
|
+
*
|
|
148
|
+
* In case folderMode is set to true this boolean indicates whether for the initial search the folder mode
|
|
149
|
+
* is enabled.
|
|
150
|
+
*/
|
|
151
|
+
folderModeForInitialSearch?:
|
|
152
|
+
| boolean
|
|
153
|
+
| sap.ui.base.ManagedObject.PropertyBindingInfo
|
|
154
|
+
| `{${string}}`;
|
|
155
|
+
|
|
145
156
|
/**
|
|
146
157
|
* @SINCE 1.106.0
|
|
147
158
|
*
|
|
@@ -353,6 +364,28 @@ declare namespace sap {
|
|
|
353
364
|
| sap.ui.base.ManagedObject.PropertyBindingInfo
|
|
354
365
|
| `{${string}}`;
|
|
355
366
|
|
|
367
|
+
/**
|
|
368
|
+
* @SINCE 1.96.0
|
|
369
|
+
*
|
|
370
|
+
* Enables the multiselection mode of search result items. A checkbox is provided for each result item if
|
|
371
|
+
* the value is true.
|
|
372
|
+
*/
|
|
373
|
+
enableMultiSelectionResultItems?:
|
|
374
|
+
| boolean
|
|
375
|
+
| sap.ui.base.ManagedObject.PropertyBindingInfo
|
|
376
|
+
| `{${string}}`;
|
|
377
|
+
|
|
378
|
+
/**
|
|
379
|
+
* @SINCE 1.96.0
|
|
380
|
+
*
|
|
381
|
+
* The maximal count of search result items displayed on a page after a search. By clicking Show More button,
|
|
382
|
+
* another page of result items of the same count (if available) will be displayed.
|
|
383
|
+
*/
|
|
384
|
+
pageSize?:
|
|
385
|
+
| int
|
|
386
|
+
| sap.ui.base.ManagedObject.PropertyBindingInfo
|
|
387
|
+
| `{${string}}`;
|
|
388
|
+
|
|
356
389
|
/**
|
|
357
390
|
* Control instances which are part of this composite control.
|
|
358
391
|
*/
|
|
@@ -373,6 +406,10 @@ declare namespace sap {
|
|
|
373
406
|
searchFinished?: (oEvent: sap.ui.base.Event) => void;
|
|
374
407
|
}
|
|
375
408
|
|
|
409
|
+
interface $SearchCompositeControlSearchFinishedEventParameters {}
|
|
410
|
+
|
|
411
|
+
interface $SearchCompositeControlSearchStartedEventParameters {}
|
|
412
|
+
|
|
376
413
|
/**
|
|
377
414
|
* @SINCE 1.93.0
|
|
378
415
|
*
|
|
@@ -705,6 +742,19 @@ declare namespace sap {
|
|
|
705
742
|
* @returns Value of property `displayFacetPanelInCaseOfNoResults`
|
|
706
743
|
*/
|
|
707
744
|
getDisplayFacetPanelInCaseOfNoResults(): boolean;
|
|
745
|
+
/**
|
|
746
|
+
* @SINCE 1.96.0
|
|
747
|
+
*
|
|
748
|
+
* Gets current value of property {@link #getEnableMultiSelectionResultItems enableMultiSelectionResultItems}.
|
|
749
|
+
*
|
|
750
|
+
* Enables the multiselection mode of search result items. A checkbox is provided for each result item if
|
|
751
|
+
* the value is true.
|
|
752
|
+
*
|
|
753
|
+
* Default value is `false`.
|
|
754
|
+
*
|
|
755
|
+
* @returns Value of property `enableMultiSelectionResultItems`
|
|
756
|
+
*/
|
|
757
|
+
getEnableMultiSelectionResultItems(): boolean;
|
|
708
758
|
/**
|
|
709
759
|
* @SINCE 1.107.0
|
|
710
760
|
*
|
|
@@ -801,6 +851,19 @@ declare namespace sap {
|
|
|
801
851
|
* @returns Value of property `folderMode`
|
|
802
852
|
*/
|
|
803
853
|
getFolderMode(): boolean;
|
|
854
|
+
/**
|
|
855
|
+
* @SINCE 1.114.0
|
|
856
|
+
*
|
|
857
|
+
* Gets current value of property {@link #getFolderModeForInitialSearch folderModeForInitialSearch}.
|
|
858
|
+
*
|
|
859
|
+
* In case folderMode is set to true this boolean indicates whether for the initial search the folder mode
|
|
860
|
+
* is enabled.
|
|
861
|
+
*
|
|
862
|
+
* Default value is `false`.
|
|
863
|
+
*
|
|
864
|
+
* @returns Value of property `folderModeForInitialSearch`
|
|
865
|
+
*/
|
|
866
|
+
getFolderModeForInitialSearch(): boolean;
|
|
804
867
|
/**
|
|
805
868
|
* @SINCE 1.94.0
|
|
806
869
|
*
|
|
@@ -854,6 +917,19 @@ declare namespace sap {
|
|
|
854
917
|
* @returns Value of property `overwriteBrowserTitle`
|
|
855
918
|
*/
|
|
856
919
|
getOverwriteBrowserTitle(): boolean;
|
|
920
|
+
/**
|
|
921
|
+
* @SINCE 1.96.0
|
|
922
|
+
*
|
|
923
|
+
* Gets current value of property {@link #getPageSize pageSize}.
|
|
924
|
+
*
|
|
925
|
+
* The maximal count of search result items displayed on a page after a search. By clicking Show More button,
|
|
926
|
+
* another page of result items of the same count (if available) will be displayed.
|
|
927
|
+
*
|
|
928
|
+
* Default value is `10`.
|
|
929
|
+
*
|
|
930
|
+
* @returns Value of property `pageSize`
|
|
931
|
+
*/
|
|
932
|
+
getPageSize(): int;
|
|
857
933
|
/**
|
|
858
934
|
* @SINCE 1.113.0
|
|
859
935
|
*
|
|
@@ -1187,6 +1263,26 @@ declare namespace sap {
|
|
|
1187
1263
|
*/
|
|
1188
1264
|
bDisplayFacetPanelInCaseOfNoResults?: boolean
|
|
1189
1265
|
): this;
|
|
1266
|
+
/**
|
|
1267
|
+
* @SINCE 1.96.0
|
|
1268
|
+
*
|
|
1269
|
+
* Sets a new value for property {@link #getEnableMultiSelectionResultItems enableMultiSelectionResultItems}.
|
|
1270
|
+
*
|
|
1271
|
+
* Enables the multiselection mode of search result items. A checkbox is provided for each result item if
|
|
1272
|
+
* the value is true.
|
|
1273
|
+
*
|
|
1274
|
+
* When called with a value of `null` or `undefined`, the default value of the property will be restored.
|
|
1275
|
+
*
|
|
1276
|
+
* Default value is `false`.
|
|
1277
|
+
*
|
|
1278
|
+
* @returns Reference to `this` in order to allow method chaining
|
|
1279
|
+
*/
|
|
1280
|
+
setEnableMultiSelectionResultItems(
|
|
1281
|
+
/**
|
|
1282
|
+
* New value for property `enableMultiSelectionResultItems`
|
|
1283
|
+
*/
|
|
1284
|
+
bEnableMultiSelectionResultItems?: boolean
|
|
1285
|
+
): this;
|
|
1190
1286
|
/**
|
|
1191
1287
|
* @SINCE 1.107.0
|
|
1192
1288
|
*
|
|
@@ -1330,6 +1426,26 @@ declare namespace sap {
|
|
|
1330
1426
|
*/
|
|
1331
1427
|
bFolderMode?: boolean
|
|
1332
1428
|
): this;
|
|
1429
|
+
/**
|
|
1430
|
+
* @SINCE 1.114.0
|
|
1431
|
+
*
|
|
1432
|
+
* Sets a new value for property {@link #getFolderModeForInitialSearch folderModeForInitialSearch}.
|
|
1433
|
+
*
|
|
1434
|
+
* In case folderMode is set to true this boolean indicates whether for the initial search the folder mode
|
|
1435
|
+
* is enabled.
|
|
1436
|
+
*
|
|
1437
|
+
* When called with a value of `null` or `undefined`, the default value of the property will be restored.
|
|
1438
|
+
*
|
|
1439
|
+
* Default value is `false`.
|
|
1440
|
+
*
|
|
1441
|
+
* @returns Reference to `this` in order to allow method chaining
|
|
1442
|
+
*/
|
|
1443
|
+
setFolderModeForInitialSearch(
|
|
1444
|
+
/**
|
|
1445
|
+
* New value for property `folderModeForInitialSearch`
|
|
1446
|
+
*/
|
|
1447
|
+
bFolderModeForInitialSearch?: boolean
|
|
1448
|
+
): this;
|
|
1333
1449
|
/**
|
|
1334
1450
|
* @SINCE 1.94.0
|
|
1335
1451
|
*
|
|
@@ -1418,6 +1534,26 @@ declare namespace sap {
|
|
|
1418
1534
|
*/
|
|
1419
1535
|
bOverwriteBrowserTitle: boolean
|
|
1420
1536
|
): this;
|
|
1537
|
+
/**
|
|
1538
|
+
* @SINCE 1.96.0
|
|
1539
|
+
*
|
|
1540
|
+
* Sets a new value for property {@link #getPageSize pageSize}.
|
|
1541
|
+
*
|
|
1542
|
+
* The maximal count of search result items displayed on a page after a search. By clicking Show More button,
|
|
1543
|
+
* another page of result items of the same count (if available) will be displayed.
|
|
1544
|
+
*
|
|
1545
|
+
* When called with a value of `null` or `undefined`, the default value of the property will be restored.
|
|
1546
|
+
*
|
|
1547
|
+
* Default value is `10`.
|
|
1548
|
+
*
|
|
1549
|
+
* @returns Reference to `this` in order to allow method chaining
|
|
1550
|
+
*/
|
|
1551
|
+
setPageSize(
|
|
1552
|
+
/**
|
|
1553
|
+
* New value for property `pageSize`
|
|
1554
|
+
*/
|
|
1555
|
+
iPageSize?: int
|
|
1556
|
+
): this;
|
|
1421
1557
|
/**
|
|
1422
1558
|
* @SINCE 1.113.0
|
|
1423
1559
|
*
|