@sapui5/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 (64) hide show
  1. package/package.json +1 -1
  2. package/types/sap.apf.d.ts +1 -1
  3. package/types/sap.ca.ui.d.ts +408 -32
  4. package/types/sap.chart.d.ts +58 -6
  5. package/types/sap.collaboration.d.ts +52 -9
  6. package/types/sap.esh.search.ui.d.ts +2066 -2
  7. package/types/sap.f.d.ts +435 -98
  8. package/types/sap.fe.core.d.ts +9 -3
  9. package/types/sap.fe.macros.d.ts +1075 -70
  10. package/types/sap.fe.navigation.d.ts +1 -1
  11. package/types/sap.fe.placeholder.d.ts +1 -1
  12. package/types/sap.fe.plugins.managecache.d.ts +1 -1
  13. package/types/sap.fe.templates.d.ts +8 -6
  14. package/types/sap.fe.test.d.ts +309 -7
  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 +1066 -146
  18. package/types/sap.insights.d.ts +4 -2
  19. package/types/sap.m.d.ts +3961 -399
  20. package/types/sap.makit.d.ts +115 -14
  21. package/types/sap.me.d.ts +84 -7
  22. package/types/sap.ndc.d.ts +22 -2
  23. package/types/sap.ovp.d.ts +1 -1
  24. package/types/sap.rules.ui.d.ts +44 -11
  25. package/types/sap.sac.df.d.ts +119 -67
  26. package/types/sap.suite.ui.commons.d.ts +1146 -2474
  27. package/types/sap.suite.ui.generic.template.d.ts +10 -2
  28. package/types/sap.suite.ui.microchart.d.ts +190 -28
  29. package/types/sap.tnt.d.ts +46 -10
  30. package/types/sap.ui.codeeditor.d.ts +16 -2
  31. package/types/sap.ui.commons.d.ts +797 -121
  32. package/types/sap.ui.comp.d.ts +964 -124
  33. package/types/sap.ui.core.d.ts +13204 -12618
  34. package/types/sap.ui.dt.d.ts +1 -1
  35. package/types/sap.ui.export.d.ts +22 -5
  36. package/types/sap.ui.fl.d.ts +40 -3
  37. package/types/sap.ui.generic.app.d.ts +217 -201
  38. package/types/sap.ui.generic.template.d.ts +1 -1
  39. package/types/sap.ui.integration.d.ts +147 -9
  40. package/types/sap.ui.layout.d.ts +171 -47
  41. package/types/sap.ui.mdc.d.ts +554 -71
  42. package/types/sap.ui.richtexteditor.d.ts +28 -2
  43. package/types/sap.ui.rta.d.ts +1 -1
  44. package/types/sap.ui.suite.d.ts +27 -3
  45. package/types/sap.ui.support.d.ts +1 -1
  46. package/types/sap.ui.table.d.ts +278 -74
  47. package/types/sap.ui.testrecorder.d.ts +1 -1
  48. package/types/sap.ui.unified.d.ts +481 -42
  49. package/types/sap.ui.ux3.d.ts +527 -34
  50. package/types/sap.ui.vbm.d.ts +544 -48
  51. package/types/sap.ui.vk.d.ts +1588 -133
  52. package/types/sap.ui.vtm.d.ts +373 -27
  53. package/types/sap.ui.webc.common.d.ts +7 -1
  54. package/types/sap.ui.webc.fiori.d.ts +351 -29
  55. package/types/sap.ui.webc.main.d.ts +1035 -83
  56. package/types/sap.uiext.inbox.d.ts +124 -13
  57. package/types/sap.ushell.d.ts +1081 -383
  58. package/types/sap.ushell_abap.d.ts +1 -1
  59. package/types/sap.uxap.d.ts +123 -23
  60. package/types/sap.viz.d.ts +2619 -130
  61. package/types/sap.webanalytics.core.d.ts +1 -1
  62. package/types/sap.zen.commons.d.ts +35 -15
  63. package/types/sap.zen.crosstab.d.ts +22 -10
  64. package/types/sap.zen.dsh.d.ts +64 -9
@@ -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/chart/library" {
4
4
  import Dimension from "sap/chart/data/Dimension";
@@ -2403,7 +2403,9 @@ declare module "sap/chart/Chart" {
2403
2403
  oConfig: object
2404
2404
  ): void;
