@sapui5/ts-types-esm 1.143.1 → 1.144.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.
- package/package.json +1 -1
- package/types/index.d.ts +7 -7
- package/types/sap.apf.d.ts +3 -1
- package/types/sap.ca.ui.d.ts +8 -1
- package/types/sap.chart.d.ts +4 -4
- package/types/sap.collaboration.d.ts +1 -1
- package/types/sap.esh.search.ui.d.ts +846 -285
- package/types/sap.f.d.ts +4 -4
- package/types/sap.fe.ariba.d.ts +1 -1
- package/types/sap.fe.base.d.ts +1 -1
- package/types/sap.fe.controls.d.ts +1 -1
- package/types/sap.fe.core.d.ts +33 -6
- package/types/sap.fe.ina.d.ts +1 -1
- package/types/sap.fe.macros.d.ts +3591 -3495
- package/types/sap.fe.navigation.d.ts +7 -7
- package/types/sap.fe.placeholder.d.ts +1 -1
- package/types/sap.fe.plugins.managecache.d.ts +1 -1
- package/types/sap.fe.templates.d.ts +1 -1
- package/types/sap.fe.test.d.ts +18 -12
- package/types/sap.fe.tools.d.ts +1 -1
- package/types/sap.feedback.ui.d.ts +1 -1
- package/types/sap.gantt.d.ts +282 -10
- package/types/sap.insights.d.ts +1 -47
- package/types/{mobile-1.143.0-esm-d.ts → sap.m.d.ts} +298 -68
- package/types/sap.makit.d.ts +1 -1
- package/types/sap.me.d.ts +1 -1
- package/types/sap.ndc.d.ts +49 -21
- package/types/sap.ovp.d.ts +1 -1
- package/types/sap.rules.ui.d.ts +1 -1
- package/types/sap.sac.df.d.ts +1 -1
- package/types/sap.suite.ui.commons.d.ts +732 -6
- package/types/sap.suite.ui.generic.template.d.ts +1 -1
- package/types/sap.suite.ui.microchart.d.ts +1 -1
- package/types/{tnt-1.143.0-esm-d.ts → sap.tnt.d.ts} +5 -1
- package/types/sap.ui.codeeditor.d.ts +1 -1
- package/types/{commons-1.143.0-esm-d.ts → sap.ui.commons.d.ts} +3469 -306
- package/types/sap.ui.comp.d.ts +3 -3
- package/types/{core-1.143.0-esm-d.ts → sap.ui.core.d.ts} +621 -166
- package/types/{dt-1.143.0-esm-d.ts → sap.ui.dt.d.ts} +1 -1
- package/types/sap.ui.export.d.ts +4 -4
- package/types/sap.ui.fl.d.ts +5 -5
- package/types/sap.ui.generic.app.d.ts +1 -1
- package/types/sap.ui.generic.template.d.ts +1 -1
- package/types/sap.ui.geomap.d.ts +1 -1
- package/types/sap.ui.integration.d.ts +1 -1
- package/types/sap.ui.layout.d.ts +18 -18
- package/types/{mdc-1.143.0-esm-d.ts → sap.ui.mdc.d.ts} +105 -67
- package/types/sap.ui.richtexteditor.d.ts +3 -3
- package/types/sap.ui.rta.d.ts +1 -1
- package/types/sap.ui.suite.d.ts +3 -1
- package/types/sap.ui.support.d.ts +1 -1
- package/types/sap.ui.table.d.ts +1 -1
- package/types/sap.ui.testrecorder.d.ts +1 -1
- package/types/sap.ui.unified.d.ts +126 -4
- package/types/{ux3-1.143.0-esm-d.ts → sap.ui.ux3.d.ts} +1 -1
- package/types/sap.ui.vbm.d.ts +1 -1
- package/types/sap.ui.vk.d.ts +139 -4
- package/types/sap.ui.vtm.d.ts +100 -1
- package/types/sap.ui.webc.common.d.ts +3 -1
- package/types/sap.ui.webc.fiori.d.ts +31 -1
- package/types/sap.ui.webc.main.d.ts +70 -1
- package/types/sap.uiext.inbox.d.ts +1 -1
- package/types/sap.ushell.d.ts +15 -1
- package/types/sap.ushell_abap.d.ts +1 -1
- package/types/sap.uxap.d.ts +1 -1
- package/types/sap.viz.d.ts +1 -1
- package/types/sap.webanalytics.core.d.ts +1 -1
- package/types/sap.zen.commons.d.ts +1 -1
- package/types/sap.zen.crosstab.d.ts +1 -1
- package/types/sap.zen.dsh.d.ts +1 -1
package/types/sap.insights.d.ts
CHANGED
|
@@ -1,13 +1,10 @@
|
|
|
1
|
-
// For Library Version: 1.
|
|
1
|
+
// For Library Version: 1.144.0
|
|
2
2
|
|
|
3
3
|
declare module "sap/insights/library" {}
|
|
4
4
|
|
|
5
5
|
declare module "sap/insights/CardHelper" {
|
|
6
6
|
/**
|
|
7
7
|
* Provides functionality for Insight cards CRUD operations.
|
|
8
|
-
*
|
|
9
|
-
* @since 1.102
|
|
10
|
-
* @experimental As of version 1.102.
|
|
11
8
|
*/
|
|
12
9
|
interface CardHelper {}
|
|
13
10
|
const CardHelper: CardHelper;
|
|
@@ -15,22 +12,17 @@ declare module "sap/insights/CardHelper" {
|
|
|
15
12
|
|
|
16
13
|
/**
|
|
17
14
|
* Public (experimental) interface of the sap.insights.CardHelperService
|
|
18
|
-
*
|
|
19
|
-
* @experimental
|
|
20
15
|
*/
|
|
21
16
|
export interface CardHelperService {
|
|
22
17
|
__implements__sap_insights_CardHelperService: boolean;
|
|
23
18
|
/**
|
|
24
19
|
* Show preview for Add Card With Search Dialog
|
|
25
|
-
*
|
|
26
|
-
* @experimental
|
|
27
20
|
*/
|
|
28
21
|
showAddCardWithSearchDialog: undefined;
|
|
29
22
|
|
|
30
23
|
/**
|
|
31
24
|
* Updates Cards Ranking in case of Drag & Drop of Cards
|
|
32
25
|
*
|
|
33
|
-
* @experimental
|
|
34
26
|
*
|
|
35
27
|
* @returns Returns an array of updated object
|
|
36
28
|
*/
|
|
@@ -51,7 +43,6 @@ declare module "sap/insights/CardHelper" {
|
|
|
51
43
|
/**
|
|
52
44
|
* Show preview for a given card
|
|
53
45
|
*
|
|
54
|
-
* @experimental
|
|
55
46
|
*
|
|
56
47
|
* @returns Returns promise, which generates preview for the passed card manifest
|
|
57
48
|
*/
|
|
@@ -251,7 +242,6 @@ declare module "sap/insights/CardsChannel" {
|
|
|
251
242
|
/**
|
|
252
243
|
* Initialize the CardsChannel either with the FLP message broker or an internal implementation for iframes.
|
|
253
244
|
*
|
|
254
|
-
* @experimental
|
|
255
245
|
*
|
|
256
246
|
* @returns .
|
|
257
247
|
*/
|
|
@@ -259,7 +249,6 @@ declare module "sap/insights/CardsChannel" {
|
|
|
259
249
|
/**
|
|
260
250
|
* Checks if the broker is enabled.
|
|
261
251
|
*
|
|
262
|
-
* @experimental
|
|
263
252
|
*
|
|
264
253
|
* @returns true if the broker is enabled
|
|
265
254
|
*/
|
|
@@ -267,7 +256,6 @@ declare module "sap/insights/CardsChannel" {
|
|
|
267
256
|
/**
|
|
268
257
|
* Send a list of all available cards to a given consumer or broadcast it to all consumers.
|
|
269
258
|
*
|
|
270
|
-
* @experimental
|
|
271
259
|
*
|
|
272
260
|
* @returns .
|
|
273
261
|
*/
|
|
@@ -288,7 +276,6 @@ declare module "sap/insights/CardsChannel" {
|
|
|
288
276
|
/**
|
|
289
277
|
* Send a card to a given consumer or broadcast it to all consumers.
|
|
290
278
|
*
|
|
291
|
-
* @experimental
|
|
292
279
|
*
|
|
293
280
|
* @returns .
|
|
294
281
|
*/
|
|
@@ -310,7 +297,6 @@ declare module "sap/insights/CardsChannel" {
|
|
|
310
297
|
* Register a card consumer with a unique id. The consumer will be notified through its callback when corresponding
|
|
311
298
|
* messages are received.
|
|
312
299
|
*
|
|
313
|
-
* @experimental
|
|
314
300
|
*
|
|
315
301
|
* @returns .
|
|
316
302
|
*/
|
|
@@ -327,7 +313,6 @@ declare module "sap/insights/CardsChannel" {
|
|
|
327
313
|
/**
|
|
328
314
|
* Register a card provider with a unique id. The provider will be notified if new consumers get registered.
|
|
329
315
|
*
|
|
330
|
-
* @experimental
|
|
331
316
|
*
|
|
332
317
|
* @returns .
|
|
333
318
|
*/
|
|
@@ -344,7 +329,6 @@ declare module "sap/insights/CardsChannel" {
|
|
|
344
329
|
/**
|
|
345
330
|
* Request a card from a given provider.
|
|
346
331
|
*
|
|
347
|
-
* @experimental
|
|
348
332
|
*
|
|
349
333
|
* @returns .
|
|
350
334
|
*/
|
|
@@ -365,7 +349,6 @@ declare module "sap/insights/CardsChannel" {
|
|
|
365
349
|
/**
|
|
366
350
|
* Request card creation to a given provider.
|
|
367
351
|
*
|
|
368
|
-
* @experimental
|
|
369
352
|
*
|
|
370
353
|
* @returns .
|
|
371
354
|
*/
|
|
@@ -386,7 +369,6 @@ declare module "sap/insights/CardsChannel" {
|
|
|
386
369
|
/**
|
|
387
370
|
* Unregister a previously registered consumer or provider.
|
|
388
371
|
*
|
|
389
|
-
* @experimental
|
|
390
372
|
*
|
|
391
373
|
* @returns .
|
|
392
374
|
*/
|
|
@@ -399,8 +381,6 @@ declare module "sap/insights/CardsChannel" {
|
|
|
399
381
|
}
|
|
400
382
|
/**
|
|
401
383
|
* The card object
|
|
402
|
-
*
|
|
403
|
-
* @experimental
|
|
404
384
|
*/
|
|
405
385
|
export type Card = {
|
|
406
386
|
/**
|
|
@@ -415,8 +395,6 @@ declare module "sap/insights/CardsChannel" {
|
|
|
415
395
|
|
|
416
396
|
/**
|
|
417
397
|
* The cardInfo object
|
|
418
|
-
*
|
|
419
|
-
* @experimental
|
|
420
398
|
*/
|
|
421
399
|
export type CardInfo = {
|
|
422
400
|
/**
|
|
@@ -439,16 +417,12 @@ declare module "sap/insights/CardsChannel" {
|
|
|
439
417
|
|
|
440
418
|
/**
|
|
441
419
|
* Interface required for classes that would like to consume cards using the `sap.insights.CardsChannel`.
|
|
442
|
-
*
|
|
443
|
-
* @experimental
|
|
444
420
|
*/
|
|
445
421
|
export interface ICardConsumer {
|
|
446
422
|
__implements__sap_insights_ICardConsumer: boolean;
|
|
447
423
|
|
|
448
424
|
/**
|
|
449
425
|
* Callback when a card is created for this consumer.
|
|
450
|
-
*
|
|
451
|
-
* @experimental
|
|
452
426
|
*/
|
|
453
427
|
onCardProvided(
|
|
454
428
|
/**
|
|
@@ -460,8 +434,6 @@ declare module "sap/insights/CardsChannel" {
|
|
|
460
434
|
): void;
|
|
461
435
|
/**
|
|
462
436
|
* Callback when cards are available.
|
|
463
|
-
*
|
|
464
|
-
* @experimental
|
|
465
437
|
*/
|
|
466
438
|
onCardsAvailable(
|
|
467
439
|
/**
|
|
@@ -477,16 +449,12 @@ declare module "sap/insights/CardsChannel" {
|
|
|
477
449
|
|
|
478
450
|
/**
|
|
479
451
|
* Interface required for classes that would like to provide cards using the `sap.insights.CardsChannel`.
|
|
480
|
-
*
|
|
481
|
-
* @experimental
|
|
482
452
|
*/
|
|
483
453
|
export interface ICardProvider {
|
|
484
454
|
__implements__sap_insights_ICardProvider: boolean;
|
|
485
455
|
|
|
486
456
|
/**
|
|
487
457
|
* Callback when a consumer requests a specific card.
|
|
488
|
-
*
|
|
489
|
-
* @experimental
|
|
490
458
|
*/
|
|
491
459
|
onCardRequested(
|
|
492
460
|
/**
|
|
@@ -500,8 +468,6 @@ declare module "sap/insights/CardsChannel" {
|
|
|
500
468
|
): void;
|
|
501
469
|
/**
|
|
502
470
|
* Callback when a consumer is connected.
|
|
503
|
-
*
|
|
504
|
-
* @experimental
|
|
505
471
|
*/
|
|
506
472
|
onConsumerConnected(
|
|
507
473
|
/**
|
|
@@ -511,8 +477,6 @@ declare module "sap/insights/CardsChannel" {
|
|
|
511
477
|
): void;
|
|
512
478
|
/**
|
|
513
479
|
* Callback when a consumer is disconnected.
|
|
514
|
-
*
|
|
515
|
-
* @experimental
|
|
516
480
|
*/
|
|
517
481
|
onConsumerDisconnected(
|
|
518
482
|
/**
|
|
@@ -568,7 +532,6 @@ declare module "sap/insights/channels/ContextChannel" {
|
|
|
568
532
|
/**
|
|
569
533
|
* Get the context from the active provider.
|
|
570
534
|
*
|
|
571
|
-
* @experimental
|
|
572
535
|
*
|
|
573
536
|
* @returns .
|
|
574
537
|
*/
|
|
@@ -576,7 +539,6 @@ declare module "sap/insights/channels/ContextChannel" {
|
|
|
576
539
|
/**
|
|
577
540
|
* Initialize the ContextChannel either with the FLP message broker or an internal implementation for iframes.
|
|
578
541
|
*
|
|
579
|
-
* @experimental
|
|
580
542
|
*
|
|
581
543
|
* @returns .
|
|
582
544
|
*/
|
|
@@ -584,7 +546,6 @@ declare module "sap/insights/channels/ContextChannel" {
|
|
|
584
546
|
/**
|
|
585
547
|
* Register a card provider with a unique id. The provider will be notified if new consumers get registered.
|
|
586
548
|
*
|
|
587
|
-
* @experimental
|
|
588
549
|
*
|
|
589
550
|
* @returns .
|
|
590
551
|
*/
|
|
@@ -597,7 +558,6 @@ declare module "sap/insights/channels/ContextChannel" {
|
|
|
597
558
|
/**
|
|
598
559
|
* Unregister a previously registered consumer or provider.
|
|
599
560
|
*
|
|
600
|
-
* @experimental
|
|
601
561
|
*
|
|
602
562
|
* @returns .
|
|
603
563
|
*/
|
|
@@ -610,8 +570,6 @@ declare module "sap/insights/channels/ContextChannel" {
|
|
|
610
570
|
}
|
|
611
571
|
/**
|
|
612
572
|
* Interface required for classes that would like to provide cards using the `sap.insights.CardsChannel`.
|
|
613
|
-
*
|
|
614
|
-
* @experimental
|
|
615
573
|
*/
|
|
616
574
|
export interface IContextProvider {
|
|
617
575
|
__implements__sap_insights_channels_IContextProvider: boolean;
|
|
@@ -619,7 +577,6 @@ declare module "sap/insights/channels/ContextChannel" {
|
|
|
619
577
|
/**
|
|
620
578
|
* Getter of the current context as promise.
|
|
621
579
|
*
|
|
622
|
-
* @experimental
|
|
623
580
|
*
|
|
624
581
|
* @returns returns a promise of the context
|
|
625
582
|
*/
|
|
@@ -627,7 +584,6 @@ declare module "sap/insights/channels/ContextChannel" {
|
|
|
627
584
|
/**
|
|
628
585
|
* Get the unique identifier of the context provider (e.g. app id)
|
|
629
586
|
*
|
|
630
|
-
* @experimental
|
|
631
587
|
*
|
|
632
588
|
* @returns unique id of the context provider
|
|
633
589
|
*/
|
|
@@ -691,8 +647,6 @@ declare module "sap/insights/ManageCards" {
|
|
|
691
647
|
static getMetadata(): ElementMetadata;
|
|
692
648
|
/**
|
|
693
649
|
* Function to Clear Activities like navigation, filters
|
|
694
|
-
*
|
|
695
|
-
* @experimental As of version 1.119.
|
|
696
650
|
*/
|
|
697
651
|
clearPage(): void;
|
|
698
652
|
/**
|