@sapui5/types 1.120.10 → 1.120.12

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 (47) hide show
  1. package/package.json +1 -1
  2. package/types/sap.chart.d.ts +58 -6
  3. package/types/sap.f.d.ts +367 -54
  4. package/types/sap.fe.core.d.ts +4 -2
  5. package/types/sap.fe.macros.d.ts +96 -12
  6. package/types/sap.fe.navigation.d.ts +1 -1
  7. package/types/sap.fe.placeholder.d.ts +1 -1
  8. package/types/sap.fe.templates.d.ts +1 -1
  9. package/types/sap.fe.test.d.ts +1 -1
  10. package/types/sap.fe.tools.d.ts +1 -1
  11. package/types/sap.gantt.d.ts +1001 -139
  12. package/types/sap.insights.d.ts +4 -2
  13. package/types/sap.m.d.ts +3125 -282
  14. package/types/sap.makit.d.ts +115 -14
  15. package/types/sap.me.d.ts +84 -7
  16. package/types/sap.ndc.d.ts +22 -2
  17. package/types/sap.suite.ui.commons.d.ts +1148 -118
  18. package/types/sap.suite.ui.generic.template.d.ts +10 -2
  19. package/types/sap.suite.ui.microchart.d.ts +184 -28
  20. package/types/sap.tnt.d.ts +40 -8
  21. package/types/sap.ui.codeeditor.d.ts +16 -2
  22. package/types/sap.ui.commons.d.ts +756 -90
  23. package/types/sap.ui.comp.d.ts +884 -50
  24. package/types/sap.ui.core.d.ts +1204 -145
  25. package/types/sap.ui.dt.d.ts +1 -1
  26. package/types/sap.ui.export.d.ts +19 -4
  27. package/types/sap.ui.fl.d.ts +44 -3
  28. package/types/sap.ui.integration.d.ts +144 -6
  29. package/types/sap.ui.layout.d.ts +166 -41
  30. package/types/sap.ui.mdc.d.ts +430 -38
  31. package/types/sap.ui.richtexteditor.d.ts +28 -2
  32. package/types/sap.ui.rta.d.ts +1 -1
  33. package/types/sap.ui.suite.d.ts +27 -3
  34. package/types/sap.ui.support.d.ts +1 -1
  35. package/types/sap.ui.table.d.ts +222 -19
  36. package/types/sap.ui.testrecorder.d.ts +1 -1
  37. package/types/sap.ui.unified.d.ts +431 -35
  38. package/types/sap.ui.ux3.d.ts +524 -31
  39. package/types/sap.ui.vbm.d.ts +6427 -3308
  40. package/types/sap.ui.webc.common.d.ts +7 -1
  41. package/types/sap.ui.webc.fiori.d.ts +351 -29
  42. package/types/sap.ui.webc.main.d.ts +1035 -83
  43. package/types/sap.uiext.inbox.d.ts +124 -13
  44. package/types/sap.ushell.d.ts +147 -12
  45. package/types/sap.ushell_abap.d.ts +1 -1
  46. package/types/sap.uxap.d.ts +118 -18
  47. package/types/sap.viz.d.ts +2619 -130
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@sapui5/types",
3
- "version": "1.120.10",
3
+ "version": "1.120.12",
4
4
  "description": "SAPUI5 TypeScript Definitions",
5
5
  "homepage": "https://sap.github.io/ui5-typescript/",
6
6
  "author": "SAP SE (https://www.sap.com)",
@@ -1,4 +1,4 @@
1
- // For Library Version: 1.120.10
1
+ // For Library Version: 1.120.12
2
2
 
3
3
  declare module "sap/chart/library" {
4
4
  import Dimension from "sap/chart/data/Dimension";
@@ -2387,7 +2387,9 @@ declare module "sap/chart/Chart" {
2387
2387
  oConfig: object
2388
2388
  ): void;
2389
2389
  }
