@sapui5/ts-types 1.112.3 → 1.114.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 +0 -1
- package/types/sap.apf.d.ts +1 -1
- package/types/sap.ca.ui.d.ts +59 -2
- package/types/sap.chart.d.ts +15 -1
- package/types/sap.collaboration.d.ts +33 -1
- package/types/sap.esh.search.ui.d.ts +449 -1
- package/types/sap.f.d.ts +125 -38
- package/types/sap.fe.core.d.ts +35 -5
- package/types/sap.fe.macros.d.ts +80 -72
- package/types/sap.fe.navigation.d.ts +2 -0
- package/types/sap.fe.templates.d.ts +6 -0
- package/types/sap.fe.test.d.ts +7 -1
- package/types/sap.feedback.ui.d.ts +2 -6
- package/types/sap.gantt.d.ts +238 -16
- package/types/sap.insights.d.ts +1 -1
- package/types/sap.landvisz.d.ts +27 -1
- package/types/sap.m.d.ts +2306 -1028
- package/types/sap.makit.d.ts +13 -1
- package/types/sap.me.d.ts +17 -1
- package/types/sap.ndc.d.ts +10 -2
- package/types/sap.ovp.d.ts +7 -1
- package/types/sap.rules.ui.d.ts +9 -1
- package/types/sap.sac.df.d.ts +64 -551
- package/types/sap.suite.ui.commons.d.ts +276 -2
- package/types/sap.suite.ui.generic.template.d.ts +180 -1
- package/types/sap.suite.ui.microchart.d.ts +37 -1
- package/types/sap.tnt.d.ts +7 -1
- package/types/sap.ui.codeeditor.d.ts +5 -1
- package/types/sap.ui.commons.d.ts +197 -1
- package/types/sap.ui.comp.d.ts +706 -263
- package/types/sap.ui.core.d.ts +3117 -1641
- package/types/sap.ui.dt.d.ts +1 -1
- package/types/sap.ui.export.d.ts +1 -1
- package/types/sap.ui.fl.d.ts +13 -3
- package/types/sap.ui.generic.app.d.ts +21 -8
- package/types/sap.ui.generic.template.d.ts +1 -1
- package/types/sap.ui.integration.d.ts +158 -22
- package/types/sap.ui.layout.d.ts +43 -1
- package/types/sap.ui.mdc.d.ts +17 -7
- package/types/sap.ui.richtexteditor.d.ts +11 -1
- package/types/sap.ui.rta.d.ts +1 -1
- package/types/sap.ui.suite.d.ts +5 -1
- package/types/sap.ui.support.d.ts +1 -1
- package/types/sap.ui.table.d.ts +98 -7
- package/types/sap.ui.testrecorder.d.ts +1 -1
- package/types/sap.ui.unified.d.ts +433 -111
- package/types/sap.ui.ux3.d.ts +147 -1
- package/types/sap.ui.vbm.d.ts +122 -1
- package/types/sap.ui.vk.d.ts +414 -2
- package/types/sap.ui.vtm.d.ts +73 -1
- package/types/sap.ui.webc.common.d.ts +1 -1
- package/types/sap.ui.webc.fiori.d.ts +63 -1
- package/types/sap.ui.webc.main.d.ts +189 -5
- package/types/sap.uiext.inbox.d.ts +27 -1
- package/types/sap.ushell.d.ts +380 -84
- package/types/sap.ushell_abap.d.ts +1 -1
- package/types/sap.uxap.d.ts +26 -1
- package/types/sap.viz.d.ts +229 -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 +10 -1
- package/types/sap.sac.grid.d.ts +0 -760
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
// For Library Version: 1.
|
|
1
|
+
// For Library Version: 1.114.0
|
|
2
2
|
|
|
3
3
|
declare module "sap/suite/ui/commons/collaboration/BaseHelperService" {
|
|
4
4
|
/**
|
|
@@ -25,6 +25,10 @@ declare module "sap/suite/ui/commons/collaboration/BaseHelperService" {
|
|
|
25
25
|
* Allow the 'Share as Tab' option to be available in case Microsoft Teams is the collaboration provider
|
|
26
26
|
*/
|
|
27
27
|
isShareAsTabEnabled: boolean;
|
|
28
|
+
/**
|
|
29
|
+
* Allow the 'Share as Card' option to be available in case Microsoft Teams is the collaboration provider
|
|
30
|
+
*/
|
|
31
|
+
isShareAsCardEnabled: boolean;
|
|
28
32
|
}
|
|
29
33
|
): any[];
|
|
30
34
|
/**
|
|
@@ -1699,6 +1703,8 @@ declare namespace sap {
|
|
|
1699
1703
|
bPreview: boolean
|
|
1700
1704
|
): void;
|
|
1701
1705
|
/**
|
|
1706
|
+
* @PROTECTED - DO NOT USE IN APPLICATIONS (only for related classes in the framework)
|
|
1707
|
+
*
|
|
1702
1708
|
* Fires event {@link #event:cropAreaChanged cropAreaChanged} to attached listeners.
|
|
1703
1709
|
*
|
|
1704
1710
|
* @returns Reference to `this` in order to allow method chaining
|
|
@@ -1714,6 +1720,8 @@ declare namespace sap {
|
|
|
1714
1720
|
}
|
|
1715
1721
|
): this;
|
|
1716
1722
|
/**
|
|
1723
|
+
* @PROTECTED - DO NOT USE IN APPLICATIONS (only for related classes in the framework)
|
|
1724
|
+
*
|
|
1717
1725
|
* Fires event {@link #event:customShapeError customShapeError} to attached listeners.
|
|
1718
1726
|
*
|
|
1719
1727
|
* @returns Reference to `this` in order to allow method chaining
|
|
@@ -1725,6 +1733,8 @@ declare namespace sap {
|
|
|
1725
1733
|
mParameters?: object
|
|
1726
1734
|
): this;
|
|
1727
1735
|
/**
|
|
1736
|
+
* @PROTECTED - DO NOT USE IN APPLICATIONS (only for related classes in the framework)
|
|
1737
|
+
*
|
|
1728
1738
|
* Fires event {@link #event:customShapeLoaded customShapeLoaded} to attached listeners.
|
|
1729
1739
|
*
|
|
1730
1740
|
* @returns Reference to `this` in order to allow method chaining
|
|
@@ -1736,6 +1746,8 @@ declare namespace sap {
|
|
|
1736
1746
|
mParameters?: object
|
|
1737
1747
|
): this;
|
|
1738
1748
|
/**
|
|
1749
|
+
* @PROTECTED - DO NOT USE IN APPLICATIONS (only for related classes in the framework)
|
|
1750
|
+
*
|
|
1739
1751
|
* Fires event {@link #event:error error} to attached listeners.
|
|
1740
1752
|
*
|
|
1741
1753
|
* @returns Reference to `this` in order to allow method chaining
|
|
@@ -1747,6 +1759,8 @@ declare namespace sap {
|
|
|
1747
1759
|
mParameters?: object
|
|
1748
1760
|
): this;
|
|
1749
1761
|
/**
|
|
1762
|
+
* @PROTECTED - DO NOT USE IN APPLICATIONS (only for related classes in the framework)
|
|
1763
|
+
*
|
|
1750
1764
|
* Fires event {@link #event:historyChanged historyChanged} to attached listeners.
|
|
1751
1765
|
*
|
|
1752
1766
|
* @returns Reference to `this` in order to allow method chaining
|
|
@@ -1758,6 +1772,8 @@ declare namespace sap {
|
|
|
1758
1772
|
mParameters?: object
|
|
1759
1773
|
): this;
|
|
1760
1774
|
/**
|
|
1775
|
+
* @PROTECTED - DO NOT USE IN APPLICATIONS (only for related classes in the framework)
|
|
1776
|
+
*
|
|
1761
1777
|
* Fires event {@link #event:loaded loaded} to attached listeners.
|
|
1762
1778
|
*
|
|
1763
1779
|
* @returns Reference to `this` in order to allow method chaining
|
|
@@ -1769,6 +1785,8 @@ declare namespace sap {
|
|
|
1769
1785
|
mParameters?: object
|
|
1770
1786
|
): this;
|
|
1771
1787
|
/**
|
|
1788
|
+
* @PROTECTED - DO NOT USE IN APPLICATIONS (only for related classes in the framework)
|
|
1789
|
+
*
|
|
1772
1790
|
* Fires event {@link #event:sizeChanged sizeChanged} to attached listeners.
|
|
1773
1791
|
*
|
|
1774
1792
|
* @returns Reference to `this` in order to allow method chaining
|
|
@@ -1788,6 +1806,8 @@ declare namespace sap {
|
|
|
1788
1806
|
}
|
|
1789
1807
|
): this;
|
|
1790
1808
|
/**
|
|
1809
|
+
* @PROTECTED - DO NOT USE IN APPLICATIONS (only for related classes in the framework)
|
|
1810
|
+
*
|
|
1791
1811
|
* Fires event {@link #event:zoomChanged zoomChanged} to attached listeners.
|
|
1792
1812
|
*
|
|
1793
1813
|
* @returns Reference to `this` in order to allow method chaining
|
|
@@ -4017,9 +4037,13 @@ declare namespace sap {
|
|
|
4017
4037
|
* @returns Metadata object describing this class
|
|
4018
4038
|
*/
|
|
4019
4039
|
static getMetadata(): sap.ui.core.ElementMetadata;
|
|
4020
|
-
|
|
4040
|
+
/**
|
|
4041
|
+
* @PROTECTED - DO NOT USE IN APPLICATIONS (only for related classes in the framework)
|
|
4042
|
+
*/
|
|
4021
4043
|
_alignCoordinatesWithView(): void;
|
|
4022
4044
|
/**
|
|
4045
|
+
* @PROTECTED - DO NOT USE IN APPLICATIONS (only for related classes in the framework)
|
|
4046
|
+
*
|
|
4023
4047
|
*
|
|
4024
4048
|
* @returns True if there are hierarchical groups, false otherwise.
|
|
4025
4049
|
*/
|
|
@@ -4133,6 +4157,8 @@ declare namespace sap {
|
|
|
4133
4157
|
constructor();
|
|
4134
4158
|
|
|
4135
4159
|
/**
|
|
4160
|
+
* @PROTECTED - DO NOT USE IN APPLICATIONS (only for related classes in the framework)
|
|
4161
|
+
*
|
|
4136
4162
|
* In this override of the generic method for all layouts we want to avoid global margin.
|
|
4137
4163
|
*/
|
|
4138
4164
|
_alignCoordinatesWithView(): void;
|
|
@@ -5239,6 +5265,8 @@ declare namespace sap {
|
|
|
5239
5265
|
oListener?: object
|
|
5240
5266
|
): this;
|
|
5241
5267
|
/**
|
|
5268
|
+
* @PROTECTED - DO NOT USE IN APPLICATIONS (only for related classes in the framework)
|
|
5269
|
+
*
|
|
5242
5270
|
* Fires event {@link #event:press press} to attached listeners.
|
|
5243
5271
|
*
|
|
5244
5272
|
* @returns Reference to `this` in order to allow method chaining
|
|
@@ -6552,6 +6580,8 @@ declare namespace sap {
|
|
|
6552
6580
|
oListener?: object
|
|
6553
6581
|
): this;
|
|
6554
6582
|
/**
|
|
6583
|
+
* @PROTECTED - DO NOT USE IN APPLICATIONS (only for related classes in the framework)
|
|
6584
|
+
*
|
|
6555
6585
|
* Fires event {@link #event:afterLayouting afterLayouting} to attached listeners.
|
|
6556
6586
|
*
|
|
6557
6587
|
* @returns Reference to `this` in order to allow method chaining
|
|
@@ -6563,6 +6593,8 @@ declare namespace sap {
|
|
|
6563
6593
|
mParameters?: object
|
|
6564
6594
|
): this;
|
|
6565
6595
|
/**
|
|
6596
|
+
* @PROTECTED - DO NOT USE IN APPLICATIONS (only for related classes in the framework)
|
|
6597
|
+
*
|
|
6566
6598
|
* Fires event {@link #event:beforeLayouting beforeLayouting} to attached listeners.
|
|
6567
6599
|
*
|
|
6568
6600
|
* @returns Reference to `this` in order to allow method chaining
|
|
@@ -6574,6 +6606,8 @@ declare namespace sap {
|
|
|
6574
6606
|
mParameters?: object
|
|
6575
6607
|
): this;
|
|
6576
6608
|
/**
|
|
6609
|
+
* @PROTECTED - DO NOT USE IN APPLICATIONS (only for related classes in the framework)
|
|
6610
|
+
*
|
|
6577
6611
|
* Fires event {@link #event:failure failure} to attached listeners.
|
|
6578
6612
|
*
|
|
6579
6613
|
* @returns Reference to `this` in order to allow method chaining
|
|
@@ -6594,6 +6628,8 @@ declare namespace sap {
|
|
|
6594
6628
|
}
|
|
6595
6629
|
): this;
|
|
6596
6630
|
/**
|
|
6631
|
+
* @PROTECTED - DO NOT USE IN APPLICATIONS (only for related classes in the framework)
|
|
6632
|
+
*
|
|
6597
6633
|
* Fires event {@link #event:graphReady graphReady} to attached listeners.
|
|
6598
6634
|
*
|
|
6599
6635
|
* @returns Reference to `this` in order to allow method chaining
|
|
@@ -6605,6 +6641,8 @@ declare namespace sap {
|
|
|
6605
6641
|
mParameters?: object
|
|
6606
6642
|
): this;
|
|
6607
6643
|
/**
|
|
6644
|
+
* @PROTECTED - DO NOT USE IN APPLICATIONS (only for related classes in the framework)
|
|
6645
|
+
*
|
|
6608
6646
|
* Fires event {@link #event:search search} to attached listeners.
|
|
6609
6647
|
*
|
|
6610
6648
|
* @returns Reference to `this` in order to allow method chaining
|
|
@@ -6620,6 +6658,8 @@ declare namespace sap {
|
|
|
6620
6658
|
}
|
|
6621
6659
|
): this;
|
|
6622
6660
|
/**
|
|
6661
|
+
* @PROTECTED - DO NOT USE IN APPLICATIONS (only for related classes in the framework)
|
|
6662
|
+
*
|
|
6623
6663
|
* Fires event {@link #event:searchSuggest searchSuggest} to attached listeners.
|
|
6624
6664
|
*
|
|
6625
6665
|
* @returns Reference to `this` in order to allow method chaining
|
|
@@ -6633,6 +6673,8 @@ declare namespace sap {
|
|
|
6633
6673
|
}
|
|
6634
6674
|
): this;
|
|
6635
6675
|
/**
|
|
6676
|
+
* @PROTECTED - DO NOT USE IN APPLICATIONS (only for related classes in the framework)
|
|
6677
|
+
*
|
|
6636
6678
|
* Fires event {@link #event:selectionChange selectionChange} to attached listeners.
|
|
6637
6679
|
*
|
|
6638
6680
|
* @returns Reference to `this` in order to allow method chaining
|
|
@@ -6650,6 +6692,8 @@ declare namespace sap {
|
|
|
6650
6692
|
}
|
|
6651
6693
|
): this;
|
|
6652
6694
|
/**
|
|
6695
|
+
* @PROTECTED - DO NOT USE IN APPLICATIONS (only for related classes in the framework)
|
|
6696
|
+
*
|
|
6653
6697
|
* Fires event {@link #event:zoomChanged zoomChanged} to attached listeners.
|
|
6654
6698
|
*
|
|
6655
6699
|
* @returns Reference to `this` in order to allow method chaining
|
|
@@ -7475,6 +7519,8 @@ declare namespace sap {
|
|
|
7475
7519
|
oListener?: object
|
|
7476
7520
|
): this;
|
|
7477
7521
|
/**
|
|
7522
|
+
* @PROTECTED - DO NOT USE IN APPLICATIONS (only for related classes in the framework)
|
|
7523
|
+
*
|
|
7478
7524
|
* Fires event {@link #event:mapReady mapReady} to attached listeners.
|
|
7479
7525
|
*
|
|
7480
7526
|
* @returns Reference to `this` in order to allow method chaining
|
|
@@ -7862,6 +7908,8 @@ declare namespace sap {
|
|
|
7862
7908
|
oListener?: object
|
|
7863
7909
|
): this;
|
|
7864
7910
|
/**
|
|
7911
|
+
* @PROTECTED - DO NOT USE IN APPLICATIONS (only for related classes in the framework)
|
|
7912
|
+
*
|
|
7865
7913
|
* Fires event {@link #event:collapseExpand collapseExpand} to attached listeners.
|
|
7866
7914
|
*
|
|
7867
7915
|
* @returns Reference to `this` in order to allow method chaining
|
|
@@ -7873,6 +7921,8 @@ declare namespace sap {
|
|
|
7873
7921
|
mParameters?: object
|
|
7874
7922
|
): this;
|
|
7875
7923
|
/**
|
|
7924
|
+
* @PROTECTED - DO NOT USE IN APPLICATIONS (only for related classes in the framework)
|
|
7925
|
+
*
|
|
7876
7926
|
* Fires event {@link #event:headerCheckBoxPress headerCheckBoxPress} to attached listeners.
|
|
7877
7927
|
*
|
|
7878
7928
|
* @returns Reference to `this` in order to allow method chaining
|
|
@@ -7889,6 +7939,8 @@ declare namespace sap {
|
|
|
7889
7939
|
}
|
|
7890
7940
|
): this;
|
|
7891
7941
|
/**
|
|
7942
|
+
* @PROTECTED - DO NOT USE IN APPLICATIONS (only for related classes in the framework)
|
|
7943
|
+
*
|
|
7892
7944
|
* Fires event {@link #event:showDetail showDetail} to attached listeners.
|
|
7893
7945
|
*
|
|
7894
7946
|
* @returns Reference to `this` in order to allow method chaining
|
|
@@ -8324,6 +8376,8 @@ declare namespace sap {
|
|
|
8324
8376
|
oListener?: object
|
|
8325
8377
|
): this;
|
|
8326
8378
|
/**
|
|
8379
|
+
* @PROTECTED - DO NOT USE IN APPLICATIONS (only for related classes in the framework)
|
|
8380
|
+
*
|
|
8327
8381
|
* Fires event {@link #event:hover hover} to attached listeners.
|
|
8328
8382
|
*
|
|
8329
8383
|
* @returns Reference to `this` in order to allow method chaining
|
|
@@ -8335,6 +8389,8 @@ declare namespace sap {
|
|
|
8335
8389
|
mParameters?: object
|
|
8336
8390
|
): this;
|
|
8337
8391
|
/**
|
|
8392
|
+
* @PROTECTED - DO NOT USE IN APPLICATIONS (only for related classes in the framework)
|
|
8393
|
+
*
|
|
8338
8394
|
* Fires event {@link #event:press press} to attached listeners.
|
|
8339
8395
|
*
|
|
8340
8396
|
* @returns Reference to `this` in order to allow method chaining
|
|
@@ -9099,6 +9155,8 @@ declare namespace sap {
|
|
|
9099
9155
|
oListener?: object
|
|
9100
9156
|
): this;
|
|
9101
9157
|
/**
|
|
9158
|
+
* @PROTECTED - DO NOT USE IN APPLICATIONS (only for related classes in the framework)
|
|
9159
|
+
*
|
|
9102
9160
|
* Fires event {@link #event:collapseExpand collapseExpand} to attached listeners.
|
|
9103
9161
|
*
|
|
9104
9162
|
* @returns Reference to `this` in order to allow method chaining
|
|
@@ -9110,6 +9168,8 @@ declare namespace sap {
|
|
|
9110
9168
|
mParameters?: object
|
|
9111
9169
|
): this;
|
|
9112
9170
|
/**
|
|
9171
|
+
* @PROTECTED - DO NOT USE IN APPLICATIONS (only for related classes in the framework)
|
|
9172
|
+
*
|
|
9113
9173
|
* Fires event {@link #event:headerCheckBoxPress headerCheckBoxPress} to attached listeners.
|
|
9114
9174
|
*
|
|
9115
9175
|
* @returns Reference to `this` in order to allow method chaining
|
|
@@ -9126,6 +9186,8 @@ declare namespace sap {
|
|
|
9126
9186
|
}
|
|
9127
9187
|
): this;
|
|
9128
9188
|
/**
|
|
9189
|
+
* @PROTECTED - DO NOT USE IN APPLICATIONS (only for related classes in the framework)
|
|
9190
|
+
*
|
|
9129
9191
|
* Fires event {@link #event:hover hover} to attached listeners.
|
|
9130
9192
|
*
|
|
9131
9193
|
* @returns Reference to `this` in order to allow method chaining
|
|
@@ -9137,6 +9199,8 @@ declare namespace sap {
|
|
|
9137
9199
|
mParameters?: object
|
|
9138
9200
|
): this;
|
|
9139
9201
|
/**
|
|
9202
|
+
* @PROTECTED - DO NOT USE IN APPLICATIONS (only for related classes in the framework)
|
|
9203
|
+
*
|
|
9140
9204
|
* Fires event {@link #event:press press} to attached listeners.
|
|
9141
9205
|
*
|
|
9142
9206
|
* @returns Reference to `this` in order to allow method chaining
|
|
@@ -12597,6 +12661,8 @@ declare namespace sap {
|
|
|
12597
12661
|
oListener?: object
|
|
12598
12662
|
): this;
|
|
12599
12663
|
/**
|
|
12664
|
+
* @PROTECTED - DO NOT USE IN APPLICATIONS (only for related classes in the framework)
|
|
12665
|
+
*
|
|
12600
12666
|
* Fires event {@link #event:afterShapeLoaded afterShapeLoaded} to attached listeners.
|
|
12601
12667
|
*
|
|
12602
12668
|
* @returns Reference to `this` in order to allow method chaining
|
|
@@ -14032,6 +14098,8 @@ declare namespace sap {
|
|
|
14032
14098
|
oListener?: object
|
|
14033
14099
|
): this;
|
|
14034
14100
|
/**
|
|
14101
|
+
* @PROTECTED - DO NOT USE IN APPLICATIONS (only for related classes in the framework)
|
|
14102
|
+
*
|
|
14035
14103
|
* Fires event {@link #event:press press} to attached listeners.
|
|
14036
14104
|
*
|
|
14037
14105
|
* @returns Reference to `this` in order to allow method chaining
|
|
@@ -15651,6 +15719,8 @@ declare namespace sap {
|
|
|
15651
15719
|
oListener?: object
|
|
15652
15720
|
): this;
|
|
15653
15721
|
/**
|
|
15722
|
+
* @PROTECTED - DO NOT USE IN APPLICATIONS (only for related classes in the framework)
|
|
15723
|
+
*
|
|
15654
15724
|
* Fires event {@link #event:press press} to attached listeners.
|
|
15655
15725
|
*
|
|
15656
15726
|
* @returns Reference to `this` in order to allow method chaining
|
|
@@ -16249,6 +16319,8 @@ declare namespace sap {
|
|
|
16249
16319
|
oListener?: object
|
|
16250
16320
|
): this;
|
|
16251
16321
|
/**
|
|
16322
|
+
* @PROTECTED - DO NOT USE IN APPLICATIONS (only for related classes in the framework)
|
|
16323
|
+
*
|
|
16252
16324
|
* Fires event {@link #event:settingsApplied settingsApplied} to attached listeners.
|
|
16253
16325
|
*
|
|
16254
16326
|
* @returns Reference to `this` in order to allow method chaining
|
|
@@ -16265,6 +16337,8 @@ declare namespace sap {
|
|
|
16265
16337
|
}
|
|
16266
16338
|
): this;
|
|
16267
16339
|
/**
|
|
16340
|
+
* @PROTECTED - DO NOT USE IN APPLICATIONS (only for related classes in the framework)
|
|
16341
|
+
*
|
|
16268
16342
|
* Fires event {@link #event:stateChanged stateChanged} to attached listeners.
|
|
16269
16343
|
*
|
|
16270
16344
|
* @returns Reference to `this` in order to allow method chaining
|
|
@@ -16533,10 +16607,14 @@ declare namespace sap {
|
|
|
16533
16607
|
|
|
16534
16608
|
namespace util {
|
|
16535
16609
|
/**
|
|
16610
|
+
* @PROTECTED - DO NOT USE IN APPLICATIONS (only for related classes in the framework)
|
|
16611
|
+
*
|
|
16536
16612
|
* HtmlElement A model class for holding information about one HTML tag.
|
|
16537
16613
|
*/
|
|
16538
16614
|
class HtmlElement extends sap.ui.base.Object {
|
|
16539
16615
|
/**
|
|
16616
|
+
* @PROTECTED - DO NOT USE IN APPLICATIONS (only for related classes in the framework)
|
|
16617
|
+
*
|
|
16540
16618
|
* Creates a HtmlElement which resembles one HTML tag.
|
|
16541
16619
|
*/
|
|
16542
16620
|
constructor(
|
|
@@ -16547,6 +16625,8 @@ declare namespace sap {
|
|
|
16547
16625
|
);
|
|
16548
16626
|
|
|
16549
16627
|
/**
|
|
16628
|
+
* @PROTECTED - DO NOT USE IN APPLICATIONS (only for related classes in the framework)
|
|
16629
|
+
*
|
|
16550
16630
|
* Creates a new subclass of class sap.suite.ui.commons.util.HtmlElement with name `sClassName` and enriches
|
|
16551
16631
|
* it with the information contained in `oClassInfo`.
|
|
16552
16632
|
*
|
|
@@ -16573,12 +16653,16 @@ declare namespace sap {
|
|
|
16573
16653
|
FNMetaImpl?: Function
|
|
16574
16654
|
): Function;
|
|
16575
16655
|
/**
|
|
16656
|
+
* @PROTECTED - DO NOT USE IN APPLICATIONS (only for related classes in the framework)
|
|
16657
|
+
*
|
|
16576
16658
|
* Returns a metadata object for class sap.suite.ui.commons.util.HtmlElement.
|
|
16577
16659
|
*
|
|
16578
16660
|
* @returns Metadata object describing this class
|
|
16579
16661
|
*/
|
|
16580
16662
|
static getMetadata(): sap.ui.base.Metadata;
|
|
16581
16663
|
/**
|
|
16664
|
+
* @PROTECTED - DO NOT USE IN APPLICATIONS (only for related classes in the framework)
|
|
16665
|
+
*
|
|
16582
16666
|
* Adds a child to the element. A child can be either text, another HtmlElement or a Control. Children will
|
|
16583
16667
|
* e rendered as a content of this element.
|
|
16584
16668
|
*/
|
|
@@ -16592,6 +16676,8 @@ declare namespace sap {
|
|
|
16592
16676
|
| sap.ui.core.Control
|
|
16593
16677
|
): void;
|
|
16594
16678
|
/**
|
|
16679
|
+
* @PROTECTED - DO NOT USE IN APPLICATIONS (only for related classes in the framework)
|
|
16680
|
+
*
|
|
16595
16681
|
* Adds a string child and escapes it using encodeHTML.
|
|
16596
16682
|
*/
|
|
16597
16683
|
addChildEscaped(
|
|
@@ -16606,6 +16692,8 @@ declare namespace sap {
|
|
|
16606
16692
|
bConvertLineBreakToBr: boolean
|
|
16607
16693
|
): void;
|
|
16608
16694
|
/**
|
|
16695
|
+
* @PROTECTED - DO NOT USE IN APPLICATIONS (only for related classes in the framework)
|
|
16696
|
+
*
|
|
16609
16697
|
* Adds a class.
|
|
16610
16698
|
*/
|
|
16611
16699
|
addClass(
|
|
@@ -16615,6 +16703,8 @@ declare namespace sap {
|
|
|
16615
16703
|
sClass: string
|
|
16616
16704
|
): void;
|
|
16617
16705
|
/**
|
|
16706
|
+
* @PROTECTED - DO NOT USE IN APPLICATIONS (only for related classes in the framework)
|
|
16707
|
+
*
|
|
16618
16708
|
* Adds all html relevant data from UI5 control. It sets ID, adds all custom data and adds custom style
|
|
16619
16709
|
* classes. This function should be called on the element which resembles the rendered control. It's usually
|
|
16620
16710
|
* the top element.
|
|
@@ -16626,6 +16716,8 @@ declare namespace sap {
|
|
|
16626
16716
|
oControl: sap.ui.core.Control
|
|
16627
16717
|
): void;
|
|
16628
16718
|
/**
|
|
16719
|
+
* @PROTECTED - DO NOT USE IN APPLICATIONS (only for related classes in the framework)
|
|
16720
|
+
*
|
|
16629
16721
|
* Adds a HTML style (eg. "color:red").
|
|
16630
16722
|
*/
|
|
16631
16723
|
addStyle(
|
|
@@ -16639,12 +16731,16 @@ declare namespace sap {
|
|
|
16639
16731
|
oValue: string | number
|
|
16640
16732
|
): void;
|
|
16641
16733
|
/**
|
|
16734
|
+
* @PROTECTED - DO NOT USE IN APPLICATIONS (only for related classes in the framework)
|
|
16735
|
+
*
|
|
16642
16736
|
* Returns a renderer for this tag.
|
|
16643
16737
|
*
|
|
16644
16738
|
* @returns The newly created renderer instance
|
|
16645
16739
|
*/
|
|
16646
16740
|
getRenderer(): sap.suite.ui.commons.util.HtmlElementRenderer;
|
|
16647
16741
|
/**
|
|
16742
|
+
* @PROTECTED - DO NOT USE IN APPLICATIONS (only for related classes in the framework)
|
|
16743
|
+
*
|
|
16648
16744
|
* Sets an attribute.
|
|
16649
16745
|
*/
|
|
16650
16746
|
setAttribute(
|
|
@@ -16662,6 +16758,8 @@ declare namespace sap {
|
|
|
16662
16758
|
bEscape?: boolean
|
|
16663
16759
|
): void;
|
|
16664
16760
|
/**
|
|
16761
|
+
* @PROTECTED - DO NOT USE IN APPLICATIONS (only for related classes in the framework)
|
|
16762
|
+
*
|
|
16665
16763
|
* Sets id attribute.
|
|
16666
16764
|
*/
|
|
16667
16765
|
setId(
|
|
@@ -16676,10 +16774,14 @@ declare namespace sap {
|
|
|
16676
16774
|
): void;
|
|
16677
16775
|
}
|
|
16678
16776
|
/**
|
|
16777
|
+
* @PROTECTED - DO NOT USE IN APPLICATIONS (only for related classes in the framework)
|
|
16778
|
+
*
|
|
16679
16779
|
* HtmlElementRenderer A renderer for HtmlElement.
|
|
16680
16780
|
*/
|
|
16681
16781
|
class HtmlElementRenderer extends sap.ui.base.Object {
|
|
16682
16782
|
/**
|
|
16783
|
+
* @PROTECTED - DO NOT USE IN APPLICATIONS (only for related classes in the framework)
|
|
16784
|
+
*
|
|
16683
16785
|
* Creates a renderer for HtmlElement.
|
|
16684
16786
|
*/
|
|
16685
16787
|
constructor(
|
|
@@ -16690,6 +16792,8 @@ declare namespace sap {
|
|
|
16690
16792
|
);
|
|
16691
16793
|
|
|
16692
16794
|
/**
|
|
16795
|
+
* @PROTECTED - DO NOT USE IN APPLICATIONS (only for related classes in the framework)
|
|
16796
|
+
*
|
|
16693
16797
|
* Creates a new subclass of class sap.suite.ui.commons.util.HtmlElementRenderer with name `sClassName`
|
|
16694
16798
|
* and enriches it with the information contained in `oClassInfo`.
|
|
16695
16799
|
*
|
|
@@ -16716,12 +16820,16 @@ declare namespace sap {
|
|
|
16716
16820
|
FNMetaImpl?: Function
|
|
16717
16821
|
): Function;
|
|
16718
16822
|
/**
|
|
16823
|
+
* @PROTECTED - DO NOT USE IN APPLICATIONS (only for related classes in the framework)
|
|
16824
|
+
*
|
|
16719
16825
|
* Returns a metadata object for class sap.suite.ui.commons.util.HtmlElementRenderer.
|
|
16720
16826
|
*
|
|
16721
16827
|
* @returns Metadata object describing this class
|
|
16722
16828
|
*/
|
|
16723
16829
|
static getMetadata(): sap.ui.base.Metadata;
|
|
16724
16830
|
/**
|
|
16831
|
+
* @PROTECTED - DO NOT USE IN APPLICATIONS (only for related classes in the framework)
|
|
16832
|
+
*
|
|
16725
16833
|
* Renders all attributes of parent tag.
|
|
16726
16834
|
*/
|
|
16727
16835
|
_renderAttributes(
|
|
@@ -16731,6 +16839,8 @@ declare namespace sap {
|
|
|
16731
16839
|
oRm: sap.ui.core.RenderManager
|
|
16732
16840
|
): void;
|
|
16733
16841
|
/**
|
|
16842
|
+
* @PROTECTED - DO NOT USE IN APPLICATIONS (only for related classes in the framework)
|
|
16843
|
+
*
|
|
16734
16844
|
* Renders children of given node.
|
|
16735
16845
|
*/
|
|
16736
16846
|
_renderChildren(
|
|
@@ -16740,6 +16850,8 @@ declare namespace sap {
|
|
|
16740
16850
|
oRm: sap.ui.core.RenderManager
|
|
16741
16851
|
): void;
|
|
16742
16852
|
/**
|
|
16853
|
+
* @PROTECTED - DO NOT USE IN APPLICATIONS (only for related classes in the framework)
|
|
16854
|
+
*
|
|
16743
16855
|
* Renders HtmlElement to given render manager.
|
|
16744
16856
|
*/
|
|
16745
16857
|
render(
|
|
@@ -16750,6 +16862,8 @@ declare namespace sap {
|
|
|
16750
16862
|
): void;
|
|
16751
16863
|
}
|
|
16752
16864
|
/**
|
|
16865
|
+
* @PROTECTED - DO NOT USE IN APPLICATIONS (only for related classes in the framework)
|
|
16866
|
+
*
|
|
16753
16867
|
* A registry which keeps a set of managed objects and allows you to lazy load them and destroy them at
|
|
16754
16868
|
* once. A lot of controls keep those object as private properties and destroies them one by one. Instead
|
|
16755
16869
|
* you can just use:
|
|
@@ -16767,11 +16881,15 @@ declare namespace sap {
|
|
|
16767
16881
|
*/
|
|
16768
16882
|
class ManagedObjectRegister extends sap.ui.base.Object {
|
|
16769
16883
|
/**
|
|
16884
|
+
* @PROTECTED - DO NOT USE IN APPLICATIONS (only for related classes in the framework)
|
|
16885
|
+
*
|
|
16770
16886
|
* Creates an object registry for storing references to managed objects.
|
|
16771
16887
|
*/
|
|
16772
16888
|
constructor();
|
|
16773
16889
|
|
|
16774
16890
|
/**
|
|
16891
|
+
* @PROTECTED - DO NOT USE IN APPLICATIONS (only for related classes in the framework)
|
|
16892
|
+
*
|
|
16775
16893
|
* Creates a new subclass of class sap.suite.ui.commons.util.ManagedObjectRegister with name `sClassName`
|
|
16776
16894
|
* and enriches it with the information contained in `oClassInfo`.
|
|
16777
16895
|
*
|
|
@@ -16798,16 +16916,22 @@ declare namespace sap {
|
|
|
16798
16916
|
FNMetaImpl?: Function
|
|
16799
16917
|
): Function;
|
|
16800
16918
|
/**
|
|
16919
|
+
* @PROTECTED - DO NOT USE IN APPLICATIONS (only for related classes in the framework)
|
|
16920
|
+
*
|
|
16801
16921
|
* Returns a metadata object for class sap.suite.ui.commons.util.ManagedObjectRegister.
|
|
16802
16922
|
*
|
|
16803
16923
|
* @returns Metadata object describing this class
|
|
16804
16924
|
*/
|
|
16805
16925
|
static getMetadata(): sap.ui.base.Metadata;
|
|
16806
16926
|
/**
|
|
16927
|
+
* @PROTECTED - DO NOT USE IN APPLICATIONS (only for related classes in the framework)
|
|
16928
|
+
*
|
|
16807
16929
|
* Destroys all objects in the registry and removes it's definition.
|
|
16808
16930
|
*/
|
|
16809
16931
|
destroyAll(): void;
|
|
16810
16932
|
/**
|
|
16933
|
+
* @PROTECTED - DO NOT USE IN APPLICATIONS (only for related classes in the framework)
|
|
16934
|
+
*
|
|
16811
16935
|
* Destroys an object and removes it from the registry.
|
|
16812
16936
|
*/
|
|
16813
16937
|
destroyObject(
|
|
@@ -16817,6 +16941,8 @@ declare namespace sap {
|
|
|
16817
16941
|
sKey: string
|
|
16818
16942
|
): void;
|
|
16819
16943
|
/**
|
|
16944
|
+
* @PROTECTED - DO NOT USE IN APPLICATIONS (only for related classes in the framework)
|
|
16945
|
+
*
|
|
16820
16946
|
* Returns a stored object. If called without parameters it will return object registered with key "Object".
|
|
16821
16947
|
*
|
|
16822
16948
|
* @returns An object from the register. If the object doesn't exist it will get created by it's factory
|
|
@@ -16829,6 +16955,8 @@ declare namespace sap {
|
|
|
16829
16955
|
sKey?: string
|
|
16830
16956
|
): sap.ui.base.ManagedObject;
|
|
16831
16957
|
/**
|
|
16958
|
+
* @PROTECTED - DO NOT USE IN APPLICATIONS (only for related classes in the framework)
|
|
16959
|
+
*
|
|
16832
16960
|
* Returns true if there is the object registered and created. If there is not triggered factory function,
|
|
16833
16961
|
* returns false.
|
|
16834
16962
|
*
|
|
@@ -16841,6 +16969,8 @@ declare namespace sap {
|
|
|
16841
16969
|
sKey?: string
|
|
16842
16970
|
): boolean;
|
|
16843
16971
|
/**
|
|
16972
|
+
* @PROTECTED - DO NOT USE IN APPLICATIONS (only for related classes in the framework)
|
|
16973
|
+
*
|
|
16844
16974
|
* Registers an object. Registry will automatically create a getter for the object.
|
|
16845
16975
|
*/
|
|
16846
16976
|
register(
|
|
@@ -21531,6 +21661,8 @@ declare namespace sap {
|
|
|
21531
21661
|
oListener?: object
|
|
21532
21662
|
): this;
|
|
21533
21663
|
/**
|
|
21664
|
+
* @PROTECTED - DO NOT USE IN APPLICATIONS (only for related classes in the framework)
|
|
21665
|
+
*
|
|
21534
21666
|
* Fires event {@link #event:afterValidation afterValidation} to attached listeners.
|
|
21535
21667
|
*
|
|
21536
21668
|
* @returns Reference to `this` in order to allow method chaining
|
|
@@ -21542,6 +21674,8 @@ declare namespace sap {
|
|
|
21542
21674
|
mParameters?: object
|
|
21543
21675
|
): this;
|
|
21544
21676
|
/**
|
|
21677
|
+
* @PROTECTED - DO NOT USE IN APPLICATIONS (only for related classes in the framework)
|
|
21678
|
+
*
|
|
21545
21679
|
* Fires event {@link #event:change change} to attached listeners.
|
|
21546
21680
|
*
|
|
21547
21681
|
* @returns Reference to `this` in order to allow method chaining
|
|
@@ -21553,6 +21687,8 @@ declare namespace sap {
|
|
|
21553
21687
|
mParameters?: object
|
|
21554
21688
|
): this;
|
|
21555
21689
|
/**
|
|
21690
|
+
* @PROTECTED - DO NOT USE IN APPLICATIONS (only for related classes in the framework)
|
|
21691
|
+
*
|
|
21556
21692
|
* Fires event {@link #event:validateFunction validateFunction} to attached listeners.
|
|
21557
21693
|
*
|
|
21558
21694
|
* @returns Reference to `this` in order to allow method chaining
|
|
@@ -22689,6 +22825,8 @@ declare namespace sap {
|
|
|
22689
22825
|
oListener?: object
|
|
22690
22826
|
): this;
|
|
22691
22827
|
/**
|
|
22828
|
+
* @PROTECTED - DO NOT USE IN APPLICATIONS (only for related classes in the framework)
|
|
22829
|
+
*
|
|
22692
22830
|
* Fires event {@link #event:setSelection setSelection} to attached listeners.
|
|
22693
22831
|
*
|
|
22694
22832
|
* @returns Reference to `this` in order to allow method chaining
|
|
@@ -23590,6 +23728,8 @@ declare namespace sap {
|
|
|
23590
23728
|
oListener?: object
|
|
23591
23729
|
): this;
|
|
23592
23730
|
/**
|
|
23731
|
+
* @PROTECTED - DO NOT USE IN APPLICATIONS (only for related classes in the framework)
|
|
23732
|
+
*
|
|
23593
23733
|
* Fires event {@link #event:contentChange contentChange} to attached listeners.
|
|
23594
23734
|
*
|
|
23595
23735
|
* @returns Reference to `this` in order to allow method chaining
|
|
@@ -23606,6 +23746,8 @@ declare namespace sap {
|
|
|
23606
23746
|
}
|
|
23607
23747
|
): this;
|
|
23608
23748
|
/**
|
|
23749
|
+
* @PROTECTED - DO NOT USE IN APPLICATIONS (only for related classes in the framework)
|
|
23750
|
+
*
|
|
23609
23751
|
* Fires event {@link #event:customZoomInPress customZoomInPress} to attached listeners.
|
|
23610
23752
|
*
|
|
23611
23753
|
* @returns Reference to `this` in order to allow method chaining
|
|
@@ -23617,6 +23759,8 @@ declare namespace sap {
|
|
|
23617
23759
|
mParameters?: object
|
|
23618
23760
|
): this;
|
|
23619
23761
|
/**
|
|
23762
|
+
* @PROTECTED - DO NOT USE IN APPLICATIONS (only for related classes in the framework)
|
|
23763
|
+
*
|
|
23620
23764
|
* Fires event {@link #event:customZoomOutPress customZoomOutPress} to attached listeners.
|
|
23621
23765
|
*
|
|
23622
23766
|
* @returns Reference to `this` in order to allow method chaining
|
|
@@ -23628,6 +23772,8 @@ declare namespace sap {
|
|
|
23628
23772
|
mParameters?: object
|
|
23629
23773
|
): this;
|
|
23630
23774
|
/**
|
|
23775
|
+
* @PROTECTED - DO NOT USE IN APPLICATIONS (only for related classes in the framework)
|
|
23776
|
+
*
|
|
23631
23777
|
* Fires event {@link #event:personalizationPress personalizationPress} to attached listeners.
|
|
23632
23778
|
*
|
|
23633
23779
|
* @returns Reference to `this` in order to allow method chaining
|
|
@@ -23699,6 +23845,8 @@ declare namespace sap {
|
|
|
23699
23845
|
*/
|
|
23700
23846
|
getFullScreen(): boolean;
|
|
23701
23847
|
/**
|
|
23848
|
+
* @PROTECTED - DO NOT USE IN APPLICATIONS (only for related classes in the framework)
|
|
23849
|
+
*
|
|
23702
23850
|
* Returns the current instance of the delegate to other controls.
|
|
23703
23851
|
*
|
|
23704
23852
|
* @returns The current instance of the delegate
|
|
@@ -24687,6 +24835,8 @@ declare namespace sap {
|
|
|
24687
24835
|
oListener?: object
|
|
24688
24836
|
): this;
|
|
24689
24837
|
/**
|
|
24838
|
+
* @PROTECTED - DO NOT USE IN APPLICATIONS (only for related classes in the framework)
|
|
24839
|
+
*
|
|
24690
24840
|
* Fires event {@link #event:cancel cancel} to attached listeners.
|
|
24691
24841
|
*
|
|
24692
24842
|
* @returns Reference to `this` in order to allow method chaining
|
|
@@ -24698,6 +24848,8 @@ declare namespace sap {
|
|
|
24698
24848
|
mParameters?: object
|
|
24699
24849
|
): this;
|
|
24700
24850
|
/**
|
|
24851
|
+
* @PROTECTED - DO NOT USE IN APPLICATIONS (only for related classes in the framework)
|
|
24852
|
+
*
|
|
24701
24853
|
* Fires event {@link #event:select select} to attached listeners.
|
|
24702
24854
|
*
|
|
24703
24855
|
* @returns Reference to `this` in order to allow method chaining
|
|
@@ -25502,6 +25654,8 @@ declare namespace sap {
|
|
|
25502
25654
|
oListener?: object
|
|
25503
25655
|
): this;
|
|
25504
25656
|
/**
|
|
25657
|
+
* @PROTECTED - DO NOT USE IN APPLICATIONS (only for related classes in the framework)
|
|
25658
|
+
*
|
|
25505
25659
|
* Fires event {@link #event:change change} to attached listeners.
|
|
25506
25660
|
*
|
|
25507
25661
|
* @returns Reference to `this` in order to allow method chaining
|
|
@@ -25871,6 +26025,8 @@ declare namespace sap {
|
|
|
25871
26025
|
oListener?: object
|
|
25872
26026
|
): this;
|
|
25873
26027
|
/**
|
|
26028
|
+
* @PROTECTED - DO NOT USE IN APPLICATIONS (only for related classes in the framework)
|
|
26029
|
+
*
|
|
25874
26030
|
* Fires event {@link #event:change change} to attached listeners.
|
|
25875
26031
|
*
|
|
25876
26032
|
* @returns Reference to `this` in order to allow method chaining
|
|
@@ -25882,6 +26038,8 @@ declare namespace sap {
|
|
|
25882
26038
|
mParameters?: object
|
|
25883
26039
|
): this;
|
|
25884
26040
|
/**
|
|
26041
|
+
* @PROTECTED - DO NOT USE IN APPLICATIONS (only for related classes in the framework)
|
|
26042
|
+
*
|
|
25885
26043
|
* Fires event {@link #event:liveChange liveChange} to attached listeners.
|
|
25886
26044
|
*
|
|
25887
26045
|
* @returns Reference to `this` in order to allow method chaining
|
|
@@ -26480,6 +26638,8 @@ declare namespace sap {
|
|
|
26480
26638
|
oListener?: object
|
|
26481
26639
|
): this;
|
|
26482
26640
|
/**
|
|
26641
|
+
* @PROTECTED - DO NOT USE IN APPLICATIONS (only for related classes in the framework)
|
|
26642
|
+
*
|
|
26483
26643
|
* Fires event {@link #event:change change} to attached listeners.
|
|
26484
26644
|
*
|
|
26485
26645
|
* @returns Reference to `this` in order to allow method chaining
|
|
@@ -26491,6 +26651,8 @@ declare namespace sap {
|
|
|
26491
26651
|
mParameters?: object
|
|
26492
26652
|
): this;
|
|
26493
26653
|
/**
|
|
26654
|
+
* @PROTECTED - DO NOT USE IN APPLICATIONS (only for related classes in the framework)
|
|
26655
|
+
*
|
|
26494
26656
|
* Fires event {@link #event:liveChange liveChange} to attached listeners.
|
|
26495
26657
|
*
|
|
26496
26658
|
* @returns Reference to `this` in order to allow method chaining
|
|
@@ -26935,6 +27097,8 @@ declare namespace sap {
|
|
|
26935
27097
|
oListener?: object
|
|
26936
27098
|
): this;
|
|
26937
27099
|
/**
|
|
27100
|
+
* @PROTECTED - DO NOT USE IN APPLICATIONS (only for related classes in the framework)
|
|
27101
|
+
*
|
|
26938
27102
|
* Fires event {@link #event:heightChange heightChange} to attached listeners.
|
|
26939
27103
|
*
|
|
26940
27104
|
* @returns Reference to `this` in order to allow method chaining
|
|
@@ -26946,6 +27110,8 @@ declare namespace sap {
|
|
|
26946
27110
|
mParameters?: object
|
|
26947
27111
|
): this;
|
|
26948
27112
|
/**
|
|
27113
|
+
* @PROTECTED - DO NOT USE IN APPLICATIONS (only for related classes in the framework)
|
|
27114
|
+
*
|
|
26949
27115
|
* Fires event {@link #event:press press} to attached listeners.
|
|
26950
27116
|
*
|
|
26951
27117
|
* @returns Reference to `this` in order to allow method chaining
|
|
@@ -27684,6 +27850,8 @@ declare namespace sap {
|
|
|
27684
27850
|
oListener?: object
|
|
27685
27851
|
): this;
|
|
27686
27852
|
/**
|
|
27853
|
+
* @PROTECTED - DO NOT USE IN APPLICATIONS (only for related classes in the framework)
|
|
27854
|
+
*
|
|
27687
27855
|
* Fires event {@link #event:press press} to attached listeners.
|
|
27688
27856
|
*
|
|
27689
27857
|
* @returns Reference to `this` in order to allow method chaining
|
|
@@ -28085,6 +28253,8 @@ declare namespace sap {
|
|
|
28085
28253
|
oListener?: object
|
|
28086
28254
|
): this;
|
|
28087
28255
|
/**
|
|
28256
|
+
* @PROTECTED - DO NOT USE IN APPLICATIONS (only for related classes in the framework)
|
|
28257
|
+
*
|
|
28088
28258
|
* Fires event {@link #event:press press} to attached listeners.
|
|
28089
28259
|
*
|
|
28090
28260
|
* @returns Reference to `this` in order to allow method chaining
|
|
@@ -29309,6 +29479,8 @@ declare namespace sap {
|
|
|
29309
29479
|
oListener?: object
|
|
29310
29480
|
): this;
|
|
29311
29481
|
/**
|
|
29482
|
+
* @PROTECTED - DO NOT USE IN APPLICATIONS (only for related classes in the framework)
|
|
29483
|
+
*
|
|
29312
29484
|
* Fires event {@link #event:press press} to attached listeners.
|
|
29313
29485
|
*
|
|
29314
29486
|
* @returns Reference to `this` in order to allow method chaining
|
|
@@ -29876,6 +30048,8 @@ declare namespace sap {
|
|
|
29876
30048
|
oListener?: object
|
|
29877
30049
|
): this;
|
|
29878
30050
|
/**
|
|
30051
|
+
* @PROTECTED - DO NOT USE IN APPLICATIONS (only for related classes in the framework)
|
|
30052
|
+
*
|
|
29879
30053
|
* Fires event {@link #event:press press} to attached listeners.
|
|
29880
30054
|
*
|
|
29881
30055
|
* @returns Reference to `this` in order to allow method chaining
|
|
@@ -30106,6 +30280,8 @@ declare namespace sap {
|
|
|
30106
30280
|
oListener?: object
|
|
30107
30281
|
): this;
|
|
30108
30282
|
/**
|
|
30283
|
+
* @PROTECTED - DO NOT USE IN APPLICATIONS (only for related classes in the framework)
|
|
30284
|
+
*
|
|
30109
30285
|
* Fires event {@link #event:itemPress itemPress} to attached listeners.
|
|
30110
30286
|
*
|
|
30111
30287
|
* Listeners may prevent the default action of this event by calling the `preventDefault` method on the
|
|
@@ -30833,6 +31009,8 @@ declare namespace sap {
|
|
|
30833
31009
|
oListener?: object
|
|
30834
31010
|
): this;
|
|
30835
31011
|
/**
|
|
31012
|
+
* @PROTECTED - DO NOT USE IN APPLICATIONS (only for related classes in the framework)
|
|
31013
|
+
*
|
|
30836
31014
|
* Fires event {@link #event:press press} to attached listeners.
|
|
30837
31015
|
*
|
|
30838
31016
|
* Listeners may prevent the default action of this event by calling the `preventDefault` method on the
|
|
@@ -31212,6 +31390,8 @@ declare namespace sap {
|
|
|
31212
31390
|
oListener?: object
|
|
31213
31391
|
): this;
|
|
31214
31392
|
/**
|
|
31393
|
+
* @PROTECTED - DO NOT USE IN APPLICATIONS (only for related classes in the framework)
|
|
31394
|
+
*
|
|
31215
31395
|
* Fires event {@link #event:press press} to attached listeners.
|
|
31216
31396
|
*
|
|
31217
31397
|
* @returns Reference to `this` in order to allow method chaining
|
|
@@ -32122,6 +32302,8 @@ declare namespace sap {
|
|
|
32122
32302
|
oListener?: object
|
|
32123
32303
|
): this;
|
|
32124
32304
|
/**
|
|
32305
|
+
* @PROTECTED - DO NOT USE IN APPLICATIONS (only for related classes in the framework)
|
|
32306
|
+
*
|
|
32125
32307
|
* Fires event {@link #event:addCard addCard} to attached listeners.
|
|
32126
32308
|
*
|
|
32127
32309
|
* @returns Reference to `this` in order to allow method chaining
|
|
@@ -32175,6 +32357,8 @@ declare namespace sap {
|
|
|
32175
32357
|
}
|
|
32176
32358
|
): this;
|
|
32177
32359
|
/**
|
|
32360
|
+
* @PROTECTED - DO NOT USE IN APPLICATIONS (only for related classes in the framework)
|
|
32361
|
+
*
|
|
32178
32362
|
* Fires event {@link #event:attachmentClick attachmentClick} to attached listeners.
|
|
32179
32363
|
*
|
|
32180
32364
|
* @returns Reference to `this` in order to allow method chaining
|
|
@@ -32200,6 +32384,8 @@ declare namespace sap {
|
|
|
32200
32384
|
}
|
|
32201
32385
|
): this;
|
|
32202
32386
|
/**
|
|
32387
|
+
* @PROTECTED - DO NOT USE IN APPLICATIONS (only for related classes in the framework)
|
|
32388
|
+
*
|
|
32203
32389
|
* Fires event {@link #event:attachmentDelete attachmentDelete} to attached listeners.
|
|
32204
32390
|
*
|
|
32205
32391
|
* @returns Reference to `this` in order to allow method chaining
|
|
@@ -32220,6 +32406,8 @@ declare namespace sap {
|
|
|
32220
32406
|
}
|
|
32221
32407
|
): this;
|
|
32222
32408
|
/**
|
|
32409
|
+
* @PROTECTED - DO NOT USE IN APPLICATIONS (only for related classes in the framework)
|
|
32410
|
+
*
|
|
32223
32411
|
* Fires event {@link #event:attachmentSelect attachmentSelect} to attached listeners.
|
|
32224
32412
|
*
|
|
32225
32413
|
* @returns Reference to `this` in order to allow method chaining
|
|
@@ -32236,6 +32424,8 @@ declare namespace sap {
|
|
|
32236
32424
|
}
|
|
32237
32425
|
): this;
|
|
32238
32426
|
/**
|
|
32427
|
+
* @PROTECTED - DO NOT USE IN APPLICATIONS (only for related classes in the framework)
|
|
32428
|
+
*
|
|
32239
32429
|
* Fires event {@link #event:attachmentUploadComplete attachmentUploadComplete} to attached listeners.
|
|
32240
32430
|
*
|
|
32241
32431
|
* @returns Reference to `this` in order to allow method chaining
|
|
@@ -32258,6 +32448,8 @@ declare namespace sap {
|
|
|
32258
32448
|
}
|
|
32259
32449
|
): this;
|
|
32260
32450
|
/**
|
|
32451
|
+
* @PROTECTED - DO NOT USE IN APPLICATIONS (only for related classes in the framework)
|
|
32452
|
+
*
|
|
32261
32453
|
* Fires event {@link #event:deleteCard deleteCard} to attached listeners.
|
|
32262
32454
|
*
|
|
32263
32455
|
* @returns Reference to `this` in order to allow method chaining
|
|
@@ -32294,6 +32486,8 @@ declare namespace sap {
|
|
|
32294
32486
|
}
|
|
32295
32487
|
): this;
|
|
32296
32488
|
/**
|
|
32489
|
+
* @PROTECTED - DO NOT USE IN APPLICATIONS (only for related classes in the framework)
|
|
32490
|
+
*
|
|
32297
32491
|
* Fires event {@link #event:editCard editCard} to attached listeners.
|
|
32298
32492
|
*
|
|
32299
32493
|
* @returns Reference to `this` in order to allow method chaining
|
|
@@ -32779,6 +32973,8 @@ declare namespace sap {
|
|
|
32779
32973
|
oListener?: object
|
|
32780
32974
|
): this;
|
|
32781
32975
|
/**
|
|
32976
|
+
* @PROTECTED - DO NOT USE IN APPLICATIONS (only for related classes in the framework)
|
|
32977
|
+
*
|
|
32782
32978
|
* Fires event {@link #event:attachmentClick attachmentClick} to attached listeners.
|
|
32783
32979
|
*
|
|
32784
32980
|
* @returns Reference to `this` in order to allow method chaining
|
|
@@ -32803,6 +32999,8 @@ declare namespace sap {
|
|
|
32803
32999
|
}
|
|
32804
33000
|
): this;
|
|
32805
33001
|
/**
|
|
33002
|
+
* @PROTECTED - DO NOT USE IN APPLICATIONS (only for related classes in the framework)
|
|
33003
|
+
*
|
|
32806
33004
|
* Fires event {@link #event:deleteNote deleteNote} to attached listeners.
|
|
32807
33005
|
*
|
|
32808
33006
|
* @returns Reference to `this` in order to allow method chaining
|
|
@@ -32843,6 +33041,8 @@ declare namespace sap {
|
|
|
32843
33041
|
}
|
|
32844
33042
|
): this;
|
|
32845
33043
|
/**
|
|
33044
|
+
* @PROTECTED - DO NOT USE IN APPLICATIONS (only for related classes in the framework)
|
|
33045
|
+
*
|
|
32846
33046
|
* Fires event {@link #event:editNote editNote} to attached listeners.
|
|
32847
33047
|
*
|
|
32848
33048
|
* @returns Reference to `this` in order to allow method chaining
|
|
@@ -33580,6 +33780,8 @@ declare namespace sap {
|
|
|
33580
33780
|
oListener?: object
|
|
33581
33781
|
): this;
|
|
33582
33782
|
/**
|
|
33783
|
+
* @PROTECTED - DO NOT USE IN APPLICATIONS (only for related classes in the framework)
|
|
33784
|
+
*
|
|
33583
33785
|
* Fires event {@link #event:addNote addNote} to attached listeners.
|
|
33584
33786
|
*
|
|
33585
33787
|
* @returns Reference to `this` in order to allow method chaining
|
|
@@ -33616,6 +33818,8 @@ declare namespace sap {
|
|
|
33616
33818
|
}
|
|
33617
33819
|
): this;
|
|
33618
33820
|
/**
|
|
33821
|
+
* @PROTECTED - DO NOT USE IN APPLICATIONS (only for related classes in the framework)
|
|
33822
|
+
*
|
|
33619
33823
|
* Fires event {@link #event:attachmentClick attachmentClick} to attached listeners.
|
|
33620
33824
|
*
|
|
33621
33825
|
* @returns Reference to `this` in order to allow method chaining
|
|
@@ -33632,6 +33836,8 @@ declare namespace sap {
|
|
|
33632
33836
|
}
|
|
33633
33837
|
): this;
|
|
33634
33838
|
/**
|
|
33839
|
+
* @PROTECTED - DO NOT USE IN APPLICATIONS (only for related classes in the framework)
|
|
33840
|
+
*
|
|
33635
33841
|
* Fires event {@link #event:attachmentDelete attachmentDelete} to attached listeners.
|
|
33636
33842
|
*
|
|
33637
33843
|
* @returns Reference to `this` in order to allow method chaining
|
|
@@ -33648,6 +33854,8 @@ declare namespace sap {
|
|
|
33648
33854
|
}
|
|
33649
33855
|
): this;
|
|
33650
33856
|
/**
|
|
33857
|
+
* @PROTECTED - DO NOT USE IN APPLICATIONS (only for related classes in the framework)
|
|
33858
|
+
*
|
|
33651
33859
|
* Fires event {@link #event:attachmentSelect attachmentSelect} to attached listeners.
|
|
33652
33860
|
*
|
|
33653
33861
|
* @returns Reference to `this` in order to allow method chaining
|
|
@@ -33664,6 +33872,8 @@ declare namespace sap {
|
|
|
33664
33872
|
}
|
|
33665
33873
|
): this;
|
|
33666
33874
|
/**
|
|
33875
|
+
* @PROTECTED - DO NOT USE IN APPLICATIONS (only for related classes in the framework)
|
|
33876
|
+
*
|
|
33667
33877
|
* Fires event {@link #event:attachmentUploadComplete attachmentUploadComplete} to attached listeners.
|
|
33668
33878
|
*
|
|
33669
33879
|
* @returns Reference to `this` in order to allow method chaining
|
|
@@ -34600,6 +34810,8 @@ declare namespace sap {
|
|
|
34600
34810
|
oListener?: object
|
|
34601
34811
|
): this;
|
|
34602
34812
|
/**
|
|
34813
|
+
* @PROTECTED - DO NOT USE IN APPLICATIONS (only for related classes in the framework)
|
|
34814
|
+
*
|
|
34603
34815
|
* Fires event {@link #event:headerPress headerPress} to attached listeners.
|
|
34604
34816
|
*
|
|
34605
34817
|
* @returns Reference to `this` in order to allow method chaining
|
|
@@ -34616,6 +34828,8 @@ declare namespace sap {
|
|
|
34616
34828
|
}
|
|
34617
34829
|
): this;
|
|
34618
34830
|
/**
|
|
34831
|
+
* @PROTECTED - DO NOT USE IN APPLICATIONS (only for related classes in the framework)
|
|
34832
|
+
*
|
|
34619
34833
|
* Fires event {@link #event:labelPress labelPress} to attached listeners.
|
|
34620
34834
|
*
|
|
34621
34835
|
* @returns Reference to `this` in order to allow method chaining
|
|
@@ -34632,6 +34846,8 @@ declare namespace sap {
|
|
|
34632
34846
|
}
|
|
34633
34847
|
): this;
|
|
34634
34848
|
/**
|
|
34849
|
+
* @PROTECTED - DO NOT USE IN APPLICATIONS (only for related classes in the framework)
|
|
34850
|
+
*
|
|
34635
34851
|
* Fires event {@link #event:nodePress nodePress} to attached listeners.
|
|
34636
34852
|
*
|
|
34637
34853
|
* @returns Reference to `this` in order to allow method chaining
|
|
@@ -34650,6 +34866,7 @@ declare namespace sap {
|
|
|
34650
34866
|
/**
|
|
34651
34867
|
* @deprecated (since 1.26) - Should not be used any longer, use nodePress event instead ( click on the
|
|
34652
34868
|
* node)
|
|
34869
|
+
* @PROTECTED - DO NOT USE IN APPLICATIONS (only for related classes in the framework)
|
|
34653
34870
|
*
|
|
34654
34871
|
* Fires event {@link #event:nodeTitlePress nodeTitlePress} to attached listeners.
|
|
34655
34872
|
*
|
|
@@ -34667,6 +34884,8 @@ declare namespace sap {
|
|
|
34667
34884
|
}
|
|
34668
34885
|
): this;
|
|
34669
34886
|
/**
|
|
34887
|
+
* @PROTECTED - DO NOT USE IN APPLICATIONS (only for related classes in the framework)
|
|
34888
|
+
*
|
|
34670
34889
|
* Fires event {@link #event:onError onError} to attached listeners.
|
|
34671
34890
|
*
|
|
34672
34891
|
* @returns Reference to `this` in order to allow method chaining
|
|
@@ -35493,6 +35712,8 @@ declare namespace sap {
|
|
|
35493
35712
|
oListener?: object
|
|
35494
35713
|
): this;
|
|
35495
35714
|
/**
|
|
35715
|
+
* @PROTECTED - DO NOT USE IN APPLICATIONS (only for related classes in the framework)
|
|
35716
|
+
*
|
|
35496
35717
|
* Fires event {@link #event:press press} to attached listeners.
|
|
35497
35718
|
*
|
|
35498
35719
|
* @returns Reference to `this` in order to allow method chaining
|
|
@@ -35919,6 +36140,7 @@ declare namespace sap {
|
|
|
35919
36140
|
/**
|
|
35920
36141
|
* @deprecated (since 1.50.0) - This event is deprecated, use nodePress event instead. See
|
|
35921
36142
|
* {@link sap.suite.ui.commons.ProcessFlow.html#event:nodePress}.
|
|
36143
|
+
* @PROTECTED - DO NOT USE IN APPLICATIONS (only for related classes in the framework)
|
|
35922
36144
|
*
|
|
35923
36145
|
* Fires event {@link #event:press press} to attached listeners.
|
|
35924
36146
|
*
|
|
@@ -35937,6 +36159,7 @@ declare namespace sap {
|
|
|
35937
36159
|
): this;
|
|
35938
36160
|
/**
|
|
35939
36161
|
* @deprecated (since 1.26) - Should not be used any longer, use Press event instead ( click on the node)
|
|
36162
|
+
* @PROTECTED - DO NOT USE IN APPLICATIONS (only for related classes in the framework)
|
|
35940
36163
|
*
|
|
35941
36164
|
* Fires event {@link #event:titlePress titlePress} to attached listeners.
|
|
35942
36165
|
*
|
|
@@ -37435,6 +37658,8 @@ declare namespace sap {
|
|
|
37435
37658
|
oListener?: object
|
|
37436
37659
|
): this;
|
|
37437
37660
|
/**
|
|
37661
|
+
* @PROTECTED - DO NOT USE IN APPLICATIONS (only for related classes in the framework)
|
|
37662
|
+
*
|
|
37438
37663
|
* Fires event {@link #event:cancel cancel} to attached listeners.
|
|
37439
37664
|
*
|
|
37440
37665
|
* @returns Reference to `this` in order to allow method chaining
|
|
@@ -37446,6 +37671,8 @@ declare namespace sap {
|
|
|
37446
37671
|
mParameters?: object
|
|
37447
37672
|
): this;
|
|
37448
37673
|
/**
|
|
37674
|
+
* @PROTECTED - DO NOT USE IN APPLICATIONS (only for related classes in the framework)
|
|
37675
|
+
*
|
|
37449
37676
|
* Fires event {@link #event:filterChange filterChange} to attached listeners.
|
|
37450
37677
|
*
|
|
37451
37678
|
* @returns Reference to `this` in order to allow method chaining
|
|
@@ -37457,6 +37684,8 @@ declare namespace sap {
|
|
|
37457
37684
|
mParameters?: object
|
|
37458
37685
|
): this;
|
|
37459
37686
|
/**
|
|
37687
|
+
* @PROTECTED - DO NOT USE IN APPLICATIONS (only for related classes in the framework)
|
|
37688
|
+
*
|
|
37460
37689
|
* Fires event {@link #event:search search} to attached listeners.
|
|
37461
37690
|
*
|
|
37462
37691
|
* @returns Reference to `this` in order to allow method chaining
|
|
@@ -39592,6 +39821,7 @@ declare namespace sap {
|
|
|
39592
39821
|
exit(): void;
|
|
39593
39822
|
/**
|
|
39594
39823
|
* @deprecated (since 1.46.0) - Use the Group Feed Component instead.
|
|
39824
|
+
* @PROTECTED - DO NOT USE IN APPLICATIONS (only for related classes in the framework)
|
|
39595
39825
|
*
|
|
39596
39826
|
* Fires event {@link #event:addPost addPost} to attached listeners.
|
|
39597
39827
|
*
|
|
@@ -39609,6 +39839,8 @@ declare namespace sap {
|
|
|
39609
39839
|
}
|
|
39610
39840
|
): this;
|
|
39611
39841
|
/**
|
|
39842
|
+
* @PROTECTED - DO NOT USE IN APPLICATIONS (only for related classes in the framework)
|
|
39843
|
+
*
|
|
39612
39844
|
* Fires event {@link #event:customMessageClosed customMessageClosed} to attached listeners.
|
|
39613
39845
|
*
|
|
39614
39846
|
* @returns Reference to `this` in order to allow method chaining
|
|
@@ -39620,6 +39852,8 @@ declare namespace sap {
|
|
|
39620
39852
|
mParameters?: object
|
|
39621
39853
|
): this;
|
|
39622
39854
|
/**
|
|
39855
|
+
* @PROTECTED - DO NOT USE IN APPLICATIONS (only for related classes in the framework)
|
|
39856
|
+
*
|
|
39623
39857
|
* Fires event {@link #event:filterOpen filterOpen} to attached listeners.
|
|
39624
39858
|
*
|
|
39625
39859
|
* @returns Reference to `this` in order to allow method chaining
|
|
@@ -39631,6 +39865,8 @@ declare namespace sap {
|
|
|
39631
39865
|
mParameters?: object
|
|
39632
39866
|
): this;
|
|
39633
39867
|
/**
|
|
39868
|
+
* @PROTECTED - DO NOT USE IN APPLICATIONS (only for related classes in the framework)
|
|
39869
|
+
*
|
|
39634
39870
|
* Fires event {@link #event:filterSelectionChange filterSelectionChange} to attached listeners.
|
|
39635
39871
|
*
|
|
39636
39872
|
* @returns Reference to `this` in order to allow method chaining
|
|
@@ -39667,6 +39903,8 @@ declare namespace sap {
|
|
|
39667
39903
|
}
|
|
39668
39904
|
): this;
|
|
39669
39905
|
/**
|
|
39906
|
+
* @PROTECTED - DO NOT USE IN APPLICATIONS (only for related classes in the framework)
|
|
39907
|
+
*
|
|
39670
39908
|
* Fires event {@link #event:grow grow} to attached listeners.
|
|
39671
39909
|
*
|
|
39672
39910
|
* @returns Reference to `this` in order to allow method chaining
|
|
@@ -39678,6 +39916,8 @@ declare namespace sap {
|
|
|
39678
39916
|
mParameters?: object
|
|
39679
39917
|
): this;
|
|
39680
39918
|
/**
|
|
39919
|
+
* @PROTECTED - DO NOT USE IN APPLICATIONS (only for related classes in the framework)
|
|
39920
|
+
*
|
|
39681
39921
|
* Fires event {@link #event:itemFiltering itemFiltering} to attached listeners.
|
|
39682
39922
|
*
|
|
39683
39923
|
* @returns Reference to `this` in order to allow method chaining
|
|
@@ -39712,6 +39952,8 @@ declare namespace sap {
|
|
|
39712
39952
|
}
|
|
39713
39953
|
): this;
|
|
39714
39954
|
/**
|
|
39955
|
+
* @PROTECTED - DO NOT USE IN APPLICATIONS (only for related classes in the framework)
|
|
39956
|
+
*
|
|
39715
39957
|
* Fires event {@link #event:select select} to attached listeners.
|
|
39716
39958
|
*
|
|
39717
39959
|
* @returns Reference to `this` in order to allow method chaining
|
|
@@ -39739,6 +39981,7 @@ declare namespace sap {
|
|
|
39739
39981
|
/**
|
|
39740
39982
|
* @SINCE 1.26.1
|
|
39741
39983
|
* @deprecated (since 1.46.0) - Replaced by {@link sap.collaboration.components.feed.Component}.
|
|
39984
|
+
* @PROTECTED - DO NOT USE IN APPLICATIONS (only for related classes in the framework)
|
|
39742
39985
|
*
|
|
39743
39986
|
* Fires event {@link #event:suggest suggest} to attached listeners.
|
|
39744
39987
|
*
|
|
@@ -39758,6 +40001,7 @@ declare namespace sap {
|
|
|
39758
40001
|
/**
|
|
39759
40002
|
* @SINCE 1.26.1
|
|
39760
40003
|
* @deprecated (since 1.46.0) - Replaced by {@link sap.collaboration.components.feed.Component}.
|
|
40004
|
+
* @PROTECTED - DO NOT USE IN APPLICATIONS (only for related classes in the framework)
|
|
39761
40005
|
*
|
|
39762
40006
|
* Fires event {@link #event:suggestionItemSelected suggestionItemSelected} to attached listeners.
|
|
39763
40007
|
*
|
|
@@ -39775,6 +40019,8 @@ declare namespace sap {
|
|
|
39775
40019
|
}
|
|
39776
40020
|
): this;
|
|
39777
40021
|
/**
|
|
40022
|
+
* @PROTECTED - DO NOT USE IN APPLICATIONS (only for related classes in the framework)
|
|
40023
|
+
*
|
|
39778
40024
|
* An override which exposes hidden aggregations. Hidden aggregations are used by Run Time Adaptation.
|
|
39779
40025
|
*
|
|
39780
40026
|
* @returns the aggregation array in case of 0..n-aggregations or the managed object or null in case of
|
|
@@ -41977,6 +42223,8 @@ declare namespace sap {
|
|
|
41977
42223
|
oListener?: object
|
|
41978
42224
|
): this;
|
|
41979
42225
|
/**
|
|
42226
|
+
* @PROTECTED - DO NOT USE IN APPLICATIONS (only for related classes in the framework)
|
|
42227
|
+
*
|
|
41980
42228
|
* Fires event {@link #event:customActionClicked customActionClicked} to attached listeners.
|
|
41981
42229
|
*
|
|
41982
42230
|
* @returns Reference to `this` in order to allow method chaining
|
|
@@ -42002,6 +42250,7 @@ declare namespace sap {
|
|
|
42002
42250
|
): this;
|
|
42003
42251
|
/**
|
|
42004
42252
|
* @SINCE 1.95
|
|
42253
|
+
* @PROTECTED - DO NOT USE IN APPLICATIONS (only for related classes in the framework)
|
|
42005
42254
|
*
|
|
42006
42255
|
* Fires event {@link #event:press press} to attached listeners.
|
|
42007
42256
|
*
|
|
@@ -42014,6 +42263,8 @@ declare namespace sap {
|
|
|
42014
42263
|
mParameters?: object
|
|
42015
42264
|
): this;
|
|
42016
42265
|
/**
|
|
42266
|
+
* @PROTECTED - DO NOT USE IN APPLICATIONS (only for related classes in the framework)
|
|
42267
|
+
*
|
|
42017
42268
|
* Fires event {@link #event:replyListOpen replyListOpen} to attached listeners.
|
|
42018
42269
|
*
|
|
42019
42270
|
* @returns Reference to `this` in order to allow method chaining
|
|
@@ -42025,6 +42276,8 @@ declare namespace sap {
|
|
|
42025
42276
|
mParameters?: object
|
|
42026
42277
|
): this;
|
|
42027
42278
|
/**
|
|
42279
|
+
* @PROTECTED - DO NOT USE IN APPLICATIONS (only for related classes in the framework)
|
|
42280
|
+
*
|
|
42028
42281
|
* Fires event {@link #event:replyPost replyPost} to attached listeners.
|
|
42029
42282
|
*
|
|
42030
42283
|
* @returns Reference to `this` in order to allow method chaining
|
|
@@ -42042,6 +42295,7 @@ declare namespace sap {
|
|
|
42042
42295
|
): this;
|
|
42043
42296
|
/**
|
|
42044
42297
|
* @SINCE 1.95
|
|
42298
|
+
* @PROTECTED - DO NOT USE IN APPLICATIONS (only for related classes in the framework)
|
|
42045
42299
|
*
|
|
42046
42300
|
* Fires event {@link #event:select select} to attached listeners.
|
|
42047
42301
|
*
|
|
@@ -42056,6 +42310,7 @@ declare namespace sap {
|
|
|
42056
42310
|
/**
|
|
42057
42311
|
* @SINCE 1.28.1
|
|
42058
42312
|
* @deprecated (since 1.46.0) - Use the Group Feed Component instead.
|
|
42313
|
+
* @PROTECTED - DO NOT USE IN APPLICATIONS (only for related classes in the framework)
|
|
42059
42314
|
*
|
|
42060
42315
|
* Fires event {@link #event:suggest suggest} to attached listeners.
|
|
42061
42316
|
*
|
|
@@ -42075,6 +42330,7 @@ declare namespace sap {
|
|
|
42075
42330
|
/**
|
|
42076
42331
|
* @SINCE 1.28.1
|
|
42077
42332
|
* @deprecated (since 1.46.0) - Use the Group Feed Component instead.
|
|
42333
|
+
* @PROTECTED - DO NOT USE IN APPLICATIONS (only for related classes in the framework)
|
|
42078
42334
|
*
|
|
42079
42335
|
* Fires event {@link #event:suggestionItemSelected suggestionItemSelected} to attached listeners.
|
|
42080
42336
|
*
|
|
@@ -42092,6 +42348,8 @@ declare namespace sap {
|
|
|
42092
42348
|
}
|
|
42093
42349
|
): this;
|
|
42094
42350
|
/**
|
|
42351
|
+
* @PROTECTED - DO NOT USE IN APPLICATIONS (only for related classes in the framework)
|
|
42352
|
+
*
|
|
42095
42353
|
* Fires event {@link #event:userNameClicked userNameClicked} to attached listeners.
|
|
42096
42354
|
*
|
|
42097
42355
|
* @returns Reference to `this` in order to allow method chaining
|
|
@@ -43597,6 +43855,8 @@ declare namespace sap {
|
|
|
43597
43855
|
oListener?: object
|
|
43598
43856
|
): this;
|
|
43599
43857
|
/**
|
|
43858
|
+
* @PROTECTED - DO NOT USE IN APPLICATIONS (only for related classes in the framework)
|
|
43859
|
+
*
|
|
43600
43860
|
* Fires event {@link #event:actionsButtonPress actionsButtonPress} to attached listeners.
|
|
43601
43861
|
*
|
|
43602
43862
|
* Listeners may prevent the default action of this event by calling the `preventDefault` method on the
|
|
@@ -43616,6 +43876,8 @@ declare namespace sap {
|
|
|
43616
43876
|
}
|
|
43617
43877
|
): boolean;
|
|
43618
43878
|
/**
|
|
43879
|
+
* @PROTECTED - DO NOT USE IN APPLICATIONS (only for related classes in the framework)
|
|
43880
|
+
*
|
|
43619
43881
|
* Fires event {@link #event:afterNavigate afterNavigate} to attached listeners.
|
|
43620
43882
|
*
|
|
43621
43883
|
* @returns Reference to `this` in order to allow method chaining
|
|
@@ -43669,6 +43931,8 @@ declare namespace sap {
|
|
|
43669
43931
|
}
|
|
43670
43932
|
): this;
|
|
43671
43933
|
/**
|
|
43934
|
+
* @PROTECTED - DO NOT USE IN APPLICATIONS (only for related classes in the framework)
|
|
43935
|
+
*
|
|
43672
43936
|
* Fires event {@link #event:backAction backAction} to attached listeners.
|
|
43673
43937
|
*
|
|
43674
43938
|
* @returns Reference to `this` in order to allow method chaining
|
|
@@ -43680,6 +43944,8 @@ declare namespace sap {
|
|
|
43680
43944
|
mParameters?: object
|
|
43681
43945
|
): this;
|
|
43682
43946
|
/**
|
|
43947
|
+
* @PROTECTED - DO NOT USE IN APPLICATIONS (only for related classes in the framework)
|
|
43948
|
+
*
|
|
43683
43949
|
* Fires event {@link #event:configurationButtonPress configurationButtonPress} to attached listeners.
|
|
43684
43950
|
*
|
|
43685
43951
|
* @returns Reference to `this` in order to allow method chaining
|
|
@@ -43696,6 +43962,8 @@ declare namespace sap {
|
|
|
43696
43962
|
}
|
|
43697
43963
|
): this;
|
|
43698
43964
|
/**
|
|
43965
|
+
* @PROTECTED - DO NOT USE IN APPLICATIONS (only for related classes in the framework)
|
|
43966
|
+
*
|
|
43699
43967
|
* Fires event {@link #event:navigate navigate} to attached listeners.
|
|
43700
43968
|
*
|
|
43701
43969
|
* Listeners may prevent the default action of this event by calling the `preventDefault` method on the
|
|
@@ -43752,6 +44020,8 @@ declare namespace sap {
|
|
|
43752
44020
|
}
|
|
43753
44021
|
): boolean;
|
|
43754
44022
|
/**
|
|
44023
|
+
* @PROTECTED - DO NOT USE IN APPLICATIONS (only for related classes in the framework)
|
|
44024
|
+
*
|
|
43755
44025
|
* Fires event {@link #event:transactionsButtonPress transactionsButtonPress} to attached listeners.
|
|
43756
44026
|
*
|
|
43757
44027
|
* Listeners may prevent the default action of this event by calling the `preventDefault` method on the
|
|
@@ -44643,6 +44913,8 @@ declare namespace sap {
|
|
|
44643
44913
|
oListener?: object
|
|
44644
44914
|
): this;
|
|
44645
44915
|
/**
|
|
44916
|
+
* @PROTECTED - DO NOT USE IN APPLICATIONS (only for related classes in the framework)
|
|
44917
|
+
*
|
|
44646
44918
|
* Fires event {@link #event:changeView changeView} to attached listeners.
|
|
44647
44919
|
*
|
|
44648
44920
|
* @returns Reference to `this` in order to allow method chaining
|
|
@@ -44675,6 +44947,8 @@ declare namespace sap {
|
|
|
44675
44947
|
}
|
|
44676
44948
|
): this;
|
|
44677
44949
|
/**
|
|
44950
|
+
* @PROTECTED - DO NOT USE IN APPLICATIONS (only for related classes in the framework)
|
|
44951
|
+
*
|
|
44678
44952
|
* Fires event {@link #event:search search} to attached listeners.
|
|
44679
44953
|
*
|
|
44680
44954
|
* @returns Reference to `this` in order to allow method chaining
|