@sapui5/types 1.120.11 → 1.120.13

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 (55) hide show
  1. package/LICENSE.txt +13 -10
  2. package/README.md +1 -1
  3. package/package.json +1 -1
  4. package/types/sap.chart.d.ts +58 -6
  5. package/types/sap.esh.search.ui.d.ts +16 -2
  6. package/types/sap.f.d.ts +372 -54
  7. package/types/sap.fe.core.d.ts +11 -3
  8. package/types/sap.fe.macros.d.ts +96 -12
  9. package/types/sap.fe.navigation.d.ts +1 -1
  10. package/types/sap.fe.placeholder.d.ts +1 -1
  11. package/types/sap.fe.templates.d.ts +1 -1
  12. package/types/sap.fe.test.d.ts +1 -1
  13. package/types/sap.fe.tools.d.ts +1 -1
  14. package/types/sap.gantt.d.ts +1001 -139
  15. package/types/sap.insights.d.ts +4 -2
  16. package/types/sap.m.d.ts +3123 -276
  17. package/types/sap.makit.d.ts +115 -14
  18. package/types/sap.me.d.ts +84 -7
  19. package/types/sap.ndc.d.ts +22 -2
  20. package/types/sap.ovp.d.ts +1 -1
  21. package/types/sap.sac.df.d.ts +294 -44
  22. package/types/sap.suite.ui.commons.d.ts +1148 -118
  23. package/types/sap.suite.ui.generic.template.d.ts +10 -2
  24. package/types/sap.suite.ui.microchart.d.ts +184 -28
  25. package/types/sap.tnt.d.ts +40 -8
  26. package/types/sap.ui.codeeditor.d.ts +16 -2
  27. package/types/sap.ui.commons.d.ts +756 -90
  28. package/types/sap.ui.comp.d.ts +884 -50
  29. package/types/sap.ui.core.d.ts +1112 -135
  30. package/types/sap.ui.dt.d.ts +1 -1
  31. package/types/sap.ui.export.d.ts +19 -4
  32. package/types/sap.ui.fl.d.ts +44 -3
  33. package/types/sap.ui.integration.d.ts +144 -6
  34. package/types/sap.ui.layout.d.ts +166 -41
  35. package/types/sap.ui.mdc.d.ts +430 -38
  36. package/types/sap.ui.richtexteditor.d.ts +28 -2
  37. package/types/sap.ui.rta.d.ts +1 -1
  38. package/types/sap.ui.suite.d.ts +27 -3
  39. package/types/sap.ui.support.d.ts +1 -1
  40. package/types/sap.ui.table.d.ts +222 -19
  41. package/types/sap.ui.testrecorder.d.ts +1 -1
  42. package/types/sap.ui.unified.d.ts +431 -35
  43. package/types/sap.ui.ux3.d.ts +524 -31
  44. package/types/sap.ui.vbm.d.ts +6427 -3308
  45. package/types/sap.ui.webc.common.d.ts +7 -1
  46. package/types/sap.ui.webc.fiori.d.ts +351 -29
  47. package/types/sap.ui.webc.main.d.ts +1035 -83
  48. package/types/sap.uiext.inbox.d.ts +124 -13
  49. package/types/sap.ushell.d.ts +147 -12
  50. package/types/sap.ushell_abap.d.ts +1 -1
  51. package/types/sap.uxap.d.ts +118 -18
  52. package/types/sap.viz.d.ts +2619 -130
  53. package/types/sap.zen.commons.d.ts +104 -23
  54. package/types/sap.zen.crosstab.d.ts +96 -16
  55. package/types/sap.zen.dsh.d.ts +255 -149
@@ -1,4 +1,4 @@
1
- // For Library Version: 1.120.11
1
+ // For Library Version: 1.120.13
2
2
 
