@sapui5/ts-types 1.122.2 → 1.123.1

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/package.json +1 -1
  2. package/types/index.d.ts +5 -5
  3. package/types/sap.apf.d.ts +1 -1
  4. package/types/sap.ca.ui.d.ts +404 -3
  5. package/types/sap.chart.d.ts +58 -3
  6. package/types/sap.collaboration.d.ts +52 -3
  7. package/types/sap.esh.search.ui.d.ts +2152 -2
  8. package/types/sap.f.d.ts +432 -46
  9. package/types/sap.fe.core.d.ts +20 -15
  10. package/types/sap.fe.macros.d.ts +1048 -21
  11. package/types/sap.fe.navigation.d.ts +1 -1
  12. package/types/sap.fe.placeholder.d.ts +1 -1
  13. package/types/sap.fe.plugins.managecache.d.ts +1 -1
  14. package/types/sap.fe.templates.d.ts +8 -6
  15. package/types/sap.fe.test.d.ts +288 -7
  16. package/types/sap.fe.tools.d.ts +1 -1
  17. package/types/sap.feedback.ui.d.ts +1 -1
  18. package/types/sap.gantt.d.ts +1067 -15
  19. package/types/sap.insights.d.ts +4 -1
  20. package/types/{mobile-1.122.0-d.ts → sap.m.d.ts} +3962 -124
  21. package/types/sap.makit.d.ts +115 -2
  22. package/types/sap.me.d.ts +84 -2
  23. package/types/sap.ndc.d.ts +22 -1
  24. package/types/sap.ovp.d.ts +1 -1
  25. package/types/sap.rules.ui.d.ts +44 -8
  26. package/types/sap.sac.df.d.ts +111 -60
  27. package/types/sap.suite.ui.commons.d.ts +1148 -2174
  28. package/types/sap.suite.ui.generic.template.d.ts +10 -1
  29. package/types/sap.suite.ui.microchart.d.ts +190 -2
  30. package/types/sap.tnt.d.ts +46 -2
  31. package/types/sap.ui.codeeditor.d.ts +16 -1
  32. package/types/{commons-1.122.0-d.ts → sap.ui.commons.d.ts} +792 -30
  33. package/types/sap.ui.comp.d.ts +964 -86
  34. package/types/{core-1.122.0-d.ts → sap.ui.core.d.ts} +2194 -1540
  35. package/types/sap.ui.dt.d.ts +3 -0
  36. package/types/sap.ui.export.d.ts +22 -4
  37. package/types/sap.ui.fl.d.ts +40 -1
  38. package/types/sap.ui.generic.app.d.ts +217 -203
  39. package/types/sap.ui.generic.template.d.ts +1 -1
  40. package/types/sap.ui.integration.d.ts +147 -5
  41. package/types/sap.ui.layout.d.ts +171 -8
  42. package/types/sap.ui.mdc.d.ts +554 -33
  43. package/types/sap.ui.richtexteditor.d.ts +28 -2
  44. package/types/sap.ui.rta.d.ts +1 -1
  45. package/types/sap.ui.suite.d.ts +27 -2
  46. package/types/sap.ui.support.d.ts +1 -1
  47. package/types/sap.ui.table.d.ts +278 -57
  48. package/types/sap.ui.testrecorder.d.ts +1 -1
  49. package/types/sap.ui.unified.d.ts +481 -9
  50. package/types/{ux3-1.122.0-d.ts → sap.ui.ux3.d.ts} +527 -5
  51. package/types/sap.ui.vbm.d.ts +544 -2
  52. package/types/sap.ui.vk.d.ts +1580 -39
  53. package/types/sap.ui.vtm.d.ts +373 -2
  54. package/types/sap.ui.webc.common.d.ts +7 -2
  55. package/types/sap.ui.webc.fiori.d.ts +351 -2
  56. package/types/sap.ui.webc.main.d.ts +1035 -2
  57. package/types/sap.uiext.inbox.d.ts +124 -2
  58. package/types/sap.ushell.d.ts +1001 -322
  59. package/types/sap.ushell_abap.d.ts +1 -1
  60. package/types/sap.uxap.d.ts +123 -6
  61. package/types/sap.viz.d.ts +2619 -5
  62. package/types/sap.webanalytics.core.d.ts +1 -1
  63. package/types/sap.zen.commons.d.ts +35 -10
  64. package/types/sap.zen.crosstab.d.ts +22 -7
  65. package/types/sap.zen.dsh.d.ts +64 -8
  66. package/types/dt-1.122.0-d.ts +0 -3
