@sapui5/types 1.114.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.
Files changed (62) hide show
  1. package/package.json +1 -1
  2. package/types/sap.apf.d.ts +70 -60
  3. package/types/sap.ca.ui.d.ts +207 -105
  4. package/types/sap.chart.d.ts +148 -129
  5. package/types/sap.collaboration.d.ts +98 -87
  6. package/types/sap.esh.search.ui.d.ts +92 -2
  7. package/types/sap.f.d.ts +1378 -1019
  8. package/types/sap.fe.core.d.ts +48 -163
  9. package/types/sap.fe.macros.d.ts +76 -16
  10. package/types/sap.fe.navigation.d.ts +42 -31
  11. package/types/sap.fe.templates.d.ts +15 -293
  12. package/types/sap.fe.test.d.ts +102 -46
  13. package/types/sap.feedback.ui.d.ts +1 -1
  14. package/types/sap.gantt.d.ts +1987 -1251
  15. package/types/sap.insights.d.ts +1 -1
  16. package/types/sap.landvisz.d.ts +75 -29
  17. package/types/sap.m.d.ts +6945 -4884
  18. package/types/sap.makit.d.ts +43 -18
  19. package/types/sap.me.d.ts +112 -69
  20. package/types/sap.ndc.d.ts +101 -39
  21. package/types/sap.ovp.d.ts +3 -3
  22. package/types/sap.rules.ui.d.ts +53 -24
  23. package/types/sap.sac.df.d.ts +11 -8
  24. package/types/sap.suite.ui.commons.d.ts +2090 -1437
  25. package/types/sap.suite.ui.generic.template.d.ts +47 -44
  26. package/types/sap.suite.ui.microchart.d.ts +242 -163
  27. package/types/sap.tnt.d.ts +138 -67
  28. package/types/sap.ui.codeeditor.d.ts +37 -30
  29. package/types/sap.ui.commons.d.ts +936 -708
  30. package/types/sap.ui.comp.d.ts +2336 -1606
  31. package/types/sap.ui.core.d.ts +4625 -2580
  32. package/types/sap.ui.dt.d.ts +1 -1
  33. package/types/sap.ui.export.d.ts +38 -32
  34. package/types/sap.ui.fl.d.ts +102 -80
  35. package/types/sap.ui.generic.app.d.ts +58 -49
  36. package/types/sap.ui.generic.template.d.ts +1 -1
  37. package/types/sap.ui.integration.d.ts +219 -167
  38. package/types/sap.ui.layout.d.ts +378 -398
  39. package/types/sap.ui.mdc.d.ts +21983 -139
  40. package/types/sap.ui.richtexteditor.d.ts +55 -50
  41. package/types/sap.ui.rta.d.ts +1 -1
  42. package/types/sap.ui.suite.d.ts +13 -11
  43. package/types/sap.ui.support.d.ts +7 -7
  44. package/types/sap.ui.table.d.ts +594 -478
  45. package/types/sap.ui.testrecorder.d.ts +1 -1
  46. package/types/sap.ui.unified.d.ts +839 -587
  47. package/types/sap.ui.ux3.d.ts +847 -592
  48. package/types/sap.ui.vbm.d.ts +1018 -760
  49. package/types/sap.ui.vk.d.ts +2858 -1896
  50. package/types/sap.ui.vtm.d.ts +650 -479
  51. package/types/sap.ui.webc.common.d.ts +5 -3
  52. package/types/sap.ui.webc.fiori.d.ts +530 -345
  53. package/types/sap.ui.webc.main.d.ts +1114 -835
  54. package/types/sap.uiext.inbox.d.ts +79 -37
  55. package/types/sap.ushell.d.ts +441 -213
  56. package/types/sap.ushell_abap.d.ts +1 -1
  57. package/types/sap.uxap.d.ts +309 -222
  58. package/types/sap.viz.d.ts +932 -521
  59. package/types/sap.webanalytics.core.d.ts +1 -1
  60. package/types/sap.zen.commons.d.ts +15 -10
  61. package/types/sap.zen.crosstab.d.ts +7 -4
  62. package/types/sap.zen.dsh.d.ts +143 -87
@@ -1,4 +1,4 @@
1
- // For Library Version: 1.114.0
1
+ // For Library Version: 1.115.0
2
2
 
