@sapui5/ts-types 1.119.2 → 1.120.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/package.json +1 -1
  2. package/types/index.d.ts +0 -1
  3. package/types/sap.apf.d.ts +1 -1
  4. package/types/sap.ca.ui.d.ts +58 -58
  5. package/types/sap.chart.d.ts +1 -1
  6. package/types/sap.collaboration.d.ts +1 -1
  7. package/types/sap.esh.search.ui.d.ts +111 -1
  8. package/types/sap.f.d.ts +2 -2
  9. package/types/sap.fe.core.d.ts +10 -1
  10. package/types/sap.fe.macros.d.ts +78 -74
  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.templates.d.ts +11 -2
  14. package/types/sap.fe.test.d.ts +5 -5
  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 +933 -15
  18. package/types/sap.insights.d.ts +93 -12
  19. package/types/sap.m.d.ts +6447 -913
  20. package/types/sap.makit.d.ts +1 -1
  21. package/types/sap.me.d.ts +1 -1
  22. package/types/sap.ndc.d.ts +1 -1
  23. package/types/sap.ovp.d.ts +4 -3
  24. package/types/sap.rules.ui.d.ts +1 -1
  25. package/types/sap.sac.df.d.ts +848 -975
  26. package/types/sap.suite.ui.commons.d.ts +34 -2
  27. package/types/sap.suite.ui.generic.template.d.ts +29 -1
  28. package/types/sap.suite.ui.microchart.d.ts +1 -1
  29. package/types/sap.tnt.d.ts +47 -1
  30. package/types/sap.ui.codeeditor.d.ts +1 -1
  31. package/types/sap.ui.commons.d.ts +1 -1
  32. package/types/sap.ui.comp.d.ts +572 -35
  33. package/types/sap.ui.core.d.ts +1925 -329
  34. package/types/sap.ui.dt.d.ts +1 -1
  35. package/types/sap.ui.export.d.ts +1 -1
  36. package/types/sap.ui.fl.d.ts +3 -1
  37. package/types/sap.ui.generic.app.d.ts +1 -1
  38. package/types/sap.ui.generic.template.d.ts +1 -1
  39. package/types/sap.ui.integration.d.ts +1 -1
  40. package/types/sap.ui.layout.d.ts +125 -102
  41. package/types/sap.ui.mdc.d.ts +1857 -1151
  42. package/types/sap.ui.richtexteditor.d.ts +4 -12
  43. package/types/sap.ui.rta.d.ts +1 -1
  44. package/types/sap.ui.suite.d.ts +1 -1
  45. package/types/sap.ui.support.d.ts +7 -1
  46. package/types/sap.ui.table.d.ts +117 -47
  47. package/types/sap.ui.testrecorder.d.ts +1 -1
  48. package/types/sap.ui.unified.d.ts +1 -1
  49. package/types/sap.ui.ux3.d.ts +1 -1
  50. package/types/sap.ui.vbm.d.ts +1 -1
  51. package/types/sap.ui.vk.d.ts +5 -11
  52. package/types/sap.ui.vtm.d.ts +1 -1
  53. package/types/sap.ui.webc.common.d.ts +1 -1
  54. package/types/sap.ui.webc.fiori.d.ts +470 -136
  55. package/types/sap.ui.webc.main.d.ts +3623 -1052
  56. package/types/sap.uiext.inbox.d.ts +1 -1
  57. package/types/sap.ushell.d.ts +1971 -832
  58. package/types/sap.ushell_abap.d.ts +1 -1
  59. package/types/sap.uxap.d.ts +1 -1
  60. package/types/sap.viz.d.ts +1 -1
  61. package/types/sap.webanalytics.core.d.ts +1 -1
  62. package/types/sap.zen.commons.d.ts +1 -1
  63. package/types/sap.zen.crosstab.d.ts +1 -1
  64. package/types/sap.zen.dsh.d.ts +1 -1
  65. package/types/sap.landvisz.d.ts +0 -7875
@@ -1,10 +1,47 @@
1
- // For Library Version: 1.119.1
1
+ // For Library Version: 1.120.0
2
2
 
