@sapui5/ts-types 1.102.0 → 1.102.3
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/sap.chart.d.ts +1 -1
- package/types/sap.esh.search.ui.d.ts +1 -1
- package/types/sap.f.d.ts +157 -1
- package/types/sap.fe.common.d.ts +1 -1
- package/types/sap.fe.core.d.ts +1 -1
- package/types/sap.fe.macros.d.ts +1 -1
- package/types/sap.fe.navigation.d.ts +1 -1
- package/types/sap.fe.templates.d.ts +1 -1
- package/types/sap.fe.test.d.ts +1 -1
- package/types/sap.feedback.ui.d.ts +1 -1
- package/types/sap.gantt.d.ts +7 -4
- package/types/sap.insights.d.ts +2 -61
- package/types/sap.m.d.ts +270 -13
- package/types/sap.makit.d.ts +1 -1
- package/types/sap.me.d.ts +1 -1
- package/types/sap.ndc.d.ts +1 -1
- package/types/sap.ovp.d.ts +1 -1
- package/types/sap.sac.df.d.ts +1 -1
- package/types/sap.sac.grid.d.ts +1 -1
- package/types/sap.suite.ui.commons.d.ts +1 -1
- package/types/sap.suite.ui.generic.template.d.ts +1 -1
- package/types/sap.suite.ui.microchart.d.ts +1 -1
- package/types/sap.tnt.d.ts +1 -1
- package/types/sap.ui.codeeditor.d.ts +1 -1
- package/types/sap.ui.commons.d.ts +1 -1
- package/types/sap.ui.comp.d.ts +28 -1
- package/types/sap.ui.core.d.ts +21 -1
- package/types/sap.ui.dt.d.ts +1 -1
- package/types/sap.ui.export.d.ts +3 -3
- package/types/sap.ui.fl.d.ts +1 -1
- package/types/sap.ui.integration.d.ts +1 -1
- package/types/sap.ui.layout.d.ts +1 -1
- package/types/sap.ui.mdc.d.ts +1 -1
- package/types/sap.ui.richtexteditor.d.ts +1 -1
- package/types/sap.ui.rta.d.ts +1 -1
- package/types/sap.ui.suite.d.ts +1 -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 +1 -1
- package/types/sap.ui.ux3.d.ts +1 -1
- package/types/sap.ui.vbm.d.ts +101 -26
- package/types/sap.ui.vtm.d.ts +4 -1
- package/types/sap.uiext.inbox.d.ts +1 -1
- package/types/sap.ushell.d.ts +1 -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.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/package.json
CHANGED
package/types/sap.chart.d.ts
CHANGED
package/types/sap.f.d.ts
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
// For Library Version: 1.102.
|
|
1
|
+
// For Library Version: 1.102.3
|
|
2
2
|
|
|
3
3
|
declare namespace sap {
|
|
4
4
|
/**
|
|
@@ -7651,6 +7651,46 @@ declare namespace sap {
|
|
|
7651
7651
|
* If not set, a predefined text is used.
|
|
7652
7652
|
*/
|
|
7653
7653
|
lastColumnLabel?: string | sap.ui.base.ManagedObject.PropertyBindingInfo;
|
|
7654
|
+
|
|
7655
|
+
/**
|
|
7656
|
+
* Text that describes the landmark of the back arrow of the first column in the corresponding `sap.f.FlexibleColumnLayout`
|
|
7657
|
+
* control.
|
|
7658
|
+
*
|
|
7659
|
+
* If not set, a predefined text is used.
|
|
7660
|
+
*/
|
|
7661
|
+
firstColumnBackArrowLabel?:
|
|
7662
|
+
| string
|
|
7663
|
+
| sap.ui.base.ManagedObject.PropertyBindingInfo;
|
|
7664
|
+
|
|
7665
|
+
/**
|
|
7666
|
+
* Text that describes the landmark of forward arrow of the middle column in the corresponding `sap.f.FlexibleColumnLayout`
|
|
7667
|
+
* control.
|
|
7668
|
+
*
|
|
7669
|
+
* If not set, a predefined text is used.
|
|
7670
|
+
*/
|
|
7671
|
+
middleColumnForwardArrowLabel?:
|
|
7672
|
+
| string
|
|
7673
|
+
| sap.ui.base.ManagedObject.PropertyBindingInfo;
|
|
7674
|
+
|
|
7675
|
+
/**
|
|
7676
|
+
* Text that describes the landmark of back arrow of the middle column in the corresponding `sap.f.FlexibleColumnLayout`
|
|
7677
|
+
* control.
|
|
7678
|
+
*
|
|
7679
|
+
* If not set, a predefined text is used.
|
|
7680
|
+
*/
|
|
7681
|
+
middleColumnBackArrowLabel?:
|
|
7682
|
+
| string
|
|
7683
|
+
| sap.ui.base.ManagedObject.PropertyBindingInfo;
|
|
7684
|
+
|
|
7685
|
+
/**
|
|
7686
|
+
* Text that describes the landmark of forward arrow of the last column in the corresponding `sap.f.FlexibleColumnLayout`
|
|
7687
|
+
* control.
|
|
7688
|
+
*
|
|
7689
|
+
* If not set, a predefined text is used.
|
|
7690
|
+
*/
|
|
7691
|
+
lastColumnForwardArrowLabel?:
|
|
7692
|
+
| string
|
|
7693
|
+
| sap.ui.base.ManagedObject.PropertyBindingInfo;
|
|
7654
7694
|
}
|
|
7655
7695
|
|
|
7656
7696
|
interface $GridContainerSettings extends sap.ui.core.$ControlSettings {
|
|
@@ -13372,6 +13412,17 @@ declare namespace sap {
|
|
|
13372
13412
|
* @returns Metadata object describing this class
|
|
13373
13413
|
*/
|
|
13374
13414
|
static getMetadata(): sap.ui.core.ElementMetadata;
|
|
13415
|
+
/**
|
|
13416
|
+
* Gets current value of property {@link #getFirstColumnBackArrowLabel firstColumnBackArrowLabel}.
|
|
13417
|
+
*
|
|
13418
|
+
* Text that describes the landmark of the back arrow of the first column in the corresponding `sap.f.FlexibleColumnLayout`
|
|
13419
|
+
* control.
|
|
13420
|
+
*
|
|
13421
|
+
* If not set, a predefined text is used.
|
|
13422
|
+
*
|
|
13423
|
+
* @returns Value of property `firstColumnBackArrowLabel`
|
|
13424
|
+
*/
|
|
13425
|
+
getFirstColumnBackArrowLabel(): string;
|
|
13375
13426
|
/**
|
|
13376
13427
|
* Gets current value of property {@link #getFirstColumnLabel firstColumnLabel}.
|
|
13377
13428
|
*
|
|
@@ -13383,6 +13434,17 @@ declare namespace sap {
|
|
|
13383
13434
|
* @returns Value of property `firstColumnLabel`
|
|
13384
13435
|
*/
|
|
13385
13436
|
getFirstColumnLabel(): string;
|
|
13437
|
+
/**
|
|
13438
|
+
* Gets current value of property {@link #getLastColumnForwardArrowLabel lastColumnForwardArrowLabel}.
|
|
13439
|
+
*
|
|
13440
|
+
* Text that describes the landmark of forward arrow of the last column in the corresponding `sap.f.FlexibleColumnLayout`
|
|
13441
|
+
* control.
|
|
13442
|
+
*
|
|
13443
|
+
* If not set, a predefined text is used.
|
|
13444
|
+
*
|
|
13445
|
+
* @returns Value of property `lastColumnForwardArrowLabel`
|
|
13446
|
+
*/
|
|
13447
|
+
getLastColumnForwardArrowLabel(): string;
|
|
13386
13448
|
/**
|
|
13387
13449
|
* Gets current value of property {@link #getLastColumnLabel lastColumnLabel}.
|
|
13388
13450
|
*
|
|
@@ -13394,6 +13456,28 @@ declare namespace sap {
|
|
|
13394
13456
|
* @returns Value of property `lastColumnLabel`
|
|
13395
13457
|
*/
|
|
13396
13458
|
getLastColumnLabel(): string;
|
|
13459
|
+
/**
|
|
13460
|
+
* Gets current value of property {@link #getMiddleColumnBackArrowLabel middleColumnBackArrowLabel}.
|
|
13461
|
+
*
|
|
13462
|
+
* Text that describes the landmark of back arrow of the middle column in the corresponding `sap.f.FlexibleColumnLayout`
|
|
13463
|
+
* control.
|
|
13464
|
+
*
|
|
13465
|
+
* If not set, a predefined text is used.
|
|
13466
|
+
*
|
|
13467
|
+
* @returns Value of property `middleColumnBackArrowLabel`
|
|
13468
|
+
*/
|
|
13469
|
+
getMiddleColumnBackArrowLabel(): string;
|
|
13470
|
+
/**
|
|
13471
|
+
* Gets current value of property {@link #getMiddleColumnForwardArrowLabel middleColumnForwardArrowLabel}.
|
|
13472
|
+
*
|
|
13473
|
+
* Text that describes the landmark of forward arrow of the middle column in the corresponding `sap.f.FlexibleColumnLayout`
|
|
13474
|
+
* control.
|
|
13475
|
+
*
|
|
13476
|
+
* If not set, a predefined text is used.
|
|
13477
|
+
*
|
|
13478
|
+
* @returns Value of property `middleColumnForwardArrowLabel`
|
|
13479
|
+
*/
|
|
13480
|
+
getMiddleColumnForwardArrowLabel(): string;
|
|
13397
13481
|
/**
|
|
13398
13482
|
* Gets current value of property {@link #getMiddleColumnLabel middleColumnLabel}.
|
|
13399
13483
|
*
|
|
@@ -13405,6 +13489,24 @@ declare namespace sap {
|
|
|
13405
13489
|
* @returns Value of property `middleColumnLabel`
|
|
13406
13490
|
*/
|
|
13407
13491
|
getMiddleColumnLabel(): string;
|
|
13492
|
+
/**
|
|
13493
|
+
* Sets a new value for property {@link #getFirstColumnBackArrowLabel firstColumnBackArrowLabel}.
|
|
13494
|
+
*
|
|
13495
|
+
* Text that describes the landmark of the back arrow of the first column in the corresponding `sap.f.FlexibleColumnLayout`
|
|
13496
|
+
* control.
|
|
13497
|
+
*
|
|
13498
|
+
* If not set, a predefined text is used.
|
|
13499
|
+
*
|
|
13500
|
+
* When called with a value of `null` or `undefined`, the default value of the property will be restored.
|
|
13501
|
+
*
|
|
13502
|
+
* @returns Reference to `this` in order to allow method chaining
|
|
13503
|
+
*/
|
|
13504
|
+
setFirstColumnBackArrowLabel(
|
|
13505
|
+
/**
|
|
13506
|
+
* New value for property `firstColumnBackArrowLabel`
|
|
13507
|
+
*/
|
|
13508
|
+
sFirstColumnBackArrowLabel?: string
|
|
13509
|
+
): this;
|
|
13408
13510
|
/**
|
|
13409
13511
|
* Sets a new value for property {@link #getFirstColumnLabel firstColumnLabel}.
|
|
13410
13512
|
*
|
|
@@ -13423,6 +13525,24 @@ declare namespace sap {
|
|
|
13423
13525
|
*/
|
|
13424
13526
|
sFirstColumnLabel?: string
|
|
13425
13527
|
): this;
|
|
13528
|
+
/**
|
|
13529
|
+
* Sets a new value for property {@link #getLastColumnForwardArrowLabel lastColumnForwardArrowLabel}.
|
|
13530
|
+
*
|
|
13531
|
+
* Text that describes the landmark of forward arrow of the last column in the corresponding `sap.f.FlexibleColumnLayout`
|
|
13532
|
+
* control.
|
|
13533
|
+
*
|
|
13534
|
+
* If not set, a predefined text is used.
|
|
13535
|
+
*
|
|
13536
|
+
* When called with a value of `null` or `undefined`, the default value of the property will be restored.
|
|
13537
|
+
*
|
|
13538
|
+
* @returns Reference to `this` in order to allow method chaining
|
|
13539
|
+
*/
|
|
13540
|
+
setLastColumnForwardArrowLabel(
|
|
13541
|
+
/**
|
|
13542
|
+
* New value for property `lastColumnForwardArrowLabel`
|
|
13543
|
+
*/
|
|
13544
|
+
sLastColumnForwardArrowLabel?: string
|
|
13545
|
+
): this;
|
|
13426
13546
|
/**
|
|
13427
13547
|
* Sets a new value for property {@link #getLastColumnLabel lastColumnLabel}.
|
|
13428
13548
|
*
|
|
@@ -13441,6 +13561,42 @@ declare namespace sap {
|
|
|
13441
13561
|
*/
|
|
13442
13562
|
sLastColumnLabel?: string
|
|
13443
13563
|
): this;
|
|
13564
|
+
/**
|
|
13565
|
+
* Sets a new value for property {@link #getMiddleColumnBackArrowLabel middleColumnBackArrowLabel}.
|
|
13566
|
+
*
|
|
13567
|
+
* Text that describes the landmark of back arrow of the middle column in the corresponding `sap.f.FlexibleColumnLayout`
|
|
13568
|
+
* control.
|
|
13569
|
+
*
|
|
13570
|
+
* If not set, a predefined text is used.
|
|
13571
|
+
*
|
|
13572
|
+
* When called with a value of `null` or `undefined`, the default value of the property will be restored.
|
|
13573
|
+
*
|
|
13574
|
+
* @returns Reference to `this` in order to allow method chaining
|
|
13575
|
+
*/
|
|
13576
|
+
setMiddleColumnBackArrowLabel(
|
|
13577
|
+
/**
|
|
13578
|
+
* New value for property `middleColumnBackArrowLabel`
|
|
13579
|
+
*/
|
|
13580
|
+
sMiddleColumnBackArrowLabel?: string
|
|
13581
|
+
): this;
|
|
13582
|
+
/**
|
|
13583
|
+
* Sets a new value for property {@link #getMiddleColumnForwardArrowLabel middleColumnForwardArrowLabel}.
|
|
13584
|
+
*
|
|
13585
|
+
* Text that describes the landmark of forward arrow of the middle column in the corresponding `sap.f.FlexibleColumnLayout`
|
|
13586
|
+
* control.
|
|
13587
|
+
*
|
|
13588
|
+
* If not set, a predefined text is used.
|
|
13589
|
+
*
|
|
13590
|
+
* When called with a value of `null` or `undefined`, the default value of the property will be restored.
|
|
13591
|
+
*
|
|
13592
|
+
* @returns Reference to `this` in order to allow method chaining
|
|
13593
|
+
*/
|
|
13594
|
+
setMiddleColumnForwardArrowLabel(
|
|
13595
|
+
/**
|
|
13596
|
+
* New value for property `middleColumnForwardArrowLabel`
|
|
13597
|
+
*/
|
|
13598
|
+
sMiddleColumnForwardArrowLabel?: string
|
|
13599
|
+
): this;
|
|
13444
13600
|
/**
|
|
13445
13601
|
* Sets a new value for property {@link #getMiddleColumnLabel middleColumnLabel}.
|
|
13446
13602
|
*
|
package/types/sap.fe.common.d.ts
CHANGED
package/types/sap.fe.core.d.ts
CHANGED
package/types/sap.fe.macros.d.ts
CHANGED
package/types/sap.fe.test.d.ts
CHANGED
package/types/sap.gantt.d.ts
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
// For Library Version: 1.102.
|
|
1
|
+
// For Library Version: 1.102.2
|
|
2
2
|
|
|
3
3
|
declare namespace sap {
|
|
4
4
|
/**
|
|
@@ -23303,7 +23303,8 @@ declare namespace sap {
|
|
|
23303
23303
|
/**
|
|
23304
23304
|
* @SINCE 1.100
|
|
23305
23305
|
*
|
|
23306
|
-
* Flag to show or hide Find and Select search button
|
|
23306
|
+
* Flag to show or hide Find and Select search button Find operation is not going to work for the stock
|
|
23307
|
+
* chart and utilization gantt charts with time continuous shapes.
|
|
23307
23308
|
*/
|
|
23308
23309
|
showSearchButton?:
|
|
23309
23310
|
| boolean
|
|
@@ -31482,7 +31483,8 @@ declare namespace sap {
|
|
|
31482
31483
|
*
|
|
31483
31484
|
* Gets current value of property {@link #getShowSearchButton showSearchButton}.
|
|
31484
31485
|
*
|
|
31485
|
-
* Flag to show or hide Find and Select search button
|
|
31486
|
+
* Flag to show or hide Find and Select search button Find operation is not going to work for the stock
|
|
31487
|
+
* chart and utilization gantt charts with time continuous shapes.
|
|
31486
31488
|
*
|
|
31487
31489
|
* Default value is `false`.
|
|
31488
31490
|
*
|
|
@@ -31717,7 +31719,8 @@ declare namespace sap {
|
|
|
31717
31719
|
*
|
|
31718
31720
|
* Sets a new value for property {@link #getShowSearchButton showSearchButton}.
|
|
31719
31721
|
*
|
|
31720
|
-
* Flag to show or hide Find and Select search button
|
|
31722
|
+
* Flag to show or hide Find and Select search button Find operation is not going to work for the stock
|
|
31723
|
+
* chart and utilization gantt charts with time continuous shapes.
|
|
31721
31724
|
*
|
|
31722
31725
|
* When called with a value of `null` or `undefined`, the default value of the property will be restored.
|
|
31723
31726
|
*
|
package/types/sap.insights.d.ts
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
// For Library Version: 1.102.
|
|
1
|
+
// For Library Version: 1.102.1
|
|
2
2
|
|
|
3
3
|
declare module "sap/insights/CardHelper" {
|
|
4
4
|
/**
|
|
@@ -7,66 +7,7 @@ declare module "sap/insights/CardHelper" {
|
|
|
7
7
|
*
|
|
8
8
|
* Provides functionality for Insight cards CRUD operations.
|
|
9
9
|
*/
|
|
10
|
-
interface CardHelper {
|
|
11
|
-
/**
|
|
12
|
-
* @EXPERIMENTAL (since 1.102)
|
|
13
|
-
*
|
|
14
|
-
* Support storing the insight card in SAP Insights service.
|
|
15
|
-
*/
|
|
16
|
-
create(
|
|
17
|
-
/**
|
|
18
|
-
* Card name which will be used to store the card in the repository
|
|
19
|
-
*/
|
|
20
|
-
sCardName: string,
|
|
21
|
-
/**
|
|
22
|
-
* Card manifest which needs to be stored in the repository
|
|
23
|
-
*/
|
|
24
|
-
oCardManifest: object,
|
|
25
|
-
/**
|
|
26
|
-
* Should be set to true in case the Card has to be persisted as key user
|
|
27
|
-
*/
|
|
28
|
-
isKeyUser: boolean
|
|
29
|
-
): void;
|
|
30
|
-
/**
|
|
31
|
-
* @EXPERIMENTAL (since 1.102)
|
|
32
|
-
*
|
|
33
|
-
* Support deleting the insight card from SAP Insights service.
|
|
34
|
-
*/
|
|
35
|
-
delete(
|
|
36
|
-
/**
|
|
37
|
-
* Url of the card manifest
|
|
38
|
-
*/
|
|
39
|
-
sCardManifestUrl: string,
|
|
40
|
-
/**
|
|
41
|
-
* Should be set to true in case the Card has to be persisted as key user
|
|
42
|
-
*/
|
|
43
|
-
isKeyUser: boolean
|
|
44
|
-
): void;
|
|
45
|
-
/**
|
|
46
|
-
* @EXPERIMENTAL (since 1.102)
|
|
47
|
-
*
|
|
48
|
-
* Retrieve the insight cards from SAP Insights service for the current user.
|
|
49
|
-
*
|
|
50
|
-
* @returns Returns array of suggested cards
|
|
51
|
-
*/
|
|
52
|
-
getSuggestedCards(): any[];
|
|
53
|
-
/**
|
|
54
|
-
* @EXPERIMENTAL (since 1.102)
|
|
55
|
-
*
|
|
56
|
-
* Retrieve the insight cards from SAP Insights service for the current user.
|
|
57
|
-
*
|
|
58
|
-
* @returns Returns array of user cards
|
|
59
|
-
*/
|
|
60
|
-
getUserCards(): any[];
|
|
61
|
-
/**
|
|
62
|
-
* @EXPERIMENTAL (since 1.102)
|
|
63
|
-
*
|
|
64
|
-
* Method could be used check whether insights is supported or not.
|
|
65
|
-
*
|
|
66
|
-
* @returns Returns true if supported else false
|
|
67
|
-
*/
|
|
68
|
-
isSupported(): boolean;
|
|
69
|
-
}
|
|
10
|
+
interface CardHelper {}
|
|
70
11
|
const CardHelper: CardHelper;
|
|
71
12
|
export default CardHelper;
|
|
72
13
|
}
|