@sapui5/ts-types 1.122.2 → 1.123.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 (66) hide show
  1. package/package.json +1 -1
  2. package/types/index.d.ts +5 -5
  3. package/types/sap.apf.d.ts +1 -1
  4. package/types/sap.ca.ui.d.ts +404 -3
  5. package/types/sap.chart.d.ts +58 -3
  6. package/types/sap.collaboration.d.ts +52 -3
  7. package/types/sap.esh.search.ui.d.ts +2152 -2
  8. package/types/sap.f.d.ts +432 -46
  9. package/types/sap.fe.core.d.ts +20 -15
  10. package/types/sap.fe.macros.d.ts +1048 -21
  11. package/types/sap.fe.navigation.d.ts +1 -1
  12. package/types/sap.fe.placeholder.d.ts +1 -1
  13. package/types/sap.fe.plugins.managecache.d.ts +1 -1
  14. package/types/sap.fe.templates.d.ts +8 -6
  15. package/types/sap.fe.test.d.ts +288 -7
  16. package/types/sap.fe.tools.d.ts +1 -1
  17. package/types/sap.feedback.ui.d.ts +1 -1
  18. package/types/sap.gantt.d.ts +1067 -15
  19. package/types/sap.insights.d.ts +4 -1
  20. package/types/{mobile-1.122.0-d.ts → sap.m.d.ts} +3962 -124
  21. package/types/sap.makit.d.ts +115 -2
  22. package/types/sap.me.d.ts +84 -2
  23. package/types/sap.ndc.d.ts +22 -1
  24. package/types/sap.ovp.d.ts +1 -1
  25. package/types/sap.rules.ui.d.ts +44 -8
  26. package/types/sap.sac.df.d.ts +111 -60
  27. package/types/sap.suite.ui.commons.d.ts +1148 -2174
  28. package/types/sap.suite.ui.generic.template.d.ts +10 -1
  29. package/types/sap.suite.ui.microchart.d.ts +190 -2
  30. package/types/sap.tnt.d.ts +46 -2
  31. package/types/sap.ui.codeeditor.d.ts +16 -1
  32. package/types/{commons-1.122.0-d.ts → sap.ui.commons.d.ts} +792 -30
  33. package/types/sap.ui.comp.d.ts +964 -86
  34. package/types/{core-1.122.0-d.ts → sap.ui.core.d.ts} +2194 -1540
  35. package/types/sap.ui.dt.d.ts +3 -0
  36. package/types/sap.ui.export.d.ts +22 -4
  37. package/types/sap.ui.fl.d.ts +40 -1
  38. package/types/sap.ui.generic.app.d.ts +217 -203
  39. package/types/sap.ui.generic.template.d.ts +1 -1
  40. package/types/sap.ui.integration.d.ts +147 -5
  41. package/types/sap.ui.layout.d.ts +171 -8
  42. package/types/sap.ui.mdc.d.ts +554 -33
  43. package/types/sap.ui.richtexteditor.d.ts +28 -2
  44. package/types/sap.ui.rta.d.ts +1 -1
  45. package/types/sap.ui.suite.d.ts +27 -2
  46. package/types/sap.ui.support.d.ts +1 -1
  47. package/types/sap.ui.table.d.ts +278 -57
  48. package/types/sap.ui.testrecorder.d.ts +1 -1
  49. package/types/sap.ui.unified.d.ts +481 -9
  50. package/types/{ux3-1.122.0-d.ts → sap.ui.ux3.d.ts} +527 -5
  51. package/types/sap.ui.vbm.d.ts +544 -2
  52. package/types/sap.ui.vk.d.ts +1580 -39
  53. package/types/sap.ui.vtm.d.ts +373 -2
  54. package/types/sap.ui.webc.common.d.ts +7 -2
  55. package/types/sap.ui.webc.fiori.d.ts +351 -2
  56. package/types/sap.ui.webc.main.d.ts +1035 -2
  57. package/types/sap.uiext.inbox.d.ts +124 -2
  58. package/types/sap.ushell.d.ts +1001 -322
  59. package/types/sap.ushell_abap.d.ts +1 -1
  60. package/types/sap.uxap.d.ts +123 -6
  61. package/types/sap.viz.d.ts +2619 -5
  62. package/types/sap.webanalytics.core.d.ts +1 -1
  63. package/types/sap.zen.commons.d.ts +35 -10
  64. package/types/sap.zen.crosstab.d.ts +22 -7
  65. package/types/sap.zen.dsh.d.ts +64 -8
  66. package/types/dt-1.122.0-d.ts +0 -3
@@ -1,4 +1,4 @@
1
- // For Library Version: 1.122.1
1
+ // For Library Version: 1.123.0
2
2
 