2405
2405
  }
2406
-
2406
+ /**
2407
+ * Describes the settings that can be provided to the Chart constructor.
2408
+ */
2407
2409
  export interface $ChartSettings extends $BaseControlSettings {
2408
2410
  /**
2409
2411
  * Type of the Chart.
@@ -2704,13 +2706,22 @@ declare module "sap/chart/Chart" {
2704
2706
  drillStackChanged?: (oEvent: Event) => void;
2705
2707
  }
2706
2708
 
2709
+ /**
2710
+ * Parameters of the Chart#deselectData event.
2711
+ */
2707
2712
  export interface Chart$DeselectDataEventParameters {}
2708
2713
 
2714
+ /**
2715
+ * Event object of the Chart#deselectData event.
2716
+ */
2709
2717
  export type Chart$DeselectDataEvent = Event<
2710
2718
  Chart$DeselectDataEventParameters,
2711
2719
  Chart
2712
2720
  >;
2713
2721
 
2722
+ /**
2723
+ * Parameters of the Chart#drilledDown event.
2724
+ */
2714
2725
  export interface Chart$DrilledDownEventParameters {
2715
2726
  /**
2716
2727
  * array of strings holding the names of the added dimensions
@@ -2718,11 +2729,17 @@ declare module "sap/chart/Chart" {
2718
2729
  dimensions?: string[];
2719
2730
  }
2720
2731
 
2732
+ /**
2733
+ * Event object of the Chart#drilledDown event.
2734
+ */
2721
2735
  export type Chart$DrilledDownEvent = Event<
2722
2736
  Chart$DrilledDownEventParameters,
2723
2737
  Chart
2724
2738
  >;
2725
2739
 
2740
+ /**
2741
+ * Parameters of the Chart#drilledUp event.
2742
+ */
2726
2743
  export interface Chart$DrilledUpEventParameters {
2727
2744
  /**
2728
2745
  * array of strings holding the names of the removed dimensions
@@ -2730,34 +2747,61 @@ declare module "sap/chart/Chart" {
2730
2747
  dimensions?: string[];
2731
2748
  }
2732
2749
 
2750
+ /**
2751
+ * Event object of the Chart#drilledUp event.
2752
+ */
2733
2753
  export type Chart$DrilledUpEvent = Event<
2734
2754
  Chart$DrilledUpEventParameters,
2735
2755
  Chart
2736
2756
  >;
2737
2757
 
2758
+ /**
2759
+ * Parameters of the Chart#drillStackChanged event.
2760
+ */
2738
2761
  export interface Chart$DrillStackChangedEventParameters {}
2739
2762
 
2763
+ /**
2764
+ * Event object of the Chart#drillStackChanged event.
2765
+ */
2740
2766
  export type Chart$DrillStackChangedEvent = Event<
2741
2767
  Chart$DrillStackChangedEventParameters,
2742
2768
  Chart
2743
2769
  >;
2744
2770
 
2771
+ /**
2772
+ * Parameters of the Chart#renderComplete event.
2773
+ */
2745
2774
  export interface Chart$RenderCompleteEventParameters {}
2746
2775
 
2776
+ /**
2777
+ * Event object of the Chart#renderComplete event.
2778
+ */
2747
2779
  export type Chart$RenderCompleteEvent = Event<
2748
2780
  Chart$RenderCompleteEventParameters,
2749
2781
  Chart
2750
2782
  >;
2751
2783
 
2784
+ /**
2785
+ * Parameters of the Chart#selectData event.
2786
+ */
2752
2787
  export interface Chart$SelectDataEventParameters {}
2753
2788
 
2789
+ /**
2790
+ * Event object of the Chart#selectData event.
2791
+ */
2754
2792
  export type Chart$SelectDataEvent = Event<
2755
2793
  Chart$SelectDataEventParameters,
2756
2794
  Chart
2757
2795
  >;
2758
2796
 
2797
+ /**
2798
+ * Parameters of the Chart#valueAxisFixedScaleTurnedOff event.
2799
+ */
2759
2800
  export interface Chart$ValueAxisFixedScaleTurnedOffEventParameters {}
2760
2801
 
2802
+ /**
2803
+ * Event object of the Chart#valueAxisFixedScaleTurnedOff event.
2804
+ */
2761
2805
  export type Chart$ValueAxisFixedScaleTurnedOffEvent = Event<
2762
2806
  Chart$ValueAxisFixedScaleTurnedOffEventParameters,
2763
2807
  Chart
@@ -3983,7 +4027,9 @@ declare module "sap/chart/data/Dimension" {
3983
4027
  sTextProperty: string
3984
4028
  ): this;
3985
4029
  }
3986
-
4030
+ /**
4031
+ * Describes the settings that can be provided to the Dimension constructor.
4032
+ */
3987
4033
  export interface $DimensionSettings extends $ElementSettings {
3988
4034
  /**
3989
4035
  * Property in the "data" model holding the (always unique) Dimension key.
@@ -4181,7 +4227,9 @@ declare module "sap/chart/data/HierarchyDimension" {
4181
4227
  iLevel?: int
4182
4228
  ): this;
4183
4229
  }
4184
-
4230
+ /**
4231
+ * Describes the settings that can be provided to the HierarchyDimension constructor.
4232
+ */
4185
4233
  export interface $HierarchyDimensionSettings extends $DimensionSettings {
4186
4234
  /**
4187
4235
  * Level restriction to be applied to this hierarchy dimension. NOTE: Setting this property will cause initialization
@@ -4563,7 +4611,9 @@ declare module "sap/chart/data/Measure" {
4563
4611
  sValueFormat?: string
4564
4612
  ): this;
4565
4613
  }
4566
-
4614
+ /**
4615
+ * Describes the settings that can be provided to the Measure constructor.
4616
+ */
4567
4617
  export interface $MeasureSettings extends $ElementSettings {
4568
4618
  /**
4569
4619
  * Property in the "data" model holding the raw measure value.
@@ -4905,7 +4955,9 @@ declare module "sap/chart/data/TimeDimension" {
4905
4955
  sTimeUnit: TimeUnitType | keyof typeof TimeUnitType
4906
4956
  ): this;
4907
4957
  }
4908
-
4958
+ /**
4959
+ * Describes the settings that can be provided to the TimeDimension constructor.
4960
+ */
4909
4961
  export interface $TimeDimensionSettings extends $DimensionSettings {
4910
4962
  /**
4911
4963
  * Detailed unit infomation of TimeDimension. Please refer to {@link sap.chart.TimeUnitType TimeUnitType}.
@@ -1,4 +1,4 @@
1
- // For Library Version: 1.122.0
1
+ // For Library Version: 1.123.0
2
2
 
3
3
  declare module "sap/collaboration/library" {
4
4
  /**
@@ -327,7 +327,9 @@ declare module "sap/collaboration/components/feed/Component" {
327
327
  oFeedSources: Record<string, any> | string[]
328
328
  ): this;
329
329
  }
330
-
330
+ /**
331
+ * Describes the settings that can be provided to the Component constructor.
332
+ */
331
333
  export interface $ComponentSettings extends $UIComponentSettings {
332
334
  axisOrientation?:
333
335
  | (TimelineAxisOrientation | keyof typeof TimelineAxisOrientation)
@@ -631,7 +633,11 @@ declare module "sap/collaboration/components/fiori/feed/Component" {
631
633
  sWidth?: CSSSize
632
634
  ): this;
633
635
  }
634
-
636
+ /**
637
+ * Describes the settings that can be provided to the Component constructor.
638
+ *
639
+ * @deprecated (since 1.26.0) - Please use sap.collaboration.components.fiori.feed.dialog.Component instead.
640
+ */
635
641
  export interface $ComponentSettings extends $UIComponentSettings {
636
642
  /**
637
643
  * The width of the component.
@@ -1000,7 +1006,15 @@ declare module "sap/collaboration/components/fiori/feed/dialog/Component" {
1000
1006
  sWidth?: CSSSize
1001
1007
  ): this;
1002
1008
  }
1003
-
1009
+ /**
1010
+ * Describes the settings that can be provided to the Component constructor.
1011
+ *
1012
+ * @deprecated (since 1.34.0) - For new integrations and existing implementations running on release 1.32
1013
+ * or later, use the Group Feed component (sap.collaboration.components.feed.Component), Business Object
1014
+ * mode(sap.collaboration.FeedType.BusinessObjectGroups). Note that the Group Feed component does not display
1015
+ * the full public feed for the object in SAP Jam (object wall), but rather is restricted to the feed for
1016
+ * the object within a specific group (group object wall).
1017
+ */
1004
1018
  export interface $ComponentSettings extends $UIComponentSettings {
1005
1019
  /**
1006
1020
  * The width of the component.
@@ -1289,7 +1303,12 @@ declare module "sap/collaboration/components/fiori/notification/Component" {
1289
1303
  iTransitionInterval?: int
1290
1304
  ): this;
1291
1305
  }
1292
-
1306
+ /**
1307
+ * Describes the settings that can be provided to the Component constructor.
1308
+ *
1309
+ * @deprecated (since 1.26.0) - There is no replacement for this control. The Fiori Launchpad now provides
1310
+ * its own implementation for this control. This control was never meant to be used directly by third parties.
1311
+ */
1293
1312
  export interface $ComponentSettings extends $UIComponentSettings {
1294
1313
  /**
1295
1314
  * The OData service URL needed for the notification component.
@@ -1717,7 +1736,11 @@ declare module "sap/collaboration/components/fiori/sharing/Component" {
1717
1736
  */
1718
1737
  shareToJam(): void;
1719
1738
  }
1720
-
1739
+ /**
1740
+ * Describes the settings that can be provided to the Component constructor.
1741
+ *
1742
+ * @deprecated (since 1.26.0) - Please use sap.collaboration.components.fiori.sharing.dialog.Component instead.
1743
+ */
1721
1744
  export interface $ComponentSettings extends $UIComponentSettings {
1722
1745
  width?: CSSSize | PropertyBindingInfo | `{${string}}`;
1723
1746
 
@@ -1988,7 +2011,9 @@ declare module "sap/collaboration/components/fiori/sharing/dialog/Component" {
1988
2011
  oSettings: object
1989
2012
  ): void;
1990
2013
  }
1991
-
2014
+ /**
2015
+ * Describes the settings that can be provided to the Component constructor.
2016
+ */
1992
2017
  export interface $ComponentSettings extends $UIComponentSettings {
1993
2018
  /**
1994
2019
  * When you want to provide the user with the option to share file attachments, then the following properties
@@ -2289,7 +2314,12 @@ declare module "sap/collaboration/components/socialprofile/Component" {
2289
2314
  sWidth: string
2290
2315
  ): this;
2291
2316
  }
2292
-
2317
+ /**
2318
+ * Describes the settings that can be provided to the Component constructor.
2319
+ *
2320
+ * @experimental - The API is not stable and the UI is not finalized. The implementation for this feature
2321
+ * is subject to change.
2322
+ */
2293
2323
  export interface $ComponentSettings extends $UIComponentSettings {
2294
2324
  placement?:
2295
2325
  | (PlacementType | keyof typeof PlacementType)
@@ -2778,7 +2808,14 @@ declare module "sap/collaboration/components/socialtimeline/Component" {
2778
2808
  sWidth: CSSSize
2779
2809
  ): this;
2780
2810
  }
2781
-
2811
+ /**
2812
+ * Describes the settings that can be provided to the Component constructor.
2813
+ *
2814
+ * @deprecated (since 1.34.0) - For new integrations and existing implementations running on release 1.32
2815
+ * or later, use the Group Feed component (sap.collaboration.components.feed.Component), Business Object
2816
+ * mode(sap.collaboration.FeedType.BusinessObjectGroups). Note that the Group Feed component does not display
2817
+ * any updates related to the business object from the back-end system (system updates).
2818
+ */
2782
2819
  export interface $ComponentSettings extends $UIComponentSettings {
2783
2820
  enableSocial?: boolean | PropertyBindingInfo | `{${string}}`;
2784
2821
 
@@ -2805,8 +2842,14 @@ declare module "sap/collaboration/components/socialtimeline/Component" {
2805
2842
  customActionPress?: (oEvent: Event) => void;
2806
2843
  }
2807
2844
 
2845
+ /**
2846
+ * Parameters of the Component#customActionPress event.
2847
+ */
2808
2848
  export interface Component$CustomActionPressEventParameters {}
2809
2849
 
2850
+ /**
2851
+ * Event object of the Component#customActionPress event.
2852
+ */
2810
2853
  export type Component$CustomActionPressEvent = Event<
2811
2854
  Component$CustomActionPressEventParameters,
2812
2855
  Component