@@ -0,0 +1,3 @@
1
+ // For Library Version: 1.123.0
2
+
3
+ declare namespace sap {}
@@ -1,4 +1,4 @@
1
- // For Library Version: 1.122.1
1
+ // For Library Version: 1.123.0
2
2
 
3
3
  declare namespace sap {
4
4
  namespace ui {
@@ -162,9 +162,14 @@ declare namespace sap {
162
162
  ): void;
163
163
  }
164
164
  }
165
-
165
+ /**
166
+ * Parameters of the ExportBase#beforeExport event.
167
+ */
166
168
  interface ExportBase$BeforeExportEventParameters {}
167
169
 
170
+ /**
171
+ * Parameters of the ExportHandler#beforeExport event.
172
+ */
168
173
  interface ExportHandler$BeforeExportEventParameters {
169
174
  /**
170
175
  * Contains export-related configuration
@@ -182,6 +187,9 @@ declare namespace sap {
182
187
  filterSettings?: sap.ui.export.util.Filter[];
183
188
  }
184
189
 
190
+ /**
191
+ * Parameters of the Spreadsheet#beforeSave event.
192
+ */
185
193
  interface Spreadsheet$BeforeSaveEventParameters {}
186
194
 
187
195
  /**
@@ -616,8 +624,10 @@ declare namespace sap {
616
624
  * In this case, `serviceUrl` and `headers` have to be specified, too.
617
625
  * - `headers` (object) - Map of HTTP request header properties. They should correspond to the HTTP request
618
626
  * headers that are used to obtain table data for display in the browser.
619
- * - `sizeLimit` (number) - Maximal allowed number of records that can be obtained from the service in
627
+ * - `sizeLimit` (number) - Maximum allowed number of records that can be obtained from the service in
620
628
  * a single request
629
+ * - `downloadLimit` (number) - Maximum allowed number of rows that can be exported. If not specified,
630
+ * all rows are exported.
621
631
  * - `count` (number) - The maximal number of records to export. If not specified, all data from the data
622
632
  * source is fetched.
623
633
  * - `worker` (boolean) - Run export process in a worker thread. Set to `false` to disable worker and
@@ -1019,17 +1029,25 @@ declare namespace sap {
1019
1029
  */
1020
1030
  XLSX = "XLSX",
1021
1031
  }
1022
-
1032
+ /**
1033
+ * Event object of the ExportBase#beforeExport event.
1034
+ */
1023
1035
  type ExportBase$BeforeExportEvent = sap.ui.base.Event<
1024
1036
  ExportBase$BeforeExportEventParameters,
1025
1037
  ExportBase
1026
1038
  >;
1027
1039
 
1040
+ /**
1041
+ * Event object of the ExportHandler#beforeExport event.
1042
+ */
1028
1043
  type ExportHandler$BeforeExportEvent = sap.ui.base.Event<
1029
1044
  ExportHandler$BeforeExportEventParameters,
1030
1045
  ExportHandler
1031
1046
  >;
1032
1047
 
1048
+ /**
1049
+ * Event object of the Spreadsheet#beforeSave event.
1050
+ */
1033
1051
  type Spreadsheet$BeforeSaveEvent = sap.ui.base.Event<
1034
1052
  Spreadsheet$BeforeSaveEventParameters,
1035
1053
  Spreadsheet
@@ -1,4 +1,4 @@
1
- // For Library Version: 1.122.1
1
+ // For Library Version: 1.123.0
2
2
 
