@sapui5/types 1.113.0 → 1.115.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (64) hide show
  1. package/package.json +1 -1
  2. package/types/index.d.ts +0 -1
  3. package/types/sap.apf.d.ts +70 -60
  4. package/types/sap.ca.ui.d.ts +207 -105
  5. package/types/sap.chart.d.ts +148 -129
  6. package/types/sap.collaboration.d.ts +98 -87
  7. package/types/sap.esh.search.ui.d.ts +133 -2
  8. package/types/sap.f.d.ts +1416 -1005
  9. package/types/sap.fe.core.d.ts +55 -166
  10. package/types/sap.fe.macros.d.ts +96 -20
  11. package/types/sap.fe.navigation.d.ts +42 -31
  12. package/types/sap.fe.templates.d.ts +15 -293
  13. package/types/sap.fe.test.d.ts +102 -46
  14. package/types/sap.feedback.ui.d.ts +1 -1
  15. package/types/sap.gantt.d.ts +1987 -1251
  16. package/types/sap.insights.d.ts +1 -1
  17. package/types/sap.landvisz.d.ts +75 -29
  18. package/types/sap.m.d.ts +7415 -5818
  19. package/types/sap.makit.d.ts +43 -18
  20. package/types/sap.me.d.ts +112 -69
  21. package/types/sap.ndc.d.ts +101 -39
  22. package/types/sap.ovp.d.ts +3 -3
  23. package/types/sap.rules.ui.d.ts +53 -24
  24. package/types/sap.sac.df.d.ts +39 -632
  25. package/types/sap.suite.ui.commons.d.ts +2094 -1437
  26. package/types/sap.suite.ui.generic.template.d.ts +47 -44
  27. package/types/sap.suite.ui.microchart.d.ts +242 -163
  28. package/types/sap.tnt.d.ts +138 -67
  29. package/types/sap.ui.codeeditor.d.ts +37 -30
  30. package/types/sap.ui.commons.d.ts +936 -708
  31. package/types/sap.ui.comp.d.ts +2707 -1862
  32. package/types/sap.ui.core.d.ts +6435 -3941
  33. package/types/sap.ui.dt.d.ts +1 -1
  34. package/types/sap.ui.export.d.ts +38 -32
  35. package/types/sap.ui.fl.d.ts +102 -82
  36. package/types/sap.ui.generic.app.d.ts +59 -50
  37. package/types/sap.ui.generic.template.d.ts +1 -1
  38. package/types/sap.ui.integration.d.ts +2489 -2327
  39. package/types/sap.ui.layout.d.ts +378 -398
  40. package/types/sap.ui.mdc.d.ts +22041 -115
  41. package/types/sap.ui.richtexteditor.d.ts +55 -50
  42. package/types/sap.ui.rta.d.ts +1 -1
  43. package/types/sap.ui.suite.d.ts +13 -11
  44. package/types/sap.ui.support.d.ts +7 -7
  45. package/types/sap.ui.table.d.ts +628 -478
  46. package/types/sap.ui.testrecorder.d.ts +1 -1
  47. package/types/sap.ui.unified.d.ts +1013 -723
  48. package/types/sap.ui.ux3.d.ts +847 -592
  49. package/types/sap.ui.vbm.d.ts +1018 -760
  50. package/types/sap.ui.vk.d.ts +2897 -1896
  51. package/types/sap.ui.vtm.d.ts +650 -479
  52. package/types/sap.ui.webc.common.d.ts +5 -3
  53. package/types/sap.ui.webc.fiori.d.ts +530 -345
  54. package/types/sap.ui.webc.main.d.ts +1114 -835
  55. package/types/sap.uiext.inbox.d.ts +79 -37
  56. package/types/sap.ushell.d.ts +444 -212
  57. package/types/sap.ushell_abap.d.ts +1 -1
  58. package/types/sap.uxap.d.ts +309 -222
  59. package/types/sap.viz.d.ts +932 -521
  60. package/types/sap.webanalytics.core.d.ts +1 -1
  61. package/types/sap.zen.commons.d.ts +15 -10
  62. package/types/sap.zen.crosstab.d.ts +7 -4
  63. package/types/sap.zen.dsh.d.ts +143 -87
  64. package/types/sap.sac.grid.d.ts +0 -774
@@ -1,3 +1,3 @@
1
- // For Library Version: 1.113.0
1
+ // For Library Version: 1.115.0
2
2
 
3
3
  declare namespace sap {}
@@ -1,4 +1,4 @@
1
- // For Library Version: 1.113.0
1
+ // For Library Version: 1.115.0
2
2
 
