@sapui5/types 1.114.0 → 1.115.1

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 (65) hide show
  1. package/package.json +1 -1
  2. package/types/index.d.ts +2 -0
  3. package/types/sap.apf.d.ts +70 -60
  4. package/types/sap.ca.ui.d.ts +207 -105
  5. package/types/sap.chart.d.ts +213 -143
  6. package/types/sap.collaboration.d.ts +98 -87
  7. package/types/sap.esh.search.ui.d.ts +92 -2
  8. package/types/sap.f.d.ts +1780 -1315
  9. package/types/sap.fe.core.d.ts +78 -205
  10. package/types/sap.fe.macros.d.ts +120 -10
  11. package/types/sap.fe.navigation.d.ts +39 -32
  12. package/types/sap.fe.placeholder.d.ts +3 -0
  13. package/types/sap.fe.templates.d.ts +16 -292
  14. package/types/sap.fe.test.d.ts +40 -13
  15. package/types/sap.fe.tools.d.ts +3 -0
  16. package/types/sap.feedback.ui.d.ts +1 -1
  17. package/types/sap.gantt.d.ts +1987 -1251
  18. package/types/sap.insights.d.ts +1 -1
  19. package/types/sap.landvisz.d.ts +75 -29
  20. package/types/sap.m.d.ts +12407 -8461
  21. package/types/sap.makit.d.ts +88 -28
  22. package/types/sap.me.d.ts +167 -78
  23. package/types/sap.ndc.d.ts +115 -42
  24. package/types/sap.ovp.d.ts +3 -3
  25. package/types/sap.rules.ui.d.ts +53 -24
  26. package/types/sap.sac.df.d.ts +11 -8
  27. package/types/sap.suite.ui.commons.d.ts +2090 -1437
  28. package/types/sap.suite.ui.generic.template.d.ts +99 -97
  29. package/types/sap.suite.ui.microchart.d.ts +492 -322
  30. package/types/sap.tnt.d.ts +173 -95
  31. package/types/sap.ui.codeeditor.d.ts +61 -39
  32. package/types/sap.ui.commons.d.ts +1393 -846
  33. package/types/sap.ui.comp.d.ts +4159 -2878
  34. package/types/sap.ui.core.d.ts +6286 -3651
  35. package/types/sap.ui.dt.d.ts +1 -1
  36. package/types/sap.ui.export.d.ts +76 -53
  37. package/types/sap.ui.fl.d.ts +160 -100
  38. package/types/sap.ui.generic.app.d.ts +58 -49
  39. package/types/sap.ui.generic.template.d.ts +1 -1
  40. package/types/sap.ui.integration.d.ts +502 -375
  41. package/types/sap.ui.layout.d.ts +603 -640
  42. package/types/sap.ui.mdc.d.ts +22208 -140
  43. package/types/sap.ui.richtexteditor.d.ts +106 -70
  44. package/types/sap.ui.rta.d.ts +7 -7
  45. package/types/sap.ui.suite.d.ts +29 -13
  46. package/types/sap.ui.support.d.ts +15 -16
  47. package/types/sap.ui.table.d.ts +907 -647
  48. package/types/sap.ui.testrecorder.d.ts +1 -1
  49. package/types/sap.ui.unified.d.ts +1765 -1179
  50. package/types/sap.ui.ux3.d.ts +1472 -807
  51. package/types/sap.ui.vbm.d.ts +1018 -760
  52. package/types/sap.ui.vk.d.ts +2858 -1896
  53. package/types/sap.ui.vtm.d.ts +650 -479
  54. package/types/sap.ui.webc.common.d.ts +5 -5
  55. package/types/sap.ui.webc.fiori.d.ts +817 -462
  56. package/types/sap.ui.webc.main.d.ts +2018 -1096
  57. package/types/sap.uiext.inbox.d.ts +168 -38
  58. package/types/sap.ushell.d.ts +738 -429
  59. package/types/sap.ushell_abap.d.ts +1 -1
  60. package/types/sap.uxap.d.ts +472 -348
  61. package/types/sap.viz.d.ts +2203 -835
  62. package/types/sap.webanalytics.core.d.ts +1 -1
  63. package/types/sap.zen.commons.d.ts +15 -10
  64. package/types/sap.zen.crosstab.d.ts +7 -4
  65. package/types/sap.zen.dsh.d.ts +143 -87
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@sapui5/types",
3
- "version": "1.114.0",
3
+ "version": "1.115.1",
4
4
  "description": "SAPUI5 TypeScript Definitions",
5
5
  "homepage": "https://sap.github.io/ui5-typescript/",
