@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
  /**
@@ -1665,16 +1665,12 @@ declare namespace sap {
1665
1665
  /**
1666
1666
  * fired after a drill-down operation
1667
1667
  */
1668
- drilledDown?: (
1669
- oEvent: sap.ui.base.Event<sap.chart.Chart$DrilledDownEventParameters>
1670
- ) => void;
1668
+ drilledDown?: (oEvent: Chart$DrilledDownEvent) => void;
1671
1669
 
1672
1670
  /**
1673
1671
  * fired after a drill-up operation
1674
1672
  */
1675
- drilledUp?: (
1676
- oEvent: sap.ui.base.Event<sap.chart.Chart$DrilledUpEventParameters>
1677
- ) => void;
1673
+ drilledUp?: (oEvent: Chart$DrilledUpEvent) => void;
1678
1674
 
1679
1675
  /**
1680
1676
  * Event fires when the rendering ends.
@@ -4783,61 +4779,41 @@ declare namespace sap {
4783
4779
  */
4784
4780
  yearweek = "yearweek",
4785
4781
  }
4786
- /**
4787
- * @deprecated (since 1.115.1) - This name was introduced in 1.115.0, but will be 'Chart$DeselectDataEventParameters'
4788
- * in 1.115.1 and any later releases.
4789
- */
4790
- type $ChartDeselectDataEventParameters = sap.chart.Chart$DeselectDataEventParameters;
4791
-
4792
- type Chart$DeselectDataEvent = sap.ui.base.Event<Chart$DeselectDataEventParameters>;
4793
-
4794
- /**
4795
- * @deprecated (since 1.115.1) - This name was introduced in 1.115.0, but will be 'Chart$DrilledDownEventParameters'
4796
- * in 1.115.1 and any later releases.
4797
- */
4798
- type $ChartDrilledDownEventParameters = sap.chart.Chart$DrilledDownEventParameters;
4799
-
4800
- type Chart$DrilledDownEvent = sap.ui.base.Event<Chart$DrilledDownEventParameters>;
4801
-
4802
- /**
4803
- * @deprecated (since 1.115.1) - This name was introduced in 1.115.0, but will be 'Chart$DrilledUpEventParameters'
4804
- * in 1.115.1 and any later releases.
4805
- */
4806
- type $ChartDrilledUpEventParameters = sap.chart.Chart$DrilledUpEventParameters;
4807
4782
 
4808
- type Chart$DrilledUpEvent = sap.ui.base.Event<Chart$DrilledUpEventParameters>;
4783
+ type Chart$DeselectDataEvent = sap.ui.base.Event<
4784
+ Chart$DeselectDataEventParameters,
4785
+ Chart
4786
+ >;
4809
4787
 
4810
- /**
4811
- * @deprecated (since 1.115.1) - This name was introduced in 1.115.0, but will be 'Chart$DrillStackChangedEventParameters'
4812
- * in 1.115.1 and any later releases.
4813
- */
4814
- type $ChartDrillStackChangedEventParameters = sap.chart.Chart$DrillStackChangedEventParameters;
4815
-
4816
- type Chart$DrillStackChangedEvent = sap.ui.base.Event<Chart$DrillStackChangedEventParameters>;
4817
-
4818
- /**
4819
- * @deprecated (since 1.115.1) - This name was introduced in 1.115.0, but will be 'Chart$RenderCompleteEventParameters'
4820
- * in 1.115.1 and any later releases.
4821
- */
4822
- type $ChartRenderCompleteEventParameters = sap.chart.Chart$RenderCompleteEventParameters;
4788
+ type Chart$DrilledDownEvent = sap.ui.base.Event<
4789
+ Chart$DrilledDownEventParameters,
4790
+ Chart
4791
+ >;
4823
4792
 
4824
- type Chart$RenderCompleteEvent = sap.ui.base.Event<Chart$RenderCompleteEventParameters>;
4793
+ type Chart$DrilledUpEvent = sap.ui.base.Event<
4794
+ Chart$DrilledUpEventParameters,
4795
+ Chart
4796
+ >;
4825
4797
 
4826
- /**
4827
- * @deprecated (since 1.115.1) - This name was introduced in 1.115.0, but will be 'Chart$SelectDataEventParameters'
4828
- * in 1.115.1 and any later releases.
4829
- */
4830
- type $ChartSelectDataEventParameters = sap.chart.Chart$SelectDataEventParameters;
4798
+ type Chart$DrillStackChangedEvent = sap.ui.base.Event<
4799
+ Chart$DrillStackChangedEventParameters,
4800
+ Chart
4801
+ >;
4831
4802
 
4832
- type Chart$SelectDataEvent = sap.ui.base.Event<Chart$SelectDataEventParameters>;
4803
+ type Chart$RenderCompleteEvent = sap.ui.base.Event<
4804
+ Chart$RenderCompleteEventParameters,
4805
+ Chart
4806
+ >;
4833
4807
 