3
3
  declare module "sap/ui/richtexteditor/library" {
4
4
  /**
@@ -1464,7 +1464,9 @@ declare module "sap/ui/richtexteditor/RichTextEditor" {
1464
1464
  bWrapping?: boolean
1465
1465
  ): this;
1466
1466
  }
1467
-
1467
+ /**
1468
+ * Describes the settings that can be provided to the RichTextEditor constructor.
1469
+ */
1468
1470
  export interface $RichTextEditorSettings extends $ControlSettings {
1469
1471
  /**
1470
1472
  * An HTML string representing the editor content. Because this is HTML, the value cannot be generically
@@ -1696,13 +1698,22 @@ declare module "sap/ui/richtexteditor/RichTextEditor" {
1696
1698
  beforeEditorInit?: (oEvent: Event) => void;
1697
1699
  }
1698
1700
 
1701
+ /**
1702
+ * Parameters of the RichTextEditor#beforeEditorInit event.
1703
+ */
1699
1704
  export interface RichTextEditor$BeforeEditorInitEventParameters {}
1700
1705
 
1706
+ /**
1707
+ * Event object of the RichTextEditor#beforeEditorInit event.
1708
+ */
1701
1709
  export type RichTextEditor$BeforeEditorInitEvent = Event<
1702
1710
  RichTextEditor$BeforeEditorInitEventParameters,
1703
1711
  RichTextEditor
1704
1712
  >;
1705
1713
 
1714
+ /**
1715
+ * Parameters of the RichTextEditor#change event.
1716
+ */
1706
1717
  export interface RichTextEditor$ChangeEventParameters {
1707
1718
  /**
1708
1719
  * The new control value.
@@ -1710,20 +1721,35 @@ declare module "sap/ui/richtexteditor/RichTextEditor" {
1710
1721
  newValue?: string;
1711
1722
  }
1712
1723
 
1724
+ /**
1725
+ * Event object of the RichTextEditor#change event.
1726
+ */
1713
1727
  export type RichTextEditor$ChangeEvent = Event<
1714
1728
  RichTextEditor$ChangeEventParameters,
1715
1729
  RichTextEditor
1716
1730
  >;
1717
1731
 
1732
+ /**
1733
+ * Parameters of the RichTextEditor#ready event.
1734
+ */
1718
1735
  export interface RichTextEditor$ReadyEventParameters {}
1719
1736
 
1737
+ /**
1738
+ * Event object of the RichTextEditor#ready event.
1739
+ */
1720
1740
  export type RichTextEditor$ReadyEvent = Event<
1721
1741
  RichTextEditor$ReadyEventParameters,
1722
1742
  RichTextEditor
1723
1743
  >;
1724
1744
 
1745
+ /**
1746
+ * Parameters of the RichTextEditor#readyRecurring event.
1747
+ */
1725
1748
  export interface RichTextEditor$ReadyRecurringEventParameters {}
1726
1749
 
1750
+ /**
1751
+ * Event object of the RichTextEditor#readyRecurring event.
1752
+ */
1727
1753
  export type RichTextEditor$ReadyRecurringEvent = Event<
1728
1754
  RichTextEditor$ReadyRecurringEventParameters,
1729
1755
  RichTextEditor
@@ -1,4 +1,4 @@
1
- // For Library Version: 1.120.11
1
+ // For Library Version: 1.120.13
2
2
 
3
3
  declare module "sap/ui/rta/api/startAdaptation" {
4
4
  import Control from "sap/ui/core/Control";
@@ -1,4 +1,4 @@
1
- // For Library Version: 1.120.11
1
+ // For Library Version: 1.120.13
2
2
 
3
3
  declare module "sap/ui/suite/library" {
4
4
  /**
@@ -378,7 +378,13 @@ declare module "sap/ui/suite/TaskCircle" {
378
378
  iValue?: int
379
379
  ): this;
380
380
  }
381
-
381
+ /**
382
+ * Describes the settings that can be provided to the TaskCircle constructor.
383
+ *
384
+ * @deprecated (since 1.108) - there's no replacement for this functionality as no active use cases are
385
+ * known
386
+ * @experimental (since 1.2) - The API may change. Use with care.
387
+ */
382
388
  export interface $TaskCircleSettings extends $ControlSettings {
383
389
  /**
384
390
  * Current value of the task circle to be displayed. In dependency of the parameters maxValue and minValue
@@ -420,8 +426,14 @@ declare module "sap/ui/suite/TaskCircle" {
420
426
  press?: (oEvent: Event) => void;
421
427
  }
422
428
 
429
+ /**
430
+ * Parameters of the TaskCircle#press event.
431
+ */
423
432
  export interface TaskCircle$PressEventParameters {}
424
433
 
434
+ /**
435
+ * Event object of the TaskCircle#press event.
436
+ */
425
437
  export type TaskCircle$PressEvent = Event<
426
438
  TaskCircle$PressEventParameters,
427
439
  TaskCircle
@@ -684,7 +696,13 @@ declare module "sap/ui/suite/VerticalProgressIndicator" {
684
696
  */
685
697
  setPercentage(iPercentage: int): this;
686
698
  }
687
-
699
+ /**
700
+ * Describes the settings that can be provided to the VerticalProgressIndicator constructor.
701
+ *
702
+ * @deprecated (since 1.108) - there's no replacement for this functionality as no active use cases are
703
+ * known
704
+ * @experimental (since 1.2) - The API may change. Use with care.
705
+ */
688
706
  export interface $VerticalProgressIndicatorSettings extends $ControlSettings {
689
707
  /**
690
708
  * The numerical value between 0 and 100 which determines the height of the vertical bar. Values higher
@@ -708,8 +726,14 @@ declare module "sap/ui/suite/VerticalProgressIndicator" {
708
726
  press?: (oEvent: Event) => void;
709
727
  }
710
728
 
729
+ /**
730
+ * Parameters of the VerticalProgressIndicator#press event.
731
+ */
711
732
  export interface VerticalProgressIndicator$PressEventParameters {}
712
733
 
734
+ /**
735
+ * Event object of the VerticalProgressIndicator#press event.
736
+ */
713
737
  export type VerticalProgressIndicator$PressEvent = Event<
714
738
  VerticalProgressIndicator$PressEventParameters,
715
739
  VerticalProgressIndicator
@@ -1,4 +1,4 @@
1
- // For Library Version: 1.120.11
1
+ // For Library Version: 1.120.13
2
2
 
3
3
  declare module "sap/ui/support/library" {
4
4
  /**