3
3
  declare namespace sap {
4
4
  namespace ui {
@@ -15,6 +15,9 @@ declare namespace sap {
15
15
  __implements__sap_ui_richtexteditor_IToolbar: boolean;
16
16
  }
17
17
 
18
+ /**
19
+ * Describes the settings that can be provided to the RichTextEditor constructor.
20
+ */
18
21
  interface $RichTextEditorSettings extends sap.ui.core.$ControlSettings {
19
22
  /**
20
23
  * An HTML string representing the editor content. Because this is HTML, the value cannot be generically
@@ -300,8 +303,14 @@ declare namespace sap {
300
303
  beforeEditorInit?: (oEvent: sap.ui.base.Event) => void;
301
304
  }
302
305
 
306
+ /**
307
+ * Parameters of the RichTextEditor#beforeEditorInit event.
308
+ */
303
309
  interface RichTextEditor$BeforeEditorInitEventParameters {}
304
310
 
311
+ /**
312
+ * Parameters of the RichTextEditor#change event.
313
+ */
305
314
  interface RichTextEditor$ChangeEventParameters {
306
315
  /**
307
316
  * The new control value.
@@ -309,8 +318,14 @@ declare namespace sap {
309
318
  newValue?: string;
310
319
  }
311
320
 
321
+ /**
322
+ * Parameters of the RichTextEditor#ready event.
323
+ */
312
324
  interface RichTextEditor$ReadyEventParameters {}
313
325
 
326
+ /**
327
+ * Parameters of the RichTextEditor#readyRecurring event.
328
+ */
314
329
  interface RichTextEditor$ReadyRecurringEventParameters {}
315
330
 
316
331
  /**
@@ -1755,22 +1770,33 @@ declare namespace sap {
1755
1770
  */
1756
1771
  TinyMCE6 = "TinyMCE6",
1757
1772
  }
1758
-
1773
+ /**
1774
+ * Event object of the RichTextEditor#beforeEditorInit event.
1775
+ */
1759
1776
  type RichTextEditor$BeforeEditorInitEvent = sap.ui.base.Event<
1760
1777
  RichTextEditor$BeforeEditorInitEventParameters,
1761
1778
  RichTextEditor
1762
1779
  >;
1763
1780
 
1781
+ /**
1782
+ * Event object of the RichTextEditor#change event.
1783
+ */
1764
1784
  type RichTextEditor$ChangeEvent = sap.ui.base.Event<
1765
1785
  RichTextEditor$ChangeEventParameters,
1766
1786
  RichTextEditor
1767
1787
  >;
1768
1788
 
1789
+ /**
1790
+ * Event object of the RichTextEditor#ready event.
1791
+ */
1769
1792
  type RichTextEditor$ReadyEvent = sap.ui.base.Event<
1770
1793
  RichTextEditor$ReadyEventParameters,
1771
1794
  RichTextEditor
1772
1795
  >;
1773
1796
 
1797
+ /**
1798
+ * Event object of the RichTextEditor#readyRecurring event.
1799
+ */
1774
1800
  type RichTextEditor$ReadyRecurringEvent = sap.ui.base.Event<
1775
1801
  RichTextEditor$ReadyRecurringEventParameters,
1776
1802
  RichTextEditor
@@ -1,4 +1,4 @@
1
- // For Library Version: 1.122.1
1
+ // For Library Version: 1.123.0
2
2
 
3
3
  declare module "sap/ui/rta/api/startAdaptation" {
4
4
  /**
@@ -1,4 +1,4 @@
1
- // For Library Version: 1.122.1
1
+ // For Library Version: 1.123.0
2
2
 
3
3
  declare namespace sap {
4
4
  namespace ui {
@@ -9,6 +9,13 @@ declare namespace sap {
9
9
  * @deprecated (since 1.108)
10
10
  */
11
11
  namespace suite {
12
+ /**
13
+ * Describes the settings that can be provided to the TaskCircle constructor.
14
+ *
15
+ * @deprecated (since 1.108) - there's no replacement for this functionality as no active use cases are
16
+ * known
17
+ * @experimental (since 1.2) - The API may change. Use with care.
18
+ */
12
19
  interface $TaskCircleSettings extends sap.ui.core.$ControlSettings {
13
20
  /**
14
21
  * Current value of the task circle to be displayed. In dependency of the parameters maxValue and minValue
@@ -59,6 +66,13 @@ declare namespace sap {
59
66
  press?: (oEvent: sap.ui.base.Event) => void;
60
67
  }
61
68
 
69
+ /**
70
+ * Describes the settings that can be provided to the VerticalProgressIndicator constructor.
71
+ *
72
+ * @deprecated (since 1.108) - there's no replacement for this functionality as no active use cases are
73
+ * known
74
+ * @experimental (since 1.2) - The API may change. Use with care.
75
+ */
62
76
  interface $VerticalProgressIndicatorSettings
63
77
  extends sap.ui.core.$ControlSettings {
64
78
  /**
@@ -86,8 +100,14 @@ declare namespace sap {
86
100
  press?: (oEvent: sap.ui.base.Event) => void;
87
101
  }
88
102
 
103
+ /**
104
+ * Parameters of the TaskCircle#press event.
105
+ */
89
106
  interface TaskCircle$PressEventParameters {}
90
107
 
108
+ /**
109
+ * Parameters of the VerticalProgressIndicator#press event.
110
+ */
91
111
  interface VerticalProgressIndicator$PressEventParameters {}
92
112
 
93
113
  /**
@@ -699,12 +719,17 @@ declare namespace sap {
699
719
  */
700
720
  Yellow = "Yellow",
701
721
  }
702
-
722
+ /**
723
+ * Event object of the TaskCircle#press event.
724
+ */
703
725
  type TaskCircle$PressEvent = sap.ui.base.Event<
704
726
  TaskCircle$PressEventParameters,
705
727
  TaskCircle
706
728
  >;
707
729
 
730
+ /**
731
+ * Event object of the VerticalProgressIndicator#press event.
732
+ */
708
733
  type VerticalProgressIndicator$PressEvent = sap.ui.base.Event<
709
734
  VerticalProgressIndicator$PressEventParameters,
710
735
  VerticalProgressIndicator
@@ -1,4 +1,4 @@
1
- // For Library Version: 1.122.1
1
+ // For Library Version: 1.123.0
2
2
 
3
3
  declare namespace sap {
4
4
  namespace ui {