3
3
  declare module "sap/collaboration/library" {
4
4
  /**
@@ -105,7 +105,7 @@ declare module "sap/collaboration/components/feed/Component" {
105
105
  * The Feed Component is an SAPUI5 component that allows you to display SAP Jam feeds. It includes the option
106
106
  * to add new posts and reply to entries and view other users' social profiles from SAP Jam.
107
107
  */
108
- export default class Component extends UIComponent {
108
+ class Component extends UIComponent {
109
109
  /**
110
110
  * Constructor for the Feed Component.
111
111
  *
@@ -306,6 +306,7 @@ declare module "sap/collaboration/components/feed/Component" {
306
306
  oFeedSources: Record<string, any> | string[]
307
307
  ): this;
308
308
  }
309
+ export default Component;
309
310
 
310
311
  export interface $ComponentSettings extends $UIComponentSettings {
311
312
  axisOrientation?:
@@ -343,7 +344,7 @@ declare module "sap/collaboration/components/fiori/feed/Component" {
343
344
  * This class defines the Reusable UI5 Component structure, i.e properties, aggregations and events, if
344
345
  * any, and creates the UI5 controls to be displayed.
345
346
  */
346
- export default class Component extends UIComponent {
347
+ class Component extends UIComponent {
347
348
  /**
348
349
  * Constructor for the Feed Component.
349
350
  *
@@ -439,11 +440,11 @@ declare module "sap/collaboration/components/fiori/feed/Component" {
439
440
  * This object represents business related information, such as a sales order, an opportunity, etc. It contains
440
441
  * the following properties:
441
442
  * - **id**: The Business Object ID to be posted in the SAP Jam Feed. It needs to be an OData
442
- * URL containing the relative path to the object in the back-end.
443
+ * URL containing the relative path to the object in the back-end.
443
444
  * - **type**: The type of the Business Object. It needs to be the OData meta data URL to the
444
- * corresponding Entity Collection.
445
+ * corresponding Entity Collection.
445
446
  * - **name?** (optional): The description of the Business Object to be displayed in SAP Jam,
446
- * i.e. "SO 57746", "Opportunity 123", etc.
447
+ * i.e. "SO 57746", "Opportunity 123", etc.
447
448
  * - **ui_url?** (optional): The URL to navigate to the same Business Object in the application.
448
449
  *
449
450
  *
@@ -526,11 +527,11 @@ declare module "sap/collaboration/components/fiori/feed/Component" {
526
527
  * This object represents business related information, such as a sales order, an opportunity, etc. It contains
527
528
  * the following properties:
528
529
  * - **id**: The Business Object ID to be posted in the SAP Jam Feed. It needs to be an OData
529
- * URL containing the relative path to the object in the back-end.
530
+ * URL containing the relative path to the object in the back-end.
530
531
  * - **type**: The type of the Business Object. It needs to be the OData meta data URL to the
531
- * corresponding Entity Collection.
532
+ * corresponding Entity Collection.
532
533
  * - **name?** (optional): The description of the Business Object to be displayed in SAP Jam,
533
- * i.e. "SO 57746", "Opportunity 123", etc.
534
+ * i.e. "SO 57746", "Opportunity 123", etc.
534
535
  * - **ui_url?** (optional): The URL to navigate to the same Business Object in the application.
535
536
  *
536
537
  *
@@ -593,6 +594,7 @@ declare module "sap/collaboration/components/fiori/feed/Component" {
593
594
  sWidth?: CSSSize
594
595
  ): this;
595
596
  }
597
+ export default Component;
596
598
 
597
599
  export interface $ComponentSettings extends $UIComponentSettings {
598
600
  /**
@@ -627,11 +629,11 @@ declare module "sap/collaboration/components/fiori/feed/Component" {
627
629
  * This object represents business related information, such as a sales order, an opportunity, etc. It contains
628
630
  * the following properties:
629
631
  * - **id**: The Business Object ID to be posted in the SAP Jam Feed. It needs to be an OData
630
- * URL containing the relative path to the object in the back-end.
632
+ * URL containing the relative path to the object in the back-end.
631
633
  * - **type**: The type of the Business Object. It needs to be the OData meta data URL to the
632
- * corresponding Entity Collection.
634
+ * corresponding Entity Collection.
633
635
  * - **name?** (optional): The description of the Business Object to be displayed in SAP Jam,
634
- * i.e. "SO 57746", "Opportunity 123", etc.
636
+ * i.e. "SO 57746", "Opportunity 123", etc.
635
637
  * - **ui_url?** (optional): The URL to navigate to the same Business Object in the application.
636
638
  */
637
639
  object?: object | PropertyBindingInfo | `{${string}}`;
@@ -663,7 +665,7 @@ declare module "sap/collaboration/components/fiori/feed/dialog/Component" {
663
665
  * a dialog in order to discuss information in SAP JAM by adding and replying to feed posts related to a
664
666
  * specific Business Object.
665
667
  */
666
- export default class Component extends UIComponent {
668
+ class Component extends UIComponent {
667
669
  /**
668
670
  * Constructor for the Feed Dialog Component.
669
671
  *
@@ -731,14 +733,14 @@ declare module "sap/collaboration/components/fiori/feed/dialog/Component" {
731
733
  * such as a sales order, an opportunity, etc. It contains the following properties:
732
734
  * - {string} appContext: The application context. Example: "CRM", "CB", "SD", etc.
733
735
  * - {string} odataServicePath: The path to the OData Service and the Service name. Example:
734
- * "/sap/opu/odata/sap/APPLICATION_SRV".
736
+ * "/sap/opu/odata/sap/APPLICATION_SRV".
735
737
  * - {string} collection: The name of the OData Collection. Example: "Account", "Opportunity",
736
- * etc.
738
+ * etc.
737
739
  * - {string} key: The key to identify a particular instance of the Business Object. It can be
738
- * a simple ID or a compound key. Example: "123", "ObjectID='123'", "ObjectID='123',ObjectType='BUS000123'",
739
- * etc.
740
+ * a simple ID or a compound key. Example: "123", "ObjectID='123'", "ObjectID='123',ObjectType='BUS000123'",
741
+ * etc.
740
742
  * - {string} name: The short name of the Business Object. Example: "Sales Order 123", "Opportunity
741
- * 123", "Account 123", etc.
743
+ * 123", "Account 123", etc.
742
744
  * - {string} ui_url: The URL to navigate to the same business object in the application.
743
745
  *
744
746
  * @returns Value of property `businessObject`
@@ -783,14 +785,14 @@ declare module "sap/collaboration/components/fiori/feed/dialog/Component" {
783
785
  * This object represents business related information, such as a sales order, an opportunity, etc. It contains
784
786
  * the following properties:
785
787
  * - id: The Business Object ID to be posted in the SAP Jam Feed. It needs to be an OData URL
786
- * containing the relative path to the object in the back-end.
788
+ * containing the relative path to the object in the back-end.
787
789
  * - type: the type of the business object. It can be any text or it can be the OData meta data
788
- * URL to the object Entity Type.
790
+ * URL to the object Entity Type.
789
791
  * - name (optional): the description of the business object to be displayed in SAP Jam, i.e.
790
- * "SO 57746", "Opportunity 123", etc.
792
+ * "SO 57746", "Opportunity 123", etc.
791
793
  * - ui_url (optional): the URL to navigate to the same business object in the application.
792
- * Note: The object is passed by reference, which means that the attributes will be modified in the original
793
- * object, for example, when the URLs contained in the id and type attributes are mapped (via OData call).
794
+ * Note: The object is passed by reference, which means that the attributes will be modified in the original
795
+ * object, for example, when the URLs contained in the id and type attributes are mapped (via OData call).
794
796
  *
795
797
  * @returns Value of property `object`
796
798
  */
@@ -816,14 +818,14 @@ declare module "sap/collaboration/components/fiori/feed/dialog/Component" {
816
818
  * such as a sales order, an opportunity, etc. It contains the following properties:
817
819
  * - {string} appContext: The application context. Example: "CRM", "CB", "SD", etc.
818
820
  * - {string} odataServicePath: The path to the OData Service and the Service name. Example:
819
- * "/sap/opu/odata/sap/APPLICATION_SRV".
821
+ * "/sap/opu/odata/sap/APPLICATION_SRV".
820
822
  * - {string} collection: The name of the OData Collection. Example: "Account", "Opportunity",
821
- * etc.
823
+ * etc.
822
824
  * - {string} key: The key to identify a particular instance of the Business Object. It can be
823
- * a simple ID or a compound key. Example: "123", "ObjectID='123'", "ObjectID='123',ObjectType='BUS000123'",
824
- * etc.
825
+ * a simple ID or a compound key. Example: "123", "ObjectID='123'", "ObjectID='123',ObjectType='BUS000123'",
826
+ * etc.
825
827
  * - {string} name: The short name of the Business Object. Example: "Sales Order 123", "Opportunity
826
- * 123", "Account 123", etc.
828
+ * 123", "Account 123", etc.
827
829
  * - {string} ui_url: The URL to navigate to the same business object in the application.
828
830
  *
829
831
  * When called with a value of `null` or `undefined`, the default value of the property will be restored.
@@ -896,14 +898,14 @@ declare module "sap/collaboration/components/fiori/feed/dialog/Component" {
896
898
  * This object represents business related information, such as a sales order, an opportunity, etc. It contains
897
899
  * the following properties:
898
900
  * - id: The Business Object ID to be posted in the SAP Jam Feed. It needs to be an OData URL
899
- * containing the relative path to the object in the back-end.
901
+ * containing the relative path to the object in the back-end.
900
902
  * - type: the type of the business object. It can be any text or it can be the OData meta data
901
- * URL to the object Entity Type.
903
+ * URL to the object Entity Type.
902
904
  * - name (optional): the description of the business object to be displayed in SAP Jam, i.e.
903
- * "SO 57746", "Opportunity 123", etc.
905
+ * "SO 57746", "Opportunity 123", etc.
904
906
  * - ui_url (optional): the URL to navigate to the same business object in the application.
905
- * Note: The object is passed by reference, which means that the attributes will be modified in the original
906
- * object, for example, when the URLs contained in the id and type attributes are mapped (via OData call).
907
+ * Note: The object is passed by reference, which means that the attributes will be modified in the original
908
+ * object, for example, when the URLs contained in the id and type attributes are mapped (via OData call).
907
909
  *
908
910
  * When called with a value of `null` or `undefined`, the default value of the property will be restored.
909
911
  *
@@ -926,7 +928,7 @@ declare module "sap/collaboration/components/fiori/feed/dialog/Component" {
926
928
  *
927
929
  * - {string} **[DEPRECATED]** [groupIds?]: a comma separated list of group IDs.
928
930
  * - {object} **[DEPRECATED]** object: the representation of a business object. Use businessObject
929
- * instead
931
+ * instead
930
932
  */
931
933
  oSettings: object
932
934
  ): void;
@@ -948,6 +950,7 @@ declare module "sap/collaboration/components/fiori/feed/dialog/Component" {
948
950
  sWidth?: CSSSize
949
951
  ): this;
950
952
  }
953
+ export default Component;
951
954
 
952
955
  export interface $ComponentSettings extends $UIComponentSettings {
953
956
  /**
@@ -979,14 +982,14 @@ declare module "sap/collaboration/components/fiori/feed/dialog/Component" {
979
982
  * This object represents business related information, such as a sales order, an opportunity, etc. It contains
980
983
  * the following properties:
981
984
  * - id: The Business Object ID to be posted in the SAP Jam Feed. It needs to be an OData URL
982
- * containing the relative path to the object in the back-end.
985
+ * containing the relative path to the object in the back-end.
983
986
  * - type: the type of the business object. It can be any text or it can be the OData meta data
984
- * URL to the object Entity Type.
987
+ * URL to the object Entity Type.
985
988
  * - name (optional): the description of the business object to be displayed in SAP Jam, i.e.
986
- * "SO 57746", "Opportunity 123", etc.
989
+ * "SO 57746", "Opportunity 123", etc.
987
990
  * - ui_url (optional): the URL to navigate to the same business object in the application.
988
- * Note: The object is passed by reference, which means that the attributes will be modified in the original
989
- * object, for example, when the URLs contained in the id and type attributes are mapped (via OData call).
991
+ * Note: The object is passed by reference, which means that the attributes will be modified in the original
992
+ * object, for example, when the URLs contained in the id and type attributes are mapped (via OData call).
990
993
  */
991
994
  object?: object | PropertyBindingInfo | `{${string}}`;
992
995
 
@@ -995,14 +998,14 @@ declare module "sap/collaboration/components/fiori/feed/dialog/Component" {
995
998
  * such as a sales order, an opportunity, etc. It contains the following properties:
996
999
  * - {string} appContext: The application context. Example: "CRM", "CB", "SD", etc.
997
1000
  * - {string} odataServicePath: The path to the OData Service and the Service name. Example:
998
- * "/sap/opu/odata/sap/APPLICATION_SRV".
1001
+ * "/sap/opu/odata/sap/APPLICATION_SRV".
999
1002
  * - {string} collection: The name of the OData Collection. Example: "Account", "Opportunity",
1000
- * etc.
1003
+ * etc.
1001
1004
  * - {string} key: The key to identify a particular instance of the Business Object. It can be
1002
- * a simple ID or a compound key. Example: "123", "ObjectID='123'", "ObjectID='123',ObjectType='BUS000123'",
1003
- * etc.
1005
+ * a simple ID or a compound key. Example: "123", "ObjectID='123'", "ObjectID='123',ObjectType='BUS000123'",
1006
+ * etc.
1004
1007
  * - {string} name: The short name of the Business Object. Example: "Sales Order 123", "Opportunity
1005
- * 123", "Account 123", etc.
1008
+ * 123", "Account 123", etc.
1006
1009
  * - {string} ui_url: The URL to navigate to the same business object in the application.
1007
1010
  */
1008
1011
  businessObject?: object | PropertyBindingInfo | `{${string}}`;
@@ -1032,7 +1035,7 @@ declare module "sap/collaboration/components/fiori/notification/Component" {
1032
1035
  * This component refreshes itself when the number of seconds specified in the refreshInterval
1033
1036
  * parameter elapses. When refreshing, the backend is called to obtain the latest notifications.
1034
1037
  */
1035
- export default class Component extends UIComponent {
1038
+ class Component extends UIComponent {
1036
1039
  /**
1037
1040
  * Constructor for the notification component.
1038
1041
  *
@@ -1225,6 +1228,7 @@ declare module "sap/collaboration/components/fiori/notification/Component" {
1225
1228
  iTransitionInterval?: int
1226
1229
  ): this;
1227
1230
  }
1231
+ export default Component;
1228
1232
 
1229
1233
  export interface $ComponentSettings extends $UIComponentSettings {
1230
1234
  /**
@@ -1264,7 +1268,7 @@ declare module "sap/collaboration/components/fiori/sharing/attachment/Attachment
1264
1268
  *
1265
1269
  * Attachment objects represent files.
1266
1270
  */
1267
- export default class Attachment extends BaseObject {
1271
+ class Attachment extends BaseObject {
1268
1272
  /**
1269
1273
  * This constructor must be called in the following way: new Attachment("name", "mimeType", "url")
1270
1274
  * name, mimeType, and url are only place holders and can be any string.
@@ -1314,6 +1318,7 @@ declare module "sap/collaboration/components/fiori/sharing/attachment/Attachment
1314
1318
  */
1315
1319
  static getMetadata(): Metadata;
1316
1320
  }
1321
+ export default Attachment;
1317
1322
  }
1318
1323
 
1319
1324
  declare module "sap/collaboration/components/fiori/sharing/Component" {
@@ -1335,7 +1340,7 @@ declare module "sap/collaboration/components/fiori/sharing/Component" {
1335
1340
  *
1336
1341
  * A Share Component is a ui5 component that applications can use to share information to SAP Jam
1337
1342
  */
1338
- export default class Component extends UIComponent {
1343
+ class Component extends UIComponent {
1339
1344
  /**
1340
1345
  * Constructor for the share component
1341
1346
  *
@@ -1420,12 +1425,12 @@ declare module "sap/collaboration/components/fiori/sharing/Component" {
1420
1425
  *
1421
1426
  * - {string} collection: The name of the OData Collection. Example: "Account", "Opportunity", etc.
1422
1427
  * - {string} key: The key to identify a particular instance of the Business Object. It can be a simple
1423
- * ID or a compound key. Example: "123", "ObjectID='123'", "ObjectID='123',ObjectType='BUS000123'", etc.
1428
+ * ID or a compound key. Example: "123", "ObjectID='123'", "ObjectID='123',ObjectType='BUS000123'", etc.
1424
1429
  *
1425
1430
  * - {string} name: The short name of the Business Object. Example: "Sales Order 123", "Opportunity 123",
1426
- * "Account 123", etc. These attributes are not enforced by the UI (missing or incorrect values
1427
- * are not validated), but they are required to make the integration work. These attributes also should
1428
- * be mapped in the Back-end System and Jam in order to make the External Object work.
1431
+ * "Account 123", etc. These attributes are not enforced by the UI (missing or incorrect values
1432
+ * are not validated), but they are required to make the integration work. These attributes also should
1433
+ * be mapped in the Back-end System and Jam in order to make the External Object work.
1429
1434
  * **Note:** the externalObject is dependent on object.id, therefore, the object.id must also be passed
1430
1435
  * to the Share Component. See the parameter "object" for more information.
1431
1436
  *
@@ -1445,7 +1450,7 @@ declare module "sap/collaboration/components/fiori/sharing/Component" {
1445
1450
  *
1446
1451
  * A JSON object passed to the share component. This object contains the following properties:
1447
1452
  * - id (optional): is the object Id to be shared in SAP Jam, i.e a URL that navigates back to the same
1448
- * object in the application
1453
+ * object in the application
1449
1454
  * - display (optional): is a UI5 control to be displayed in the component UI
1450
1455
  * - share (optional): is a note that will be displayed in the component UI and shared to SAP Jam too
1451
1456
  *
@@ -1517,12 +1522,12 @@ declare module "sap/collaboration/components/fiori/sharing/Component" {
1517
1522
  *
1518
1523
  * - {string} collection: The name of the OData Collection. Example: "Account", "Opportunity", etc.
1519
1524
  * - {string} key: The key to identify a particular instance of the Business Object. It can be a simple
1520
- * ID or a compound key. Example: "123", "ObjectID='123'", "ObjectID='123',ObjectType='BUS000123'", etc.
1525
+ * ID or a compound key. Example: "123", "ObjectID='123'", "ObjectID='123',ObjectType='BUS000123'", etc.
1521
1526
  *
1522
1527
  * - {string} name: The short name of the Business Object. Example: "Sales Order 123", "Opportunity 123",
1523
- * "Account 123", etc. These attributes are not enforced by the UI (missing or incorrect values
1524
- * are not validated), but they are required to make the integration work. These attributes also should
1525
- * be mapped in the Back-end System and Jam in order to make the External Object work.
1528
+ * "Account 123", etc. These attributes are not enforced by the UI (missing or incorrect values
1529
+ * are not validated), but they are required to make the integration work. These attributes also should
1530
+ * be mapped in the Back-end System and Jam in order to make the External Object work.
1526
1531
  * **Note:** the externalObject is dependent on object.id, therefore, the object.id must also be passed
1527
1532
  * to the Share Component. See the parameter "object" for more information.
1528
1533
  *
@@ -1556,7 +1561,7 @@ declare module "sap/collaboration/components/fiori/sharing/Component" {
1556
1561
  *
1557
1562
  * A JSON object passed to the share component. This object contains the following properties:
1558
1563
  * - id (optional): is the object Id to be shared in SAP Jam, i.e a URL that navigates back to the same
1559
- * object in the application
1564
+ * object in the application
1560
1565
  * - display (optional): is a UI5 control to be displayed in the component UI
1561
1566
  * - share (optional): is a note that will be displayed in the component UI and shared to SAP Jam too
1562
1567
  *
@@ -1633,6 +1638,7 @@ declare module "sap/collaboration/components/fiori/sharing/Component" {
1633
1638
  */
1634
1639
  shareToJam(): void;
1635
1640
  }
1641
+ export default Component;
1636
1642
 
1637
1643
  export interface $ComponentSettings extends $UIComponentSettings {
1638
1644
  width?: CSSSize | PropertyBindingInfo | `{${string}}`;
@@ -1654,7 +1660,7 @@ declare module "sap/collaboration/components/fiori/sharing/Component" {
1654
1660
  /**
1655
1661
  * A JSON object passed to the share component. This object contains the following properties:
1656
1662
  * - id (optional): is the object Id to be shared in SAP Jam, i.e a URL that navigates back to the same
1657
- * object in the application
1663
+ * object in the application
1658
1664
  * - display (optional): is a UI5 control to be displayed in the component UI
1659
1665
  * - share (optional): is a note that will be displayed in the component UI and shared to SAP Jam too
1660
1666
  */
@@ -1670,12 +1676,12 @@ declare module "sap/collaboration/components/fiori/sharing/Component" {
1670
1676
  *
1671
1677
  * - {string} collection: The name of the OData Collection. Example: "Account", "Opportunity", etc.
1672
1678
  * - {string} key: The key to identify a particular instance of the Business Object. It can be a simple
1673
- * ID or a compound key. Example: "123", "ObjectID='123'", "ObjectID='123',ObjectType='BUS000123'", etc.
1679
+ * ID or a compound key. Example: "123", "ObjectID='123'", "ObjectID='123',ObjectType='BUS000123'", etc.
1674
1680
  *
1675
1681
  * - {string} name: The short name of the Business Object. Example: "Sales Order 123", "Opportunity 123",
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.
1682
+ * "Account 123", etc. These attributes are not enforced by the UI (missing or incorrect values
1683
+ * are not validated), but they are required to make the integration work. These attributes also should
1684
+ * be mapped in the Back-end System and Jam in order to make the External Object work.
1679
1685
  * **Note:** the externalObject is dependent on object.id, therefore, the object.id must also be passed
1680
1686
  * to the Share Component. See the parameter "object" for more information.
1681
1687
  */
@@ -1699,7 +1705,7 @@ declare module "sap/collaboration/components/fiori/sharing/dialog/Component" {
1699
1705
  * The Share Dialog component is an SAPUI5 component that you can use to create a dialog in your application
1700
1706
  * to enable you to enter or edit information shared to SAP Jam.
1701
1707
  */
1702
- export default class Component extends UIComponent {
1708
+ class Component extends UIComponent {
1703
1709
  /**
1704
1710
  * Constructor for the share dialog component
1705
1711
  *
@@ -1767,8 +1773,8 @@ declare module "sap/collaboration/components/fiori/sharing/dialog/Component" {
1767
1773
  *
1768
1774
  * When you want to provide the user with the option to share file attachments, then the following properties
1769
1775
  * need to be specified:
1770
- * - attachmentsArray: An array of {@link sap.collaboration.components.fiori.sharing.attachment.Attachment}
1771
- * objects. This array offers users a list of files they can attach.
1776
+ * - attachmentsArray: An array of {@link sap.collaboration.components.fiori.sharing.attachment.Attachment }
1777
+ * objects. This array offers users a list of files they can attach.
1772
1778
  *
1773
1779
  * @returns Value of property `attachments`
1774
1780
  */
@@ -1783,12 +1789,12 @@ declare module "sap/collaboration/components/fiori/sharing/dialog/Component" {
1783
1789
  *
1784
1790
  * - {string} collection: The name of the OData Collection. Example: "Account", "Opportunity", etc.
1785
1791
  * - {string} key: The key to identify a particular instance of the Business Object. It can be a simple
1786
- * ID or a compound key. Example: "123", "ObjectID='123'", "ObjectID='123',ObjectType='BUS000123'", etc.
1792
+ * ID or a compound key. Example: "123", "ObjectID='123'", "ObjectID='123',ObjectType='BUS000123'", etc.
1787
1793
  *
1788
1794
  * - {string} name: The short name of the Business Object. Example: "Sales Order 123", "Opportunity 123",
1789
- * "Account 123", etc. These attributes are not enforced by the UI (missing or incorrect values
1790
- * are not validated), but they are required to make the integration work. These attributes also should
1791
- * be mapped in the Back-end System and Jam in order to make the External Object work.
1795
+ * "Account 123", etc. These attributes are not enforced by the UI (missing or incorrect values
1796
+ * are not validated), but they are required to make the integration work. These attributes also should
1797
+ * be mapped in the Back-end System and Jam in order to make the External Object work.
1792
1798
  * **Note:** the externalObject is dependent on object.id, therefore, the object.id must also be passed
1793
1799
  * to the Share Component. See the parameter "object" for more information.
1794
1800
  *
@@ -1800,7 +1806,7 @@ declare module "sap/collaboration/components/fiori/sharing/dialog/Component" {
1800
1806
  *
1801
1807
  * A JSON object passed to the share component. This object contains the following properties:
1802
1808
  * - id (optional): is the object Id to be shared in SAP Jam, i.e a URL( or a callback function that returns
1803
- * a URL) that navigates back to the same object in the application
1809
+ * a URL) that navigates back to the same object in the application
1804
1810
  * - display (optional): is a UI5 control to be displayed in the component UI
1805
1811
  * **Note:** The preferred object to pass in the display parameter is `sap.m.ObjectListItem`. Using other
1806
1812
  * type of objects (for example: `ap.ui.commons.TextView`) may result in problems in the rendering of the
@@ -1820,8 +1826,8 @@ declare module "sap/collaboration/components/fiori/sharing/dialog/Component" {
1820
1826
  *
1821
1827
  * When you want to provide the user with the option to share file attachments, then the following properties
1822
1828
  * need to be specified:
1823
- * - attachmentsArray: An array of {@link sap.collaboration.components.fiori.sharing.attachment.Attachment}
1824
- * objects. This array offers users a list of files they can attach.
1829
+ * - attachmentsArray: An array of {@link sap.collaboration.components.fiori.sharing.attachment.Attachment }
1830
+ * objects. This array offers users a list of files they can attach.
1825
1831
  *
1826
1832
  * When called with a value of `null` or `undefined`, the default value of the property will be restored.
1827
1833
  *
@@ -1843,12 +1849,12 @@ declare module "sap/collaboration/components/fiori/sharing/dialog/Component" {
1843
1849
  *
1844
1850
  * - {string} collection: The name of the OData Collection. Example: "Account", "Opportunity", etc.
1845
1851
  * - {string} key: The key to identify a particular instance of the Business Object. It can be a simple
1846
- * ID or a compound key. Example: "123", "ObjectID='123'", "ObjectID='123',ObjectType='BUS000123'", etc.
1852
+ * ID or a compound key. Example: "123", "ObjectID='123'", "ObjectID='123',ObjectType='BUS000123'", etc.
1847
1853
  *
1848
1854
  * - {string} name: The short name of the Business Object. Example: "Sales Order 123", "Opportunity 123",
1849
- * "Account 123", etc. These attributes are not enforced by the UI (missing or incorrect values
1850
- * are not validated), but they are required to make the integration work. These attributes also should
1851
- * be mapped in the Back-end System and Jam in order to make the External Object work.
1855
+ * "Account 123", etc. These attributes are not enforced by the UI (missing or incorrect values
1856
+ * are not validated), but they are required to make the integration work. These attributes also should
1857
+ * be mapped in the Back-end System and Jam in order to make the External Object work.
1852
1858
  * **Note:** the externalObject is dependent on object.id, therefore, the object.id must also be passed
1853
1859
  * to the Share Component. See the parameter "object" for more information.
1854
1860
  *
@@ -1867,7 +1873,7 @@ declare module "sap/collaboration/components/fiori/sharing/dialog/Component" {
1867
1873
  *
1868
1874
  * A JSON object passed to the share component. This object contains the following properties:
1869
1875
  * - id (optional): is the object Id to be shared in SAP Jam, i.e a URL( or a callback function that returns
1870
- * a URL) that navigates back to the same object in the application
1876
+ * a URL) that navigates back to the same object in the application
1871
1877
  * - display (optional): is a UI5 control to be displayed in the component UI
1872
1878
  * **Note:** The preferred object to pass in the display parameter is `sap.m.ObjectListItem`. Using other
1873
1879
  * type of objects (for example: `ap.ui.commons.TextView`) may result in problems in the rendering of the
@@ -1896,20 +1902,21 @@ declare module "sap/collaboration/components/fiori/sharing/dialog/Component" {
1896
1902
  oSettings: object
1897
1903
  ): void;
1898
1904
  }
1905
+ export default Component;
1899
1906
 
1900
1907
  export interface $ComponentSettings extends $UIComponentSettings {
1901
1908
  /**
1902
1909
  * When you want to provide the user with the option to share file attachments, then the following properties
1903
1910
  * need to be specified:
1904
- * - attachmentsArray: An array of {@link sap.collaboration.components.fiori.sharing.attachment.Attachment}
1905
- * objects. This array offers users a list of files they can attach.
1911
+ * - attachmentsArray: An array of {@link sap.collaboration.components.fiori.sharing.attachment.Attachment }
1912
+ * objects. This array offers users a list of files they can attach.
1906
1913
  */
1907
1914
  attachments?: object | PropertyBindingInfo | `{${string}}`;
1908
1915
 
1909
1916
  /**
1910
1917
  * A JSON object passed to the share component. This object contains the following properties:
1911
1918
  * - id (optional): is the object Id to be shared in SAP Jam, i.e a URL( or a callback function that returns
1912
- * a URL) that navigates back to the same object in the application
1919
+ * a URL) that navigates back to the same object in the application
1913
1920
  * - display (optional): is a UI5 control to be displayed in the component UI
1914
1921
  * **Note:** The preferred object to pass in the display parameter is `sap.m.ObjectListItem`. Using other
1915
1922
  * type of objects (for example: `ap.ui.commons.TextView`) may result in problems in the rendering of the
@@ -1926,12 +1933,12 @@ declare module "sap/collaboration/components/fiori/sharing/dialog/Component" {
1926
1933
  *
1927
1934
  * - {string} collection: The name of the OData Collection. Example: "Account", "Opportunity", etc.
1928
1935
  * - {string} key: The key to identify a particular instance of the Business Object. It can be a simple
1929
- * ID or a compound key. Example: "123", "ObjectID='123'", "ObjectID='123',ObjectType='BUS000123'", etc.
1936
+ * ID or a compound key. Example: "123", "ObjectID='123'", "ObjectID='123',ObjectType='BUS000123'", etc.
1930
1937
  *
1931
1938
  * - {string} name: The short name of the Business Object. Example: "Sales Order 123", "Opportunity 123",
1932
- * "Account 123", etc. These attributes are not enforced by the UI (missing or incorrect values
1933
- * are not validated), but they are required to make the integration work. These attributes also should
1934
- * be mapped in the Back-end System and Jam in order to make the External Object work.
1939
+ * "Account 123", etc. These attributes are not enforced by the UI (missing or incorrect values
1940
+ * are not validated), but they are required to make the integration work. These attributes also should
1941
+ * be mapped in the Back-end System and Jam in order to make the External Object work.
1935
1942
  * **Note:** the externalObject is dependent on object.id, therefore, the object.id must also be passed
1936
1943
  * to the Share Component. See the parameter "object" for more information.
1937
1944
  */
@@ -1959,7 +1966,7 @@ declare module "sap/collaboration/components/socialprofile/Component" {
1959
1966
  *
1960
1967
  * Social Profile Component
1961
1968
  */
1962
- export default class Component extends UIComponent {
1969
+ class Component extends UIComponent {
1963
1970
  /**
1964
1971
  * Constructor for the Social Profile Component.
1965
1972
  *
@@ -2183,6 +2190,7 @@ declare module "sap/collaboration/components/socialprofile/Component" {
2183
2190
  sWidth: string
2184
2191
  ): this;
2185
2192
  }
2193
+ export default Component;
2186
2194
 
2187
2195
  export interface $ComponentSettings extends $UIComponentSettings {
2188
2196
  placement?:
@@ -2229,7 +2237,7 @@ declare module "sap/collaboration/components/socialtimeline/Component" {
2229
2237
  *
2230
2238
  * Social Timeline
2231
2239
  */
2232
- export default class Component extends UIComponent {
2240
+ class Component extends UIComponent {
2233
2241
  /**
2234
2242
  * Constructor for the Social Timeline Component.
2235
2243
  *
@@ -2360,7 +2368,7 @@ declare module "sap/collaboration/components/socialtimeline/Component" {
2360
2368
  static setBusinessObjectMap(
2361
2369
  /**
2362
2370
  * required - JSON object containing the following properties:
2363
- * {sap.ui.model.odata.ODataModel} serviceModel required - OData model to retrieve timeline entries {string}
2371
+ * {sap.ui.model.odata.ODataModel} serviceModel required - OData model to retrieve timeline entries {string }
2364
2372
  * servicePath: The relative path to the OData service for the business object (example: "/sap/opu/odata/sap/ODATA_SRV")
2365
2373
  * {string} collection: Entity collection name of the business object {string} applicationContext:
2366
2374
  * The application context (example: "CRM", "SD", etc.) {function} customActionCallback: A callback
@@ -2651,6 +2659,7 @@ declare module "sap/collaboration/components/socialtimeline/Component" {
2651
2659
  sWidth: CSSSize
2652
2660
  ): this;
2653
2661
  }
2662
+ export default Component;
2654
2663
 
2655
2664
  export interface $ComponentSettings extends $UIComponentSettings {
2656
2665
  enableSocial?: boolean | PropertyBindingInfo | `{${string}}`;
@@ -2677,6 +2686,8 @@ declare module "sap/collaboration/components/socialtimeline/Component" {
2677
2686
 
2678
2687
  customActionPress?: (oEvent: Event) => void;
2679
2688
  }
2689
+
2690
+ export interface $ComponentCustomActionPressEventParameters {}
2680
2691
  }
2681
2692
 
2682
2693
  declare namespace sap {