@sapui5/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 +5 -3
  2. package/package.json +1 -1
  3. package/types/index.d.ts +10 -3
  4. package/types/sap.apf.d.ts +47 -40
  5. package/types/sap.ca.ui.d.ts +255 -161
  6. package/types/sap.chart.d.ts +31 -52
  7. package/types/sap.collaboration.d.ts +34 -38
  8. package/types/sap.esh.search.ui.d.ts +118 -109
  9. package/types/sap.f.d.ts +196 -276
  10. package/types/sap.fe.core.d.ts +151 -15
  11. package/types/sap.fe.macros.d.ts +181 -54
  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 +1406 -2521
  18. package/types/sap.insights.d.ts +250 -4
  19. package/types/sap.landvisz.d.ts +112 -67
  20. package/types/sap.m.d.ts +2202 -2899
  21. package/types/sap.makit.d.ts +22 -43
  22. package/types/sap.me.d.ts +38 -68
  23. package/types/sap.ndc.d.ts +41 -39
  24. package/types/sap.ovp.d.ts +10 -83
  25. package/types/sap.rules.ui.d.ts +50 -51
  26. package/types/sap.sac.df.d.ts +100 -12
  27. package/types/sap.suite.ui.commons.d.ts +1511 -1233
  28. package/types/sap.suite.ui.generic.template.d.ts +5 -8
  29. package/types/sap.suite.ui.microchart.d.ts +72 -123
  30. package/types/sap.tnt.d.ts +64 -29
  31. package/types/sap.ui.codeeditor.d.ts +11 -17
  32. package/types/sap.ui.commons.d.ts +278 -422
  33. package/types/sap.ui.comp.d.ts +830 -948
  34. package/types/sap.ui.core.d.ts +1160 -1090
  35. package/types/sap.ui.dt.d.ts +1 -1
  36. package/types/sap.ui.export.d.ts +201 -12
  37. package/types/sap.ui.fl.d.ts +24 -74
  38. package/types/sap.ui.generic.app.d.ts +39 -43
  39. package/types/sap.ui.generic.template.d.ts +1 -1
  40. package/types/sap.ui.integration.d.ts +192 -100
  41. package/types/sap.ui.layout.d.ts +100 -69
  42. package/types/sap.ui.mdc.d.ts +1100 -913
  43. package/types/sap.ui.richtexteditor.d.ts +18 -30
  44. package/types/sap.ui.rta.d.ts +1 -1
  45. package/types/sap.ui.suite.d.ts +9 -15
  46. package/types/sap.ui.support.d.ts +1 -1
  47. package/types/sap.ui.table.d.ts +140 -192
  48. package/types/sap.ui.testrecorder.d.ts +1 -1
  49. package/types/sap.ui.unified.d.ts +277 -501
  50. package/types/sap.ui.ux3.d.ts +263 -504
  51. package/types/sap.ui.vbm.d.ts +691 -541
  52. package/types/sap.ui.vk.d.ts +1916 -1834
  53. package/types/sap.ui.vtm.d.ts +428 -329
  54. package/types/sap.ui.webc.common.d.ts +1 -1
  55. package/types/sap.ui.webc.fiori.d.ts +864 -342
  56. package/types/sap.ui.webc.main.d.ts +4337 -1135
  57. package/types/sap.uiext.inbox.d.ts +50 -92
  58. package/types/sap.ushell.d.ts +275 -309
  59. package/types/sap.ushell_abap.d.ts +1 -1
  60. package/types/sap.uxap.d.ts +51 -91
  61. package/types/sap.viz.d.ts +523 -959
  62. package/types/sap.webanalytics.core.d.ts +1 -1
  63. package/types/sap.zen.commons.d.ts +7 -12
  64. package/types/sap.zen.crosstab.d.ts +4 -7
  65. package/types/sap.zen.dsh.d.ts +154 -157
@@ -1,4 +1,4 @@
1
- // For Library Version: 1.115.0
1
+ // For Library Version: 1.117.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,48 @@ 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<
1028
+ AddPicture$FileNotSupportedEventParameters,
1029
+ AddPicture
1030
+ >;
1037
1031
 
1038
- export interface $AddPictureMaxPictureLimitReachedEventParameters {}
1032
+ export interface AddPicture$ImageUploadFailedEventParameters {}
1039
1033
 
1040
- export interface $AddPicturePictureAddedEventParameters {}
1034
+ export type AddPicture$ImageUploadFailedEvent = Event<
1035
+ AddPicture$ImageUploadFailedEventParameters,
1036
+ AddPicture
1037
+ >;
1041
1038
 
1042
- export interface $AddPictureShowEventParameters {}
1039
+ export interface AddPicture$MaxPictureLimitReachedEventParameters {}
1040
+
1041
+ export type AddPicture$MaxPictureLimitReachedEvent = Event<
1042
+ AddPicture$MaxPictureLimitReachedEventParameters,
1043
+ AddPicture
1044
+ >;
1045
+
1046
+ export interface AddPicture$PictureAddedEventParameters {}
1047
+
1048
+ export type AddPicture$PictureAddedEvent = Event<
1049
+ AddPicture$PictureAddedEventParameters,
1050
+ AddPicture
1051
+ >;
1052
+
1053
+ export interface AddPicture$ShowEventParameters {}
1054
+
1055
+ export type AddPicture$ShowEvent = Event<
1056
+ AddPicture$ShowEventParameters,
1057
+ AddPicture
1058
+ >;
1043
1059
  }
1044
1060
 