4834
- /**
4835
- * @deprecated (since 1.115.1) - This name was introduced in 1.115.0, but will be 'Chart$ValueAxisFixedScaleTurnedOffEventParameters'
4836
- * in 1.115.1 and any later releases.
4837
- */
4838
- type $ChartValueAxisFixedScaleTurnedOffEventParameters = sap.chart.Chart$ValueAxisFixedScaleTurnedOffEventParameters;
4808
+ type Chart$SelectDataEvent = sap.ui.base.Event<
4809
+ Chart$SelectDataEventParameters,
4810
+ Chart
4811
+ >;
4839
4812
 
4840
- type Chart$ValueAxisFixedScaleTurnedOffEvent = sap.ui.base.Event<Chart$ValueAxisFixedScaleTurnedOffEventParameters>;
4813
+ type Chart$ValueAxisFixedScaleTurnedOffEvent = sap.ui.base.Event<
4814
+ Chart$ValueAxisFixedScaleTurnedOffEventParameters,
4815
+ Chart
4816
+ >;
4841
4817
  }
4842
4818
 
4843
4819
  interface IUI5DefineDependencyNames {
@@ -1,4 +1,4 @@
1
- // For Library Version: 1.115.0
1
+ // For Library Version: 1.117.0
2
2
 
3
3
  declare namespace sap {
4
4
  /**
@@ -26,7 +26,7 @@ declare namespace sap {
26
26
  }
27
27
 
28
28
  /**
29
- * @SINCE 1.30
29
+ * @since 1.30
30
30
  *
31
31
  * The Feed Component is an SAPUI5 component that allows you to display SAP Jam feeds. It includes the option
32
32
  * to add new posts and reply to entries and view other users' social profiles from SAP Jam.
@@ -72,13 +72,13 @@ declare namespace sap {
72
72
  );
73
73
 
74
74
  /**
75
- * @PROTECTED - DO NOT USE IN APPLICATIONS (only for related classes in the framework)
75
+ * @ui5-protected Do not call from applications (only from related classes in the framework)
76
76
  *
77
77
  * The method to create the Content (UI Control Tree) of the Component.
78
78
  */
79
79
  static createContent(): void;
80
80
  /**
81
- * @PROTECTED - DO NOT USE IN APPLICATIONS (only for related classes in the framework)
81
+ * @ui5-protected Do not call from applications (only from related classes in the framework)
82
82
  *
83
83
  * Cleans up the component instance before destruction.
84
84
  */
@@ -122,19 +122,19 @@ declare namespace sap {
122
122
  */
123
123
  static getSelectedGroup(): Record<string, any>;
124
124
  /**
125
- * @PROTECTED - DO NOT USE IN APPLICATIONS (only for related classes in the framework)
125
+ * @ui5-protected Do not call from applications (only from related classes in the framework)
126
126
  *
127
127
  * Initializes the Component instance after creation.
128
128
  */
129
129
  static init(): void;
130
130
  /**
131
- * @PROTECTED - DO NOT USE IN APPLICATIONS (only for related classes in the framework)
131
+ * @ui5-protected Do not call from applications (only from related classes in the framework)
132
132
  *
133
133
  * Function is called when the rendering of the Component Container is completed.
134
134
  */
135
135
  static onAfterRendering(): void;
136
136
  /**
137
- * @PROTECTED - DO NOT USE IN APPLICATIONS (only for related classes in the framework)
137
+ * @ui5-protected Do not call from applications (only from related classes in the framework)
138
138
  *
139
139
  * Function is called when the rendering of the Component Container is started.
140
140
  */
@@ -1917,7 +1917,7 @@ declare namespace sap {
1917
1917
  }
1918
1918
 
1919
1919
  /**
1920
- * @EXPERIMENTAL - The API is not stable and the UI is not finalized. The implementation for this feature
1920
+ * @experimental - The API is not stable and the UI is not finalized. The implementation for this feature
1921
1921
  * is subject to change.
1922
1922
  *
1923
1923
  * Social Profile Component
@@ -1965,7 +1965,7 @@ declare namespace sap {
1965
1965
  );
1966
1966
 
1967
1967
  /**
1968
- * @PROTECTED - DO NOT USE IN APPLICATIONS (only for related classes in the framework)
1968
+ * @ui5-protected Do not call from applications (only from related classes in the framework)
1969
1969
  *
1970
1970
  * Cleans up the component instance before destruction. [borrowed from sap.ui.core.Component]
1971
1971
  */
@@ -2003,19 +2003,19 @@ declare namespace sap {
2003
2003
  */
2004
2004
  static getMetadata(): sap.ui.core.ComponentMetadata;
2005
2005
  /**
2006
- * @PROTECTED - DO NOT USE IN APPLICATIONS (only for related classes in the framework)
2006
+ * @ui5-protected Do not call from applications (only from related classes in the framework)
2007
2007
  *
2008
2008
  * Initializes the Component instance after creation. [borrowed from sap.ui.core.UIComponent]
2009
2009
  */
2010
2010
  static init(): void;
2011
2011
  /**
2012
- * @PROTECTED - DO NOT USE IN APPLICATIONS (only for related classes in the framework)
2012
+ * @ui5-protected Do not call from applications (only from related classes in the framework)
2013
2013
  *
2014
2014
  * Function is called when the rendering of the Component Container is completed. [borrowed from sap.ui.core.UIComponent]
2015
2015
  */
2016
2016
  static onAfterRendering(): void;
2017
2017
  /**
2018
- * @PROTECTED - DO NOT USE IN APPLICATIONS (only for related classes in the framework)
2018
+ * @ui5-protected Do not call from applications (only from related classes in the framework)
2019
2019
  *
2020
2020
  * Function is called when the rendering of the Component Container is started. [borrowed from sap.ui.core.UIComponent]
2021
2021
  */
@@ -2193,7 +2193,7 @@ declare namespace sap {
2193
2193
  customActionPress?: (oEvent: sap.ui.base.Event) => void;
2194
2194
  }
2195
2195
 
2196
- interface $ComponentCustomActionPressEventParameters {}
2196
+ interface Component$CustomActionPressEventParameters {}
2197
2197
 
2198
2198
  /**
2199
2199
  * @deprecated (since 1.34.0) - For new integrations and existing implementations running on release 1.32
@@ -2242,7 +2242,7 @@ declare namespace sap {
2242
2242
  );
2243
2243
 
2244
2244
  /**
2245
- * @PROTECTED - DO NOT USE IN APPLICATIONS (only for related classes in the framework)
2245
+ * @ui5-protected Do not call from applications (only from related classes in the framework)
2246
2246
  *
2247
2247
  * The method to create the Content (UI Control Tree) of the Component.
2248
2248
  */
@@ -2258,7 +2258,7 @@ declare namespace sap {
2258
2258
  sId: string
2259
2259
  ): void;
2260
2260
  /**
2261
- * @PROTECTED - DO NOT USE IN APPLICATIONS (only for related classes in the framework)
2261
+ * @ui5-protected Do not call from applications (only from related classes in the framework)
2262
2262
  *
2263
2263
  * Cleans up the component instance before destruction.
2264
2264
  */
@@ -2296,19 +2296,19 @@ declare namespace sap {
2296
2296
  */
2297
2297
  static getMetadata(): sap.ui.core.ComponentMetadata;
2298
2298
  /**
2299
- * @PROTECTED - DO NOT USE IN APPLICATIONS (only for related classes in the framework)
2299
+ * @ui5-protected Do not call from applications (only from related classes in the framework)
2300
2300
  *
2301
2301
  * Initializes the Component instance after creation.
2302
2302
  */
2303
2303
  static init(): void;
2304
2304
  /**
2305
- * @PROTECTED - DO NOT USE IN APPLICATIONS (only for related classes in the framework)
2305
+ * @ui5-protected Do not call from applications (only from related classes in the framework)
2306
2306
  *
2307
2307
  * Function is called when the rendering of the Component Container is completed.
2308
2308
  */
2309
2309
  static onAfterRendering(): void;
2310
2310
  /**
2311
- * @PROTECTED - DO NOT USE IN APPLICATIONS (only for related classes in the framework)
2311
+ * @ui5-protected Do not call from applications (only from related classes in the framework)
2312
2312
  *
2313
2313
  * Function is called when the rendering of the Component Container is started.
2314
2314
  */
@@ -2347,7 +2347,7 @@ declare namespace sap {
2347
2347
  businessObjectMap: object
2348
2348
  ): void;
2349
2349
  /**
2350
- * @PROTECTED - DO NOT USE IN APPLICATIONS (only for related classes in the framework)
2350
+ * @ui5-protected Do not call from applications (only from related classes in the framework)
2351
2351
  *
2352
2352
  * Set property of component
2353
2353
  */
@@ -2440,7 +2440,7 @@ declare namespace sap {
2440
2440
  oListener?: object
2441
2441
  ): this;
2442
2442
  /**
2443
- * @PROTECTED - DO NOT USE IN APPLICATIONS (only for related classes in the framework)
2443
+ * @ui5-protected Do not call from applications (only from related classes in the framework)
2444
2444
  *
2445
2445
  * Fires event {@link #event:customActionPress customActionPress} to attached listeners.
2446
2446
  *
@@ -2624,6 +2624,11 @@ declare namespace sap {
2624
2624
  sWidth: sap.ui.core.CSSSize
2625
2625
  ): this;
2626
2626
  }
2627
+
2628
+ type Component$CustomActionPressEvent = sap.ui.base.Event<
2629
+ Component$CustomActionPressEventParameters,
2630
+ Component
2631
+ >;
2627
2632
  }
2628
2633
  }
2629
2634