3
3
  declare namespace sap {
4
4
  /**
5
5
  * SAP UI library: sap.insights
6
6
  */
7
7
  namespace insights {
8
+ namespace CardsChannel {
9
+ /**
10
+ * @experimental
11
+ *
12
+ * The card object
13
+ */
14
+ type Card = {
15
+ /**
16
+ * Unique identifier for the card.
17
+ */
18
+ id: string;
19
+ /**
20
+ * manifest of the card.
21
+ */
22
+ descriptorContent: Object;
23
+ };
24
+
25
+ /**
26
+ * @experimental
27
+ *
28
+ * The cardInfo object
29
+ */
30
+ type CardInfo = {
31
+ /**
32
+ * Unique identifier for the card.
33
+ */
34
+ id: string;
35
+ /**
36
+ * Title of the card.
37
+ */
38
+ title: string;
39
+ /**
40
+ * Id of the parent app.
41
+ */
42
+ parentAppId: string;
43
+ };
44
+ }
8
45
  /**
9
46
  * @experimental
10
47
  *
@@ -34,9 +71,13 @@ declare namespace sap {
34
71
  */
35
72
  oCardMessageInfo: object,
36
73
  /**
37
- * boolean to determine if the method called within insights
74
+ * text for confirm button on the dialog
75
+ */
76
+ sConfirmButtonText: string,
77
+ /**
78
+ * callback event to be called when confirm button is pressed
38
79
  */
39
- bCalledInternally: boolean
80
+ onConfirm: Function
40
81
  ): Promise<void>;
41
82
  }
42
83
 
@@ -188,6 +229,8 @@ declare namespace sap {
188
229
  * @experimental
189
230
  *
190
231
  * Initialize the CardsChannel either with the FLP message broker or an internal implementation for iframes.
232
+ *
233
+ * @returns .
191
234
  */
192
235
  init(): Promise<void>;
193
236
  /**
@@ -202,24 +245,42 @@ declare namespace sap {
202
245
  * @experimental
203
246
  *
204
247
  * Send a list of all available cards to a given consumer or broadcast it to all consumers.
248
+ *
249
+ * @returns .
205
250
  */
206
251
  publishAvailableCards(
252
+ /**
253
+ * .
254
+ */
207
255
  providerId: string,
208
-
209
- cardInfos: object[],
210
-
256
+ /**
257
+ * .
258
+ */
259
+ cardInfos: sap.insights.CardsChannel.CardInfo[],
260
+ /**
261
+ * .
262
+ */
211
263
  consumerId: string
212
264
  ): Promise<void>;
213
265
  /**
214
266
  * @experimental
215
267
  *
216
268
  * Send a card to a given consumer or broadcast it to all consumers.
269
+ *
270
+ * @returns .
217
271
  */
218
272
  publishCard(
273
+ /**
274
+ * .
275
+ */
219
276
  providerId: string,
220
-
221
- card: object,
222
-
277
+ /**
278
+ * .
279
+ */
280
+ card: sap.insights.CardsChannel.Card,
281
+ /**
282
+ * .
283
+ */
223
284
  consumerId?: string
224
285
  ): Promise<void>;
225
286
  /**
@@ -227,6 +288,8 @@ declare namespace sap {
227
288
  *
228
289
  * Register a card consumer with a unique id. The consumer will be notified through its callback when corresponding
229
290
  * messages are received.
291
+ *
292
+ * @returns .
230
293
  */
231
294
  registerConsumer(
232
295
  /**
@@ -242,6 +305,8 @@ declare namespace sap {
242
305
  * @experimental
243
306
  *
244
307
  * Register a card provider with a unique id. The provider will be notified if new consumers get registered.
308
+ *
309
+ * @returns .
245
310
  */
246
311
  registerProvider(
247
312
  /**
@@ -257,20 +322,36 @@ declare namespace sap {
257
322
  * @experimental
258
323
  *
259
324
  * Request a card from a given provider.
325
+ *
326
+ * @returns .
260
327
  */
261
328
  requestCard(
329
+ /**
330
+ * .
331
+ */
262
332
  consumerId: string,
263
-
333
+ /**
334
+ * .
335
+ */
264
336
  cardId: string,
265
-
337
+ /**
338
+ * .
339
+ */
266
340
  providerId: string
267
341
  ): Promise<void>;
268
342
  /**
269
343
  * @experimental
270
344
  *
271
345
  * Unregister a previously registered consumer or provider.
346
+ *
347
+ * @returns .
272
348
  */
273
- unregister(id: string): Promise<void>;
349
+ unregister(
350
+ /**
351
+ * .
352
+ */
353
+ id: string
354
+ ): Promise<void>;
274
355
  }
275
356
  /**
276
357
  * @since 1.119