@sapui5/types 1.115.0 → 1.116.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/README.md +5 -3
  2. package/package.json +1 -1
  3. package/types/index.d.ts +11 -3
  4. package/types/sap.apf.d.ts +47 -40
  5. package/types/sap.ca.ui.d.ts +171 -161
  6. package/types/sap.chart.d.ts +56 -47
  7. package/types/sap.collaboration.d.ts +31 -38
  8. package/types/sap.esh.search.ui.d.ts +112 -109
  9. package/types/sap.f.d.ts +718 -786
  10. package/types/sap.fe.core.d.ts +206 -92
  11. package/types/sap.fe.macros.d.ts +66 -40
  12. package/types/sap.fe.navigation.d.ts +9 -13
  13. package/types/sap.fe.placeholder.d.ts +3 -0
  14. package/types/sap.fe.templates.d.ts +11 -9
  15. package/types/sap.fe.test.d.ts +40 -69
  16. package/types/sap.fe.tools.d.ts +3 -0
  17. package/types/sap.feedback.ui.d.ts +1 -1
  18. package/types/sap.gantt.d.ts +1223 -1502
  19. package/types/sap.insights.d.ts +3 -3
  20. package/types/sap.landvisz.d.ts +73 -67
  21. package/types/sap.m.d.ts +6504 -6706
  22. package/types/sap.makit.d.ts +55 -56
  23. package/types/sap.me.d.ts +71 -79
  24. package/types/sap.ndc.d.ts +44 -36
  25. package/types/sap.ovp.d.ts +25 -8
  26. package/types/sap.rules.ui.d.ts +38 -51
  27. package/types/sap.sac.df.d.ts +11 -12
  28. package/types/sap.suite.ui.commons.d.ts +1180 -1233
  29. package/types/sap.suite.ui.generic.template.d.ts +75 -82
  30. package/types/sap.suite.ui.microchart.d.ts +280 -291
  31. package/types/sap.tnt.d.ts +119 -86
  32. package/types/sap.ui.codeeditor.d.ts +28 -25
  33. package/types/sap.ui.commons.d.ts +691 -684
  34. package/types/sap.ui.comp.d.ts +2247 -2189
  35. package/types/sap.ui.core.d.ts +2434 -2444
  36. package/types/sap.ui.dt.d.ts +1 -1
  37. package/types/sap.ui.export.d.ts +38 -33
  38. package/types/sap.ui.fl.d.ts +55 -82
  39. package/types/sap.ui.generic.app.d.ts +39 -43
  40. package/types/sap.ui.generic.template.d.ts +1 -1
  41. package/types/sap.ui.integration.d.ts +401 -292
  42. package/types/sap.ui.layout.d.ts +369 -420
  43. package/types/sap.ui.mdc.d.ts +1557 -1344
  44. package/types/sap.ui.richtexteditor.d.ts +40 -33
  45. package/types/sap.ui.rta.d.ts +7 -7
  46. package/types/sap.ui.suite.d.ts +13 -11
  47. package/types/sap.ui.support.d.ts +12 -13
  48. package/types/sap.ui.table.d.ts +366 -368
  49. package/types/sap.ui.testrecorder.d.ts +1 -1
  50. package/types/sap.ui.unified.d.ts +961 -1007
  51. package/types/sap.ui.ux3.d.ts +663 -653
  52. package/types/sap.ui.vbm.d.ts +568 -541
  53. package/types/sap.ui.vk.d.ts +1511 -1834
  54. package/types/sap.ui.vtm.d.ts +335 -329
  55. package/types/sap.ui.webc.common.d.ts +7 -9
  56. package/types/sap.ui.webc.fiori.d.ts +1099 -509
  57. package/types/sap.ui.webc.main.d.ts +4937 -1323
  58. package/types/sap.uiext.inbox.d.ts +73 -63
  59. package/types/sap.ushell.d.ts +492 -1024
  60. package/types/sap.ushell_abap.d.ts +1 -1
  61. package/types/sap.uxap.d.ts +244 -277
  62. package/types/sap.viz.d.ts +993 -856
  63. package/types/sap.webanalytics.core.d.ts +1 -1
  64. package/types/sap.zen.commons.d.ts +7 -12
  65. package/types/sap.zen.crosstab.d.ts +4 -7
  66. package/types/sap.zen.dsh.d.ts +133 -157
@@ -1,4 +1,4 @@
1
- // For Library Version: 1.115.0
1
+ // For Library Version: 1.116.0
2
2
 