6
6
  "author": "SAP SE (https://www.sap.com)",
package/types/index.d.ts CHANGED
@@ -37,8 +37,10 @@
37
37
  /// <reference path="./sap.fe.core.d.ts"/>
38
38
  /// <reference path="./sap.fe.macros.d.ts"/>
39
39
  /// <reference path="./sap.fe.navigation.d.ts"/>
40
+ /// <reference path="./sap.fe.placeholder.d.ts"/>
40
41
  /// <reference path="./sap.fe.templates.d.ts"/>
41
42
  /// <reference path="./sap.fe.test.d.ts"/>
43
+ /// <reference path="./sap.fe.tools.d.ts"/>
42
44
  /// <reference path="./sap.feedback.ui.d.ts"/>
43
45
  /// <reference path="./sap.landvisz.d.ts"/>
44
46
  /// <reference path="./sap.rules.ui.d.ts"/>
@@ -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/apf/library" {
4
4
  /**
@@ -12,6 +12,8 @@ declare module "sap/apf/library" {
12
12
  declare module "sap/apf/api" {
13
13
  import MessageObject from "sap/apf/core/messageObject";
14
14
 
15
+ import ReadRequest from "sap/apf/core/readRequest";
16
+
15
17
  /**
16
18
  * Official API for Analysis Path Framework (APF)
17
19
  * The APF API provides a consuming application access to the functionality of the APF. It is assumed
@@ -24,10 +26,10 @@ declare module "sap/apf/api" {
24
26
  * as experimental.
25
27
  * Furthermore there is no need to instantiate required entities directly by applying the JavaScript 'new'-operator
26
28
  * on their respective constructors. Instead they should be created by consumers using a create method available
27
- * on API-level, such as e.g. {@link sap.apf.Api#createMessageObject} for {@link sap.apf.core.MessageObject}
29
+ * on API-level, such as e.g. {@link sap.apf.Api#createMessageObject} for {@link sap.apf.core.MessageObject }
28
30
  * or {@link sap.apf.Api#createFilter} for {@link sap.apf.utils.Filter}.
29
31
  */
30
- export default class Api {
32
+ class Api {
31
33
  constructor(
32
34
  /**
33
35
  * A reference to the calling Component.js. The reference provides access to parameters and context.
@@ -128,7 +130,7 @@ declare module "sap/apf/api" {
128
130
  * configuration is directly passed as an object oRequestConfiguration.
129
131
  */
130
132
  requestConfiguration: string | object
131
- ): sap.apf.core.ReadRequest;
133
+ ): ReadRequest;
132
134
  /**
133
135
  * helps to call customer defined custom formatter function(fnCallback).
134
136
  */
@@ -271,6 +273,7 @@ declare module "sap/apf/api" {
271
273
  filter: sap.apf.utils.Filter
272
274
  ): void;
273
275
  }
276
+ export default Api;
274
277
  }
275
278
 
