@sapui5/ts-types 1.115.1 → 1.117.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 (65) hide show
  1. package/README.md +4 -14
  2. package/package.json +1 -1
  3. package/types/index.d.ts +10 -3
  4. package/types/sap.apf.d.ts +38 -30
  5. package/types/sap.ca.ui.d.ts +216 -87
  6. package/types/sap.chart.d.ts +31 -55
  7. package/types/sap.collaboration.d.ts +25 -20
  8. package/types/sap.esh.search.ui.d.ts +117 -107
  9. package/types/sap.f.d.ts +229 -310
  10. package/types/sap.fe.core.d.ts +147 -35
  11. package/types/sap.fe.macros.d.ts +167 -61
  12. package/types/sap.fe.placeholder.d.ts +1 -1
  13. package/types/sap.fe.plugins.optimisticBatch.d.ts +3 -0
  14. package/types/sap.fe.test.d.ts +1 -1
  15. package/types/sap.fe.tools.d.ts +1 -1
  16. package/types/sap.feedback.ui.d.ts +1 -1
  17. package/types/sap.gantt.d.ts +1255 -2252
  18. package/types/sap.insights.d.ts +251 -11
  19. package/types/sap.landvisz.d.ts +92 -27
  20. package/types/sap.m.d.ts +2631 -3400
  21. package/types/sap.makit.d.ts +22 -42
  22. package/types/sap.me.d.ts +45 -78
  23. package/types/sap.ndc.d.ts +41 -39
  24. package/types/sap.ovp.d.ts +24 -98
  25. package/types/sap.rules.ui.d.ts +41 -37
  26. package/types/sap.sac.df.d.ts +93 -5
  27. package/types/sap.suite.ui.commons.d.ts +1361 -1165
  28. package/types/sap.suite.ui.generic.template.d.ts +5 -8
  29. package/types/sap.suite.ui.microchart.d.ts +88 -138
  30. package/types/sap.tnt.d.ts +63 -27
  31. package/types/sap.ui.codeeditor.d.ts +11 -21
  32. package/types/sap.ui.commons.d.ts +335 -530
  33. package/types/sap.ui.comp.d.ts +919 -1032
  34. package/types/sap.ui.core.d.ts +1176 -1078
  35. package/types/sap.ui.dt.d.ts +1 -1
  36. package/types/sap.ui.export.d.ts +192 -13
  37. package/types/sap.ui.fl.d.ts +28 -87
  38. package/types/sap.ui.generic.app.d.ts +28 -30
  39. package/types/sap.ui.generic.template.d.ts +1 -1
  40. package/types/sap.ui.integration.d.ts +207 -114
  41. package/types/sap.ui.layout.d.ts +98 -69
  42. package/types/sap.ui.mdc.d.ts +7003 -6826
  43. package/types/sap.ui.richtexteditor.d.ts +18 -31
  44. package/types/sap.ui.rta.d.ts +1 -1
  45. package/types/sap.ui.suite.d.ts +9 -14
  46. package/types/sap.ui.support.d.ts +1 -1
  47. package/types/sap.ui.table.d.ts +169 -229
  48. package/types/sap.ui.testrecorder.d.ts +1 -1
  49. package/types/sap.ui.unified.d.ts +288 -481
  50. package/types/sap.ui.ux3.d.ts +343 -602
  51. package/types/sap.ui.vbm.d.ts +664 -764
  52. package/types/sap.ui.vk.d.ts +1746 -1844
  53. package/types/sap.ui.vtm.d.ts +417 -386
  54. package/types/sap.ui.webc.common.d.ts +1 -1
  55. package/types/sap.ui.webc.fiori.d.ts +894 -369
  56. package/types/sap.ui.webc.main.d.ts +4598 -1356
  57. package/types/sap.uiext.inbox.d.ts +64 -103
  58. package/types/sap.ushell.d.ts +285 -316
  59. package/types/sap.ushell_abap.d.ts +1 -1
  60. package/types/sap.uxap.d.ts +60 -100
  61. package/types/sap.viz.d.ts +677 -1089
  62. package/types/sap.webanalytics.core.d.ts +1 -1
  63. package/types/sap.zen.commons.d.ts +2 -2
  64. package/types/sap.zen.crosstab.d.ts +2 -2
  65. package/types/sap.zen.dsh.d.ts +148 -157
@@ -1,4 +1,4 @@
1
- // For Library Version: 1.115.1
1
+ // For Library Version: 1.117.0
2
2
 