2390
-
2390
+ /**
2391
+ * Describes the settings that can be provided to the Chart constructor.
2392
+ */
2391
2393
  export interface $ChartSettings extends $BaseControlSettings {
2392
2394
  /**
2393
2395
  * Type of the Chart.
@@ -2688,13 +2690,22 @@ declare module "sap/chart/Chart" {
2688
2690
  drillStackChanged?: (oEvent: Event) => void;
2689
2691
  }
2690
2692
 
2693
+ /**
2694
+ * Parameters of the Chart#deselectData event.
2695
+ */
2691
2696
  export interface Chart$DeselectDataEventParameters {}
2692
2697
 
2698
+ /**
2699
+ * Event object of the Chart#deselectData event.
2700
+ */
2693
2701
  export type Chart$DeselectDataEvent = Event<
2694
2702
  Chart$DeselectDataEventParameters,
2695
2703
  Chart
2696
2704
  >;
2697
2705
 
2706
+ /**
2707
+ * Parameters of the Chart#drilledDown event.
2708
+ */
2698
2709
  export interface Chart$DrilledDownEventParameters {
2699
2710
  /**
2700
2711
  * array of strings holding the names of the added dimensions
@@ -2702,11 +2713,17 @@ declare module "sap/chart/Chart" {
2702
2713
  dimensions?: string[];
2703
2714
  }
2704
2715
 
2716
+ /**
2717
+ * Event object of the Chart#drilledDown event.
2718
+ */
2705
2719
  export type Chart$DrilledDownEvent = Event<
2706
2720
  Chart$DrilledDownEventParameters,
2707
2721
  Chart
2708
2722
  >;
2709
2723
 
2724
+ /**
2725
+ * Parameters of the Chart#drilledUp event.
2726
+ */
2710
2727
  export interface Chart$DrilledUpEventParameters {
2711
2728
  /**
2712
2729
  * array of strings holding the names of the removed dimensions
@@ -2714,34 +2731,61 @@ declare module "sap/chart/Chart" {
2714
2731
  dimensions?: string[];
2715
2732
  }
2716
2733
 
2734
+ /**
2735
+ * Event object of the Chart#drilledUp event.
2736
+ */
2717
2737
  export type Chart$DrilledUpEvent = Event<
2718
2738
  Chart$DrilledUpEventParameters,
2719
2739
  Chart
2720
2740
  >;
2721
2741
 
2742
+ /**
2743
+ * Parameters of the Chart#drillStackChanged event.
2744
+ */
2722
2745
  export interface Chart$DrillStackChangedEventParameters {}
2723
2746
 
2747
+ /**
2748
+ * Event object of the Chart#drillStackChanged event.
2749
+ */
2724
2750
  export type Chart$DrillStackChangedEvent = Event<
2725
2751
  Chart$DrillStackChangedEventParameters,
2726
2752
  Chart
2727
2753
  >;
2728
2754
 
2755
+ /**
2756
+ * Parameters of the Chart#renderComplete event.
2757
+ */
2729
2758
  export interface Chart$RenderCompleteEventParameters {}
2730
2759
 
2760
+ /**
2761
+ * Event object of the Chart#renderComplete event.
2762
+ */
2731
2763
  export type Chart$RenderCompleteEvent = Event<
2732
2764
  Chart$RenderCompleteEventParameters,
2733
2765
  Chart
2734
2766
  >;
2735
2767
 
2768
+ /**
2769
+ * Parameters of the Chart#selectData event.
2770
+ */
2736
2771
  export interface Chart$SelectDataEventParameters {}
2737
2772
 
2773
+ /**
2774
+ * Event object of the Chart#selectData event.
2775
+ */
2738
2776
  export type Chart$SelectDataEvent = Event<
2739
2777
  Chart$SelectDataEventParameters,
2740
2778
  Chart
2741
2779
  >;
2742
2780
 
2781
+ /**
2782
+ * Parameters of the Chart#valueAxisFixedScaleTurnedOff event.
2783
+ */
2743
2784
  export interface Chart$ValueAxisFixedScaleTurnedOffEventParameters {}
2744
2785
 
2786
+ /**
2787
+ * Event object of the Chart#valueAxisFixedScaleTurnedOff event.
2788
+ */
2745
2789
  export type Chart$ValueAxisFixedScaleTurnedOffEvent = Event<
2746
2790
  Chart$ValueAxisFixedScaleTurnedOffEventParameters,
2747
2791
  Chart
@@ -3967,7 +4011,9 @@ declare module "sap/chart/data/Dimension" {
3967
4011
  sTextProperty: string
3968
4012
  ): this;
3969
4013
  }
3970
-
4014
+ /**
4015
+ * Describes the settings that can be provided to the Dimension constructor.
4016
+ */
3971
4017
  export interface $DimensionSettings extends $ElementSettings {
3972
4018
  /**
3973
4019
  * Property in the "data" model holding the (always unique) Dimension key.
@@ -4165,7 +4211,9 @@ declare module "sap/chart/data/HierarchyDimension" {
4165
4211
  iLevel?: int
4166
4212
  ): this;
4167
4213
  }
4168
-
4214
+ /**
4215
+ * Describes the settings that can be provided to the HierarchyDimension constructor.
4216
+ */
4169
4217
  export interface $HierarchyDimensionSettings extends $DimensionSettings {
4170
4218
  /**
4171
4219
  * Level restriction to be applied to this hierarchy dimension. NOTE: Setting this property will cause initialization
@@ -4547,7 +4595,9 @@ declare module "sap/chart/data/Measure" {
4547
4595
  sValueFormat?: string
4548
4596
  ): this;
4549
4597
  }
4550
-
4598
+ /**
4599
+ * Describes the settings that can be provided to the Measure constructor.
4600
+ */
4551
4601
  export interface $MeasureSettings extends $ElementSettings {
4552
4602
  /**
4553
4603
  * Property in the "data" model holding the raw measure value.
@@ -4889,7 +4939,9 @@ declare module "sap/chart/data/TimeDimension" {
4889
4939
  sTimeUnit: TimeUnitType | keyof typeof TimeUnitType
4890
4940
  ): this;
4891
4941
  }
4892
-
4942
+ /**
4943
+ * Describes the settings that can be provided to the TimeDimension constructor.
4944
+ */
4893
4945
  export interface $TimeDimensionSettings extends $DimensionSettings {
4894
4946
  /**
4895
4947
  * Detailed unit infomation of TimeDimension. Please refer to {@link sap.chart.TimeUnitType TimeUnitType}.