276
279
  declare module "sap/apf/core/messageObject" {
@@ -278,7 +281,7 @@ declare module "sap/apf/core/messageObject" {
278
281
  * The message object represents the APF specific message object for detailed evaluation. The message object
279
282
  * shall be created by method {@link sap.apf.Api#createMessageObject}.
280
283
  */
281
- export default class MessageObject {
284
+ class MessageObject {
282
285
  constructor(oConfig: object);
283
286
 
284
287
  /**
@@ -367,6 +370,64 @@ declare module "sap/apf/core/messageObject" {
367
370
  severity: string
368
371
  ): undefined;
369
372
  }
373
+ export default MessageObject;
374
+ }
375
+
376
+ declare module "sap/apf/core/readRequest" {
377
+ /**
378
+ * Facade for sap.apf.core.Request for getting data via the OData protocol. This corresponds to a normal
379
+ * HTTP GET method. Creation is done via APF API.
380
+ */
381
+ class ReadRequest {
382
+ constructor(
383
+ /**
384
+ * Injection object.
385
+ */
386
+ oInject: object,
387
+ /**
388
+ * The object represents an OData GET request.
389
+ */
390
+ oRequest: object,
391
+ /**
392
+ * Service defined by the analytical content configuration.
393
+ */
394
+ sService: string,
395
+ /**
396
+ * Entity type defined by the analytical content configuration.
397
+ */
398
+ sEntityType: string
399
+ );
400
+
401
+ /**
402
+ * Returns {sap.apf.core.MetadataFacade} which provides convenience methods for accessing metadata (only
403
+ * for the service document, which is assigned to this read request instance).
404
+ */
405
+ getMetadataFacade(
406
+ /**
407
+ * Service defined by the request configuration.
408
+ */
409
+ sService: string
410
+ ): /* was: sap.apf.core.MetadataFacade */ any;
411
+ /**
412
+ * Executes an OData request.
413
+ *
414
+ * @returns undefined
415
+ */
416
+ send(
417
+ oFilter: sap.apf.utils.Filter | null | undefined,
418
+ /**
419
+ * The first argument of the callback function is the received data (as Array). The second argument is {sap.apf.core.EntityTypeMetadata}.
420
+ * The third argument is {sap.apf.core.MessageObject}.
421
+ */
422
+ fnCallback: Function,
423
+ /**
424
+ * An optional object containing additional query string options Format: { orderby : [{ property : ,
425
+ * order : }], top : , skip : }
426
+ */
427
+ oRequestOptions: Object
428
+ ): undefined;
429
+ }
430
+ export default ReadRequest;
370
431
  }
371
432
 
372
433
  declare module "sap/apf/ui/representations/representationInterface" {
@@ -380,7 +441,7 @@ declare module "sap/apf/ui/representations/representationInterface" {
380
441
  * This is not a runtime class, but it describes the interface that a representation (chart) has to implement
381
442
  * for to interact with the APF.
382
443
  */
383
- export default class representationInterface {
444
+ class representationInterface {
384
445
  constructor(
385
446
  /**
386
447
  * specific interface proxy for communication between the representation and APF.
@@ -577,6 +638,7 @@ declare module "sap/apf/ui/representations/representationInterface" {
577
638
  entityTypeMetadata: /* was: sap.apf.core.EntityTypeMetadata */ any
578
639
  ): void;
579
640
  }
641
+ export default representationInterface;
580
642
  }
581
643
 
582
644
  declare module "sap/apf/ui/representations/RepresentationInterfaceProxy" {
@@ -587,7 +649,7 @@ declare module "sap/apf/ui/representations/RepresentationInterfaceProxy" {
587
649
  * is used by apf.api. It can be also used to build unit tests that need an interface proxy between APF
588
650
  * and representations.
589
651
  */
590
- export default class RepresentationInterfaceProxy {
652
+ class RepresentationInterfaceProxy {
591
653
  constructor(
592
654
  oCoreApi: /* was: sap.apf.core.Instance */ any,
593
655
 
@@ -619,6 +681,7 @@ declare module "sap/apf/ui/representations/RepresentationInterfaceProxy" {
619
681
  */
620
682
  putMessage(): void;
621
683
  }
684
+ export default RepresentationInterfaceProxy;
622
685
  }
623
686
 
624
687
  declare namespace sap {
@@ -627,59 +690,6 @@ declare namespace sap {
627
690
  */
628
691
  namespace apf {
629
692
  namespace core {
630
- /**
631
- * Facade for sap.apf.core.Request for getting data via the OData protocol. This corresponds to a normal
632
- * HTTP GET method. Creation is done via APF API.
633
- */
634
- class ReadRequest {
635
- constructor(
636
- /**
637
- * Injection object.
638
- */
639
- oInject: object,
640
- /**
641
- * The object represents an OData GET request.
642
- */
643
- oRequest: object,
644
- /**
645
- * Service defined by the analytical content configuration.
646
- */
647
- sService: string,
648
- /**
649
- * Entity type defined by the analytical content configuration.
650
- */
651
- sEntityType: string
652
- );
653
-
654
- /**
655
- * Returns {sap.apf.core.MetadataFacade} which provides convenience methods for accessing metadata (only
656
- * for the service document, which is assigned to this read request instance).
657
- */
658
- getMetadataFacade(
659
- /**
660
- * Service defined by the request configuration.
661
- */
662
- sService: string
663
- ): /* was: sap.apf.core.MetadataFacade */ any;
664
- /**
665
- * Executes an OData request.
666
- *
667
- * @returns undefined
668
- */
669
- send(
670
- oFilter: utils.Filter | null | undefined,
671
- /**
672
- * The first argument of the callback function is the received data (as Array). The second argument is {sap.apf.core.EntityTypeMetadata}.
673
- * The third argument is {sap.apf.core.MessageObject}.
674
- */
675
- fnCallback: Function,
676
- /**
677
- * An optional object containing additional query string options Format: { orderby : [{ property : ,
678
- * order : }], top : , skip : }
679
- */
680
- oRequestOptions: Object
681
- ): undefined;
682
- }
683
693
  /**
684
694
  * Facade for sap.apf.core.Request for getting data via the OData protocol. This corresponds to a normal
685
695
  * HTTP GET method. Creation is done via APF API. In addition to the handed over filter argument in method