3
3
  declare namespace sap {
4
4
  namespace ui {
@@ -278,9 +278,7 @@ declare namespace sap {
278
278
  * Event is fired when the text in the field has changed AND the focus leaves the editor or when the Enter
279
279
  * key is pressed.
280
280
  */
281
- change?: (
282
- oEvent: sap.ui.base.Event<sap.ui.richtexteditor.RichTextEditor$ChangeEventParameters>
283
- ) => void;
281
+ change?: (oEvent: RichTextEditor$ChangeEvent) => void;
284
282
 
285
283
  /**
286
284
  * Fired when the used editor is loaded and ready (its HTML is also created).
@@ -1705,37 +1703,26 @@ declare namespace sap {
1705
1703
  */
1706
1704
  TinyMCE6 = "TinyMCE6",
1707
1705
  }
1708
- /**
1709
- * @deprecated (since 1.115.1) - This name was introduced in 1.115.0, but will be 'RichTextEditor$BeforeEditorInitEventParameters'
1710
- * in 1.115.1 and any later releases.
1711
- */
1712
- type $RichTextEditorBeforeEditorInitEventParameters = sap.ui.richtexteditor.RichTextEditor$BeforeEditorInitEventParameters;
1713
-
1714
- type RichTextEditor$BeforeEditorInitEvent = sap.ui.base.Event<RichTextEditor$BeforeEditorInitEventParameters>;
1715
1706
 
1716
- /**
1717
- * @deprecated (since 1.115.1) - This name was introduced in 1.115.0, but will be 'RichTextEditor$ChangeEventParameters'
1718
- * in 1.115.1 and any later releases.
1719
- */
1720
- type $RichTextEditorChangeEventParameters = sap.ui.richtexteditor.RichTextEditor$ChangeEventParameters;
1707
+ type RichTextEditor$BeforeEditorInitEvent = sap.ui.base.Event<
1708
+ RichTextEditor$BeforeEditorInitEventParameters,
1709
+ RichTextEditor
1710
+ >;
1721
1711
 
1722
- type RichTextEditor$ChangeEvent = sap.ui.base.Event<RichTextEditor$ChangeEventParameters>;
1712
+ type RichTextEditor$ChangeEvent = sap.ui.base.Event<
1713
+ RichTextEditor$ChangeEventParameters,
1714
+ RichTextEditor
1715
+ >;
1723
1716
 
1724
- /**
1725
- * @deprecated (since 1.115.1) - This name was introduced in 1.115.0, but will be 'RichTextEditor$ReadyEventParameters'
1726
- * in 1.115.1 and any later releases.
1727
- */
1728
- type $RichTextEditorReadyEventParameters = sap.ui.richtexteditor.RichTextEditor$ReadyEventParameters;
1729
-
1730
- type RichTextEditor$ReadyEvent = sap.ui.base.Event<RichTextEditor$ReadyEventParameters>;
1731
-
1732
- /**
1733
- * @deprecated (since 1.115.1) - This name was introduced in 1.115.0, but will be 'RichTextEditor$ReadyRecurringEventParameters'
1734
- * in 1.115.1 and any later releases.
1735
- */
1736
- type $RichTextEditorReadyRecurringEventParameters = sap.ui.richtexteditor.RichTextEditor$ReadyRecurringEventParameters;
1717
+ type RichTextEditor$ReadyEvent = sap.ui.base.Event<
1718
+ RichTextEditor$ReadyEventParameters,
1719
+ RichTextEditor
1720
+ >;
1737
1721
 
1738
- type RichTextEditor$ReadyRecurringEvent = sap.ui.base.Event<RichTextEditor$ReadyRecurringEventParameters>;
1722
+ type RichTextEditor$ReadyRecurringEvent = sap.ui.base.Event<
1723
+ RichTextEditor$ReadyRecurringEventParameters,
1724
+ RichTextEditor
1725
+ >;
1739
1726
  }
1740
1727
  }
1741
1728
 
@@ -1,4 +1,4 @@
1
- // For Library Version: 1.115.1
1
+ // For Library Version: 1.117.0
2
2
 
3
3
  declare module "sap/ui/rta/api/startAdaptation" {
4
4
  /**
@@ -1,4 +1,4 @@
1
- // For Library Version: 1.115.1
1
+ // For Library Version: 1.117.0
2
2
 
3
3
  declare namespace sap {
4
4
  namespace ui {
@@ -665,21 +665,16 @@ declare namespace sap {
665
665
  */
666
666
  Yellow = "Yellow",
667
667
  }
668
- /**
669
- * @deprecated (since 1.115.1) - This name was introduced in 1.115.0, but will be 'TaskCircle$PressEventParameters'
670
- * in 1.115.1 and any later releases.
671
- */
672
- type $TaskCirclePressEventParameters = sap.ui.suite.TaskCircle$PressEventParameters;
673
-
674
- type TaskCircle$PressEvent = sap.ui.base.Event<TaskCircle$PressEventParameters>;
675
668
 
676
- /**
677
- * @deprecated (since 1.115.1) - This name was introduced in 1.115.0, but will be 'VerticalProgressIndicator$PressEventParameters'
678
- * in 1.115.1 and any later releases.
679
- */
680
- type $VerticalProgressIndicatorPressEventParameters = sap.ui.suite.VerticalProgressIndicator$PressEventParameters;
669
+ type TaskCircle$PressEvent = sap.ui.base.Event<
670
+ TaskCircle$PressEventParameters,
671
+ TaskCircle
672
+ >;
681
673
 
682
- type VerticalProgressIndicator$PressEvent = sap.ui.base.Event<VerticalProgressIndicator$PressEventParameters>;
674
+ type VerticalProgressIndicator$PressEvent = sap.ui.base.Event<
675
+ VerticalProgressIndicator$PressEventParameters,
676
+ VerticalProgressIndicator
677
+ >;
683
678
  }
684
679
  }
685
680
 
@@ -1,4 +1,4 @@
1
- // For Library Version: 1.115.1
1
+ // For Library Version: 1.117.0
2
2
 
3
3
  declare namespace sap {
4
4
  namespace ui {