1045
1061
  declare module "sap/ca/ui/charts/BarListItem" {
@@ -1060,7 +1076,7 @@ declare module "sap/ca/ui/charts/BarListItem" {
1060
1076
  *
1061
1077
  * The display list item consists of a label and a value.
1062
1078
  */
1063
- class BarListItem extends ListItemBase {
1079
+ export default class BarListItem extends ListItemBase {
1064
1080
  /**
1065
1081
  * Constructor for a new charts/BarListItem.
1066
1082
  *
@@ -1191,7 +1207,6 @@ declare module "sap/ca/ui/charts/BarListItem" {
1191
1207
  sValue?: string
1192
1208
  ): this;
1193
1209
  }
1194
- export default BarListItem;
1195
1210
 
1196
1211
  export interface $BarListItemSettings extends $ListItemBaseSettings {
1197
1212
  /**
@@ -1231,7 +1246,7 @@ declare module "sap/ca/ui/charts/BubbleChart" {
1231
1246
  *
1232
1247
  * Bubble chart.
1233
1248
  */
1234
- class BubbleChart extends Chart {
1249
+ export default class BubbleChart extends Chart {
1235
1250
  /**
1236
1251
  * Constructor for a new charts/BubbleChart.
1237
1252
  *
@@ -1981,7 +1996,6 @@ declare module "sap/ca/ui/charts/BubbleChart" {
1981
1996
  sYAxisTitle?: string
1982
1997
  ): this;
1983
1998
  }
1984
- export default BubbleChart;
1985
1999
 
1986
2000
  export interface $BubbleChartSettings extends $ChartSettings {
1987
2001
  /**
@@ -2154,7 +2168,7 @@ declare module "sap/ca/ui/charts/Chart" {
2154
2168
  * container - Common color palette - Minimum bar / dot / blip ... size - Integration with ChartToolbar
2155
2169
  * and ChartPopover
2156
2170
  */
2157
- class Chart extends Control {
2171
+ export default class Chart extends Control {
2158
2172
  /**
2159
2173
  * Constructor for a new charts/Chart.
2160
2174
  *
@@ -2457,7 +2471,7 @@ declare module "sap/ca/ui/charts/Chart" {
2457
2471
  oListener?: object
2458
2472
  ): this;
2459
2473
  /**
2460
- * @PROTECTED - DO NOT USE IN APPLICATIONS (only for related classes in the framework)
2474
+ * @ui5-protected Do not call from applications (only from related classes in the framework)
2461
2475
  *
2462
2476
  * Fires event {@link #event:popoverAfterOpen popoverAfterOpen} to attached listeners.
2463
2477
  *
@@ -2470,7 +2484,7 @@ declare module "sap/ca/ui/charts/Chart" {
2470
2484
  mParameters?: object
2471
2485
  ): this;
2472
2486
  /**
2473
- * @PROTECTED - DO NOT USE IN APPLICATIONS (only for related classes in the framework)
2487
+ * @ui5-protected Do not call from applications (only from related classes in the framework)
2474
2488
  *
2475
2489
  * Fires event {@link #event:popoverBeforeOpen popoverBeforeOpen} to attached listeners.
2476
2490
  *
@@ -2483,7 +2497,7 @@ declare module "sap/ca/ui/charts/Chart" {
2483
2497
  mParameters?: object
2484
2498
  ): this;
2485
2499
  /**
2486
- * @PROTECTED - DO NOT USE IN APPLICATIONS (only for related classes in the framework)
2500
+ * @ui5-protected Do not call from applications (only from related classes in the framework)
2487
2501
  *
2488
2502
  * Fires event {@link #event:selectDataPoint selectDataPoint} to attached listeners.
2489
2503
  *
@@ -3360,7 +3374,6 @@ declare module "sap/ca/ui/charts/Chart" {
3360
3374
  formatter: object
3361
3375
  ): Chart;
3362
3376
  }
3363
- export default Chart;
3364
3377
 
3365
3378
  export interface $ChartSettings extends $ControlSettings {
3366
3379
  /**
@@ -3544,11 +3557,26 @@ declare module "sap/ca/ui/charts/Chart" {
3544
3557
  popoverAfterOpen?: (oEvent: Event) => void;
3545
3558
  }
3546
3559
 
3547
- export interface $ChartPopoverAfterOpenEventParameters {}
3560
+ export interface Chart$PopoverAfterOpenEventParameters {}
3548
3561
 
3549
- export interface $ChartPopoverBeforeOpenEventParameters {}
3562
+ export type Chart$PopoverAfterOpenEvent = Event<
3563
+ Chart$PopoverAfterOpenEventParameters,
3564
+ Chart
3565
+ >;
3550
3566
 
3551
- export interface $ChartSelectDataPointEventParameters {}
3567
+ export interface Chart$PopoverBeforeOpenEventParameters {}
3568
+
3569
+ export type Chart$PopoverBeforeOpenEvent = Event<
3570
+ Chart$PopoverBeforeOpenEventParameters,
3571
+ Chart
3572
+ >;
3573
+
3574
+ export interface Chart$SelectDataPointEventParameters {}
3575
+
3576
+ export type Chart$SelectDataPointEvent = Event<
3577
+ Chart$SelectDataPointEventParameters,
3578
+ Chart
3579
+ >;
3552
3580
  }
3553
3581
 
3554
3582
  declare module "sap/ca/ui/charts/ChartToolBar" {
@@ -3578,7 +3606,7 @@ declare module "sap/ca/ui/charts/ChartToolBar" {
3578
3606
  * ToolBar used for displaying one chart amongst several and provide additional features: - 2 select boxes
3579
3607
  * for selecting dimensions - fullscreen toggle - personalization icon - showLegend toggle
3580
3608
  */
3581
- class ChartToolBar extends Control {
3609
+ export default class ChartToolBar extends Control {
3582
3610
  /**
3583
3611
  * Constructor for a new charts/ChartToolBar.
3584
3612
  *
@@ -3862,7 +3890,7 @@ declare module "sap/ca/ui/charts/ChartToolBar" {
3862
3890
  oListener?: object
3863
3891
  ): this;
3864
3892
  /**
3865
- * @PROTECTED - DO NOT USE IN APPLICATIONS (only for related classes in the framework)
3893
+ * @ui5-protected Do not call from applications (only from related classes in the framework)
3866
3894
  *
3867
3895
  * Fires event {@link #event:firstDimensionKeySelected firstDimensionKeySelected} to attached listeners.
3868
3896
  *
@@ -3875,7 +3903,7 @@ declare module "sap/ca/ui/charts/ChartToolBar" {
3875
3903
  mParameters?: object
3876
3904
  ): this;
3877
3905
  /**
3878
- * @PROTECTED - DO NOT USE IN APPLICATIONS (only for related classes in the framework)
3906
+ * @ui5-protected Do not call from applications (only from related classes in the framework)
3879
3907
  *
3880
3908
  * Fires event {@link #event:personalizationPressed personalizationPressed} to attached listeners.
3881
3909
  *
@@ -3888,7 +3916,7 @@ declare module "sap/ca/ui/charts/ChartToolBar" {
3888
3916
  mParameters?: object
3889
3917
  ): this;
3890
3918
  /**
3891
- * @PROTECTED - DO NOT USE IN APPLICATIONS (only for related classes in the framework)
3919
+ * @ui5-protected Do not call from applications (only from related classes in the framework)
3892
3920
  *
3893
3921
  * Fires event {@link #event:secondDimensionKeySelected secondDimensionKeySelected} to attached listeners.
3894
3922
  *
@@ -4323,7 +4351,6 @@ declare module "sap/ca/ui/charts/ChartToolBar" {
4323
4351
  oToolBar: Bar
4324
4352
  ): this;
4325
4353
  }
4326
- export default ChartToolBar;
4327
4354
 
4328
4355
  export interface $ChartToolBarSettings extends $ControlSettings {
4329
4356
  /**
@@ -4427,11 +4454,26 @@ declare module "sap/ca/ui/charts/ChartToolBar" {
4427
4454
  secondDimensionKeySelected?: (oEvent: Event) => void;
4428
4455
  }
4429
4456
 
4430
- export interface $ChartToolBarFirstDimensionKeySelectedEventParameters {}
4457
+ export interface ChartToolBar$FirstDimensionKeySelectedEventParameters {}
4458
+
4459
+ export type ChartToolBar$FirstDimensionKeySelectedEvent = Event<
4460
+ ChartToolBar$FirstDimensionKeySelectedEventParameters,
4461
+ ChartToolBar
4462
+ >;
4431
4463
 
4432
- export interface $ChartToolBarPersonalizationPressedEventParameters {}
4464
+ export interface ChartToolBar$PersonalizationPressedEventParameters {}
4433
4465
 
4434
- export interface $ChartToolBarSecondDimensionKeySelectedEventParameters {}
4466
+ export type ChartToolBar$PersonalizationPressedEvent = Event<
4467
+ ChartToolBar$PersonalizationPressedEventParameters,
4468
+ ChartToolBar
4469
+ >;
4470
+
4471
+ export interface ChartToolBar$SecondDimensionKeySelectedEventParameters {}
4472
+
4473
+ export type ChartToolBar$SecondDimensionKeySelectedEvent = Event<
4474
+ ChartToolBar$SecondDimensionKeySelectedEventParameters,
4475
+ ChartToolBar
4476
+ >;
4435
4477
  }
4436
4478
 
4437
4479
  declare module "sap/ca/ui/charts/ChartType" {
@@ -4526,7 +4568,7 @@ declare module "sap/ca/ui/charts/ClusterListItem" {
4526
4568
  *
4527
4569
  * The cluster list item consists of a title and items.
4528
4570
  */
4529
- class ClusterListItem extends ListItemBase {
4571
+ export default class ClusterListItem extends ListItemBase {
4530
4572
  /**
4531
4573
  * Constructor for a new charts/ClusterListItem.
4532
4574
  *
@@ -4634,7 +4676,6 @@ declare module "sap/ca/ui/charts/ClusterListItem" {
4634
4676
  sTitle?: string
4635
4677
  ): this;
4636
4678
  }
4637
- export default ClusterListItem;
4638
4679
 
4639
4680
  export interface $ClusterListItemSettings extends $ListItemBaseSettings {
4640
4681
  /**
@@ -4666,7 +4707,7 @@ declare module "sap/ca/ui/charts/CombinedChart" {
4666
4707
  *
4667
4708
  * Allows you to create a chart using vertical bars and lines to represent the data
4668
4709
  */
4669
- class CombinedChart extends Chart {
4710
+ export default class CombinedChart extends Chart {
4670
4711
  /**
4671
4712
  * Constructor for a new charts/CombinedChart.
4672
4713
  *
@@ -4820,7 +4861,6 @@ declare module "sap/ca/ui/charts/CombinedChart" {
4820
4861
  oSecondAxis?: any
4821
4862
  ): this;
4822
4863
  }
4823
- export default CombinedChart;
4824
4864
 
4825
4865
  export interface $CombinedChartSettings extends $ChartSettings {
4826
4866
  /**
@@ -4866,7 +4906,7 @@ declare module "sap/ca/ui/charts/HorizontalBarChart" {
4866
4906
  *
4867
4907
  * Allows you to create a chart using horizontal bars to represent the data
4868
4908
  */
4869
- class HorizontalBarChart extends Chart {
4909
+ export default class HorizontalBarChart extends Chart {
4870
4910
  /**
4871
4911
  * Constructor for a new charts/HorizontalBarChart.
4872
4912
  *
@@ -5086,7 +5126,6 @@ declare module "sap/ca/ui/charts/HorizontalBarChart" {
5086
5126
  oVerticalArea: VBox
5087
5127
  ): this;
5088
5128
  }
5089
- export default HorizontalBarChart;
5090
5129
 
5091
5130
  export interface $HorizontalBarChartSettings extends $ChartSettings {
5092
5131
  /**
@@ -5137,7 +5176,7 @@ declare module "sap/ca/ui/charts/LineChart" {
5137
5176
  import { PropertyBindingInfo } from "sap/ui/base/ManagedObject";
5138
5177
 
5139
5178
  /**
5140
- * @SINCE 1.0.0
5179
+ * @since 1.0.0
5141
5180
  * @deprecated (since 1.24) - Sap.ca charts have been replaced with sap.viz and vizFrame in 1.24. The UI5
5142
5181
  * control "sap.viz.ui5.controls.VizFrame" serves as a single point of entry for all the new charts. Now
5143
5182
  * that 1.24 is available you are asked to use sap.viz charts and the VizFrame instead! This control will
@@ -5145,7 +5184,7 @@ declare module "sap/ca/ui/charts/LineChart" {
5145
5184
  *
5146
5185
  * Line Chart for the Fiori Project
5147
5186
  */
5148
- class LineChart extends Chart {
5187
+ export default class LineChart extends Chart {
5149
5188
  /**
5150
5189
  * Constructor for a new charts/LineChart.
5151
5190
  *
@@ -5287,7 +5326,7 @@ declare module "sap/ca/ui/charts/LineChart" {
5287
5326
  ): this;
5288
5327
  /**
5289
5328
  * @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)
5329
+ * @ui5-protected Do not call from applications (only from related classes in the framework)
5291
5330
  *
5292
5331
  * Fires event {@link #event:onDetailsSelected onDetailsSelected} to attached listeners.
5293
5332
  *
@@ -5730,7 +5769,6 @@ declare module "sap/ca/ui/charts/LineChart" {
5730
5769
  oVertical: VBox
5731
5770
  ): this;
5732
5771
  }
5733
- export default LineChart;
5734
5772
 
5735
5773
  export interface $LineChartSettings extends $ChartSettings {
5736
5774
  /**
@@ -5854,7 +5892,12 @@ declare module "sap/ca/ui/charts/LineChart" {
5854
5892
  onDetailsSelected?: (oEvent: Event) => void;
5855
5893
  }
5856
5894
 
5857
- export interface $LineChartOnDetailsSelectedEventParameters {}
5895
+ export interface LineChart$OnDetailsSelectedEventParameters {}
5896
+
5897
+ export type LineChart$OnDetailsSelectedEvent = Event<
5898
+ LineChart$OnDetailsSelectedEventParameters,
5899
+ LineChart
5900
+ >;
5858
5901
  }
5859
5902
 
5860
5903
  declare module "sap/ca/ui/charts/StackedHorizontalBarChart" {
@@ -5880,7 +5923,7 @@ declare module "sap/ca/ui/charts/StackedHorizontalBarChart" {
5880
5923
  * Stacked Horizontal Bar Chart wrapper around the viz StackedBarChart / MultipleStackedBarChart. To be
5881
5924
  * used in conjunction with the chart toolbar.
5882
5925
  */
5883
- class StackedHorizontalBarChart extends Chart {
5926
+ export default class StackedHorizontalBarChart extends Chart {
5884
5927
  /**
5885
5928
  * Constructor for a new charts/StackedHorizontalBarChart.
5886
5929
  *
@@ -6125,7 +6168,6 @@ declare module "sap/ca/ui/charts/StackedHorizontalBarChart" {
6125
6168
  sType?: string
6126
6169
  ): this;
6127
6170
  }
6128
- export default StackedHorizontalBarChart;
6129
6171
 
6130
6172
  export interface $StackedHorizontalBarChartSettings extends $ChartSettings {
6131
6173
  /**
@@ -6181,7 +6223,7 @@ declare module "sap/ca/ui/charts/StackedVerticalColumnChart" {
6181
6223
  * Stacked Vertical Column Chart wrapper around the viz StackedColumnChart / MultipleStackedColumnChart.
6182
6224
  * To be used in conjunction with the chart toolbar.
6183
6225
  */
6184
- class StackedVerticalColumnChart extends Chart {
6226
+ export default class StackedVerticalColumnChart extends Chart {
6185
6227
  /**
6186
6228
  * Constructor for a new charts/StackedVerticalColumnChart.
6187
6229
  *
@@ -6432,7 +6474,6 @@ declare module "sap/ca/ui/charts/StackedVerticalColumnChart" {
6432
6474
  sType?: string
6433
6475
  ): this;
6434
6476
  }
6435
- export default StackedVerticalColumnChart;
6436
6477
 
6437
6478
  export interface $StackedVerticalColumnChartSettings extends $ChartSettings {
6438
6479
  /**
@@ -6494,7 +6535,7 @@ declare module "sap/ca/ui/charts/VerticalBarChart" {
6494
6535
  *
6495
6536
  * Allows you to create a chart using vertical bars to represent the data
6496
6537
  */
6497
- class VerticalBarChart extends Chart {
6538
+ export default class VerticalBarChart extends Chart {
6498
6539
  /**
6499
6540
  * Constructor for a new charts/VerticalBarChart.
6500
6541
  *
@@ -6805,7 +6846,6 @@ declare module "sap/ca/ui/charts/VerticalBarChart" {
6805
6846
  oVerticalBarChart: Column
6806
6847
  ): this;
6807
6848
  }
6808
- export default VerticalBarChart;
6809
6849
 
6810
6850
  export interface $VerticalBarChartSettings extends $ChartSettings {
6811
6851
  /**
@@ -6877,7 +6917,7 @@ declare module "sap/ca/ui/CustomerContext" {
6877
6917
  * When opening the dialog in "select" mode, if a customer has been persisted in a previous session, it
6878
6918
  * will be retrieved and the dialog won't open at all.
6879
6919
  */
6880
- class CustomerContext extends Control {
6920
+ export default class CustomerContext extends Control {
6881
6921
  /**
6882
6922
  * Constructor for a new CustomerContext.
6883
6923
  *
@@ -7010,7 +7050,7 @@ declare module "sap/ca/ui/CustomerContext" {
7010
7050
  oListener?: object
7011
7051
  ): this;
7012
7052
  /**
7013
- * @PROTECTED - DO NOT USE IN APPLICATIONS (only for related classes in the framework)
7053
+ * @ui5-protected Do not call from applications (only from related classes in the framework)
7014
7054
  *
7015
7055
  * Fires event {@link #event:customerSelected customerSelected} to attached listeners.
7016
7056
  *
@@ -7274,7 +7314,6 @@ declare module "sap/ca/ui/CustomerContext" {
7274
7314
  bShowSalesArea?: boolean
7275
7315
  ): this;
7276
7316
  }
7277
- export default CustomerContext;
7278
7317
 
7279
7318
  export interface $CustomerContextSettings extends $ControlSettings {
7280
7319
  /**
@@ -7329,7 +7368,12 @@ declare module "sap/ca/ui/CustomerContext" {
7329
7368
  customerSelected?: (oEvent: Event) => void;
7330
7369
  }
7331
7370
 
7332
- export interface $CustomerContextCustomerSelectedEventParameters {}
7371
+ export interface CustomerContext$CustomerSelectedEventParameters {}
7372
+
7373
+ export type CustomerContext$CustomerSelectedEvent = Event<
7374
+ CustomerContext$CustomerSelectedEventParameters,
7375
+ CustomerContext
7376
+ >;
7333
7377
  }
7334
7378
 
7335
7379
  declare module "sap/ca/ui/CustomerControlListItem" {
@@ -7348,7 +7392,7 @@ declare module "sap/ca/ui/CustomerControlListItem" {
7348
7392
  *
7349
7393
  * Extends the ObjectListItem to display a line in the customer context control.
7350
7394
  */
7351
- class CustomerControlListItem extends CustomListItem {
7395
+ export default class CustomerControlListItem extends CustomListItem {
7352
7396
  /**
7353
7397
  * Constructor for a new CustomerControlListItem.
7354
7398
  *
@@ -7572,7 +7616,6 @@ declare module "sap/ca/ui/CustomerControlListItem" {
7572
7616
  bShowSalesArea?: boolean
7573
7617
  ): this;
7574
7618
  }
7575
- export default CustomerControlListItem;
7576
7619
 
7577
7620
  export interface $CustomerControlListItemSettings
7578
7621
  extends $CustomListItemSettings {
@@ -7622,7 +7665,7 @@ declare module "sap/ca/ui/DatePicker" {
7622
7665
  * Allows end users to interact with dates. Entries can directly be written in, or selected from a calendar
7623
7666
  * pad.
7624
7667
  */
7625
- class DatePicker extends InputBase {
7668
+ export default class DatePicker extends InputBase {
7626
7669
  /**
7627
7670
  * Constructor for a new DatePicker.
7628
7671
  *
@@ -7740,7 +7783,6 @@ declare module "sap/ca/ui/DatePicker" {
7740
7783
  iFirstDayOffset?: int
7741
7784
  ): this;
7742
7785
  }
7743
- export default DatePicker;
7744
7786
 
7745
7787
  export interface $DatePickerSettings extends $InputBaseSettings {
7746
7788
  /**
@@ -7773,7 +7815,7 @@ declare module "sap/ca/ui/ExpansibleFeedListItem" {
7773
7815
  * Extends the FeedListItem to hide text when it is longer than maxLines. When text is hidden a See more
7774
7816
  * link is displayed, clicking on the link displays the entire text.
7775
7817
  */
7776
- class ExpansibleFeedListItem extends FeedListItem {
7818
+ export default class ExpansibleFeedListItem extends FeedListItem {
7777
7819
  /**
7778
7820
  * Constructor for a new ExpansibleFeedListItem.
7779
7821
  *
@@ -7862,7 +7904,6 @@ declare module "sap/ca/ui/ExpansibleFeedListItem" {
7862
7904
  iMaxLines?: int
7863
7905
  ): this;
7864
7906
  }
7865
- export default ExpansibleFeedListItem;
7866
7907
 
7867
7908
  export interface $ExpansibleFeedListItemSettings
7868
7909
  extends $FeedListItemSettings {
@@ -7892,7 +7933,7 @@ declare module "sap/ca/ui/FileUpload" {
7892
7933
  *
7893
7934
  * Allows you to display a list of uploaded files. You can also upload a new one, rename or delete them
7894
7935
  */
7895
- class FileUpload extends Control {
7936
+ export default class FileUpload extends Control {
7896
7937
  /**
7897
7938
  * Constructor for a new FileUpload.
7898
7939
  *
@@ -8446,7 +8487,7 @@ declare module "sap/ca/ui/FileUpload" {
8446
8487
  oListener?: object
8447
8488
  ): this;
8448
8489
  /**
8449
- * @PROTECTED - DO NOT USE IN APPLICATIONS (only for related classes in the framework)
8490
+ * @ui5-protected Do not call from applications (only from related classes in the framework)
8450
8491
  *
8451
8492
  * Fires event {@link #event:beforeUploadFile beforeUploadFile} to attached listeners.
8452
8493
  *
@@ -8460,7 +8501,7 @@ declare module "sap/ca/ui/FileUpload" {
8460
8501
  ): this;
8461
8502
  /**
8462
8503
  * @deprecated (since 1.21.1) - This method is deprecated now
8463
- * @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)
8464
8505
  *
8465
8506
  * Fires event {@link #event:cancelClicked cancelClicked} to attached listeners.
8466
8507
  *
@@ -8473,7 +8514,7 @@ declare module "sap/ca/ui/FileUpload" {
8473
8514
  mParameters?: object
8474
8515
  ): this;
8475
8516
  /**
8476
- * @PROTECTED - DO NOT USE IN APPLICATIONS (only for related classes in the framework)
8517
+ * @ui5-protected Do not call from applications (only from related classes in the framework)
8477
8518
  *
8478
8519
  * Fires event {@link #event:deleteFile deleteFile} to attached listeners.
8479
8520
  *
@@ -8486,7 +8527,7 @@ declare module "sap/ca/ui/FileUpload" {
8486
8527
  mParameters?: object
8487
8528
  ): this;
8488
8529
  /**
8489
- * @PROTECTED - DO NOT USE IN APPLICATIONS (only for related classes in the framework)
8530
+ * @ui5-protected Do not call from applications (only from related classes in the framework)
8490
8531
  *
8491
8532
  * Fires event {@link #event:fileUploadFailed fileUploadFailed} to attached listeners.
8492
8533
  *
@@ -8499,7 +8540,7 @@ declare module "sap/ca/ui/FileUpload" {
8499
8540
  mParameters?: object
8500
8541
  ): this;
8501
8542
  /**
8502
- * @PROTECTED - DO NOT USE IN APPLICATIONS (only for related classes in the framework)
8543
+ * @ui5-protected Do not call from applications (only from related classes in the framework)
8503
8544
  *
8504
8545
  * Fires event {@link #event:renameFile renameFile} to attached listeners.
8505
8546
  *
@@ -8514,7 +8555,7 @@ declare module "sap/ca/ui/FileUpload" {
8514
8555
  /**
8515
8556
  * @deprecated (since 1.21.1) - This method is deprecated now. The rename or delete event is enough and
8516
8557
  * should be use to commit the action immediatly
8517
- * @PROTECTED - DO NOT USE IN APPLICATIONS (only for related classes in the framework)
8558
+ * @ui5-protected Do not call from applications (only from related classes in the framework)
8518
8559
  *
8519
8560
  * Fires event {@link #event:saveClicked saveClicked} to attached listeners.
8520
8561
  *
@@ -8527,7 +8568,7 @@ declare module "sap/ca/ui/FileUpload" {
8527
8568
  mParameters?: object
8528
8569
  ): this;
8529
8570
  /**
8530
- * @PROTECTED - DO NOT USE IN APPLICATIONS (only for related classes in the framework)
8571
+ * @ui5-protected Do not call from applications (only from related classes in the framework)
8531
8572
  *
8532
8573
  * Fires event {@link #event:uploadFile uploadFile} to attached listeners.
8533
8574
  *
@@ -8951,7 +8992,6 @@ declare module "sap/ca/ui/FileUpload" {
8951
8992
  sXsrfToken?: string
8952
8993
  ): this;
8953
8994
  }
8954
- export default FileUpload;
8955
8995
 
8956
8996
  export interface $FileUploadSettings extends $ControlSettings {
8957
8997
  /**
@@ -9151,19 +9191,54 @@ declare module "sap/ca/ui/FileUpload" {
9151
9191
  cancelClicked?: (oEvent: Event) => void;
9152
9192
  }
9153
9193
 
9154
- export interface $FileUploadBeforeUploadFileEventParameters {}
9194
+ export interface FileUpload$BeforeUploadFileEventParameters {}
9195
+
9196
+ export type FileUpload$BeforeUploadFileEvent = Event<
9197
+ FileUpload$BeforeUploadFileEventParameters,
9198
+ FileUpload
9199
+ >;
9200
+
9201
+ export interface FileUpload$CancelClickedEventParameters {}
9202
+
9203
+ export type FileUpload$CancelClickedEvent = Event<
9204
+ FileUpload$CancelClickedEventParameters,
9205
+ FileUpload
9206
+ >;
9207
+
9208
+ export interface FileUpload$DeleteFileEventParameters {}
9155
9209
 
9156
- export interface $FileUploadCancelClickedEventParameters {}
9210
+ export type FileUpload$DeleteFileEvent = Event<
9211
+ FileUpload$DeleteFileEventParameters,
9212
+ FileUpload
9213
+ >;
9157
9214
 
9158
- export interface $FileUploadDeleteFileEventParameters {}
9215
+ export interface FileUpload$FileUploadFailedEventParameters {}
9159
9216
 
9160
- export interface $FileUploadFileUploadFailedEventParameters {}
9217
+ export type FileUpload$FileUploadFailedEvent = Event<
9218
+ FileUpload$FileUploadFailedEventParameters,
9219
+ FileUpload
9220
+ >;
9161
9221
 
9162
- export interface $FileUploadRenameFileEventParameters {}
9222
+ export interface FileUpload$RenameFileEventParameters {}
9163
9223
 
9164
- export interface $FileUploadSaveClickedEventParameters {}
9224
+ export type FileUpload$RenameFileEvent = Event<
9225
+ FileUpload$RenameFileEventParameters,
9226
+ FileUpload
9227
+ >;
9165
9228
 
9166
- export interface $FileUploadUploadFileEventParameters {}
9229
+ export interface FileUpload$SaveClickedEventParameters {}
9230
+
9231
+ export type FileUpload$SaveClickedEvent = Event<
9232
+ FileUpload$SaveClickedEventParameters,
9233
+ FileUpload
9234
+ >;
9235
+
9236
+ export interface FileUpload$UploadFileEventParameters {}
9237
+
9238
+ export type FileUpload$UploadFileEvent = Event<
9239
+ FileUpload$UploadFileEventParameters,
9240
+ FileUpload
9241
+ >;
9167
9242
  }
9168
9243
 
9169
9244
  declare module "sap/ca/ui/GrowingTileContainer" {
@@ -9182,7 +9257,7 @@ declare module "sap/ca/ui/GrowingTileContainer" {
9182
9257
  *
9183
9258
  * A Tile container for the Overview tile with growing capabilities
9184
9259
  */
9185
- class GrowingTileContainer extends ScrollContainer {
9260
+ export default class GrowingTileContainer extends ScrollContainer {
9186
9261
  /**
9187
9262
  * Constructor for a new GrowingTileContainer.
9188
9263
  *
@@ -9325,7 +9400,6 @@ declare module "sap/ca/ui/GrowingTileContainer" {
9325
9400
  iGrowingThreshold?: int
9326
9401
  ): this;
9327
9402
  }
9328
- export default GrowingTileContainer;
9329
9403
 
9330
9404
  export interface $GrowingTileContainerSettings
9331
9405
  extends $ScrollContainerSettings {
@@ -9363,7 +9437,7 @@ declare module "sap/ca/ui/HierarchicalSelectDialog" {
9363
9437
  *
9364
9438
  * Select an item in a dialog from a hierarchical list
9365
9439
  */
9366
- class HierarchicalSelectDialog extends Dialog {
9440
+ export default class HierarchicalSelectDialog extends Dialog {
9367
9441
  /**
9368
9442
  * Constructor for a new HierarchicalSelectDialog.
9369
9443
  *
@@ -9570,7 +9644,7 @@ declare module "sap/ca/ui/HierarchicalSelectDialog" {
9570
9644
  oListener?: object
9571
9645
  ): this;
9572
9646
  /**
9573
- * @PROTECTED - DO NOT USE IN APPLICATIONS (only for related classes in the framework)
9647
+ * @ui5-protected Do not call from applications (only from related classes in the framework)
9574
9648
  *
9575
9649
  * Fires event {@link #event:cancel cancel} to attached listeners.
9576
9650
  *
@@ -9583,7 +9657,7 @@ declare module "sap/ca/ui/HierarchicalSelectDialog" {
9583
9657
  mParameters?: object
9584
9658
  ): this;
9585
9659
  /**
9586
- * @PROTECTED - DO NOT USE IN APPLICATIONS (only for related classes in the framework)
9660
+ * @ui5-protected Do not call from applications (only from related classes in the framework)
9587
9661
  *
9588
9662
  * Fires event {@link #event:select select} to attached listeners.
9589
9663
  *
@@ -9634,7 +9708,6 @@ declare module "sap/ca/ui/HierarchicalSelectDialog" {
9634
9708
  vItem: int | string | HierarchicalSelectDialogItem
9635
9709
  ): HierarchicalSelectDialogItem | null;
9636
9710
  }
9637
- export default HierarchicalSelectDialog;
9638
9711
 
9639
9712
  export interface $HierarchicalSelectDialogSettings extends $DialogSettings {
9640
9713
  /**
@@ -9658,9 +9731,19 @@ declare module "sap/ca/ui/HierarchicalSelectDialog" {
9658
9731
  cancel?: (oEvent: Event) => void;
9659
9732
  }
9660
9733
 
9661
- export interface $HierarchicalSelectDialogCancelEventParameters {}
9734
+ export interface HierarchicalSelectDialog$CancelEventParameters {}
9735
+
9736
+ export type HierarchicalSelectDialog$CancelEvent = Event<
9737
+ HierarchicalSelectDialog$CancelEventParameters,
9738
+ HierarchicalSelectDialog
9739
+ >;
9662
9740
 
9663
- export interface $HierarchicalSelectDialogSelectEventParameters {}
9741
+ export interface HierarchicalSelectDialog$SelectEventParameters {}
9742
+
9743
+ export type HierarchicalSelectDialog$SelectEvent = Event<
9744
+ HierarchicalSelectDialog$SelectEventParameters,
9745
+ HierarchicalSelectDialog
9746
+ >;
9664
9747
  }
9665
9748
 
9666
9749
  declare module "sap/ca/ui/HierarchicalSelectDialogItem" {
@@ -9679,7 +9762,7 @@ declare module "sap/ca/ui/HierarchicalSelectDialogItem" {
9679
9762
  * Kind of item required by the sap.ca.ui.HierarchicalSelectDialog control. An item is actually one page
9680
9763
  * of the Dialog.
9681
9764
  */
9682
- class HierarchicalSelectDialogItem extends Item {
9765
+ export default class HierarchicalSelectDialogItem extends Item {
9683
9766
  /**
9684
9767
  * Constructor for a new HierarchicalSelectDialogItem.
9685
9768
  *
@@ -9810,7 +9893,6 @@ declare module "sap/ca/ui/HierarchicalSelectDialogItem" {
9810
9893
  sTitle?: string
9811
9894
  ): this;
9812
9895
  }
9813
- export default HierarchicalSelectDialogItem;
9814
9896
 
9815
9897
  export interface $HierarchicalSelectDialogItemSettings extends $ItemSettings {
9816
9898
  /**
@@ -9850,7 +9932,7 @@ declare module "sap/ca/ui/Hierarchy" {
9850
9932
  * data. The emphasized item shows the one item to display. Optional item can be hidden using the hideOptionalLevels
9851
9933
  * property. Hidden items will stay accessible with an expand button.
9852
9934
  */
9853
- class Hierarchy extends Control {
9935
+ export default class Hierarchy extends Control {
9854
9936
  /**
9855
9937
  * Constructor for a new Hierarchy.
9856
9938
  *
@@ -10030,7 +10112,6 @@ declare module "sap/ca/ui/Hierarchy" {
10030
10112
  */
10031
10113
  unbindItems(): this;
10032
10114
  }
10033
- export default Hierarchy;
10034
10115
 
10035
10116
  export interface $HierarchySettings extends $ControlSettings {
10036
10117
  /**
@@ -10068,7 +10149,7 @@ declare module "sap/ca/ui/HierarchyItem" {
10068
10149
  * that we want to represent in his hierarchy. Optionals item will be hidden if the option is true on the
10069
10150
  * Hierarchy control.
10070
10151
  */
10071
- class HierarchyItem extends Control {
10152
+ export default class HierarchyItem extends Control {
10072
10153
  /**
10073
10154
  * Constructor for a new HierarchyItem.
10074
10155
  *
@@ -10192,7 +10273,7 @@ declare module "sap/ca/ui/HierarchyItem" {
10192
10273
  oListener?: object
10193
10274
  ): this;
10194
10275
  /**
10195
- * @PROTECTED - DO NOT USE IN APPLICATIONS (only for related classes in the framework)
10276
+ * @ui5-protected Do not call from applications (only from related classes in the framework)
10196
10277
  *
10197
10278
  * Fires event {@link #event:linkPress linkPress} to attached listeners.
10198
10279
  *
@@ -10374,7 +10455,6 @@ declare module "sap/ca/ui/HierarchyItem" {
10374
10455
  sTitle?: string
10375
10456
  ): this;
10376
10457
  }
10377
- export default HierarchyItem;
10378
10458
 
10379
10459
  export interface $HierarchyItemSettings extends $ControlSettings {
10380
10460
  /**
@@ -10418,14 +10498,17 @@ declare module "sap/ca/ui/HierarchyItem" {
10418
10498
  linkPress?: (oEvent: Event) => void;
10419
10499
  }
10420
10500
 
10421
- export interface $HierarchyItemLinkPressEventParameters {}
10501
+ export interface HierarchyItem$LinkPressEventParameters {}
10502
+
10503
+ export type HierarchyItem$LinkPressEvent = Event<
10504
+ HierarchyItem$LinkPressEventParameters,
10505
+ HierarchyItem
10506
+ >;
10422
10507
  }
10423
10508
 
10424
10509
  declare module "sap/ca/ui/InPlaceEdit" {
10425
10510
  import { default as Control, $ControlSettings } from "sap/ui/core/Control";
10426
10511
 
10427
- import Event from "sap/ui/base/Event";
10428
-
10429
10512
  import ElementMetadata from "sap/ui/core/ElementMetadata";
10430
10513
 
10431
10514
  import TooltipBase from "sap/ui/core/TooltipBase";
@@ -10434,6 +10517,8 @@ declare module "sap/ca/ui/InPlaceEdit" {
10434
10517
 
10435
10518
  import { PropertyBindingInfo } from "sap/ui/base/ManagedObject";
10436
10519
 
10520
+ import Event from "sap/ui/base/Event";
10521
+
10437
10522
  /**
10438
10523
  * @deprecated (since 1.22) - This control is not required anymore as per central UX requirements. Please
10439
10524
  * use sap.m.Input instead! This control will not be supported anymore.
@@ -10441,7 +10526,7 @@ declare module "sap/ca/ui/InPlaceEdit" {
10441
10526
  * This control is used to switch between readonly and edit modes. A typical use case would be to change
10442
10527
  * the value of a Label.
10443
10528
  */
10444
- class InPlaceEdit extends Control {
10529
+ export default class InPlaceEdit extends Control {
10445
10530
  /**
10446
10531
  * Constructor for a new InPlaceEdit.
10447
10532
  *
@@ -10522,7 +10607,7 @@ declare module "sap/ca/ui/InPlaceEdit" {
10522
10607
  /**
10523
10608
  * The function to be called when the event occurs
10524
10609
  */
10525
- fnFunction: (p1: Event<$InPlaceEditChangeEventParameters>) => void,
10610
+ fnFunction: (p1: InPlaceEdit$ChangeEvent) => void,
10526
10611
  /**
10527
10612
  * Context object to call the event handler with. Defaults to this `sap.ca.ui.InPlaceEdit` itself
10528
10613
  */
@@ -10543,7 +10628,7 @@ declare module "sap/ca/ui/InPlaceEdit" {
10543
10628
  /**
10544
10629
  * The function to be called when the event occurs
10545
10630
  */
10546
- fnFunction: (p1: Event<$InPlaceEditChangeEventParameters>) => void,
10631
+ fnFunction: (p1: InPlaceEdit$ChangeEvent) => void,
10547
10632
  /**
10548
10633
  * Context object to call the event handler with. Defaults to this `sap.ca.ui.InPlaceEdit` itself
10549
10634
  */
@@ -10571,14 +10656,14 @@ declare module "sap/ca/ui/InPlaceEdit" {
10571
10656
  /**
10572
10657
  * The function to be called, when the event occurs
10573
10658
  */
10574
- fnFunction: (p1: Event<$InPlaceEditChangeEventParameters>) => void,
10659
+ fnFunction: (p1: InPlaceEdit$ChangeEvent) => void,
10575
10660
  /**
10576
10661
  * Context object on which the given function had to be called
10577
10662
  */
10578
10663
  oListener?: object
10579
10664
  ): this;
10580
10665
  /**
10581
- * @PROTECTED - DO NOT USE IN APPLICATIONS (only for related classes in the framework)
10666
+ * @ui5-protected Do not call from applications (only from related classes in the framework)
10582
10667
  *
10583
10668
  * Fires event {@link #event:change change} to attached listeners.
10584
10669
  *
@@ -10588,7 +10673,7 @@ declare module "sap/ca/ui/InPlaceEdit" {
10588
10673
  /**
10589
10674
  * Parameters to pass along with the event
10590
10675
  */
10591
- mParameters?: $InPlaceEditChangeEventParameters
10676
+ mParameters?: InPlaceEdit$ChangeEventParameters
10592
10677
  ): this;
10593
10678
  /**
10594
10679
  * Gets content of aggregation {@link #getContent content}.
@@ -10691,7 +10776,6 @@ declare module "sap/ca/ui/InPlaceEdit" {
10691
10776
  sValueState?: ValueState | keyof typeof ValueState
10692
10777
  ): this;
10693
10778
  }
10694
- export default InPlaceEdit;
10695
10779
 
10696
10780
  export interface $InPlaceEditSettings extends $ControlSettings {
10697
10781
  /**
@@ -10717,15 +10801,20 @@ declare module "sap/ca/ui/InPlaceEdit" {
10717
10801
  * Event is fired when the text in the field has changed AND the focus leaves the InPlaceEdit or the Enter
10718
10802
  * key is pressed.
10719
10803
  */
10720
- change?: (oEvent: Event<$InPlaceEditChangeEventParameters>) => void;
10804
+ change?: (oEvent: InPlaceEdit$ChangeEvent) => void;
10721
10805
  }
10722
10806
 
10723
- export interface $InPlaceEditChangeEventParameters {
10807
+ export interface InPlaceEdit$ChangeEventParameters {
10724
10808
  /**
10725
10809
  * The new / changed value of the InPlaceEdit.
10726
10810
  */
10727
10811
  newValue?: string;
10728
10812
  }
10813
+
10814
+ export type InPlaceEdit$ChangeEvent = Event<
10815
+ InPlaceEdit$ChangeEventParameters,
10816
+ InPlaceEdit
10817
+ >;
10729
10818
  }
10730
10819
 
10731
10820
  declare module "sap/ca/ui/model/format/FormattingLibrary" {
@@ -10752,7 +10841,7 @@ declare module "sap/ca/ui/model/format/AmountFormat" {
10752
10841
  *
10753
10842
  * If no pattern is specified a default pattern according to the locale settings is used.
10754
10843
  */
10755
- class AmountFormat {
10844
+ export default class AmountFormat {
10756
10845
  /**
10757
10846
  * Constructor for AmountFormat - must not be used: To get a AmountFormat instance, please use getInstance.
10758
10847
  */
@@ -10888,7 +10977,6 @@ declare module "sap/ca/ui/model/format/AmountFormat" {
10888
10977
  sValue: string
10889
10978
  ): number;
10890
10979
  }
10891
- export default AmountFormat;
10892
10980
  }
10893
10981
 
10894
10982
  declare module "sap/ca/ui/model/format/DateFormat" {
@@ -10912,7 +11000,7 @@ declare module "sap/ca/ui/model/format/DateFormat" {
10912
11000
  * Supported format options are pattern based on Unicode LDML Date Format notation. If no pattern is specified
10913
11001
  * a default pattern according to the locale settings is used.
10914
11002
  */
10915
- class DateFormat {
11003
+ export default class DateFormat {
10916
11004
  /**
10917
11005
  * Constructor for DateFormat - must not be used: To get a DateFormat instance, please use getInstance,
10918
11006
  * getDateTimeInstance or getTimeInstance.
@@ -11027,7 +11115,6 @@ declare module "sap/ca/ui/model/format/DateFormat" {
11027
11115
  sValue: string
11028
11116
  ): Date;
11029
11117
  }
11030
- export default DateFormat;
11031
11118
  }
11032
11119
 
11033
11120
  declare module "sap/ca/ui/model/format/FileSizeFormat" {
@@ -11044,7 +11131,7 @@ declare module "sap/ca/ui/model/format/FileSizeFormat" {
11044
11131
  *
11045
11132
  * Simplified logic: display in kB for 1e3 <= bytes < 1e6 display in MB for 1e6 <= bytes < 1e9 ...
11046
11133
  */
11047
- class FileSizeFormat {
11134
+ export default class FileSizeFormat {
11048
11135
  /**
11049
11136
  * Constructor for FileSizeFormat - must not be used: To get a FileSizeFormat instance, please use getInstance.
11050
11137
  */
@@ -11093,7 +11180,6 @@ declare module "sap/ca/ui/model/format/FileSizeFormat" {
11093
11180
  sValue: string
11094
11181
  ): number;
11095
11182
  }
11096
- export default FileSizeFormat;
11097
11183
  }
11098
11184
 
11099
11185
  declare module "sap/ca/ui/model/format/QuantityFormat" {
@@ -11109,7 +11195,7 @@ declare module "sap/ca/ui/model/format/QuantityFormat" {
11109
11195
  *
11110
11196
  * If no pattern is specified a default pattern according to the locale settings is used.
11111
11197
  */
11112
- class QuantityFormat {
11198
+ export default class QuantityFormat {
11113
11199
  /**
11114
11200
  * Constructor for QuantityFormat - must not be used: To get a QuantityFormat instance, please use getInstance.
11115
11201
  */
@@ -11191,7 +11277,6 @@ declare module "sap/ca/ui/model/format/QuantityFormat" {
11191
11277
  sValue: string
11192
11278
  ): number;
11193
11279
  }
11194
- export default QuantityFormat;
11195
11280
  }
11196
11281
 
11197
11282
  declare module "sap/ca/ui/model/type/Date" {
@@ -11205,7 +11290,7 @@ declare module "sap/ca/ui/model/type/Date" {
11205
11290
  *
11206
11291
  * This class represents date simple types.
11207
11292
  */
11208
- class Date1 extends SimpleType {
11293
+ export default class Date1 extends SimpleType {
11209
11294
  /**
11210
11295
  * Constructor for a Date type.
11211
11296
  */
@@ -11270,11 +11355,10 @@ declare module "sap/ca/ui/model/type/Date" {
11270
11355
  */
11271
11356
  static getMetadata(): Metadata;
11272
11357
  /**
11273
- * @PROTECTED - DO NOT USE IN APPLICATIONS (only for related classes in the framework)
11358
+ * @ui5-protected Do not call from applications (only from related classes in the framework)
11274
11359
  */
11275
11360
  getOutputPattern(): void;
11276
11361
  }
11277
- export default Date1;
11278
11362
  }
11279
11363
 
11280
11364
  declare module "sap/ca/ui/model/type/DateTime" {
@@ -11288,7 +11372,7 @@ declare module "sap/ca/ui/model/type/DateTime" {
11288
11372
  *
11289
11373
  * This class represents datetime simple types.
11290
11374
  */
11291
- class DateTime extends Date1 {
11375
+ export default class DateTime extends Date1 {
11292
11376
  /**
11293
11377
  * Constructor for a DateTime type.
11294
11378
  */
@@ -11337,7 +11421,6 @@ declare module "sap/ca/ui/model/type/DateTime" {
11337
11421
  */
11338
11422
  static getMetadata(): Metadata;
11339
11423
  }
11340
- export default DateTime;
11341
11424
  }
11342
11425
 
11343
11426
  declare module "sap/ca/ui/model/type/FileSize" {
@@ -11351,7 +11434,7 @@ declare module "sap/ca/ui/model/type/FileSize" {
11351
11434
  *
11352
11435
  * This class represents file size types.
11353
11436
  */
11354
- class FileSize extends SimpleType {
11437
+ export default class FileSize extends SimpleType {
11355
11438
  /**
11356
11439
  * Constructor for a FileSize type.
11357
11440
  */
@@ -11395,7 +11478,6 @@ declare module "sap/ca/ui/model/type/FileSize" {
11395
11478
  */
11396
11479
  static getMetadata(): Metadata;
11397
11480
  }
11398
- export default FileSize;
11399
11481
  }
11400
11482
 
11401
11483
  declare module "sap/ca/ui/model/type/Number" {
@@ -11410,7 +11492,7 @@ declare module "sap/ca/ui/model/type/Number" {
11410
11492
  *
11411
11493
  * This class represents number simple types.
11412
11494
  */
11413
- class Number1 extends SimpleType {
11495
+ export default class Number1 extends SimpleType {
11414
11496
  /**
11415
11497
  * Constructor for a Number type.
11416
11498
  */
@@ -11454,7 +11536,6 @@ declare module "sap/ca/ui/model/type/Number" {
11454
11536
  */
11455
11537
  static getMetadata(): Metadata;
11456
11538
  }
11457
- export default Number1;
11458
11539
  }
11459
11540
 
11460
11541
  declare module "sap/ca/ui/model/type/Time" {
@@ -11468,7 +11549,7 @@ declare module "sap/ca/ui/model/type/Time" {
11468
11549
  *
11469
11550
  * This class represents time simple types.
11470
11551
  */
11471
- class Time extends Date1 {
11552
+ export default class Time extends Date1 {
11472
11553
  /**
11473
11554
  * Constructor for a Time type.
11474
11555
  */
@@ -11517,7 +11598,6 @@ declare module "sap/ca/ui/model/type/Time" {
11517
11598
  */
11518
11599
  static getMetadata(): Metadata;
11519
11600
  }
11520
- export default Time;
11521
11601
  }
11522
11602
 
11523
11603
  declare module "sap/ca/ui/Notes" {
@@ -11538,7 +11618,7 @@ declare module "sap/ca/ui/Notes" {
11538
11618
  * the FeedListItem or the ExpansibleFeedListItem). The developer is also responsible to implement the code
11539
11619
  * to send the notes to the backend system, by responding to the addNote event.
11540
11620
  */
11541
- class Notes extends List {
11621
+ export default class Notes extends List {
11542
11622
  /**
11543
11623
  * Constructor for a new Notes.
11544
11624
  *
@@ -11670,7 +11750,7 @@ declare module "sap/ca/ui/Notes" {
11670
11750
  oListener?: object
11671
11751
  ): this;
11672
11752
  /**
11673
- * @PROTECTED - DO NOT USE IN APPLICATIONS (only for related classes in the framework)
11753
+ * @ui5-protected Do not call from applications (only from related classes in the framework)
11674
11754
  *
11675
11755
  * Fires event {@link #event:addNote addNote} to attached listeners.
11676
11756
  *
@@ -11760,7 +11840,6 @@ declare module "sap/ca/ui/Notes" {
11760
11840
  iTextMaxLength?: int
11761
11841
  ): this;
11762
11842
  }
11763
- export default Notes;
11764
11843
 
11765
11844
  export interface $NotesSettings extends $ListSettings {
11766
11845
  /**
@@ -11788,7 +11867,9 @@ declare module "sap/ca/ui/Notes" {
11788
11867
  addNote?: (oEvent: Event) => void;
11789
11868
  }
11790
11869
 
11791
- export interface $NotesAddNoteEventParameters {}
11870
+ export interface Notes$AddNoteEventParameters {}
11871
+
11872
+ export type Notes$AddNoteEvent = Event<Notes$AddNoteEventParameters, Notes>;
11792
11873
  }
11793
11874
 
11794
11875
  declare module "sap/ca/ui/OverflowContainer" {
@@ -11810,7 +11891,7 @@ declare module "sap/ca/ui/OverflowContainer" {
11810
11891
  * The OverflowContainer allows the content of a control to be partially displayed before being fully expanded.
11811
11892
  * It will cut its content to a fixed height that can be defined. It is fully suitable within an IconTabBar.
11812
11893
  */
11813
- class OverflowContainer extends Control {
11894
+ export default class OverflowContainer extends Control {
11814
11895
  /**
11815
11896
  * Constructor for a new OverflowContainer.
11816
11897
  *
@@ -11999,7 +12080,6 @@ declare module "sap/ca/ui/OverflowContainer" {
11999
12080
  sOverflowHeight?: CSSSize
12000
12081
  ): this;
12001
12082
  }
12002
- export default OverflowContainer;
12003
12083
 
12004
12084
  export interface $OverflowContainerSettings extends $ControlSettings {
12005
12085
  /**
@@ -12037,7 +12117,7 @@ declare module "sap/ca/ui/OverviewTile" {
12037
12117
  *
12038
12118
  * Display aTile that presents an overview of a customer
12039
12119
  */
12040
- class OverviewTile extends Tile {
12120
+ export default class OverviewTile extends Tile {
12041
12121
  /**
12042
12122
  * Constructor for a new OverviewTile.
12043
12123
  *
@@ -12161,7 +12241,7 @@ declare module "sap/ca/ui/OverviewTile" {
12161
12241
  oListener?: object
12162
12242
  ): this;
12163
12243
  /**
12164
- * @PROTECTED - DO NOT USE IN APPLICATIONS (only for related classes in the framework)
12244
+ * @ui5-protected Do not call from applications (only from related classes in the framework)
12165
12245
  *
12166
12246
  * Fires event {@link #event:contactPress contactPress} to attached listeners.
12167
12247
  *
@@ -12488,7 +12568,6 @@ declare module "sap/ca/ui/OverviewTile" {
12488
12568
  sWidth?: CSSSize
12489
12569
  ): this;
12490
12570
  }
12491
- export default OverviewTile;
12492
12571
 
12493
12572
  export interface $OverviewTileSettings extends $TileSettings {
12494
12573
  /**
@@ -12557,7 +12636,12 @@ declare module "sap/ca/ui/OverviewTile" {
12557
12636
  contactPress?: (oEvent: Event) => void;
12558
12637
  }
12559
12638
 
12560
- export interface $OverviewTileContactPressEventParameters {}
12639
+ export interface OverviewTile$ContactPressEventParameters {}
12640
+
12641
+ export type OverviewTile$ContactPressEvent = Event<
12642
+ OverviewTile$ContactPressEventParameters,
12643
+ OverviewTile
12644
+ >;
12561
12645
  }
12562
12646
 
12563
12647
  declare module "sap/ca/ui/PictureItem" {
@@ -12577,7 +12661,7 @@ declare module "sap/ca/ui/PictureItem" {
12577
12661
  *
12578
12662
  * A picture / photo Item for AddPicture and PictureViewer Controls
12579
12663
  */
12580
- class PictureItem extends Control {
12664
+ export default class PictureItem extends Control {
12581
12665
  /**
12582
12666
  * Constructor for a new PictureItem.
12583
12667
  *
@@ -12701,7 +12785,7 @@ declare module "sap/ca/ui/PictureItem" {
12701
12785
  oListener?: object
12702
12786
  ): this;
12703
12787
  /**
12704
- * @PROTECTED - DO NOT USE IN APPLICATIONS (only for related classes in the framework)
12788
+ * @ui5-protected Do not call from applications (only from related classes in the framework)
12705
12789
  *
12706
12790
  * Fires event {@link #event:loaded loaded} to attached listeners.
12707
12791
  *
@@ -12849,7 +12933,6 @@ declare module "sap/ca/ui/PictureItem" {
12849
12933
  sWidth?: CSSSize
12850
12934
  ): this;
12851
12935
  }
12852
- export default PictureItem;
12853
12936
 
12854
12937
  export interface $PictureItemSettings extends $ControlSettings {
12855
12938
  /**
@@ -12887,7 +12970,12 @@ declare module "sap/ca/ui/PictureItem" {
12887
12970
  loaded?: (oEvent: Event) => void;
12888
12971
  }
12889
12972
 
12890
- export interface $PictureItemLoadedEventParameters {}
12973
+ export interface PictureItem$LoadedEventParameters {}
12974
+
12975
+ export type PictureItem$LoadedEvent = Event<
12976
+ PictureItem$LoadedEventParameters,
12977
+ PictureItem
12978
+ >;
12891
12979
  }
12892
12980
 
12893
12981
  declare module "sap/ca/ui/PictureTile" {
@@ -12911,7 +12999,7 @@ declare module "sap/ca/ui/PictureTile" {
12911
12999
  *
12912
13000
  * Tile control embedding an image and allowing custom sizing
12913
13001
  */
12914
- class PictureTile extends CustomTile {
13002
+ export default class PictureTile extends CustomTile {
12915
13003
  /**
12916
13004
  * Constructor for a new PictureTile.
12917
13005
  *
@@ -13036,7 +13124,7 @@ declare module "sap/ca/ui/PictureTile" {
13036
13124
  oListener?: object
13037
13125
  ): this;
13038
13126
  /**
13039
- * @PROTECTED - DO NOT USE IN APPLICATIONS (only for related classes in the framework)
13127
+ * @ui5-protected Do not call from applications (only from related classes in the framework)
13040
13128
  *
13041
13129
  * Fires event {@link #event:pictureDelete pictureDelete} to attached listeners.
13042
13130
  *
@@ -13120,7 +13208,6 @@ declare module "sap/ca/ui/PictureTile" {
13120
13208
  sWidth?: CSSSize
13121
13209
  ): this;
13122
13210
  }
13123
- export default PictureTile;
13124
13211
 
13125
13212
  export interface $PictureTileSettings extends $CustomTileSettings {
13126
13213
  /**
@@ -13144,7 +13231,12 @@ declare module "sap/ca/ui/PictureTile" {
13144
13231
  pictureDelete?: (oEvent: Event) => void;
13145
13232
  }
13146
13233
 
13147
- export interface $PictureTilePictureDeleteEventParameters {}
13234
+ export interface PictureTile$PictureDeleteEventParameters {}
13235
+
13236
+ export type PictureTile$PictureDeleteEvent = Event<
13237
+ PictureTile$PictureDeleteEventParameters,
13238
+ PictureTile
13239
+ >;
13148
13240
  }
13149
13241
 
13150
13242
  declare module "sap/ca/ui/PictureViewer" {
@@ -13171,7 +13263,7 @@ declare module "sap/ca/ui/PictureViewer" {
13171
13263
  *
13172
13264
  * Picture viewer control relying on the TileContainer control
13173
13265
  */
13174
- class PictureViewer extends TileContainer {
13266
+ export default class PictureViewer extends TileContainer {
13175
13267
  /**
13176
13268
  * Constructor for a new PictureViewer.
13177
13269
  *
@@ -13329,7 +13421,7 @@ declare module "sap/ca/ui/PictureViewer" {
13329
13421
  oListener?: object
13330
13422
  ): this;
13331
13423
  /**
13332
- * @PROTECTED - DO NOT USE IN APPLICATIONS (only for related classes in the framework)
13424
+ * @ui5-protected Do not call from applications (only from related classes in the framework)
13333
13425
  *
13334
13426
  * Fires event {@link #event:pictureDeleted pictureDeleted} to attached listeners.
13335
13427
  *
@@ -13450,7 +13542,6 @@ declare module "sap/ca/ui/PictureViewer" {
13450
13542
  */
13451
13543
  setTileScaling(fTileScale: undefined): void;
13452
13544
  }
13453
- export default PictureViewer;
13454
13545
 
13455
13546
  export interface $PictureViewerSettings extends $TileContainerSettings {
13456
13547
  /**
@@ -13479,7 +13570,12 @@ declare module "sap/ca/ui/PictureViewer" {
13479
13570
  pictureDeleted?: (oEvent: Event) => void;
13480
13571
  }
13481
13572
 
13482
- export interface $PictureViewerPictureDeletedEventParameters {}
13573
+ export interface PictureViewer$PictureDeletedEventParameters {}
13574
+
13575
+ export type PictureViewer$PictureDeletedEvent = Event<
13576
+ PictureViewer$PictureDeletedEventParameters,
13577
+ PictureViewer
13578
+ >;
13483
13579
  }
13484
13580
 
13485
13581
  declare module "sap/ca/ui/PictureViewerItem" {
@@ -13499,7 +13595,7 @@ declare module "sap/ca/ui/PictureViewerItem" {
13499
13595
  *
13500
13596
  * Picture viewer control relying on the TileContainer control
13501
13597
  */
13502
- class PictureViewerItem extends Control {
13598
+ export default class PictureViewerItem extends Control {
13503
13599
  /**
13504
13600
  * Constructor for a new PictureViewerItem.
13505
13601
  *
@@ -13605,7 +13701,6 @@ declare module "sap/ca/ui/PictureViewerItem" {
13605
13701
  sSrc: string
13606
13702
  ): PictureViewerItem;
13607
13703
  }
13608
- export default PictureViewerItem;
13609
13704
 
13610
13705
  export interface $PictureViewerItemSettings extends $ControlSettings {
13611
13706
  /**
@@ -13690,7 +13785,7 @@ declare module "sap/ca/ui/ZoomableScrollContainer" {
13690
13785
  *
13691
13786
  * Based on a ScrollContainer, it allows you to pinch and zoom on mobile devices
13692
13787
  */
13693
- class ZoomableScrollContainer extends ScrollContainer {
13788
+ export default class ZoomableScrollContainer extends ScrollContainer {
13694
13789
  /**
13695
13790
  * Constructor for a new ZoomableScrollContainer.
13696
13791
  *
@@ -13860,7 +13955,6 @@ declare module "sap/ca/ui/ZoomableScrollContainer" {
13860
13955
  bZoomable?: boolean
13861
13956
  ): this;
13862
13957
  }
13863
- export default ZoomableScrollContainer;
13864
13958
 
13865
13959
  export interface $ZoomableScrollContainerSettings
13866
13960
  extends $ScrollContainerSettings {