3
3
  declare module "sap/ca/ui/library" {
4
4
  export namespace charts {
@@ -162,7 +162,7 @@ declare module "sap/ca/ui/AddPicture" {
162
162
  * Enables users to add pictures into a form. Contains PictureItem controls that describe the media. It
163
163
  * is designed to be used simultaneously with the PictureViewer control
164
164
  */
165
- class AddPicture extends Control {
165
+ export default class AddPicture extends Control {
166
166
  /**
167
167
  * Constructor for a new AddPicture.
168
168
  *
@@ -254,9 +254,7 @@ declare module "sap/ca/ui/AddPicture" {
254
254
  /**
255
255
  * The function to be called when the event occurs
256
256
  */
257
- fnFunction: (
258
- p1: Event<$AddPictureFileNotSupportedEventParameters>
259
- ) => void,
257
+ fnFunction: (p1: AddPicture$FileNotSupportedEvent) => void,
260
258
  /**
261
259
  * Context object to call the event handler with. Defaults to this `sap.ca.ui.AddPicture` itself
262
260
  */
@@ -277,9 +275,7 @@ declare module "sap/ca/ui/AddPicture" {
277
275
  /**
278
276
  * The function to be called when the event occurs
279
277
  */
280
- fnFunction: (
281
- p1: Event<$AddPictureFileNotSupportedEventParameters>
282
- ) => void,
278
+ fnFunction: (p1: AddPicture$FileNotSupportedEvent) => void,
283
279
  /**
284
280
  * Context object to call the event handler with. Defaults to this `sap.ca.ui.AddPicture` itself
285
281
  */
@@ -505,9 +501,7 @@ declare module "sap/ca/ui/AddPicture" {
505
501
  /**
506
502
  * The function to be called, when the event occurs
507
503
  */
508
- fnFunction: (
509
- p1: Event<$AddPictureFileNotSupportedEventParameters>
510
- ) => void,
504
+ fnFunction: (p1: AddPicture$FileNotSupportedEvent) => void,
511
505
  /**
512
506
  * Context object on which the given function had to be called
513
507
  */
@@ -584,7 +578,7 @@ declare module "sap/ca/ui/AddPicture" {
584
578
  oListener?: object
585
579
  ): this;
586
580
  /**
587
- * @PROTECTED - DO NOT USE IN APPLICATIONS (only for related classes in the framework)
581
+ * @ui5-protected Do not call from applications (only from related classes in the framework)
588
582
  *
589
583
  * Fires event {@link #event:fileNotSupported fileNotSupported} to attached listeners.
590
584
  *
@@ -594,10 +588,10 @@ declare module "sap/ca/ui/AddPicture" {
594
588
  /**
595
589
  * Parameters to pass along with the event
596
590
  */
597
- mParameters?: $AddPictureFileNotSupportedEventParameters
591
+ mParameters?: AddPicture$FileNotSupportedEventParameters
598
592
  ): this;
599
593
  /**
600
- * @PROTECTED - DO NOT USE IN APPLICATIONS (only for related classes in the framework)
594
+ * @ui5-protected Do not call from applications (only from related classes in the framework)
601
595
  *
602
596
  * Fires event {@link #event:imageUploadFailed imageUploadFailed} to attached listeners.
603
597
  *
@@ -610,7 +604,7 @@ declare module "sap/ca/ui/AddPicture" {
610
604
  mParameters?: object
611
605
  ): this;
612
606
  /**
613
- * @PROTECTED - DO NOT USE IN APPLICATIONS (only for related classes in the framework)
607
+ * @ui5-protected Do not call from applications (only from related classes in the framework)
614
608
  *
615
609
  * Fires event {@link #event:maxPictureLimitReached maxPictureLimitReached} to attached listeners.
616
610
  *
@@ -623,7 +617,7 @@ declare module "sap/ca/ui/AddPicture" {
623
617
  mParameters?: object
624
618
  ): this;
625
619
  /**
626
- * @PROTECTED - DO NOT USE IN APPLICATIONS (only for related classes in the framework)
620
+ * @ui5-protected Do not call from applications (only from related classes in the framework)
627
621
  *
628
622
  * Fires event {@link #event:pictureAdded pictureAdded} to attached listeners.
629
623
  *
@@ -636,7 +630,7 @@ declare module "sap/ca/ui/AddPicture" {
636
630
  mParameters?: object
637
631
  ): this;
638
632
  /**
639
- * @PROTECTED - DO NOT USE IN APPLICATIONS (only for related classes in the framework)
633
+ * @ui5-protected Do not call from applications (only from related classes in the framework)
640
634
  *
641
635
  * Fires event {@link #event:show show} to attached listeners.
642
636
  *
@@ -935,7 +929,6 @@ declare module "sap/ca/ui/AddPicture" {
935
929
  */
936
930
  unbindPictures(): this;
937
931
  }
938
- export default AddPicture;
939
932
 
940
933
  export interface $AddPictureSettings extends $ControlSettings {
941
934
  /**
@@ -1021,25 +1014,33 @@ declare module "sap/ca/ui/AddPicture" {
1021
1014
  /**
1022
1015
  * Image upload failed, only supports image format files
1023
1016
  */
1024
- fileNotSupported?: (
1025
- oEvent: Event<$AddPictureFileNotSupportedEventParameters>
1026
- ) => void;
1017
+ fileNotSupported?: (oEvent: AddPicture$FileNotSupportedEvent) => void;
1027
1018
  }
1028
1019
 
1029
- export interface $AddPictureFileNotSupportedEventParameters {
1020
+ export interface AddPicture$FileNotSupportedEventParameters {
1030
1021
  /**
1031
1022
  * An array containing the file names that are not supported
1032
1023
  */
1033
1024
  fileNames?: any;
1034
1025
  }
1035
1026
 
1036
- export interface $AddPictureImageUploadFailedEventParameters {}
1027
+ export type AddPicture$FileNotSupportedEvent = Event<AddPicture$FileNotSupportedEventParameters>;
1037
1028
 
1038
- export interface $AddPictureMaxPictureLimitReachedEventParameters {}
1029
+ export interface AddPicture$ImageUploadFailedEventParameters {}
1039
1030
 
1040
- export interface $AddPicturePictureAddedEventParameters {}
1031
+ export type AddPicture$ImageUploadFailedEvent = Event<AddPicture$ImageUploadFailedEventParameters>;
1041
1032
 
1042
- export interface $AddPictureShowEventParameters {}
1033
+ export interface AddPicture$MaxPictureLimitReachedEventParameters {}
1034
+
1035
+ export type AddPicture$MaxPictureLimitReachedEvent = Event<AddPicture$MaxPictureLimitReachedEventParameters>;
1036
+
1037
+ export interface AddPicture$PictureAddedEventParameters {}
1038
+
1039
+ export type AddPicture$PictureAddedEvent = Event<AddPicture$PictureAddedEventParameters>;
1040
+
1041
+ export interface AddPicture$ShowEventParameters {}
1042
+
1043
+ export type AddPicture$ShowEvent = Event<AddPicture$ShowEventParameters>;
1043
1044
  }
1044
1045
 
1045
1046
  declare module "sap/ca/ui/charts/BarListItem" {
@@ -1060,7 +1061,7 @@ declare module "sap/ca/ui/charts/BarListItem" {
1060
1061
  *
1061
1062
  * The display list item consists of a label and a value.
1062
1063
  */
1063
- class BarListItem extends ListItemBase {
1064
+ export default class BarListItem extends ListItemBase {
1064
1065
  /**
1065
1066
  * Constructor for a new charts/BarListItem.
1066
1067
  *
@@ -1191,7 +1192,6 @@ declare module "sap/ca/ui/charts/BarListItem" {
1191
1192
  sValue?: string
1192
1193
  ): this;
1193
1194
  }
1194
- export default BarListItem;
1195
1195
 
1196
1196
  export interface $BarListItemSettings extends $ListItemBaseSettings {
1197
1197
  /**
@@ -1231,7 +1231,7 @@ declare module "sap/ca/ui/charts/BubbleChart" {
1231
1231
  *
1232
1232
  * Bubble chart.
1233
1233
  */
1234
- class BubbleChart extends Chart {
1234
+ export default class BubbleChart extends Chart {
1235
1235
  /**
1236
1236
  * Constructor for a new charts/BubbleChart.
1237
1237
  *
@@ -1981,7 +1981,6 @@ declare module "sap/ca/ui/charts/BubbleChart" {
1981
1981
  sYAxisTitle?: string
1982
1982
  ): this;
1983
1983
  }
1984
- export default BubbleChart;
1985
1984
 
1986
1985
  export interface $BubbleChartSettings extends $ChartSettings {
1987
1986
  /**
@@ -2154,7 +2153,7 @@ declare module "sap/ca/ui/charts/Chart" {
2154
2153
  * container - Common color palette - Minimum bar / dot / blip ... size - Integration with ChartToolbar
2155
2154
  * and ChartPopover
2156
2155
  */
2157
- class Chart extends Control {
2156
+ export default class Chart extends Control {
2158
2157
  /**
2159
2158
  * Constructor for a new charts/Chart.
2160
2159
  *
@@ -2457,7 +2456,7 @@ declare module "sap/ca/ui/charts/Chart" {
2457
2456
  oListener?: object
2458
2457
  ): this;
2459
2458
  /**
2460
- * @PROTECTED - DO NOT USE IN APPLICATIONS (only for related classes in the framework)
2459
+ * @ui5-protected Do not call from applications (only from related classes in the framework)
2461
2460
  *
2462
2461
  * Fires event {@link #event:popoverAfterOpen popoverAfterOpen} to attached listeners.
2463
2462
  *
@@ -2470,7 +2469,7 @@ declare module "sap/ca/ui/charts/Chart" {
2470
2469
  mParameters?: object
2471
2470
  ): this;
2472
2471
  /**
2473
- * @PROTECTED - DO NOT USE IN APPLICATIONS (only for related classes in the framework)
2472
+ * @ui5-protected Do not call from applications (only from related classes in the framework)
2474
2473
  *
2475
2474
  * Fires event {@link #event:popoverBeforeOpen popoverBeforeOpen} to attached listeners.
2476
2475
  *
@@ -2483,7 +2482,7 @@ declare module "sap/ca/ui/charts/Chart" {
2483
2482
  mParameters?: object
2484
2483
  ): this;
2485
2484
  /**
2486
- * @PROTECTED - DO NOT USE IN APPLICATIONS (only for related classes in the framework)
2485
+ * @ui5-protected Do not call from applications (only from related classes in the framework)
2487
2486
  *
2488
2487
  * Fires event {@link #event:selectDataPoint selectDataPoint} to attached listeners.
2489
2488
  *
@@ -3360,7 +3359,6 @@ declare module "sap/ca/ui/charts/Chart" {
3360
3359
  formatter: object
3361
3360
  ): Chart;
3362
3361
  }
3363
- export default Chart;
3364
3362
 
3365
3363
  export interface $ChartSettings extends $ControlSettings {
3366
3364
  /**
@@ -3544,11 +3542,17 @@ declare module "sap/ca/ui/charts/Chart" {
3544
3542
  popoverAfterOpen?: (oEvent: Event) => void;
3545
3543
  }
3546
3544
 
3547
- export interface $ChartPopoverAfterOpenEventParameters {}
3545
+ export interface Chart$PopoverAfterOpenEventParameters {}
3548
3546
 
3549
- export interface $ChartPopoverBeforeOpenEventParameters {}
3547
+ export type Chart$PopoverAfterOpenEvent = Event<Chart$PopoverAfterOpenEventParameters>;
3550
3548
 
3551
- export interface $ChartSelectDataPointEventParameters {}
3549
+ export interface Chart$PopoverBeforeOpenEventParameters {}
3550
+
3551
+ export type Chart$PopoverBeforeOpenEvent = Event<Chart$PopoverBeforeOpenEventParameters>;
3552
+
3553
+ export interface Chart$SelectDataPointEventParameters {}
3554
+
3555
+ export type Chart$SelectDataPointEvent = Event<Chart$SelectDataPointEventParameters>;
3552
3556
  }
3553
3557
 
3554
3558
  declare module "sap/ca/ui/charts/ChartToolBar" {
@@ -3578,7 +3582,7 @@ declare module "sap/ca/ui/charts/ChartToolBar" {
3578
3582
  * ToolBar used for displaying one chart amongst several and provide additional features: - 2 select boxes
3579
3583
  * for selecting dimensions - fullscreen toggle - personalization icon - showLegend toggle
3580
3584
  */
3581
- class ChartToolBar extends Control {
3585
+ export default class ChartToolBar extends Control {
3582
3586
  /**
3583
3587
  * Constructor for a new charts/ChartToolBar.
3584
3588
  *
@@ -3862,7 +3866,7 @@ declare module "sap/ca/ui/charts/ChartToolBar" {
3862
3866
  oListener?: object
3863
3867
  ): this;
3864
3868
  /**
3865
- * @PROTECTED - DO NOT USE IN APPLICATIONS (only for related classes in the framework)
3869
+ * @ui5-protected Do not call from applications (only from related classes in the framework)
3866
3870
  *
3867
3871
  * Fires event {@link #event:firstDimensionKeySelected firstDimensionKeySelected} to attached listeners.
3868
3872
  *
@@ -3875,7 +3879,7 @@ declare module "sap/ca/ui/charts/ChartToolBar" {
3875
3879
  mParameters?: object
3876
3880
  ): this;
3877
3881
  /**
3878
- * @PROTECTED - DO NOT USE IN APPLICATIONS (only for related classes in the framework)
3882
+ * @ui5-protected Do not call from applications (only from related classes in the framework)
3879
3883
  *
3880
3884
  * Fires event {@link #event:personalizationPressed personalizationPressed} to attached listeners.
3881
3885
  *
@@ -3888,7 +3892,7 @@ declare module "sap/ca/ui/charts/ChartToolBar" {
3888
3892
  mParameters?: object
3889
3893
  ): this;
3890
3894
  /**
3891
- * @PROTECTED - DO NOT USE IN APPLICATIONS (only for related classes in the framework)
3895
+ * @ui5-protected Do not call from applications (only from related classes in the framework)
3892
3896
  *
3893
3897
  * Fires event {@link #event:secondDimensionKeySelected secondDimensionKeySelected} to attached listeners.
3894
3898
  *
@@ -4323,7 +4327,6 @@ declare module "sap/ca/ui/charts/ChartToolBar" {
4323
4327
  oToolBar: Bar
4324
4328
  ): this;
4325
4329
  }
4326
- export default ChartToolBar;
4327
4330
 
4328
4331
  export interface $ChartToolBarSettings extends $ControlSettings {
4329
4332
  /**
@@ -4427,11 +4430,17 @@ declare module "sap/ca/ui/charts/ChartToolBar" {
4427
4430
  secondDimensionKeySelected?: (oEvent: Event) => void;
4428
4431
  }
4429
4432
 
4430
- export interface $ChartToolBarFirstDimensionKeySelectedEventParameters {}
4433
+ export interface ChartToolBar$FirstDimensionKeySelectedEventParameters {}
4434
+
4435
+ export type ChartToolBar$FirstDimensionKeySelectedEvent = Event<ChartToolBar$FirstDimensionKeySelectedEventParameters>;
4431
4436
 
4432
- export interface $ChartToolBarPersonalizationPressedEventParameters {}
4437
+ export interface ChartToolBar$PersonalizationPressedEventParameters {}
4433
4438
 
4434
- export interface $ChartToolBarSecondDimensionKeySelectedEventParameters {}
4439
+ export type ChartToolBar$PersonalizationPressedEvent = Event<ChartToolBar$PersonalizationPressedEventParameters>;
4440
+
4441
+ export interface ChartToolBar$SecondDimensionKeySelectedEventParameters {}
4442
+
4443
+ export type ChartToolBar$SecondDimensionKeySelectedEvent = Event<ChartToolBar$SecondDimensionKeySelectedEventParameters>;
4435
4444
  }
4436
4445
 
4437
4446
  declare module "sap/ca/ui/charts/ChartType" {
@@ -4526,7 +4535,7 @@ declare module "sap/ca/ui/charts/ClusterListItem" {
4526
4535
  *
4527
4536
  * The cluster list item consists of a title and items.
4528
4537
  */
4529
- class ClusterListItem extends ListItemBase {
4538
+ export default class ClusterListItem extends ListItemBase {
4530
4539
  /**
4531
4540
  * Constructor for a new charts/ClusterListItem.
4532
4541
  *
@@ -4634,7 +4643,6 @@ declare module "sap/ca/ui/charts/ClusterListItem" {
4634
4643
  sTitle?: string
4635
4644
  ): this;
4636
4645
  }
4637
- export default ClusterListItem;
4638
4646
 
4639
4647
  export interface $ClusterListItemSettings extends $ListItemBaseSettings {
4640
4648
  /**
@@ -4666,7 +4674,7 @@ declare module "sap/ca/ui/charts/CombinedChart" {
4666
4674
  *
4667
4675
  * Allows you to create a chart using vertical bars and lines to represent the data
4668
4676
  */
4669
- class CombinedChart extends Chart {
4677
+ export default class CombinedChart extends Chart {
4670
4678
  /**
4671
4679
  * Constructor for a new charts/CombinedChart.
4672
4680
  *
@@ -4820,7 +4828,6 @@ declare module "sap/ca/ui/charts/CombinedChart" {
4820
4828
  oSecondAxis?: any
4821
4829
  ): this;
4822
4830
  }
4823
- export default CombinedChart;
4824
4831
 
4825
4832
  export interface $CombinedChartSettings extends $ChartSettings {
4826
4833
  /**
@@ -4866,7 +4873,7 @@ declare module "sap/ca/ui/charts/HorizontalBarChart" {
4866
4873
  *
4867
4874
  * Allows you to create a chart using horizontal bars to represent the data
4868
4875
  */
4869
- class HorizontalBarChart extends Chart {
4876
+ export default class HorizontalBarChart extends Chart {
4870
4877
  /**
4871
4878
  * Constructor for a new charts/HorizontalBarChart.
4872
4879
  *
@@ -5086,7 +5093,6 @@ declare module "sap/ca/ui/charts/HorizontalBarChart" {
5086
5093
  oVerticalArea: VBox
5087
5094
  ): this;
5088
5095
  }
5089
- export default HorizontalBarChart;
5090
5096
 
5091
5097
  export interface $HorizontalBarChartSettings extends $ChartSettings {
5092
5098
  /**
@@ -5137,7 +5143,7 @@ declare module "sap/ca/ui/charts/LineChart" {
5137
5143
  import { PropertyBindingInfo } from "sap/ui/base/ManagedObject";
5138
5144
 
5139
5145
  /**
5140
- * @SINCE 1.0.0
5146
+ * @since 1.0.0
5141
5147
  * @deprecated (since 1.24) - Sap.ca charts have been replaced with sap.viz and vizFrame in 1.24. The UI5
5142
5148
  * control "sap.viz.ui5.controls.VizFrame" serves as a single point of entry for all the new charts. Now
5143
5149
  * that 1.24 is available you are asked to use sap.viz charts and the VizFrame instead! This control will
@@ -5145,7 +5151,7 @@ declare module "sap/ca/ui/charts/LineChart" {
5145
5151
  *
5146
5152
  * Line Chart for the Fiori Project
5147
5153
  */
5148
- class LineChart extends Chart {
5154
+ export default class LineChart extends Chart {
5149
5155
  /**
5150
5156
  * Constructor for a new charts/LineChart.
5151
5157
  *
@@ -5287,7 +5293,7 @@ declare module "sap/ca/ui/charts/LineChart" {
5287
5293
  ): this;
5288
5294
  /**
5289
5295
  * @deprecated (since 1.0.0) - Do not use as it will be removed in a future release.
5290
- * @PROTECTED - DO NOT USE IN APPLICATIONS (only for related classes in the framework)
5296
+ * @ui5-protected Do not call from applications (only from related classes in the framework)
5291
5297
  *
5292
5298
  * Fires event {@link #event:onDetailsSelected onDetailsSelected} to attached listeners.
5293
5299
  *
@@ -5730,7 +5736,6 @@ declare module "sap/ca/ui/charts/LineChart" {
5730
5736
  oVertical: VBox
5731
5737
  ): this;
5732
5738
  }
5733
- export default LineChart;
5734
5739
 
5735
5740
  export interface $LineChartSettings extends $ChartSettings {
5736
5741
  /**
@@ -5854,7 +5859,9 @@ declare module "sap/ca/ui/charts/LineChart" {
5854
5859
  onDetailsSelected?: (oEvent: Event) => void;
5855
5860
  }
5856
5861
 
5857
- export interface $LineChartOnDetailsSelectedEventParameters {}
5862
+ export interface LineChart$OnDetailsSelectedEventParameters {}
5863
+
5864
+ export type LineChart$OnDetailsSelectedEvent = Event<LineChart$OnDetailsSelectedEventParameters>;
5858
5865
  }
5859
5866
 
5860
5867
  declare module "sap/ca/ui/charts/StackedHorizontalBarChart" {
@@ -5880,7 +5887,7 @@ declare module "sap/ca/ui/charts/StackedHorizontalBarChart" {
5880
5887
  * Stacked Horizontal Bar Chart wrapper around the viz StackedBarChart / MultipleStackedBarChart. To be
5881
5888
  * used in conjunction with the chart toolbar.
5882
5889
  */
5883
- class StackedHorizontalBarChart extends Chart {
5890
+ export default class StackedHorizontalBarChart extends Chart {
5884
5891
  /**
5885
5892
  * Constructor for a new charts/StackedHorizontalBarChart.
5886
5893
  *
@@ -6125,7 +6132,6 @@ declare module "sap/ca/ui/charts/StackedHorizontalBarChart" {
6125
6132
  sType?: string
6126
6133
  ): this;
6127
6134
  }
6128
- export default StackedHorizontalBarChart;
6129
6135
 
6130
6136
  export interface $StackedHorizontalBarChartSettings extends $ChartSettings {
6131
6137
  /**
@@ -6181,7 +6187,7 @@ declare module "sap/ca/ui/charts/StackedVerticalColumnChart" {
6181
6187
  * Stacked Vertical Column Chart wrapper around the viz StackedColumnChart / MultipleStackedColumnChart.
6182
6188
  * To be used in conjunction with the chart toolbar.
6183
6189
  */
6184
- class StackedVerticalColumnChart extends Chart {
6190
+ export default class StackedVerticalColumnChart extends Chart {
6185
6191
  /**
6186
6192
  * Constructor for a new charts/StackedVerticalColumnChart.
6187
6193
  *
@@ -6432,7 +6438,6 @@ declare module "sap/ca/ui/charts/StackedVerticalColumnChart" {
6432
6438
  sType?: string
6433
6439
  ): this;
6434
6440
  }
6435
- export default StackedVerticalColumnChart;
6436
6441
 
6437
6442
  export interface $StackedVerticalColumnChartSettings extends $ChartSettings {
6438
6443
  /**
@@ -6494,7 +6499,7 @@ declare module "sap/ca/ui/charts/VerticalBarChart" {
6494
6499
  *
6495
6500
  * Allows you to create a chart using vertical bars to represent the data
6496
6501
  */
6497
- class VerticalBarChart extends Chart {
6502
+ export default class VerticalBarChart extends Chart {
6498
6503
  /**
6499
6504
  * Constructor for a new charts/VerticalBarChart.
6500
6505
  *
@@ -6805,7 +6810,6 @@ declare module "sap/ca/ui/charts/VerticalBarChart" {
6805
6810
  oVerticalBarChart: Column
6806
6811
  ): this;
6807
6812
  }
6808
- export default VerticalBarChart;
6809
6813
 
6810
6814
  export interface $VerticalBarChartSettings extends $ChartSettings {
6811
6815
  /**
@@ -6877,7 +6881,7 @@ declare module "sap/ca/ui/CustomerContext" {
6877
6881
  * When opening the dialog in "select" mode, if a customer has been persisted in a previous session, it
6878
6882
  * will be retrieved and the dialog won't open at all.
6879
6883
  */
6880
- class CustomerContext extends Control {
6884
+ export default class CustomerContext extends Control {
6881
6885
  /**
6882
6886
  * Constructor for a new CustomerContext.
6883
6887
  *
@@ -7010,7 +7014,7 @@ declare module "sap/ca/ui/CustomerContext" {
7010
7014
  oListener?: object
7011
7015
  ): this;
7012
7016
  /**
7013
- * @PROTECTED - DO NOT USE IN APPLICATIONS (only for related classes in the framework)
7017
+ * @ui5-protected Do not call from applications (only from related classes in the framework)
7014
7018
  *
7015
7019
  * Fires event {@link #event:customerSelected customerSelected} to attached listeners.
7016
7020
  *
@@ -7274,7 +7278,6 @@ declare module "sap/ca/ui/CustomerContext" {
7274
7278
  bShowSalesArea?: boolean
7275
7279
  ): this;
7276
7280
  }
7277
- export default CustomerContext;
7278
7281
 
7279
7282
  export interface $CustomerContextSettings extends $ControlSettings {
7280
7283
  /**
@@ -7329,7 +7332,9 @@ declare module "sap/ca/ui/CustomerContext" {
7329
7332
  customerSelected?: (oEvent: Event) => void;
7330
7333
  }
7331
7334
 
7332
- export interface $CustomerContextCustomerSelectedEventParameters {}
7335
+ export interface CustomerContext$CustomerSelectedEventParameters {}
7336
+
7337
+ export type CustomerContext$CustomerSelectedEvent = Event<CustomerContext$CustomerSelectedEventParameters>;
7333
7338
  }
7334
7339
 
7335
7340
  declare module "sap/ca/ui/CustomerControlListItem" {
@@ -7348,7 +7353,7 @@ declare module "sap/ca/ui/CustomerControlListItem" {
7348
7353
  *
7349
7354
  * Extends the ObjectListItem to display a line in the customer context control.
7350
7355
  */
7351
- class CustomerControlListItem extends CustomListItem {
7356
+ export default class CustomerControlListItem extends CustomListItem {
7352
7357
  /**
7353
7358
  * Constructor for a new CustomerControlListItem.
7354
7359
  *
@@ -7572,7 +7577,6 @@ declare module "sap/ca/ui/CustomerControlListItem" {
7572
7577
  bShowSalesArea?: boolean
7573
7578
  ): this;
7574
7579
  }
7575
- export default CustomerControlListItem;
7576
7580
 
7577
7581
  export interface $CustomerControlListItemSettings
7578
7582
  extends $CustomListItemSettings {
@@ -7622,7 +7626,7 @@ declare module "sap/ca/ui/DatePicker" {
7622
7626
  * Allows end users to interact with dates. Entries can directly be written in, or selected from a calendar
7623
7627
  * pad.
7624
7628
  */
7625
- class DatePicker extends InputBase {
7629
+ export default class DatePicker extends InputBase {
7626
7630
  /**
7627
7631
  * Constructor for a new DatePicker.
7628
7632
  *
@@ -7740,7 +7744,6 @@ declare module "sap/ca/ui/DatePicker" {
7740
7744
  iFirstDayOffset?: int
7741
7745
  ): this;
7742
7746
  }
7743
- export default DatePicker;
7744
7747
 
7745
7748
  export interface $DatePickerSettings extends $InputBaseSettings {
7746
7749
  /**
@@ -7773,7 +7776,7 @@ declare module "sap/ca/ui/ExpansibleFeedListItem" {
7773
7776
  * Extends the FeedListItem to hide text when it is longer than maxLines. When text is hidden a See more
7774
7777
  * link is displayed, clicking on the link displays the entire text.
7775
7778
  */
7776
- class ExpansibleFeedListItem extends FeedListItem {
7779
+ export default class ExpansibleFeedListItem extends FeedListItem {
7777
7780
  /**
7778
7781
  * Constructor for a new ExpansibleFeedListItem.
7779
7782
  *
@@ -7862,7 +7865,6 @@ declare module "sap/ca/ui/ExpansibleFeedListItem" {
7862
7865
  iMaxLines?: int
7863
7866
  ): this;
7864
7867
  }
7865
- export default ExpansibleFeedListItem;
7866
7868
 
7867
7869
  export interface $ExpansibleFeedListItemSettings
7868
7870
  extends $FeedListItemSettings {
@@ -7892,7 +7894,7 @@ declare module "sap/ca/ui/FileUpload" {
7892
7894
  *
7893
7895
  * Allows you to display a list of uploaded files. You can also upload a new one, rename or delete them
7894
7896
  */
7895
- class FileUpload extends Control {
7897
+ export default class FileUpload extends Control {
7896
7898
  /**
7897
7899
  * Constructor for a new FileUpload.
7898
7900
  *
@@ -8446,7 +8448,7 @@ declare module "sap/ca/ui/FileUpload" {
8446
8448
  oListener?: object
8447
8449
  ): this;
8448
8450
  /**
8449
- * @PROTECTED - DO NOT USE IN APPLICATIONS (only for related classes in the framework)
8451
+ * @ui5-protected Do not call from applications (only from related classes in the framework)
8450
8452
  *
8451
8453
  * Fires event {@link #event:beforeUploadFile beforeUploadFile} to attached listeners.
8452
8454
  *
@@ -8460,7 +8462,7 @@ declare module "sap/ca/ui/FileUpload" {
8460
8462
  ): this;
8461
8463
  /**
8462
8464
  * @deprecated (since 1.21.1) - This method is deprecated now
8463
- * @PROTECTED - DO NOT USE IN APPLICATIONS (only for related classes in the framework)
8465
+ * @ui5-protected Do not call from applications (only from related classes in the framework)
8464
8466
  *
8465
8467
  * Fires event {@link #event:cancelClicked cancelClicked} to attached listeners.
8466
8468
  *
@@ -8473,7 +8475,7 @@ declare module "sap/ca/ui/FileUpload" {
8473
8475
  mParameters?: object
8474
8476
  ): this;
8475
8477
  /**
8476
- * @PROTECTED - DO NOT USE IN APPLICATIONS (only for related classes in the framework)
8478
+ * @ui5-protected Do not call from applications (only from related classes in the framework)
8477
8479
  *
8478
8480
  * Fires event {@link #event:deleteFile deleteFile} to attached listeners.
8479
8481
  *
@@ -8486,7 +8488,7 @@ declare module "sap/ca/ui/FileUpload" {
8486
8488
  mParameters?: object
8487
8489
  ): this;
8488
8490
  /**
8489
- * @PROTECTED - DO NOT USE IN APPLICATIONS (only for related classes in the framework)
8491
+ * @ui5-protected Do not call from applications (only from related classes in the framework)
8490
8492
  *
8491
8493
  * Fires event {@link #event:fileUploadFailed fileUploadFailed} to attached listeners.
8492
8494
  *
@@ -8499,7 +8501,7 @@ declare module "sap/ca/ui/FileUpload" {
8499
8501
  mParameters?: object
8500
8502
  ): this;
8501
8503
  /**
8502
- * @PROTECTED - DO NOT USE IN APPLICATIONS (only for related classes in the framework)
8504
+ * @ui5-protected Do not call from applications (only from related classes in the framework)
8503
8505
  *
8504
8506
  * Fires event {@link #event:renameFile renameFile} to attached listeners.
8505
8507
  *
@@ -8514,7 +8516,7 @@ declare module "sap/ca/ui/FileUpload" {
8514
8516
  /**
8515
8517
  * @deprecated (since 1.21.1) - This method is deprecated now. The rename or delete event is enough and
8516
8518
  * should be use to commit the action immediatly
8517
- * @PROTECTED - DO NOT USE IN APPLICATIONS (only for related classes in the framework)
8519
+ * @ui5-protected Do not call from applications (only from related classes in the framework)
8518
8520
  *
8519
8521
  * Fires event {@link #event:saveClicked saveClicked} to attached listeners.
8520
8522
  *
@@ -8527,7 +8529,7 @@ declare module "sap/ca/ui/FileUpload" {
8527
8529
  mParameters?: object
8528
8530
  ): this;
8529
8531
  /**
8530
- * @PROTECTED - DO NOT USE IN APPLICATIONS (only for related classes in the framework)
8532
+ * @ui5-protected Do not call from applications (only from related classes in the framework)
8531
8533
  *
8532
8534
  * Fires event {@link #event:uploadFile uploadFile} to attached listeners.
8533
8535
  *
@@ -8951,7 +8953,6 @@ declare module "sap/ca/ui/FileUpload" {
8951
8953
  sXsrfToken?: string
8952
8954
  ): this;
8953
8955
  }
8954
- export default FileUpload;
8955
8956
 
8956
8957
  export interface $FileUploadSettings extends $ControlSettings {
8957
8958
  /**
@@ -9151,19 +9152,33 @@ declare module "sap/ca/ui/FileUpload" {
9151
9152
  cancelClicked?: (oEvent: Event) => void;
9152
9153
  }
9153
9154
 
9154
- export interface $FileUploadBeforeUploadFileEventParameters {}
9155
+ export interface FileUpload$BeforeUploadFileEventParameters {}
9156
+
9157
+ export type FileUpload$BeforeUploadFileEvent = Event<FileUpload$BeforeUploadFileEventParameters>;
9158
+
9159
+ export interface FileUpload$CancelClickedEventParameters {}
9160
+
9161
+ export type FileUpload$CancelClickedEvent = Event<FileUpload$CancelClickedEventParameters>;
9162
+
9163
+ export interface FileUpload$DeleteFileEventParameters {}
9155
9164
 
9156
- export interface $FileUploadCancelClickedEventParameters {}
9165
+ export type FileUpload$DeleteFileEvent = Event<FileUpload$DeleteFileEventParameters>;
9157
9166
 
9158
- export interface $FileUploadDeleteFileEventParameters {}
9167
+ export interface FileUpload$FileUploadFailedEventParameters {}
9159
9168
 
9160
- export interface $FileUploadFileUploadFailedEventParameters {}
9169
+ export type FileUpload$FileUploadFailedEvent = Event<FileUpload$FileUploadFailedEventParameters>;
9161
9170
 
9162
- export interface $FileUploadRenameFileEventParameters {}
9171
+ export interface FileUpload$RenameFileEventParameters {}
9163
9172
 
9164
- export interface $FileUploadSaveClickedEventParameters {}
9173
+ export type FileUpload$RenameFileEvent = Event<FileUpload$RenameFileEventParameters>;
9165
9174
 
9166
- export interface $FileUploadUploadFileEventParameters {}
9175
+ export interface FileUpload$SaveClickedEventParameters {}
9176
+
9177
+ export type FileUpload$SaveClickedEvent = Event<FileUpload$SaveClickedEventParameters>;
9178
+
9179
+ export interface FileUpload$UploadFileEventParameters {}
9180
+
9181
+ export type FileUpload$UploadFileEvent = Event<FileUpload$UploadFileEventParameters>;
9167
9182
  }
9168
9183
 
9169
9184
  declare module "sap/ca/ui/GrowingTileContainer" {
@@ -9182,7 +9197,7 @@ declare module "sap/ca/ui/GrowingTileContainer" {
9182
9197
  *
9183
9198
  * A Tile container for the Overview tile with growing capabilities
9184
9199
  */
9185
- class GrowingTileContainer extends ScrollContainer {
9200
+ export default class GrowingTileContainer extends ScrollContainer {
9186
9201
  /**
9187
9202
  * Constructor for a new GrowingTileContainer.
9188
9203
  *
@@ -9325,7 +9340,6 @@ declare module "sap/ca/ui/GrowingTileContainer" {
9325
9340
  iGrowingThreshold?: int
9326
9341
  ): this;
9327
9342
  }
9328
- export default GrowingTileContainer;
9329
9343
 
9330
9344
  export interface $GrowingTileContainerSettings
9331
9345
  extends $ScrollContainerSettings {
@@ -9363,7 +9377,7 @@ declare module "sap/ca/ui/HierarchicalSelectDialog" {
9363
9377
  *
9364
9378
  * Select an item in a dialog from a hierarchical list
9365
9379
  */
9366
- class HierarchicalSelectDialog extends Dialog {
9380
+ export default class HierarchicalSelectDialog extends Dialog {
9367
9381
  /**
9368
9382
  * Constructor for a new HierarchicalSelectDialog.
9369
9383
  *
@@ -9570,7 +9584,7 @@ declare module "sap/ca/ui/HierarchicalSelectDialog" {
9570
9584
  oListener?: object
9571
9585
  ): this;
9572
9586
  /**
9573
- * @PROTECTED - DO NOT USE IN APPLICATIONS (only for related classes in the framework)
9587
+ * @ui5-protected Do not call from applications (only from related classes in the framework)
9574
9588
  *
9575
9589
  * Fires event {@link #event:cancel cancel} to attached listeners.
9576
9590
  *
@@ -9583,7 +9597,7 @@ declare module "sap/ca/ui/HierarchicalSelectDialog" {
9583
9597
  mParameters?: object
9584
9598
  ): this;
9585
9599
  /**
9586
- * @PROTECTED - DO NOT USE IN APPLICATIONS (only for related classes in the framework)
9600
+ * @ui5-protected Do not call from applications (only from related classes in the framework)
9587
9601
  *
9588
9602
  * Fires event {@link #event:select select} to attached listeners.
9589
9603
  *
@@ -9634,7 +9648,6 @@ declare module "sap/ca/ui/HierarchicalSelectDialog" {
9634
9648
  vItem: int | string | HierarchicalSelectDialogItem
9635
9649
  ): HierarchicalSelectDialogItem | null;
9636
9650
  }
9637
- export default HierarchicalSelectDialog;
9638
9651
 
9639
9652
  export interface $HierarchicalSelectDialogSettings extends $DialogSettings {
9640
9653
  /**
@@ -9658,9 +9671,13 @@ declare module "sap/ca/ui/HierarchicalSelectDialog" {
9658
9671
  cancel?: (oEvent: Event) => void;
9659
9672
  }
9660
9673
 
9661
- export interface $HierarchicalSelectDialogCancelEventParameters {}
9674
+ export interface HierarchicalSelectDialog$CancelEventParameters {}
9675
+
9676
+ export type HierarchicalSelectDialog$CancelEvent = Event<HierarchicalSelectDialog$CancelEventParameters>;
9662
9677
 
9663
- export interface $HierarchicalSelectDialogSelectEventParameters {}
9678
+ export interface HierarchicalSelectDialog$SelectEventParameters {}
9679
+
9680
+ export type HierarchicalSelectDialog$SelectEvent = Event<HierarchicalSelectDialog$SelectEventParameters>;
9664
9681
  }
9665
9682
 
9666
9683
  declare module "sap/ca/ui/HierarchicalSelectDialogItem" {
@@ -9679,7 +9696,7 @@ declare module "sap/ca/ui/HierarchicalSelectDialogItem" {
9679
9696
  * Kind of item required by the sap.ca.ui.HierarchicalSelectDialog control. An item is actually one page
9680
9697
  * of the Dialog.
9681
9698
  */
9682
- class HierarchicalSelectDialogItem extends Item {
9699
+ export default class HierarchicalSelectDialogItem extends Item {
9683
9700
  /**
9684
9701
  * Constructor for a new HierarchicalSelectDialogItem.
9685
9702
  *
@@ -9810,7 +9827,6 @@ declare module "sap/ca/ui/HierarchicalSelectDialogItem" {
9810
9827
  sTitle?: string
9811
9828
  ): this;
9812
9829
  }
9813
- export default HierarchicalSelectDialogItem;
9814
9830
 
9815
9831
  export interface $HierarchicalSelectDialogItemSettings extends $ItemSettings {
9816
9832
  /**
@@ -9850,7 +9866,7 @@ declare module "sap/ca/ui/Hierarchy" {
9850
9866
  * data. The emphasized item shows the one item to display. Optional item can be hidden using the hideOptionalLevels
9851
9867
  * property. Hidden items will stay accessible with an expand button.
9852
9868
  */
9853
- class Hierarchy extends Control {
9869
+ export default class Hierarchy extends Control {
9854
9870
  /**
9855
9871
  * Constructor for a new Hierarchy.
9856
9872
  *
@@ -10030,7 +10046,6 @@ declare module "sap/ca/ui/Hierarchy" {
10030
10046
  */
10031
10047
  unbindItems(): this;
10032
10048
  }
10033
- export default Hierarchy;
10034
10049
 
10035
10050
  export interface $HierarchySettings extends $ControlSettings {
10036
10051
  /**
@@ -10068,7 +10083,7 @@ declare module "sap/ca/ui/HierarchyItem" {
10068
10083
  * that we want to represent in his hierarchy. Optionals item will be hidden if the option is true on the
10069
10084
  * Hierarchy control.
10070
10085
  */
10071
- class HierarchyItem extends Control {
10086
+ export default class HierarchyItem extends Control {
10072
10087
  /**
10073
10088
  * Constructor for a new HierarchyItem.
10074
10089
  *
@@ -10192,7 +10207,7 @@ declare module "sap/ca/ui/HierarchyItem" {
10192
10207
  oListener?: object
10193
10208
  ): this;
10194
10209
  /**
10195
- * @PROTECTED - DO NOT USE IN APPLICATIONS (only for related classes in the framework)
10210
+ * @ui5-protected Do not call from applications (only from related classes in the framework)
10196
10211
  *
10197
10212
  * Fires event {@link #event:linkPress linkPress} to attached listeners.
10198
10213
  *
@@ -10374,7 +10389,6 @@ declare module "sap/ca/ui/HierarchyItem" {
10374
10389
  sTitle?: string
10375
10390
  ): this;
10376
10391
  }
10377
- export default HierarchyItem;
10378
10392
 
10379
10393
  export interface $HierarchyItemSettings extends $ControlSettings {
10380
10394
  /**
@@ -10418,14 +10432,14 @@ declare module "sap/ca/ui/HierarchyItem" {
10418
10432
  linkPress?: (oEvent: Event) => void;
10419
10433
  }
10420
10434
 
10421
- export interface $HierarchyItemLinkPressEventParameters {}
10435
+ export interface HierarchyItem$LinkPressEventParameters {}
10436
+
10437
+ export type HierarchyItem$LinkPressEvent = Event<HierarchyItem$LinkPressEventParameters>;
10422
10438
  }
10423
10439
 
10424
10440
  declare module "sap/ca/ui/InPlaceEdit" {
10425
10441
  import { default as Control, $ControlSettings } from "sap/ui/core/Control";
10426
10442
 
10427
- import Event from "sap/ui/base/Event";
10428
-
10429
10443
  import ElementMetadata from "sap/ui/core/ElementMetadata";
10430
10444
 
10431
10445
  import TooltipBase from "sap/ui/core/TooltipBase";
@@ -10434,6 +10448,8 @@ declare module "sap/ca/ui/InPlaceEdit" {
10434
10448
 
10435
10449
  import { PropertyBindingInfo } from "sap/ui/base/ManagedObject";
10436
10450
 
10451
+ import Event from "sap/ui/base/Event";
10452
+
10437
10453
  /**
10438
10454
  * @deprecated (since 1.22) - This control is not required anymore as per central UX requirements. Please
10439
10455
  * use sap.m.Input instead! This control will not be supported anymore.
@@ -10441,7 +10457,7 @@ declare module "sap/ca/ui/InPlaceEdit" {
10441
10457
  * This control is used to switch between readonly and edit modes. A typical use case would be to change
10442
10458
  * the value of a Label.
10443
10459
  */
10444
- class InPlaceEdit extends Control {
10460
+ export default class InPlaceEdit extends Control {
10445
10461
  /**
10446
10462
  * Constructor for a new InPlaceEdit.
10447
10463
  *
@@ -10522,7 +10538,7 @@ declare module "sap/ca/ui/InPlaceEdit" {
10522
10538
  /**
10523
10539
  * The function to be called when the event occurs
10524
10540
  */
10525
- fnFunction: (p1: Event<$InPlaceEditChangeEventParameters>) => void,
10541
+ fnFunction: (p1: InPlaceEdit$ChangeEvent) => void,
10526
10542
  /**
10527
10543
  * Context object to call the event handler with. Defaults to this `sap.ca.ui.InPlaceEdit` itself
10528
10544
  */
@@ -10543,7 +10559,7 @@ declare module "sap/ca/ui/InPlaceEdit" {
10543
10559
  /**
10544
10560
  * The function to be called when the event occurs
10545
10561
  */
10546
- fnFunction: (p1: Event<$InPlaceEditChangeEventParameters>) => void,
10562
+ fnFunction: (p1: InPlaceEdit$ChangeEvent) => void,
10547
10563
  /**
10548
10564
  * Context object to call the event handler with. Defaults to this `sap.ca.ui.InPlaceEdit` itself
10549
10565
  */
@@ -10571,14 +10587,14 @@ declare module "sap/ca/ui/InPlaceEdit" {
10571
10587
  /**
10572
10588
  * The function to be called, when the event occurs
10573
10589
  */
10574
- fnFunction: (p1: Event<$InPlaceEditChangeEventParameters>) => void,
10590
+ fnFunction: (p1: InPlaceEdit$ChangeEvent) => void,
10575
10591
  /**
10576
10592
  * Context object on which the given function had to be called
10577
10593
  */
10578
10594
  oListener?: object
10579
10595
  ): this;
10580
10596
  /**
10581
- * @PROTECTED - DO NOT USE IN APPLICATIONS (only for related classes in the framework)
10597
+ * @ui5-protected Do not call from applications (only from related classes in the framework)
10582
10598
  *
10583
10599
  * Fires event {@link #event:change change} to attached listeners.
10584
10600
  *
@@ -10588,7 +10604,7 @@ declare module "sap/ca/ui/InPlaceEdit" {
10588
10604
  /**
10589
10605
  * Parameters to pass along with the event
10590
10606
  */
10591
- mParameters?: $InPlaceEditChangeEventParameters
10607
+ mParameters?: InPlaceEdit$ChangeEventParameters
10592
10608
  ): this;
10593
10609
  /**
10594
10610
  * Gets content of aggregation {@link #getContent content}.
@@ -10691,7 +10707,6 @@ declare module "sap/ca/ui/InPlaceEdit" {
10691
10707
  sValueState?: ValueState | keyof typeof ValueState
10692
10708
  ): this;
10693
10709
  }
10694
- export default InPlaceEdit;
10695
10710
 
10696
10711
  export interface $InPlaceEditSettings extends $ControlSettings {
10697
10712
  /**
@@ -10717,15 +10732,17 @@ declare module "sap/ca/ui/InPlaceEdit" {
10717
10732
  * Event is fired when the text in the field has changed AND the focus leaves the InPlaceEdit or the Enter
10718
10733
  * key is pressed.
10719
10734
  */
10720
- change?: (oEvent: Event<$InPlaceEditChangeEventParameters>) => void;
10735
+ change?: (oEvent: InPlaceEdit$ChangeEvent) => void;
10721
10736
  }
10722
10737
 
10723
- export interface $InPlaceEditChangeEventParameters {
10738
+ export interface InPlaceEdit$ChangeEventParameters {
10724
10739
  /**
10725
10740
  * The new / changed value of the InPlaceEdit.
10726
10741
  */
10727
10742
  newValue?: string;
10728
10743
  }
10744
+
10745
+ export type InPlaceEdit$ChangeEvent = Event<InPlaceEdit$ChangeEventParameters>;
10729
10746
  }
10730
10747
 
10731
10748
  declare module "sap/ca/ui/model/format/FormattingLibrary" {
@@ -10752,7 +10769,7 @@ declare module "sap/ca/ui/model/format/AmountFormat" {
10752
10769
  *
10753
10770
  * If no pattern is specified a default pattern according to the locale settings is used.
10754
10771
  */
10755
- class AmountFormat {
10772
+ export default class AmountFormat {
10756
10773
  /**
10757
10774
  * Constructor for AmountFormat - must not be used: To get a AmountFormat instance, please use getInstance.
10758
10775
  */
@@ -10888,7 +10905,6 @@ declare module "sap/ca/ui/model/format/AmountFormat" {
10888
10905
  sValue: string
10889
10906
  ): number;
10890
10907
  }
10891
- export default AmountFormat;
10892
10908
  }
10893
10909
 
10894
10910
  declare module "sap/ca/ui/model/format/DateFormat" {
@@ -10912,7 +10928,7 @@ declare module "sap/ca/ui/model/format/DateFormat" {
10912
10928
  * Supported format options are pattern based on Unicode LDML Date Format notation. If no pattern is specified
10913
10929
  * a default pattern according to the locale settings is used.
10914
10930
  */
10915
- class DateFormat {
10931
+ export default class DateFormat {
10916
10932
  /**
10917
10933
  * Constructor for DateFormat - must not be used: To get a DateFormat instance, please use getInstance,
10918
10934
  * getDateTimeInstance or getTimeInstance.
@@ -11027,7 +11043,6 @@ declare module "sap/ca/ui/model/format/DateFormat" {
11027
11043
  sValue: string
11028
11044
  ): Date;
11029
11045
  }
11030
- export default DateFormat;
11031
11046
  }
11032
11047
 
11033
11048
  declare module "sap/ca/ui/model/format/FileSizeFormat" {
@@ -11044,7 +11059,7 @@ declare module "sap/ca/ui/model/format/FileSizeFormat" {
11044
11059
  *
11045
11060
  * Simplified logic: display in kB for 1e3 <= bytes < 1e6 display in MB for 1e6 <= bytes < 1e9 ...
11046
11061
  */
11047
- class FileSizeFormat {
11062
+ export default class FileSizeFormat {
11048
11063
  /**
11049
11064
  * Constructor for FileSizeFormat - must not be used: To get a FileSizeFormat instance, please use getInstance.
11050
11065
  */
@@ -11093,7 +11108,6 @@ declare module "sap/ca/ui/model/format/FileSizeFormat" {
11093
11108
  sValue: string
11094
11109
  ): number;
11095
11110
  }
11096
- export default FileSizeFormat;
11097
11111
  }
11098
11112
 
11099
11113
  declare module "sap/ca/ui/model/format/QuantityFormat" {
@@ -11109,7 +11123,7 @@ declare module "sap/ca/ui/model/format/QuantityFormat" {
11109
11123
  *
11110
11124
  * If no pattern is specified a default pattern according to the locale settings is used.
11111
11125
  */
11112
- class QuantityFormat {
11126
+ export default class QuantityFormat {
11113
11127
  /**
11114
11128
  * Constructor for QuantityFormat - must not be used: To get a QuantityFormat instance, please use getInstance.
11115
11129
  */
@@ -11191,7 +11205,6 @@ declare module "sap/ca/ui/model/format/QuantityFormat" {
11191
11205
  sValue: string
11192
11206
  ): number;
11193
11207
  }
11194
- export default QuantityFormat;
11195
11208
  }
11196
11209
 
11197
11210
  declare module "sap/ca/ui/model/type/Date" {
@@ -11205,7 +11218,7 @@ declare module "sap/ca/ui/model/type/Date" {
11205
11218
  *
11206
11219
  * This class represents date simple types.
11207
11220
  */
11208
- class Date1 extends SimpleType {
11221
+ export default class Date1 extends SimpleType {
11209
11222
  /**
11210
11223
  * Constructor for a Date type.
11211
11224
  */
@@ -11270,11 +11283,10 @@ declare module "sap/ca/ui/model/type/Date" {
11270
11283
  */
11271
11284
  static getMetadata(): Metadata;
11272
11285
  /**
11273
- * @PROTECTED - DO NOT USE IN APPLICATIONS (only for related classes in the framework)
11286
+ * @ui5-protected Do not call from applications (only from related classes in the framework)
11274
11287
  */
11275
11288
  getOutputPattern(): void;
11276
11289
  }
11277
- export default Date1;
11278
11290
  }
11279
11291
 
11280
11292
  declare module "sap/ca/ui/model/type/DateTime" {
@@ -11288,7 +11300,7 @@ declare module "sap/ca/ui/model/type/DateTime" {
11288
11300
  *
11289
11301
  * This class represents datetime simple types.
11290
11302
  */
11291
- class DateTime extends Date1 {
11303
+ export default class DateTime extends Date1 {
11292
11304
  /**
11293
11305
  * Constructor for a DateTime type.
11294
11306
  */
@@ -11337,7 +11349,6 @@ declare module "sap/ca/ui/model/type/DateTime" {
11337
11349
  */
11338
11350
  static getMetadata(): Metadata;
11339
11351
  }
11340
- export default DateTime;
11341
11352
  }
11342
11353
 
11343
11354
  declare module "sap/ca/ui/model/type/FileSize" {
@@ -11351,7 +11362,7 @@ declare module "sap/ca/ui/model/type/FileSize" {
11351
11362
  *
11352
11363
  * This class represents file size types.
11353
11364
  */
11354
- class FileSize extends SimpleType {
11365
+ export default class FileSize extends SimpleType {
11355
11366
  /**
11356
11367
  * Constructor for a FileSize type.
11357
11368
  */
@@ -11395,7 +11406,6 @@ declare module "sap/ca/ui/model/type/FileSize" {
11395
11406
  */
11396
11407
  static getMetadata(): Metadata;
11397
11408
  }
11398
- export default FileSize;
11399
11409
  }
11400
11410
 
11401
11411
  declare module "sap/ca/ui/model/type/Number" {
@@ -11410,7 +11420,7 @@ declare module "sap/ca/ui/model/type/Number" {
11410
11420
  *
11411
11421
  * This class represents number simple types.
11412
11422
  */
11413
- class Number1 extends SimpleType {
11423
+ export default class Number1 extends SimpleType {
11414
11424
  /**
11415
11425
  * Constructor for a Number type.
11416
11426
  */
@@ -11454,7 +11464,6 @@ declare module "sap/ca/ui/model/type/Number" {
11454
11464
  */
11455
11465
  static getMetadata(): Metadata;
11456
11466
  }
11457
- export default Number1;
11458
11467
  }
11459
11468
 
11460
11469
  declare module "sap/ca/ui/model/type/Time" {
@@ -11468,7 +11477,7 @@ declare module "sap/ca/ui/model/type/Time" {
11468
11477
  *
11469
11478
  * This class represents time simple types.
11470
11479
  */
11471
- class Time extends Date1 {
11480
+ export default class Time extends Date1 {
11472
11481
  /**
11473
11482
  * Constructor for a Time type.
11474
11483
  */
@@ -11517,7 +11526,6 @@ declare module "sap/ca/ui/model/type/Time" {
11517
11526
  */
11518
11527
  static getMetadata(): Metadata;
11519
11528
  }
11520
- export default Time;
11521
11529
  }
11522
11530
 
11523
11531
  declare module "sap/ca/ui/Notes" {
@@ -11538,7 +11546,7 @@ declare module "sap/ca/ui/Notes" {
11538
11546
  * the FeedListItem or the ExpansibleFeedListItem). The developer is also responsible to implement the code
11539
11547
  * to send the notes to the backend system, by responding to the addNote event.
11540
11548
  */
11541
- class Notes extends List {
11549
+ export default class Notes extends List {
11542
11550
  /**
11543
11551
  * Constructor for a new Notes.
11544
11552
  *
@@ -11670,7 +11678,7 @@ declare module "sap/ca/ui/Notes" {
11670
11678
  oListener?: object
11671
11679
  ): this;
11672
11680
  /**
11673
- * @PROTECTED - DO NOT USE IN APPLICATIONS (only for related classes in the framework)
11681
+ * @ui5-protected Do not call from applications (only from related classes in the framework)
11674
11682
  *
11675
11683
  * Fires event {@link #event:addNote addNote} to attached listeners.
11676
11684
  *
@@ -11760,7 +11768,6 @@ declare module "sap/ca/ui/Notes" {
11760
11768
  iTextMaxLength?: int
11761
11769
  ): this;
11762
11770
  }
11763
- export default Notes;
11764
11771
 
11765
11772
  export interface $NotesSettings extends $ListSettings {
11766
11773
  /**
@@ -11788,7 +11795,9 @@ declare module "sap/ca/ui/Notes" {
11788
11795
  addNote?: (oEvent: Event) => void;
11789
11796
  }
11790
11797
 
11791
- export interface $NotesAddNoteEventParameters {}
11798
+ export interface Notes$AddNoteEventParameters {}
11799
+
11800
+ export type Notes$AddNoteEvent = Event<Notes$AddNoteEventParameters>;
11792
11801
  }
11793
11802
 
11794
11803
  declare module "sap/ca/ui/OverflowContainer" {
@@ -11810,7 +11819,7 @@ declare module "sap/ca/ui/OverflowContainer" {
11810
11819
  * The OverflowContainer allows the content of a control to be partially displayed before being fully expanded.
11811
11820
  * It will cut its content to a fixed height that can be defined. It is fully suitable within an IconTabBar.
11812
11821
  */
11813
- class OverflowContainer extends Control {
11822
+ export default class OverflowContainer extends Control {
11814
11823
  /**
11815
11824
  * Constructor for a new OverflowContainer.
11816
11825
  *
@@ -11999,7 +12008,6 @@ declare module "sap/ca/ui/OverflowContainer" {
11999
12008
  sOverflowHeight?: CSSSize
12000
12009
  ): this;
12001
12010
  }
12002
- export default OverflowContainer;
12003
12011
 
12004
12012
  export interface $OverflowContainerSettings extends $ControlSettings {
12005
12013
  /**
@@ -12037,7 +12045,7 @@ declare module "sap/ca/ui/OverviewTile" {
12037
12045
  *
12038
12046
  * Display aTile that presents an overview of a customer
12039
12047
  */
12040
- class OverviewTile extends Tile {
12048
+ export default class OverviewTile extends Tile {
12041
12049
  /**
12042
12050
  * Constructor for a new OverviewTile.
12043
12051
  *
@@ -12161,7 +12169,7 @@ declare module "sap/ca/ui/OverviewTile" {
12161
12169
  oListener?: object
12162
12170
  ): this;
12163
12171
  /**
12164
- * @PROTECTED - DO NOT USE IN APPLICATIONS (only for related classes in the framework)
12172
+ * @ui5-protected Do not call from applications (only from related classes in the framework)
12165
12173
  *
12166
12174
  * Fires event {@link #event:contactPress contactPress} to attached listeners.
12167
12175
  *
@@ -12488,7 +12496,6 @@ declare module "sap/ca/ui/OverviewTile" {
12488
12496
  sWidth?: CSSSize
12489
12497
  ): this;
12490
12498
  }
12491
- export default OverviewTile;
12492
12499
 
12493
12500
  export interface $OverviewTileSettings extends $TileSettings {
12494
12501
  /**
@@ -12557,7 +12564,9 @@ declare module "sap/ca/ui/OverviewTile" {
12557
12564
  contactPress?: (oEvent: Event) => void;
12558
12565
  }
12559
12566
 
12560
- export interface $OverviewTileContactPressEventParameters {}
12567
+ export interface OverviewTile$ContactPressEventParameters {}
12568
+
12569
+ export type OverviewTile$ContactPressEvent = Event<OverviewTile$ContactPressEventParameters>;
12561
12570
  }
12562
12571
 
12563
12572
  declare module "sap/ca/ui/PictureItem" {
@@ -12577,7 +12586,7 @@ declare module "sap/ca/ui/PictureItem" {
12577
12586
  *
12578
12587
  * A picture / photo Item for AddPicture and PictureViewer Controls
12579
12588
  */
12580
- class PictureItem extends Control {
12589
+ export default class PictureItem extends Control {
12581
12590
  /**
12582
12591
  * Constructor for a new PictureItem.
12583
12592
  *
@@ -12701,7 +12710,7 @@ declare module "sap/ca/ui/PictureItem" {
12701
12710
  oListener?: object
12702
12711
  ): this;
12703
12712
  /**
12704
- * @PROTECTED - DO NOT USE IN APPLICATIONS (only for related classes in the framework)
12713
+ * @ui5-protected Do not call from applications (only from related classes in the framework)
12705
12714
  *
12706
12715
  * Fires event {@link #event:loaded loaded} to attached listeners.
12707
12716
  *
@@ -12849,7 +12858,6 @@ declare module "sap/ca/ui/PictureItem" {
12849
12858
  sWidth?: CSSSize
12850
12859
  ): this;
12851
12860
  }
12852
- export default PictureItem;
12853
12861
 
12854
12862
  export interface $PictureItemSettings extends $ControlSettings {
12855
12863
  /**
@@ -12887,7 +12895,9 @@ declare module "sap/ca/ui/PictureItem" {
12887
12895
  loaded?: (oEvent: Event) => void;
12888
12896
  }
12889
12897
 
12890
- export interface $PictureItemLoadedEventParameters {}
12898
+ export interface PictureItem$LoadedEventParameters {}
12899
+
12900
+ export type PictureItem$LoadedEvent = Event<PictureItem$LoadedEventParameters>;
12891
12901
  }
12892
12902
 
12893
12903
  declare module "sap/ca/ui/PictureTile" {
@@ -12911,7 +12921,7 @@ declare module "sap/ca/ui/PictureTile" {
12911
12921
  *
12912
12922
  * Tile control embedding an image and allowing custom sizing
12913
12923
  */
12914
- class PictureTile extends CustomTile {
12924
+ export default class PictureTile extends CustomTile {
12915
12925
  /**
12916
12926
  * Constructor for a new PictureTile.
12917
12927
  *
@@ -13036,7 +13046,7 @@ declare module "sap/ca/ui/PictureTile" {
13036
13046
  oListener?: object
13037
13047
  ): this;
13038
13048
  /**
13039
- * @PROTECTED - DO NOT USE IN APPLICATIONS (only for related classes in the framework)
13049
+ * @ui5-protected Do not call from applications (only from related classes in the framework)
13040
13050
  *
13041
13051
  * Fires event {@link #event:pictureDelete pictureDelete} to attached listeners.
13042
13052
  *
@@ -13120,7 +13130,6 @@ declare module "sap/ca/ui/PictureTile" {
13120
13130
  sWidth?: CSSSize
13121
13131
  ): this;
13122
13132
  }
13123
- export default PictureTile;
13124
13133
 
13125
13134
  export interface $PictureTileSettings extends $CustomTileSettings {
13126
13135
  /**
@@ -13144,7 +13153,9 @@ declare module "sap/ca/ui/PictureTile" {
13144
13153
  pictureDelete?: (oEvent: Event) => void;
13145
13154
  }
13146
13155
 
13147
- export interface $PictureTilePictureDeleteEventParameters {}
13156
+ export interface PictureTile$PictureDeleteEventParameters {}
13157
+
13158
+ export type PictureTile$PictureDeleteEvent = Event<PictureTile$PictureDeleteEventParameters>;
13148
13159
  }
13149
13160
 
13150
13161
  declare module "sap/ca/ui/PictureViewer" {
@@ -13171,7 +13182,7 @@ declare module "sap/ca/ui/PictureViewer" {
13171
13182
  *
13172
13183
  * Picture viewer control relying on the TileContainer control
13173
13184
  */
13174
- class PictureViewer extends TileContainer {
13185
+ export default class PictureViewer extends TileContainer {
13175
13186
  /**
13176
13187
  * Constructor for a new PictureViewer.
13177
13188
  *
@@ -13329,7 +13340,7 @@ declare module "sap/ca/ui/PictureViewer" {
13329
13340
  oListener?: object
13330
13341
  ): this;
13331
13342
  /**
13332
- * @PROTECTED - DO NOT USE IN APPLICATIONS (only for related classes in the framework)
13343
+ * @ui5-protected Do not call from applications (only from related classes in the framework)
13333
13344
  *
13334
13345
  * Fires event {@link #event:pictureDeleted pictureDeleted} to attached listeners.
13335
13346
  *
@@ -13450,7 +13461,6 @@ declare module "sap/ca/ui/PictureViewer" {
13450
13461
  */
13451
13462
  setTileScaling(fTileScale: undefined): void;
13452
13463
  }
13453
- export default PictureViewer;
13454
13464
 
13455
13465
  export interface $PictureViewerSettings extends $TileContainerSettings {
13456
13466
  /**
@@ -13479,7 +13489,9 @@ declare module "sap/ca/ui/PictureViewer" {
13479
13489
  pictureDeleted?: (oEvent: Event) => void;
13480
13490
  }
13481
13491
 
13482
- export interface $PictureViewerPictureDeletedEventParameters {}
13492
+ export interface PictureViewer$PictureDeletedEventParameters {}
13493
+
13494
+ export type PictureViewer$PictureDeletedEvent = Event<PictureViewer$PictureDeletedEventParameters>;
13483
13495
  }
13484
13496
 
13485
13497
  declare module "sap/ca/ui/PictureViewerItem" {
@@ -13499,7 +13511,7 @@ declare module "sap/ca/ui/PictureViewerItem" {
13499
13511
  *
13500
13512
  * Picture viewer control relying on the TileContainer control
13501
13513
  */
13502
- class PictureViewerItem extends Control {
13514
+ export default class PictureViewerItem extends Control {
13503
13515
  /**
13504
13516
  * Constructor for a new PictureViewerItem.
13505
13517
  *
@@ -13605,7 +13617,6 @@ declare module "sap/ca/ui/PictureViewerItem" {
13605
13617
  sSrc: string
13606
13618
  ): PictureViewerItem;
13607
13619
  }
13608
- export default PictureViewerItem;
13609
13620
 
13610
13621
  export interface $PictureViewerItemSettings extends $ControlSettings {
13611
13622
  /**
@@ -13690,7 +13701,7 @@ declare module "sap/ca/ui/ZoomableScrollContainer" {
13690
13701
  *
13691
13702
  * Based on a ScrollContainer, it allows you to pinch and zoom on mobile devices
13692
13703
  */
13693
- class ZoomableScrollContainer extends ScrollContainer {
13704
+ export default class ZoomableScrollContainer extends ScrollContainer {
13694
13705
  /**
13695
13706
  * Constructor for a new ZoomableScrollContainer.
13696
13707
  *
@@ -13860,7 +13871,6 @@ declare module "sap/ca/ui/ZoomableScrollContainer" {
13860
13871
  bZoomable?: boolean
13861
13872
  ): this;
13862
13873
  }
13863
- export default ZoomableScrollContainer;
13864
13874
 
13865
13875
  export interface $ZoomableScrollContainerSettings
13866
13876
  extends $ScrollContainerSettings {