3
3
  declare module "sap/zen/commons/library" {}
4
4
 
@@ -53,7 +53,7 @@ declare module "sap/zen/commons/layout/AbsoluteLayout" {
53
53
  *
54
54
  * The Absolute Layout positions its child controls absolutely
55
55
  */
56
- export default class AbsoluteLayout extends Control {
56
+ class AbsoluteLayout extends Control {
57
57
  /**
58
58
  * Constructor for a new layout/AbsoluteLayout.
59
59
  *
@@ -213,8 +213,8 @@ declare module "sap/zen/commons/layout/AbsoluteLayout" {
213
213
  oContent: Control
214
214
  ): int;
215
215
  /**
216
- * Checks for the provided `sap.zen.commons.layout.PositionContainer` in the aggregation {@link #getPositions
217
- * positions}. and returns its index if found or -1 otherwise.
216
+ * Checks for the provided `sap.zen.commons.layout.PositionContainer` in the aggregation {@link #getPositions positions}.
217
+ * and returns its index if found or -1 otherwise.
218
218
  *
219
219
  * @returns The index of the provided control in the aggregation if found, or -1 otherwise
220
220
  */
@@ -382,6 +382,7 @@ declare module "sap/zen/commons/layout/AbsoluteLayout" {
382
382
  sWidth?: CSSSize
383
383
  ): this;
384
384
  }
385
+ export default AbsoluteLayout;
385
386
 
386
387
  export interface $AbsoluteLayoutSettings extends $ControlSettings {
387
388
  /**
@@ -440,7 +441,7 @@ declare module "sap/zen/commons/layout/MatrixLayout" {
440
441
  /**
441
442
  * @deprecated (since 1.38) - Instead, use the `sap.ui.layout.Grid` control.
442
443
  */
443
- export default class MatrixLayout extends Control {
444
+ class MatrixLayout extends Control {
444
445
  /**
445
446
  * Constructor for a new layout/MatrixLayout.
446
447
  *
@@ -715,6 +716,7 @@ declare module "sap/zen/commons/layout/MatrixLayout" {
715
716
  sWidths?: CSSSize[]
716
717
  ): this;
717
718
  }
719
+ export default MatrixLayout;
718
720
 
719
721
  export interface $MatrixLayoutSettings extends $ControlSettings {
720
722
  /**
@@ -765,7 +767,7 @@ declare module "sap/zen/commons/layout/MatrixLayoutCell" {
765
767
  *
766
768
  * Non-control element used as part of a matrix layout's inner structure.
767
769
  */
768
- export default class MatrixLayoutCell extends UI5Element {
770
+ class MatrixLayoutCell extends UI5Element {
769
771
  /**
770
772
  * Constructor for a new layout/MatrixLayoutCell.
771
773
  *
@@ -858,6 +860,7 @@ declare module "sap/zen/commons/layout/MatrixLayoutCell" {
858
860
  sStyleClass: string
859
861
  ): MatrixLayoutCell;
860
862
  }
863
+ export default MatrixLayoutCell;
861
864
 
862
865
  export interface $MatrixLayoutCellSettings extends $ElementSettings {}
863
866
  }
@@ -881,7 +884,7 @@ declare module "sap/zen/commons/layout/MatrixLayoutRow" {
881
884
  *
882
885
  * Non-control element used as part of a matrix layout's inner structure.
883
886
  */
884
- export default class MatrixLayoutRow extends UI5Element {
887
+ class MatrixLayoutRow extends UI5Element {
885
888
  /**
886
889
  * Constructor for a new layout/MatrixLayoutRow.
887
890
  *
@@ -1022,8 +1025,8 @@ declare module "sap/zen/commons/layout/MatrixLayoutRow" {
1022
1025
  sStyleClass: string
1023
1026
  ): boolean;
1024
1027
  /**
1025
- * Checks for the provided `sap.zen.commons.layout.MatrixLayoutCell` in the aggregation {@link #getCells
1026
- * cells}. and returns its index if found or -1 otherwise.
1028
+ * Checks for the provided `sap.zen.commons.layout.MatrixLayoutCell` in the aggregation {@link #getCells cells}.
1029
+ * and returns its index if found or -1 otherwise.
1027
1030
  *
1028
1031
  * @returns The index of the provided control in the aggregation if found, or -1 otherwise
1029
1032
  */
@@ -1097,6 +1100,7 @@ declare module "sap/zen/commons/layout/MatrixLayoutRow" {
1097
1100
  sHeight?: CSSSize
1098
1101
  ): this;
1099
1102
  }
1103
+ export default MatrixLayoutRow;
1100
1104
 
1101
1105
  export interface $MatrixLayoutRowSettings extends $ElementSettings {
1102
1106
  /**
@@ -1131,7 +1135,7 @@ declare module "sap/zen/commons/layout/PositionContainer" {
1131
1135
  *
1132
1136
  * Is used to specify the position of a control in the AbsoluteLayout
1133
1137
  */
1134
- export default class PositionContainer extends UI5Element {
1138
+ class PositionContainer extends UI5Element {
1135
1139
  /**
1136
1140
  * Constructor for a new layout/PositionContainer.
1137
1141
  *
@@ -1377,6 +1381,7 @@ declare module "sap/zen/commons/layout/PositionContainer" {
1377
1381
  oPos: object
1378
1382
  ): void;
1379
1383
  }
1384
+ export default PositionContainer;
1380
1385
 
1381
1386
  export interface $PositionContainerSettings extends $ElementSettings {
1382
1387
  /**
@@ -1,4 +1,4 @@
1
- // For Library Version: 1.113.0
1
+ // For Library Version: 1.115.0
2
2
 
3
3
  declare module "sap/zen/crosstab/library" {}
4
4
 
@@ -16,7 +16,7 @@ declare module "sap/zen/crosstab/Crosstab" {
16
16
  *
17
17
  * Add your documentation for the new Crosstab
18
18
  */
19
- export default class Crosstab extends Control {
19
+ class Crosstab extends Control {
20
20
  /**
21
21
  * Constructor for a new Crosstab.
22
22
  *
@@ -124,6 +124,7 @@ declare module "sap/zen/crosstab/Crosstab" {
124
124
  sWidth?: CSSSize
125
125
  ): this;
126
126
  }
127
+ export default Crosstab;
127
128
 
128
129
  export interface $CrosstabSettings extends $ControlSettings {
129
130
  /**
@@ -150,7 +151,7 @@ declare module "sap/zen/crosstab/DataCell" {
150
151
  *
151
152
  * Add your documentation for the new DataCell
152
153
  */
153
- export default class DataCell extends Control {
154
+ class DataCell extends Control {
154
155
  /**
155
156
  * Constructor for a new DataCell.
156
157
  *
@@ -352,6 +353,7 @@ declare module "sap/zen/crosstab/DataCell" {
352
353
  sText?: string
353
354
  ): this;
354
355
  }
356
+ export default DataCell;
355
357
 
356
358
  export interface $DataCellSettings extends $ControlSettings {
357
359
  /**
@@ -398,7 +400,7 @@ declare module "sap/zen/crosstab/HeaderCell" {
398
400
  *
399
401
  * Add your documentation for the new HeaderCell
400
402
  */
401
- export default class HeaderCell extends Control {
403
+ class HeaderCell extends Control {
402
404
  /**
403
405
  * Constructor for a new HeaderCell.
404
406
  *
@@ -1020,6 +1022,7 @@ declare module "sap/zen/crosstab/HeaderCell" {
1020
1022
  sText?: string
1021
1023
  ): this;
1022
1024
  }
1025
+ export default HeaderCell;
1023
1026
 
1024
1027
  export interface $HeaderCellSettings extends $ControlSettings {
1025
1028
  /**
@@ -1,4 +1,4 @@
1
- // For Library Version: 1.113.0
1
+ // For Library Version: 1.115.0
2
2
 
3
3
  declare module "sap/zen/dsh/library" {}
4
4
 
@@ -20,7 +20,7 @@ declare module "sap/zen/dsh/AnalyticGrid" {
20
20
  *
21
21
  * Control for embedding a Design Studio Analytic Grid in an S/4 HANA Fiori application
22
22
  */
23
- export default class AnalyticGrid extends Control {
23
+ class AnalyticGrid extends Control {
24
24
  /**
25
25
  * Constructor for a new AnalyticGrid.
26
26
  *
@@ -101,7 +101,9 @@ declare module "sap/zen/dsh/AnalyticGrid" {
101
101
  /**
102
102
  * The function to be called when the event occurs
103
103
  */
104
- fnFunction: (p1: Event) => void,
104
+ fnFunction: (
105
+ p1: Event<$AnalyticGridSelectionChangeEventParameters>
106
+ ) => void,
105
107
  /**
106
108
  * Context object to call the event handler with. Defaults to this `sap.zen.dsh.AnalyticGrid` itself
107
109
  */
@@ -122,7 +124,9 @@ declare module "sap/zen/dsh/AnalyticGrid" {
122
124
  /**
123
125
  * The function to be called when the event occurs
124
126
  */
125
- fnFunction: (p1: Event) => void,
127
+ fnFunction: (
128
+ p1: Event<$AnalyticGridSelectionChangeEventParameters>
129
+ ) => void,
126
130
  /**
127
131
  * Context object to call the event handler with. Defaults to this `sap.zen.dsh.AnalyticGrid` itself
128
132
  */
@@ -147,7 +151,7 @@ declare module "sap/zen/dsh/AnalyticGrid" {
147
151
  /**
148
152
  * The function to be called when the event occurs
149
153
  */
150
- fnFunction: (p1: Event) => void,
154
+ fnFunction: (p1: Event<$AnalyticGridStateChangeEventParameters>) => void,
151
155
  /**
152
156
  * Context object to call the event handler with. Defaults to this `sap.zen.dsh.AnalyticGrid` itself
153
157
  */
@@ -167,7 +171,7 @@ declare module "sap/zen/dsh/AnalyticGrid" {
167
171
  /**
168
172
  * The function to be called when the event occurs
169
173
  */
170
- fnFunction: (p1: Event) => void,
174
+ fnFunction: (p1: Event<$AnalyticGridStateChangeEventParameters>) => void,
171
175
  /**
172
176
  * Context object to call the event handler with. Defaults to this `sap.zen.dsh.AnalyticGrid` itself
173
177
  */
@@ -185,7 +189,9 @@ declare module "sap/zen/dsh/AnalyticGrid" {
185
189
  /**
186
190
  * The function to be called, when the event occurs
187
191
  */
188
- fnFunction: (p1: Event) => void,
192
+ fnFunction: (
193
+ p1: Event<$AnalyticGridSelectionChangeEventParameters>
194
+ ) => void,
189
195
  /**
190
196
  * Context object on which the given function had to be called
191
197
  */
@@ -202,7 +208,7 @@ declare module "sap/zen/dsh/AnalyticGrid" {
202
208
  /**
203
209
  * The function to be called, when the event occurs
204
210
  */
205
- fnFunction: (p1: Event) => void,
211
+ fnFunction: (p1: Event<$AnalyticGridStateChangeEventParameters>) => void,
206
212
  /**
207
213
  * Context object on which the given function had to be called
208
214
  */
@@ -219,12 +225,7 @@ declare module "sap/zen/dsh/AnalyticGrid" {
219
225
  /**
220
226
  * Parameters to pass along with the event
221
227
  */
222
- mParameters?: {
223
- /**
224
- * A SelectionVariant specifying the current selection state of the AnalyticGrid.
225
- */
226
- selection?: object;
227
- }
228
+ mParameters?: $AnalyticGridSelectionChangeEventParameters
228
229
  ): this;
229
230
  /**
230
231
  * @PROTECTED - DO NOT USE IN APPLICATIONS (only for related classes in the framework)
@@ -237,12 +238,7 @@ declare module "sap/zen/dsh/AnalyticGrid" {
237
238
  /**
238
239
  * Parameters to pass along with the event
239
240
  */
240
- mParameters?: {
241
- /**
242
- * Serialized state string.
243
- */
244
- state?: string;
245
- }
241
+ mParameters?: $AnalyticGridStateChangeEventParameters
246
242
  ): this;
247
243
  /**
248
244
  * Gets current value of property {@link #getHeight height}.
@@ -391,6 +387,7 @@ declare module "sap/zen/dsh/AnalyticGrid" {
391
387
  sWidth?: CSSSize
392
388
  ): this;
393
389
  }
390
+ export default AnalyticGrid;
394
391
 
395
392
  export interface $AnalyticGridSettings extends $ControlSettings {
396
393
  /**
@@ -430,12 +427,30 @@ declare module "sap/zen/dsh/AnalyticGrid" {
430
427
  /**
431
428
  * Event is triggered when the state of the AnalyticGrid is changed.
432
429
  */
433
- stateChange?: (oEvent: Event) => void;
430
+ stateChange?: (
431
+ oEvent: Event<$AnalyticGridStateChangeEventParameters>
432
+ ) => void;
434
433
 
435
434
  /**
436
435
  * Event is triggered when the selection is changed.
437
436
  */
438
- selectionChange?: (oEvent: Event) => void;
437
+ selectionChange?: (
438
+ oEvent: Event<$AnalyticGridSelectionChangeEventParameters>
439
+ ) => void;
440
+ }
441
+
442
+ export interface $AnalyticGridSelectionChangeEventParameters {
443
+ /**
444
+ * A SelectionVariant specifying the current selection state of the AnalyticGrid.
445
+ */
446
+ selection?: object;
447
+ }
448
+
449
+ export interface $AnalyticGridStateChangeEventParameters {
450
+ /**
451
+ * Serialized state string.
452
+ */
453
+ state?: string;
439
454
  }
440
455
  }
441
456
 
@@ -454,7 +469,7 @@ declare module "sap/zen/dsh/Dsh" {
454
469
  *
455
470
  * Control for embedding a Design Studio application full-screen in an S/4 HANA Fiori application
456
471
  */
457
- export default class Dsh extends Control {
472
+ class Dsh extends Control {
458
473
  /**
459
474
  * Constructor for a new Dsh.
460
475
  *
@@ -866,6 +881,7 @@ declare module "sap/zen/dsh/Dsh" {
866
881
  sWidth?: CSSSize
867
882
  ): this;
868
883
  }
884
+ export default Dsh;
869
885
 
870
886
  export interface $DshSettings extends $ControlSettings {
871
887
  /**
@@ -935,12 +951,12 @@ declare module "sap/zen/dsh/widgets/ValueHelpDialog" {
935
951
 
936
952
  import Event from "sap/ui/base/Event";
937
953
 
938
- import Token from "sap/m/Token";
939
-
940
954
  import ElementMetadata from "sap/ui/core/ElementMetadata";
941
955
 
942
956
  import ValueHelpRangeOperation from "sap/zen/dsh/ValueHelpRangeOperation";
943
957
 
958
+ import Token from "sap/m/Token";
959
+
944
960
  import { PropertyBindingInfo } from "sap/ui/base/ManagedObject";
945
961
 
946
962
  import Control from "sap/ui/core/Control";
@@ -950,7 +966,7 @@ declare module "sap/zen/dsh/widgets/ValueHelpDialog" {
950
966
  *
951
967
  * The ValueHelpDialog control can be used to implement a value help for an input field.
952
968
  */
953
- export default class ValueHelpDialog extends Dialog {
969
+ class ValueHelpDialog extends Dialog {
954
970
  /**
955
971
  * Constructor for a new valuehelpdialog/ValueHelpDialog.
956
972
  *
@@ -1081,7 +1097,7 @@ declare module "sap/zen/dsh/widgets/ValueHelpDialog" {
1081
1097
  /**
1082
1098
  * The function to be called when the event occurs
1083
1099
  */
1084
- fnFunction: (p1: Event) => void,
1100
+ fnFunction: (p1: Event<$ValueHelpDialogOkEventParameters>) => void,
1085
1101
  /**
1086
1102
  * Context object to call the event handler with. Defaults to this `sap.zen.dsh.ValueHelpDialog` itself
1087
1103
  */
@@ -1103,7 +1119,7 @@ declare module "sap/zen/dsh/widgets/ValueHelpDialog" {
1103
1119
  /**
1104
1120
  * The function to be called when the event occurs
1105
1121
  */
1106
- fnFunction: (p1: Event) => void,
1122
+ fnFunction: (p1: Event<$ValueHelpDialogOkEventParameters>) => void,
1107
1123
  /**
1108
1124
  * Context object to call the event handler with. Defaults to this `sap.zen.dsh.ValueHelpDialog` itself
1109
1125
  */
@@ -1133,7 +1149,9 @@ declare module "sap/zen/dsh/widgets/ValueHelpDialog" {
1133
1149
  /**
1134
1150
  * The function to be called when the event occurs
1135
1151
  */
1136
- fnFunction: (p1: Event) => void,
1152
+ fnFunction: (
1153
+ p1: Event<$ValueHelpDialogSelectionChangeEventParameters>
1154
+ ) => void,
1137
1155
  /**
1138
1156
  * Context object to call the event handler with. Defaults to this `sap.zen.dsh.ValueHelpDialog` itself
1139
1157
  */
@@ -1158,7 +1176,9 @@ declare module "sap/zen/dsh/widgets/ValueHelpDialog" {
1158
1176
  /**
1159
1177
  * The function to be called when the event occurs
1160
1178
  */
1161
- fnFunction: (p1: Event) => void,
1179
+ fnFunction: (
1180
+ p1: Event<$ValueHelpDialogSelectionChangeEventParameters>
1181
+ ) => void,
1162
1182
  /**
1163
1183
  * Context object to call the event handler with. Defaults to this `sap.zen.dsh.ValueHelpDialog` itself
1164
1184
  */
@@ -1187,7 +1207,9 @@ declare module "sap/zen/dsh/widgets/ValueHelpDialog" {
1187
1207
  /**
1188
1208
  * The function to be called when the event occurs
1189
1209
  */
1190
- fnFunction: (p1: Event) => void,
1210
+ fnFunction: (
1211
+ p1: Event<$ValueHelpDialogTokenRemoveEventParameters>
1212
+ ) => void,
1191
1213
  /**
1192
1214
  * Context object to call the event handler with. Defaults to this `sap.zen.dsh.ValueHelpDialog` itself
1193
1215
  */
@@ -1211,7 +1233,9 @@ declare module "sap/zen/dsh/widgets/ValueHelpDialog" {
1211
1233
  /**
1212
1234
  * The function to be called when the event occurs
1213
1235
  */
1214
- fnFunction: (p1: Event) => void,
1236
+ fnFunction: (
1237
+ p1: Event<$ValueHelpDialogTokenRemoveEventParameters>
1238
+ ) => void,
1215
1239
  /**
1216
1240
  * Context object to call the event handler with. Defaults to this `sap.zen.dsh.ValueHelpDialog` itself
1217
1241
  */
@@ -1241,7 +1265,9 @@ declare module "sap/zen/dsh/widgets/ValueHelpDialog" {
1241
1265
  /**
1242
1266
  * The function to be called when the event occurs
1243
1267
  */
1244
- fnFunction: (p1: Event) => void,
1268
+ fnFunction: (
1269
+ p1: Event<$ValueHelpDialogUpdateSelectionEventParameters>
1270
+ ) => void,
1245
1271
  /**
1246
1272
  * Context object to call the event handler with. Defaults to this `sap.zen.dsh.ValueHelpDialog` itself
1247
1273
  */
@@ -1266,7 +1292,9 @@ declare module "sap/zen/dsh/widgets/ValueHelpDialog" {
1266
1292
  /**
1267
1293
  * The function to be called when the event occurs
1268
1294
  */
1269
- fnFunction: (p1: Event) => void,
1295
+ fnFunction: (
1296
+ p1: Event<$ValueHelpDialogUpdateSelectionEventParameters>
1297
+ ) => void,
1270
1298
  /**
1271
1299
  * Context object to call the event handler with. Defaults to this `sap.zen.dsh.ValueHelpDialog` itself
1272
1300
  */
@@ -1310,7 +1338,7 @@ declare module "sap/zen/dsh/widgets/ValueHelpDialog" {
1310
1338
  /**
1311
1339
  * The function to be called, when the event occurs
1312
1340
  */
1313
- fnFunction: (p1: Event) => void,
1341
+ fnFunction: (p1: Event<$ValueHelpDialogOkEventParameters>) => void,
1314
1342
  /**
1315
1343
  * Context object on which the given function had to be called
1316
1344
  */
@@ -1330,7 +1358,9 @@ declare module "sap/zen/dsh/widgets/ValueHelpDialog" {
1330
1358
  /**
1331
1359
  * The function to be called, when the event occurs
1332
1360
  */
1333
- fnFunction: (p1: Event) => void,
1361
+ fnFunction: (
1362
+ p1: Event<$ValueHelpDialogSelectionChangeEventParameters>
1363
+ ) => void,
1334
1364
  /**
1335
1365
  * Context object on which the given function had to be called
1336
1366
  */
@@ -1349,7 +1379,9 @@ declare module "sap/zen/dsh/widgets/ValueHelpDialog" {
1349
1379
  /**
1350
1380
  * The function to be called, when the event occurs
1351
1381
  */
1352
- fnFunction: (p1: Event) => void,
1382
+ fnFunction: (
1383
+ p1: Event<$ValueHelpDialogTokenRemoveEventParameters>
1384
+ ) => void,
1353
1385
  /**
1354
1386
  * Context object on which the given function had to be called
1355
1387
  */
@@ -1369,7 +1401,9 @@ declare module "sap/zen/dsh/widgets/ValueHelpDialog" {
1369
1401
  /**
1370
1402
  * The function to be called, when the event occurs
1371
1403
  */
1372
- fnFunction: (p1: Event) => void,
1404
+ fnFunction: (
1405
+ p1: Event<$ValueHelpDialogUpdateSelectionEventParameters>
1406
+ ) => void,
1373
1407
  /**
1374
1408
  * Context object on which the given function had to be called
1375
1409
  */
@@ -1401,12 +1435,7 @@ declare module "sap/zen/dsh/widgets/ValueHelpDialog" {
1401
1435
  /**
1402
1436
  * Parameters to pass along with the event
1403
1437
  */
1404
- mParameters?: {
1405
- /**
1406
- * The array of tokens created or modified on the ValueHelpDialog.
1407
- */
1408
- tokens?: Token[];
1409
- }
1438
+ mParameters?: $ValueHelpDialogOkEventParameters
1410
1439
  ): this;
1411
1440
  /**
1412
1441
  * @SINCE 1.32
@@ -1420,22 +1449,7 @@ declare module "sap/zen/dsh/widgets/ValueHelpDialog" {
1420
1449
  /**
1421
1450
  * Parameters to pass along with the event
1422
1451
  */
1423
- mParameters?: {
1424
- /**
1425
- * The RowSelectionChange event parameter from the hosted table that contains the selected items.
1426
- */
1427
- tableSelectionParams?: object;
1428
- /**
1429
- * Returns an array of objects which represents all selected row tokens. The object contains the token key,
1430
- * the row object data from the model, and the information if the token is selected. ` [{sKey, oRow, bSelect},
1431
- * ...] `
1432
- */
1433
- updateTokens?: object[];
1434
- /**
1435
- * Can be set to `true` to execute the default behaviour of the ValueHelpDialog.
1436
- */
1437
- useDefault?: boolean;
1438
- }
1452
+ mParameters?: $ValueHelpDialogSelectionChangeEventParameters
1439
1453
  ): this;
1440
1454
  /**
1441
1455
  * @SINCE 1.32
@@ -1449,16 +1463,7 @@ declare module "sap/zen/dsh/widgets/ValueHelpDialog" {
1449
1463
  /**
1450
1464
  * Parameters to pass along with the event
1451
1465
  */
1452
- mParameters?: {
1453
- /**
1454
- * The array of token keys that has been removed.
1455
- */
1456
- tokenKeys?: string[];
1457
- /**
1458
- * Can be set to true to execute the default behaviour of ValueHelpDialog.
1459
- */
1460
- useDefault?: boolean;
1461
- }
1466
+ mParameters?: $ValueHelpDialogTokenRemoveEventParameters
1462
1467
  ): this;
1463
1468
  /**
1464
1469
  * @SINCE 1.32
@@ -1472,16 +1477,7 @@ declare module "sap/zen/dsh/widgets/ValueHelpDialog" {
1472
1477
  /**
1473
1478
  * Parameters to pass along with the event
1474
1479
  */
1475
- mParameters?: {
1476
- /**
1477
- * The array of existing token keys for which the selection in the table has to be updated.
1478
- */
1479
- tokenKeys?: string[];
1480
- /**
1481
- * Can be set to true to execute the default behavior of ValueHelpDialog.
1482
- */
1483
- useDefault?: boolean;
1484
- }
1480
+ mParameters?: $ValueHelpDialogUpdateSelectionEventParameters
1485
1481
  ): this;
1486
1482
  /**
1487
1483
  * @SINCE 1.24
@@ -1875,6 +1871,7 @@ declare module "sap/zen/dsh/widgets/ValueHelpDialog" {
1875
1871
  */
1876
1872
  update(): void;
1877
1873
  }
1874
+ export default ValueHelpDialog;
1878
1875
 
1879
1876
  export interface $ValueHelpDialogSettings extends $DialogSettings {
1880
1877
  /**
@@ -1966,8 +1963,8 @@ declare module "sap/zen/dsh/widgets/ValueHelpDialog" {
1966
1963
  filterMode?: boolean | PropertyBindingInfo | `{${string}}`;
1967
1964
 
1968
1965
  /**
1969
- * Allows you to add a {@link sap.ui.comp.filterbar.FilterBar FilterBar} or {@link sap.ui.comp.smartfilterbar.SmartFilterBar
1970
- * SmartFilterBar} control to the value help dialog.
1966
+ * Allows you to add a {@link sap.ui.comp.filterbar.FilterBar FilterBar} or {@link sap.ui.comp.smartfilterbar.SmartFilterBar SmartFilterBar }
1967
+ * control to the value help dialog.
1971
1968
  */
1972
1969
  filterBar?: Control;
1973
1970
 
@@ -1976,7 +1973,7 @@ declare module "sap/zen/dsh/widgets/ValueHelpDialog" {
1976
1973
  *
1977
1974
  * This event is fired when the OK button is pressed.
1978
1975
  */
1979
- ok?: (oEvent: Event) => void;
1976
+ ok?: (oEvent: Event<$ValueHelpDialogOkEventParameters>) => void;
1980
1977
 
1981
1978
  /**
1982
1979
  * @SINCE 1.24
@@ -1992,7 +1989,9 @@ declare module "sap/zen/dsh/widgets/ValueHelpDialog" {
1992
1989
  *
1993
1990
  * **Note:** The event will only be raised when the dialog gets a table instance from outside via `setTable`.
1994
1991
  */
1995
- selectionChange?: (oEvent: Event) => void;
1992
+ selectionChange?: (
1993
+ oEvent: Event<$ValueHelpDialogSelectionChangeEventParameters>
1994
+ ) => void;
1996
1995
 
1997
1996
  /**
1998
1997
  * @SINCE 1.32
@@ -2001,7 +2000,9 @@ declare module "sap/zen/dsh/widgets/ValueHelpDialog" {
2001
2000
  *
2002
2001
  * **Note:** The event will only be raised when the dialog gets a table instance from outside via `setTable`.
2003
2002
  */
2004
- tokenRemove?: (oEvent: Event) => void;
2003
+ tokenRemove?: (
2004
+ oEvent: Event<$ValueHelpDialogTokenRemoveEventParameters>
2005
+ ) => void;
2005
2006
 
2006
2007
  /**
2007
2008
  * @SINCE 1.32
@@ -2010,7 +2011,61 @@ declare module "sap/zen/dsh/widgets/ValueHelpDialog" {
2010
2011
  *
2011
2012
  * **Note:** The event will only be raised when the dialog gets a table instance from outside via `setTable`.
2012
2013
  */
2013
- updateSelection?: (oEvent: Event) => void;
2014
+ updateSelection?: (
2015
+ oEvent: Event<$ValueHelpDialogUpdateSelectionEventParameters>
2016
+ ) => void;
2017
+ }
2018
+
2019
+ export interface $ValueHelpDialogCancelEventParameters {}
2020
+
2021
+ export interface $ValueHelpDialogOkEventParameters {
2022
+ /**
2023
+ * The array of tokens created or modified on the ValueHelpDialog.
2024
+ */
2025
+ tokens?: Token[];
2026
+ }
2027
+
2028
+ export interface $ValueHelpDialogSelectionChangeEventParameters {
2029
+ /**
2030
+ * The RowSelectionChange event parameter from the hosted table that contains the selected items.
2031
+ */
2032
+ tableSelectionParams?: object;
2033
+
2034
+ /**
2035
+ * Returns an array of objects which represents all selected row tokens. The object contains the token key,
2036
+ * the row object data from the model, and the information if the token is selected. ` [{sKey, oRow, bSelect},
2037
+ * ...] `
2038
+ */
2039
+ updateTokens?: object[];
2040
+
2041
+ /**
2042
+ * Can be set to `true` to execute the default behaviour of the ValueHelpDialog.
2043
+ */
2044
+ useDefault?: boolean;
2045
+ }
2046
+
2047
+ export interface $ValueHelpDialogTokenRemoveEventParameters {
2048
+ /**
2049
+ * The array of token keys that has been removed.
2050
+ */
2051
+ tokenKeys?: string[];
2052
+
2053
+ /**
2054
+ * Can be set to true to execute the default behaviour of ValueHelpDialog.
2055
+ */
2056
+ useDefault?: boolean;
2057
+ }
2058
+
2059
+ export interface $ValueHelpDialogUpdateSelectionEventParameters {
2060
+ /**
2061
+ * The array of existing token keys for which the selection in the table has to be updated.
2062
+ */
2063
+ tokenKeys?: string[];
2064
+
2065
+ /**
2066
+ * Can be set to true to execute the default behavior of ValueHelpDialog.
2067
+ */
2068
+ useDefault?: boolean;
2014
2069
  }
2015
2070
  }
2016
2071
 
@@ -2072,7 +2127,7 @@ declare module "sap/zen/dsh/widgets/SDKModel" {
2072
2127
  *
2073
2128
  * Model implementation for JSON format
2074
2129
  */
2075
- export default class SDKModel extends Model {
2130
+ class SDKModel extends Model {
2076
2131
  /**
2077
2132
  * Constructor for a new SDKModel.
2078
2133
  */
@@ -2113,6 +2168,7 @@ declare module "sap/zen/dsh/widgets/SDKModel" {
2113
2168
  */
2114
2169
  static getMetadata(): Metadata;
2115
2170
  }
2171
+ export default SDKModel;
2116
2172
  }
2117
2173
 
2118
2174
  declare namespace sap {