3
3
  declare namespace sap {
4
4
  namespace ui {
@@ -14,6 +14,9 @@ declare namespace sap {
14
14
  * and its internals.
15
15
  */
16
16
  namespace variants {
17
+ /**
18
+ * Describes the settings that can be provided to the VariantManagement constructor.
19
+ */
17
20
  interface $VariantManagementSettings
18
21
  extends sap.ui.core.$ControlSettings {
19
22
  /**
@@ -145,10 +148,19 @@ declare namespace sap {
145
148
  select?: (oEvent: VariantManagement$SelectEvent) => void;
146
149
  }
147
150
 
151
+ /**
152
+ * Parameters of the VariantManagement#cancel event.
153
+ */
148
154
  interface VariantManagement$CancelEventParameters {}
149
155
 
156
+ /**
157
+ * Parameters of the VariantManagement#initialized event.
158
+ */
150
159
  interface VariantManagement$InitializedEventParameters {}
151
160
 
161
+ /**
162
+ * Parameters of the VariantManagement#manage event.
163
+ */
152
164
  interface VariantManagement$ManageEventParameters {
153
165
  /**
154
166
  * List of changed variants. Each entry contains a `key` (the variant key) and a `name` (the new title of
@@ -186,6 +198,9 @@ declare namespace sap {
186
198
  contexts?: object[];
187
199
  }
188
200
 
201
+ /**
202
+ * Parameters of the VariantManagement#save event.
203
+ */
189
204
  interface VariantManagement$SaveEventParameters {
190
205
  /**
191
206
  * Variant title
@@ -228,6 +243,9 @@ declare namespace sap {
228
243
  tile?: boolean;
229
244
  }
230
245
 
246
+ /**
247
+ * Parameters of the VariantManagement#select event.
248
+ */
231
249
  interface VariantManagement$SelectEventParameters {
232
250
  /**
233
251
  * Variant key
@@ -1138,26 +1156,41 @@ declare namespace sap {
1138
1156
  ): this;
1139
1157
  }
1140
1158
 
1159
+ /**
1160
+ * Event object of the VariantManagement#cancel event.
1161
+ */
1141
1162
  type VariantManagement$CancelEvent = sap.ui.base.Event<
1142
1163
  VariantManagement$CancelEventParameters,
1143
1164
  VariantManagement
1144
1165
  >;
1145
1166
 
1167
+ /**
1168
+ * Event object of the VariantManagement#initialized event.
1169
+ */
1146
1170
  type VariantManagement$InitializedEvent = sap.ui.base.Event<
1147
1171
  VariantManagement$InitializedEventParameters,
1148
1172
  VariantManagement
1149
1173
  >;
1150
1174
 
1175
+ /**
1176
+ * Event object of the VariantManagement#manage event.
1177
+ */
1151
1178
  type VariantManagement$ManageEvent = sap.ui.base.Event<
1152
1179
  VariantManagement$ManageEventParameters,
1153
1180
  VariantManagement
1154
1181
  >;
1155
1182
 
1183
+ /**
1184
+ * Event object of the VariantManagement#save event.
1185
+ */
1156
1186
  type VariantManagement$SaveEvent = sap.ui.base.Event<
1157
1187
  VariantManagement$SaveEventParameters,
1158
1188
  VariantManagement
1159
1189
  >;
1160
1190
 
1191
+ /**
1192
+ * Event object of the VariantManagement#select event.
1193
+ */
1161
1194
  type VariantManagement$SelectEvent = sap.ui.base.Event<
1162
1195
  VariantManagement$SelectEventParameters,
1163
1196
  VariantManagement
@@ -1193,6 +1226,12 @@ declare namespace sap {
1193
1226
  }
1194
1227
 
1195
1228
  namespace transport {
1229
+ /**
1230
+ * Describes the settings that can be provided to the TransportDialog constructor.
1231
+ *
1232
+ * @deprecated (since 1.74) - The TransportDialog should be used only internally inside the `sap.ui.fl`
1233
+ * library.
1234
+ */
1196
1235
  interface $TransportDialogSettings extends sap.m.$DialogSettings {}
1197
1236
 
1198
1237
  /**