@sapui5/ts-types 1.102.1 → 1.103.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/sap.apf.d.ts +1 -1
- package/types/sap.ca.ui.d.ts +11 -11
- package/types/sap.chart.d.ts +2 -2
- package/types/sap.collaboration.d.ts +1 -1
- package/types/sap.esh.search.ui.d.ts +1 -1
- package/types/sap.f.d.ts +164 -24
- package/types/sap.fe.common.d.ts +1 -1
- package/types/sap.fe.core.d.ts +29 -1159
- package/types/sap.fe.macros.d.ts +52 -627
- package/types/sap.fe.navigation.d.ts +1 -1309
- package/types/sap.fe.templates.d.ts +2 -161
- package/types/sap.fe.test.d.ts +12 -244
- package/types/sap.feedback.ui.d.ts +1 -1
- package/types/sap.gantt.d.ts +343 -63
- package/types/sap.insights.d.ts +2 -61
- package/types/sap.landvisz.d.ts +15 -15
- package/types/sap.m.d.ts +513 -284
- package/types/sap.makit.d.ts +5 -5
- package/types/sap.me.d.ts +2 -2
- package/types/sap.ndc.d.ts +75 -3
- package/types/sap.ovp.d.ts +6 -1
- package/types/sap.rules.ui.d.ts +1 -1
- package/types/sap.sac.df.d.ts +163 -1
- package/types/sap.sac.grid.d.ts +1 -1
- package/types/sap.suite.ui.commons.d.ts +59 -59
- package/types/sap.suite.ui.generic.template.d.ts +98 -12
- package/types/sap.suite.ui.microchart.d.ts +14 -14
- package/types/sap.tnt.d.ts +5 -5
- package/types/sap.ui.codeeditor.d.ts +1 -1
- package/types/sap.ui.commons.d.ts +36 -36
- package/types/sap.ui.comp.d.ts +113 -28
- package/types/sap.ui.core.d.ts +294 -92
- 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 +3 -1
- package/types/sap.ui.generic.app.d.ts +13 -6
- package/types/sap.ui.generic.template.d.ts +1 -1
- package/types/sap.ui.integration.d.ts +3 -3
- package/types/sap.ui.layout.d.ts +33 -41
- package/types/sap.ui.mdc.d.ts +1 -1
- package/types/sap.ui.richtexteditor.d.ts +2 -2
- 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 +9 -9
- package/types/sap.ui.testrecorder.d.ts +1 -1
- package/types/sap.ui.unified.d.ts +35 -35
- package/types/sap.ui.ux3.d.ts +43 -43
- package/types/sap.ui.vbm.d.ts +130 -55
- package/types/sap.ui.vk.d.ts +25 -25
- package/types/sap.ui.vtm.d.ts +15 -12
- package/types/sap.uiext.inbox.d.ts +3 -3
- package/types/sap.ushell.d.ts +14 -12
- package/types/sap.ushell_abap.d.ts +1 -1
- package/types/sap.uxap.d.ts +13 -13
- package/types/sap.viz.d.ts +8 -8
- package/types/sap.webanalytics.core.d.ts +1 -1
- package/types/sap.zen.commons.d.ts +4 -4
- package/types/sap.zen.crosstab.d.ts +1 -1
- package/types/sap.zen.dsh.d.ts +1 -1
package/types/sap.m.d.ts
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
// For Library Version: 1.
|
|
1
|
+
// For Library Version: 1.103.0
|
|
2
2
|
|
|
3
3
|
declare namespace sap {
|
|
4
4
|
/**
|
|
@@ -65,7 +65,7 @@ declare namespace sap {
|
|
|
65
65
|
*
|
|
66
66
|
* Search given control's parents and try to find iScroll.
|
|
67
67
|
*
|
|
68
|
-
* @returns iScroll reference or undefined if cannot find
|
|
68
|
+
* @returns iScroll reference or `undefined` if cannot find
|
|
69
69
|
*/
|
|
70
70
|
function getIScroll(
|
|
71
71
|
/**
|
|
@@ -97,7 +97,7 @@ declare namespace sap {
|
|
|
97
97
|
*
|
|
98
98
|
* Search given control's parents and try to find a ScrollDelegate.
|
|
99
99
|
*
|
|
100
|
-
* @returns ScrollDelegate or undefined if it cannot be found
|
|
100
|
+
* @returns ScrollDelegate or `undefined` if it cannot be found
|
|
101
101
|
*/
|
|
102
102
|
function getScrollDelegate(
|
|
103
103
|
/**
|
|
@@ -260,7 +260,8 @@ declare namespace sap {
|
|
|
260
260
|
/**
|
|
261
261
|
* Converts the given percentage value to an absolute number based on the given base size.
|
|
262
262
|
*
|
|
263
|
-
* @returns The calculated size string with "px" as unit or null when the format of given parameter is
|
|
263
|
+
* @returns The calculated size string with "px" as unit or `null` when the format of given parameter is
|
|
264
|
+
* wrong.
|
|
264
265
|
*/
|
|
265
266
|
function calcPercentageSize(
|
|
266
267
|
/**
|
|
@@ -271,7 +272,7 @@ declare namespace sap {
|
|
|
271
272
|
* A float number which the calculation is based on.
|
|
272
273
|
*/
|
|
273
274
|
fBaseSize: float
|
|
274
|
-
):
|
|
275
|
+
): string | null;
|
|
275
276
|
}
|
|
276
277
|
/**
|
|
277
278
|
* Touch helper.
|
|
@@ -918,7 +919,7 @@ declare namespace sap {
|
|
|
918
919
|
* The additionalButton to remove or its index or id
|
|
919
920
|
*/
|
|
920
921
|
vAdditionalButton: int | string | sap.m.Button
|
|
921
|
-
): sap.m.Button;
|
|
922
|
+
): sap.m.Button | null;
|
|
922
923
|
/**
|
|
923
924
|
* Removes all the controls from the aggregation {@link #getAdditionalButtons additionalButtons}.
|
|
924
925
|
*
|
|
@@ -1430,6 +1431,14 @@ declare namespace sap {
|
|
|
1430
1431
|
* is set to `true`.
|
|
1431
1432
|
*/
|
|
1432
1433
|
clearFilter?: (oEvent: sap.ui.base.Event) => void;
|
|
1434
|
+
|
|
1435
|
+
/**
|
|
1436
|
+
* @SINCE 1.103
|
|
1437
|
+
*
|
|
1438
|
+
* This event is fired when the user presses the `Close` button of the `MessageStrip` control which is managed
|
|
1439
|
+
* by this plugin.
|
|
1440
|
+
*/
|
|
1441
|
+
close?: (oEvent: sap.ui.base.Event) => void;
|
|
1433
1442
|
}
|
|
1434
1443
|
|
|
1435
1444
|
interface $PasteProviderSettings extends sap.ui.core.$ElementSettings {
|
|
@@ -1778,6 +1787,57 @@ declare namespace sap {
|
|
|
1778
1787
|
*/
|
|
1779
1788
|
oListener?: object
|
|
1780
1789
|
): this;
|
|
1790
|
+
/**
|
|
1791
|
+
* @SINCE 1.103
|
|
1792
|
+
*
|
|
1793
|
+
* Attaches event handler `fnFunction` to the {@link #event:close close} event of this `sap.m.plugins.DataStateIndicator`.
|
|
1794
|
+
*
|
|
1795
|
+
* When called, the context of the event handler (its `this`) will be bound to `oListener` if specified,
|
|
1796
|
+
* otherwise it will be bound to this `sap.m.plugins.DataStateIndicator` itself.
|
|
1797
|
+
*
|
|
1798
|
+
* This event is fired when the user presses the `Close` button of the `MessageStrip` control which is managed
|
|
1799
|
+
* by this plugin.
|
|
1800
|
+
*
|
|
1801
|
+
* @returns Reference to `this` in order to allow method chaining
|
|
1802
|
+
*/
|
|
1803
|
+
attachClose(
|
|
1804
|
+
/**
|
|
1805
|
+
* An application-specific payload object that will be passed to the event handler along with the event
|
|
1806
|
+
* object when firing the event
|
|
1807
|
+
*/
|
|
1808
|
+
oData: object,
|
|
1809
|
+
/**
|
|
1810
|
+
* The function to be called when the event occurs
|
|
1811
|
+
*/
|
|
1812
|
+
fnFunction: (p1: sap.ui.base.Event) => void,
|
|
1813
|
+
/**
|
|
1814
|
+
* Context object to call the event handler with. Defaults to this `sap.m.plugins.DataStateIndicator` itself
|
|
1815
|
+
*/
|
|
1816
|
+
oListener?: object
|
|
1817
|
+
): this;
|
|
1818
|
+
/**
|
|
1819
|
+
* @SINCE 1.103
|
|
1820
|
+
*
|
|
1821
|
+
* Attaches event handler `fnFunction` to the {@link #event:close close} event of this `sap.m.plugins.DataStateIndicator`.
|
|
1822
|
+
*
|
|
1823
|
+
* When called, the context of the event handler (its `this`) will be bound to `oListener` if specified,
|
|
1824
|
+
* otherwise it will be bound to this `sap.m.plugins.DataStateIndicator` itself.
|
|
1825
|
+
*
|
|
1826
|
+
* This event is fired when the user presses the `Close` button of the `MessageStrip` control which is managed
|
|
1827
|
+
* by this plugin.
|
|
1828
|
+
*
|
|
1829
|
+
* @returns Reference to `this` in order to allow method chaining
|
|
1830
|
+
*/
|
|
1831
|
+
attachClose(
|
|
1832
|
+
/**
|
|
1833
|
+
* The function to be called when the event occurs
|
|
1834
|
+
*/
|
|
1835
|
+
fnFunction: (p1: sap.ui.base.Event) => void,
|
|
1836
|
+
/**
|
|
1837
|
+
* Context object to call the event handler with. Defaults to this `sap.m.plugins.DataStateIndicator` itself
|
|
1838
|
+
*/
|
|
1839
|
+
oListener?: object
|
|
1840
|
+
): this;
|
|
1781
1841
|
/**
|
|
1782
1842
|
* Attaches event handler `fnFunction` to the {@link #event:dataStateChange dataStateChange} event of this
|
|
1783
1843
|
* `sap.m.plugins.DataStateIndicator`.
|
|
@@ -1863,6 +1923,25 @@ declare namespace sap {
|
|
|
1863
1923
|
*/
|
|
1864
1924
|
oListener?: object
|
|
1865
1925
|
): this;
|
|
1926
|
+
/**
|
|
1927
|
+
* @SINCE 1.103
|
|
1928
|
+
*
|
|
1929
|
+
* Detaches event handler `fnFunction` from the {@link #event:close close} event of this `sap.m.plugins.DataStateIndicator`.
|
|
1930
|
+
*
|
|
1931
|
+
* The passed function and listener object must match the ones used for event registration.
|
|
1932
|
+
*
|
|
1933
|
+
* @returns Reference to `this` in order to allow method chaining
|
|
1934
|
+
*/
|
|
1935
|
+
detachClose(
|
|
1936
|
+
/**
|
|
1937
|
+
* The function to be called, when the event occurs
|
|
1938
|
+
*/
|
|
1939
|
+
fnFunction: (p1: sap.ui.base.Event) => void,
|
|
1940
|
+
/**
|
|
1941
|
+
* Context object on which the given function had to be called
|
|
1942
|
+
*/
|
|
1943
|
+
oListener?: object
|
|
1944
|
+
): this;
|
|
1866
1945
|
/**
|
|
1867
1946
|
* Detaches event handler `fnFunction` from the {@link #event:dataStateChange dataStateChange} event of
|
|
1868
1947
|
* this `sap.m.plugins.DataStateIndicator`.
|
|
@@ -1918,6 +1997,19 @@ declare namespace sap {
|
|
|
1918
1997
|
*/
|
|
1919
1998
|
mParameters?: object
|
|
1920
1999
|
): boolean;
|
|
2000
|
+
/**
|
|
2001
|
+
* @SINCE 1.103
|
|
2002
|
+
*
|
|
2003
|
+
* Fires event {@link #event:close close} to attached listeners.
|
|
2004
|
+
*
|
|
2005
|
+
* @returns Reference to `this` in order to allow method chaining
|
|
2006
|
+
*/
|
|
2007
|
+
fireClose(
|
|
2008
|
+
/**
|
|
2009
|
+
* Parameters to pass along with the event
|
|
2010
|
+
*/
|
|
2011
|
+
mParameters?: object
|
|
2012
|
+
): this;
|
|
1921
2013
|
/**
|
|
1922
2014
|
* Fires event {@link #event:dataStateChange dataStateChange} to attached listeners.
|
|
1923
2015
|
*
|
|
@@ -7588,7 +7680,7 @@ declare namespace sap {
|
|
|
7588
7680
|
* The content to remove or its index or id
|
|
7589
7681
|
*/
|
|
7590
7682
|
vContent: int | string | sap.ui.core.Control
|
|
7591
|
-
): sap.ui.core.Control;
|
|
7683
|
+
): sap.ui.core.Control | null;
|
|
7592
7684
|
/**
|
|
7593
7685
|
* Removes a customFooterContent from the aggregation {@link #getCustomFooterContent customFooterContent}.
|
|
7594
7686
|
*
|
|
@@ -7599,7 +7691,7 @@ declare namespace sap {
|
|
|
7599
7691
|
* The customFooterContent to remove or its index or id
|
|
7600
7692
|
*/
|
|
7601
7693
|
vCustomFooterContent: int | string | sap.m.Button
|
|
7602
|
-
): sap.m.Button;
|
|
7694
|
+
): sap.m.Button | null;
|
|
7603
7695
|
/**
|
|
7604
7696
|
* Removes a customHeaderContent from the aggregation {@link #getCustomHeaderContent customHeaderContent}.
|
|
7605
7697
|
*
|
|
@@ -7610,7 +7702,7 @@ declare namespace sap {
|
|
|
7610
7702
|
* The customHeaderContent to remove or its index or id
|
|
7611
7703
|
*/
|
|
7612
7704
|
vCustomHeaderContent: int | string | sap.m.Button
|
|
7613
|
-
): sap.m.Button;
|
|
7705
|
+
): sap.m.Button | null;
|
|
7614
7706
|
/**
|
|
7615
7707
|
* @SINCE 1.52
|
|
7616
7708
|
*
|
|
@@ -8045,7 +8137,7 @@ declare namespace sap {
|
|
|
8045
8137
|
* The item to remove or its index or id
|
|
8046
8138
|
*/
|
|
8047
8139
|
vItem: int | string | sap.ui.core.Item
|
|
8048
|
-
): sap.ui.core.Item;
|
|
8140
|
+
): sap.ui.core.Item | null;
|
|
8049
8141
|
/**
|
|
8050
8142
|
* Sets a new value for property {@link #getEnabled enabled}.
|
|
8051
8143
|
*
|
|
@@ -8557,7 +8649,7 @@ declare namespace sap {
|
|
|
8557
8649
|
* The customShareMenuContent to remove or its index or id
|
|
8558
8650
|
*/
|
|
8559
8651
|
vCustomShareMenuContent: int | string | sap.m.Button
|
|
8560
|
-
): sap.m.Button;
|
|
8652
|
+
): sap.m.Button | null;
|
|
8561
8653
|
}
|
|
8562
8654
|
/**
|
|
8563
8655
|
* @SINCE 1.30.0
|
|
@@ -11661,7 +11753,7 @@ declare namespace sap {
|
|
|
11661
11753
|
*
|
|
11662
11754
|
* Retrieves the currently selected UploadSetItem.
|
|
11663
11755
|
*
|
|
11664
|
-
* @returns The currently selected item or null
|
|
11756
|
+
* @returns The currently selected item or `null`
|
|
11665
11757
|
*/
|
|
11666
11758
|
getSelectedItem(): sap.m.upload.UploadSetItem | null;
|
|
11667
11759
|
/**
|
|
@@ -11822,6 +11914,8 @@ declare namespace sap {
|
|
|
11822
11914
|
iIndex: int
|
|
11823
11915
|
): this;
|
|
11824
11916
|
/**
|
|
11917
|
+
* @SINCE 1.103.0
|
|
11918
|
+
*
|
|
11825
11919
|
* Opens the FileUploader dialog. When an UploadSetItem is provided, this method can be used to update a
|
|
11826
11920
|
* file with a new version.
|
|
11827
11921
|
*
|
|
@@ -11877,7 +11971,7 @@ declare namespace sap {
|
|
|
11877
11971
|
* The headerField to remove or its index or id
|
|
11878
11972
|
*/
|
|
11879
11973
|
vHeaderField: int | string | sap.ui.core.Item
|
|
11880
|
-
): sap.ui.core.Item;
|
|
11974
|
+
): sap.ui.core.Item | null;
|
|
11881
11975
|
/**
|
|
11882
11976
|
* Removes a incompleteItem from the aggregation {@link #getIncompleteItems incompleteItems}.
|
|
11883
11977
|
*
|
|
@@ -11888,7 +11982,7 @@ declare namespace sap {
|
|
|
11888
11982
|
* The incompleteItem to remove or its index or id
|
|
11889
11983
|
*/
|
|
11890
11984
|
vIncompleteItem: int | string | sap.m.upload.UploadSetItem
|
|
11891
|
-
): sap.m.upload.UploadSetItem;
|
|
11985
|
+
): sap.m.upload.UploadSetItem | null;
|
|
11892
11986
|
/**
|
|
11893
11987
|
* Removes a item from the aggregation {@link #getItems items}.
|
|
11894
11988
|
*
|
|
@@ -11899,7 +11993,7 @@ declare namespace sap {
|
|
|
11899
11993
|
* The item to remove or its index or id
|
|
11900
11994
|
*/
|
|
11901
11995
|
vItem: int | string | sap.m.upload.UploadSetItem
|
|
11902
|
-
): sap.m.upload.UploadSetItem;
|
|
11996
|
+
): sap.m.upload.UploadSetItem | null;
|
|
11903
11997
|
/**
|
|
11904
11998
|
* @SINCE 1.100.0
|
|
11905
11999
|
*
|
|
@@ -12879,7 +12973,7 @@ declare namespace sap {
|
|
|
12879
12973
|
* The attribute to remove or its index or id
|
|
12880
12974
|
*/
|
|
12881
12975
|
vAttribute: int | string | sap.m.ObjectAttribute
|
|
12882
|
-
): sap.m.ObjectAttribute;
|
|
12976
|
+
): sap.m.ObjectAttribute | null;
|
|
12883
12977
|
/**
|
|
12884
12978
|
* @SINCE 1.90
|
|
12885
12979
|
*
|
|
@@ -12892,7 +12986,7 @@ declare namespace sap {
|
|
|
12892
12986
|
* The headerField to remove or its index or id
|
|
12893
12987
|
*/
|
|
12894
12988
|
vHeaderField: int | string | sap.ui.core.Item
|
|
12895
|
-
): sap.ui.core.Item;
|
|
12989
|
+
): sap.ui.core.Item | null;
|
|
12896
12990
|
/**
|
|
12897
12991
|
* Removes a marker from the aggregation {@link #getMarkers markers}.
|
|
12898
12992
|
*
|
|
@@ -12903,7 +12997,7 @@ declare namespace sap {
|
|
|
12903
12997
|
* The marker to remove or its index or id
|
|
12904
12998
|
*/
|
|
12905
12999
|
vMarker: int | string | sap.m.ObjectMarker
|
|
12906
|
-
): sap.m.ObjectMarker;
|
|
13000
|
+
): sap.m.ObjectMarker | null;
|
|
12907
13001
|
/**
|
|
12908
13002
|
* Removes a status from the aggregation {@link #getStatuses statuses}.
|
|
12909
13003
|
*
|
|
@@ -12914,7 +13008,7 @@ declare namespace sap {
|
|
|
12914
13008
|
* The status to remove or its index or id
|
|
12915
13009
|
*/
|
|
12916
13010
|
vStatus: int | string | sap.m.ObjectStatus
|
|
12917
|
-
): sap.m.ObjectStatus;
|
|
13011
|
+
): sap.m.ObjectStatus | null;
|
|
12918
13012
|
/**
|
|
12919
13013
|
* Sets a new value for property {@link #getEnabledEdit enabledEdit}.
|
|
12920
13014
|
*
|
|
@@ -13109,6 +13203,8 @@ declare namespace sap {
|
|
|
13109
13203
|
): this;
|
|
13110
13204
|
}
|
|
13111
13205
|
/**
|
|
13206
|
+
* @SINCE 1.103.0
|
|
13207
|
+
*
|
|
13112
13208
|
* Used to create a customizable toolbar for the UploadSet. A FileUploader instance is required in the toolbar
|
|
13113
13209
|
* and it is placed by the application.
|
|
13114
13210
|
*/
|
|
@@ -17385,7 +17481,7 @@ declare namespace sap {
|
|
|
17385
17481
|
|
|
17386
17482
|
/**
|
|
17387
17483
|
* @SINCE 1.95
|
|
17388
|
-
* @EXPERIMENTAL
|
|
17484
|
+
* @EXPERIMENTAL (since 1.95)
|
|
17389
17485
|
*
|
|
17390
17486
|
* The semantic color of the value.
|
|
17391
17487
|
*/
|
|
@@ -17395,7 +17491,8 @@ declare namespace sap {
|
|
|
17395
17491
|
| `{${string}}`;
|
|
17396
17492
|
|
|
17397
17493
|
/**
|
|
17398
|
-
* @
|
|
17494
|
+
* @SINCE 1.103
|
|
17495
|
+
* @EXPERIMENTAL (since 1.103)
|
|
17399
17496
|
*
|
|
17400
17497
|
* The load state of the tileIcon.
|
|
17401
17498
|
*/
|
|
@@ -17754,7 +17851,8 @@ declare namespace sap {
|
|
|
17754
17851
|
*
|
|
17755
17852
|
* Specifies whether tab reordering is enabled. Relevant only for desktop devices. The {@link sap.m.IconTabSeparator
|
|
17756
17853
|
* sap.m.IconTabSeparator} cannot be dragged and dropped Items can be moved around {@link sap.m.IconTabSeparator
|
|
17757
|
-
* sap.m.IconTabSeparator}
|
|
17854
|
+
* sap.m.IconTabSeparator} Reordering is enabled via keyboard using `Ctrl` + arrow keys (Windows) and `Control`
|
|
17855
|
+
* + arrow keys (Mac OS)
|
|
17758
17856
|
*/
|
|
17759
17857
|
enableTabReordering?:
|
|
17760
17858
|
| boolean
|
|
@@ -18011,7 +18109,8 @@ declare namespace sap {
|
|
|
18011
18109
|
*
|
|
18012
18110
|
* Specifies whether tab reordering is enabled. Relevant only for desktop devices. The {@link sap.m.IconTabSeparator
|
|
18013
18111
|
* sap.m.IconTabSeparator} cannot be dragged and dropped Items can be moved around {@link sap.m.IconTabSeparator
|
|
18014
|
-
* sap.m.IconTabSeparator}
|
|
18112
|
+
* sap.m.IconTabSeparator} Reordering is enabled via keyboard using `Ctrl` + arrow keys (Windows) and `Control`
|
|
18113
|
+
* + arrow keys (Mac OS)
|
|
18015
18114
|
*/
|
|
18016
18115
|
enableTabReordering?:
|
|
18017
18116
|
| boolean
|
|
@@ -29454,7 +29553,9 @@ declare namespace sap {
|
|
|
29454
29553
|
* Determines whether the control, when in a toolbar, is shrinkable or not. For controls with fixed width
|
|
29455
29554
|
* (100px, 5rem, etc...) this property is ignored.
|
|
29456
29555
|
*
|
|
29457
|
-
*
|
|
29556
|
+
* **Notes:**
|
|
29557
|
+
* - Nested layout controls should not be shrinkable.
|
|
29558
|
+
* - This property has no effect on `sap.m.Breadcrumbs` as it is shrinkable by default.
|
|
29458
29559
|
*/
|
|
29459
29560
|
shrinkable?:
|
|
29460
29561
|
| boolean
|
|
@@ -31120,7 +31221,7 @@ declare namespace sap {
|
|
|
31120
31221
|
* as long as it has a close method.
|
|
31121
31222
|
*/
|
|
31122
31223
|
oDialog: sap.ui.core.Control
|
|
31123
|
-
):
|
|
31224
|
+
): this;
|
|
31124
31225
|
/**
|
|
31125
31226
|
* Adds an instance to the given category. If the instance is already added to the same category, it won't
|
|
31126
31227
|
* be added again.
|
|
@@ -31136,7 +31237,7 @@ declare namespace sap {
|
|
|
31136
31237
|
* The instance that will be added to the given category.
|
|
31137
31238
|
*/
|
|
31138
31239
|
oInstance: object
|
|
31139
|
-
):
|
|
31240
|
+
): this;
|
|
31140
31241
|
/**
|
|
31141
31242
|
* Adds a control to predefined lightbox category in instance manager.
|
|
31142
31243
|
*
|
|
@@ -31148,7 +31249,7 @@ declare namespace sap {
|
|
|
31148
31249
|
* as long as it has a close method.
|
|
31149
31250
|
*/
|
|
31150
31251
|
oLightBox: sap.m.LightBox
|
|
31151
|
-
):
|
|
31252
|
+
): this;
|
|
31152
31253
|
/**
|
|
31153
31254
|
* Adds a control to predefined popover category in instance manager.
|
|
31154
31255
|
*
|
|
@@ -31160,25 +31261,25 @@ declare namespace sap {
|
|
|
31160
31261
|
* also be added as long as it has a close method.
|
|
31161
31262
|
*/
|
|
31162
31263
|
oPopover: sap.ui.core.Control
|
|
31163
|
-
):
|
|
31264
|
+
): this;
|
|
31164
31265
|
/**
|
|
31165
31266
|
* Closes all of the open dialogs.
|
|
31166
31267
|
*
|
|
31167
31268
|
* @returns Enable method chaining.
|
|
31168
31269
|
*/
|
|
31169
|
-
closeAllDialogs(fnCallback: Function):
|
|
31270
|
+
closeAllDialogs(fnCallback: Function): this;
|
|
31170
31271
|
/**
|
|
31171
31272
|
* Closes all open lightboxes.
|
|
31172
31273
|
*
|
|
31173
31274
|
* @returns Enable method chaining.
|
|
31174
31275
|
*/
|
|
31175
|
-
closeAllLightBoxes():
|
|
31276
|
+
closeAllLightBoxes(): this;
|
|
31176
31277
|
/**
|
|
31177
31278
|
* Closes all open popovers.
|
|
31178
31279
|
*
|
|
31179
31280
|
* @returns Enable method chaining.
|
|
31180
31281
|
*/
|
|
31181
|
-
closeAllPopovers():
|
|
31282
|
+
closeAllPopovers(): this;
|
|
31182
31283
|
/**
|
|
31183
31284
|
* Returns an array of managed instances in the given category.
|
|
31184
31285
|
*
|
|
@@ -31189,7 +31290,7 @@ declare namespace sap {
|
|
|
31189
31290
|
* The category's id.
|
|
31190
31291
|
*/
|
|
31191
31292
|
sCategoryId: string
|
|
31192
|
-
): object;
|
|
31293
|
+
): object[];
|
|
31193
31294
|
/**
|
|
31194
31295
|
* Gets all of the open dialogs. If there's no dialog open, an empty array is returned.
|
|
31195
31296
|
*
|
|
@@ -31306,7 +31407,7 @@ declare namespace sap {
|
|
|
31306
31407
|
/**
|
|
31307
31408
|
* Removes control from predefined dialog category in instance manager.
|
|
31308
31409
|
*
|
|
31309
|
-
* @returns The removed popover or null
|
|
31410
|
+
* @returns The removed popover or `null`. If the popover isn't managed, this method returns `null` instead
|
|
31310
31411
|
* of the removed popover.
|
|
31311
31412
|
*/
|
|
31312
31413
|
removeDialogInstance(
|
|
@@ -31318,7 +31419,7 @@ declare namespace sap {
|
|
|
31318
31419
|
/**
|
|
31319
31420
|
* Removes a managed instance from the given category.
|
|
31320
31421
|
*
|
|
31321
|
-
* @returns The removed instance or null
|
|
31422
|
+
* @returns The removed instance or `null`. If the instance isn't managed, this method returns `null` instead
|
|
31322
31423
|
* of the instance object.
|
|
31323
31424
|
*/
|
|
31324
31425
|
removeInstance(
|
|
@@ -31330,11 +31431,11 @@ declare namespace sap {
|
|
|
31330
31431
|
* The instance that will be removed from the given category.
|
|
31331
31432
|
*/
|
|
31332
31433
|
oInstance: object
|
|
31333
|
-
): object;
|
|
31434
|
+
): object | null;
|
|
31334
31435
|
/**
|
|
31335
31436
|
* Removes control from predefined lightbox category in instance manager.
|
|
31336
31437
|
*
|
|
31337
|
-
* @returns The removed popover or null
|
|
31438
|
+
* @returns The removed popover or `null`. If the LightBox isn't managed, this method returns `null` instead
|
|
31338
31439
|
* of the removed LightBox.
|
|
31339
31440
|
*/
|
|
31340
31441
|
removeLightBoxInstance(
|
|
@@ -31346,7 +31447,7 @@ declare namespace sap {
|
|
|
31346
31447
|
/**
|
|
31347
31448
|
* Removes control from predefined popover category in instance manager.
|
|
31348
31449
|
*
|
|
31349
|
-
* @returns The removed popover or null
|
|
31450
|
+
* @returns The removed popover or `null`. If the popover isn't managed, this method returns `null` instead
|
|
31350
31451
|
* of the removed popover.
|
|
31351
31452
|
*/
|
|
31352
31453
|
removePopoverInstance(
|
|
@@ -31354,7 +31455,7 @@ declare namespace sap {
|
|
|
31354
31455
|
* to be removed from instance manager.
|
|
31355
31456
|
*/
|
|
31356
31457
|
oPopover: sap.ui.core.Control
|
|
31357
|
-
): sap.ui.core.Control;
|
|
31458
|
+
): sap.ui.core.Control | null;
|
|
31358
31459
|
}
|
|
31359
31460
|
const InstanceManager: InstanceManager;
|
|
31360
31461
|
|
|
@@ -31382,17 +31483,17 @@ declare namespace sap {
|
|
|
31382
31483
|
* Example:
|
|
31383
31484
|
* ```javascript
|
|
31384
31485
|
*
|
|
31385
|
-
*
|
|
31386
|
-
*
|
|
31387
|
-
*
|
|
31388
|
-
*
|
|
31389
|
-
*
|
|
31390
|
-
*
|
|
31391
|
-
*
|
|
31392
|
-
*
|
|
31393
|
-
*
|
|
31394
|
-
*
|
|
31395
|
-
*
|
|
31486
|
+
* sap.ui.define(["sap/m/MessageBox"], function (MessageBox) {
|
|
31487
|
+
* MessageBox.show(
|
|
31488
|
+
* "This message should appear in the message box.", {
|
|
31489
|
+
* icon: MessageBox.Icon.INFORMATION,
|
|
31490
|
+
* title: "My message box title",
|
|
31491
|
+
* actions: [MessageBox.Action.YES, MessageBox.Action.NO],
|
|
31492
|
+
* emphasizedAction: MessageBox.Action.YES,
|
|
31493
|
+
* onClose: function (oAction) { / * do something * / }
|
|
31494
|
+
* }
|
|
31495
|
+
* );
|
|
31496
|
+
* });
|
|
31396
31497
|
* ```
|
|
31397
31498
|
*
|
|
31398
31499
|
*
|
|
@@ -31502,11 +31603,15 @@ declare namespace sap {
|
|
|
31502
31603
|
*/
|
|
31503
31604
|
horizontalScrolling?: boolean;
|
|
31504
31605
|
/**
|
|
31505
|
-
* Added since version 1.28.0. If 'details' is set
|
|
31506
|
-
* the
|
|
31507
|
-
*
|
|
31606
|
+
* Added since version 1.28.0. If 'details' is set, a link to view details is added. When the user clicks
|
|
31607
|
+
* the link, the text area containing 'details' information is displayed. The initial visibility is not
|
|
31608
|
+
* configurable and the details are hidden by default.
|
|
31609
|
+
* If object is given, it will be serialized using `JSON.stringify`.
|
|
31610
|
+
* Since version 1.103, a callback function can be used. It should return a promise, that resolves with
|
|
31611
|
+
* a `string` value or a JSON object, which will be stringified, or rejects - in this case a default error
|
|
31612
|
+
* message will be displayed.
|
|
31508
31613
|
*/
|
|
31509
|
-
details?: string;
|
|
31614
|
+
details?: string | object | (() => Promise<string | object>);
|
|
31510
31615
|
/**
|
|
31511
31616
|
* Added since version 1.72.0. Whether the MessageBox will be closed automatically when a routing navigation
|
|
31512
31617
|
* occurs.
|
|
@@ -31616,11 +31721,15 @@ declare namespace sap {
|
|
|
31616
31721
|
*/
|
|
31617
31722
|
horizontalScrolling?: boolean;
|
|
31618
31723
|
/**
|
|
31619
|
-
* Added since version 1.28.0. If 'details' is set
|
|
31620
|
-
* the
|
|
31621
|
-
*
|
|
31724
|
+
* Added since version 1.28.0. If 'details' is set, a link to view details is added. When the user clicks
|
|
31725
|
+
* the link, the text area containing 'details' information is displayed. The initial visibility is not
|
|
31726
|
+
* configurable and the details are hidden by default.
|
|
31727
|
+
* If object is given, it will be serialized using `JSON.stringify`.
|
|
31728
|
+
* Since version 1.103, a callback function can be used. It should return a promise, that resolves with
|
|
31729
|
+
* a `string` value or a JSON object, which will be stringified, or rejects - in this case a default error
|
|
31730
|
+
* message will be displayed.
|
|
31622
31731
|
*/
|
|
31623
|
-
details?: string;
|
|
31732
|
+
details?: string | object | (() => Promise<string | object>);
|
|
31624
31733
|
/**
|
|
31625
31734
|
* Added since version 1.72.0. Whether the MessageBox will be closed automatically when a routing navigation
|
|
31626
31735
|
* occurs.
|
|
@@ -31725,11 +31834,15 @@ declare namespace sap {
|
|
|
31725
31834
|
*/
|
|
31726
31835
|
horizontalScrolling?: boolean;
|
|
31727
31836
|
/**
|
|
31728
|
-
* Added since version 1.28.0. If 'details' is set
|
|
31729
|
-
* the
|
|
31730
|
-
*
|
|
31837
|
+
* Added since version 1.28.0. If 'details' is set, a link to view details is added. When the user clicks
|
|
31838
|
+
* the link, the text area containing 'details' information is displayed. The initial visibility is not
|
|
31839
|
+
* configurable and the details are hidden by default.
|
|
31840
|
+
* If object is given, it will be serialized using `JSON.stringify`.
|
|
31841
|
+
* Since version 1.103, a callback function can be used. It should return a promise, that resolves with
|
|
31842
|
+
* a `string` value or a JSON object, which will be stringified, or rejects - in this case a default error
|
|
31843
|
+
* message will be displayed.
|
|
31731
31844
|
*/
|
|
31732
|
-
details?: string;
|
|
31845
|
+
details?: string | object | (() => Promise<string | object>);
|
|
31733
31846
|
/**
|
|
31734
31847
|
* Added since version 1.72.0. Whether the MessageBox will be closed automatically when a routing navigation
|
|
31735
31848
|
* occurs.
|
|
@@ -31758,7 +31871,7 @@ declare namespace sap {
|
|
|
31758
31871
|
* ```
|
|
31759
31872
|
*
|
|
31760
31873
|
*
|
|
31761
|
-
* The callback is called with the following signature
|
|
31874
|
+
* The callback is called with the following signature
|
|
31762
31875
|
* ```javascript
|
|
31763
31876
|
*
|
|
31764
31877
|
* function (oAction)
|
|
@@ -31832,11 +31945,15 @@ declare namespace sap {
|
|
|
31832
31945
|
*/
|
|
31833
31946
|
horizontalScrolling?: boolean;
|
|
31834
31947
|
/**
|
|
31835
|
-
* Added since version 1.28.0. If 'details' is set
|
|
31836
|
-
* the
|
|
31837
|
-
*
|
|
31948
|
+
* Added since version 1.28.0. If 'details' is set, a link to view details is added. When the user clicks
|
|
31949
|
+
* the link, the text area containing 'details' information is displayed. The initial visibility is not
|
|
31950
|
+
* configurable and the details are hidden by default.
|
|
31951
|
+
* If object is given, it will be serialized using `JSON.stringify`.
|
|
31952
|
+
* Since version 1.103, a callback function can be used. It should return a promise, that resolves with
|
|
31953
|
+
* a `string` value or a JSON object, which will be stringified, or rejects - in this case a default error
|
|
31954
|
+
* message will be displayed.
|
|
31838
31955
|
*/
|
|
31839
|
-
details?: string;
|
|
31956
|
+
details?: string | object | (() => Promise<string | object>);
|
|
31840
31957
|
/**
|
|
31841
31958
|
* Added since version 1.72.0. Whether the MessageBox will be closed automatically when a routing navigation
|
|
31842
31959
|
* occurs.
|
|
@@ -31949,11 +32066,15 @@ declare namespace sap {
|
|
|
31949
32066
|
*/
|
|
31950
32067
|
horizontalScrolling?: boolean;
|
|
31951
32068
|
/**
|
|
31952
|
-
* Added since version 1.28.0. If 'details' is set
|
|
31953
|
-
* the
|
|
31954
|
-
*
|
|
32069
|
+
* Added since version 1.28.0. If 'details' is set, a link to view details is added. When the user clicks
|
|
32070
|
+
* the link, the text area containing 'details' information is displayed. The initial visibility is not
|
|
32071
|
+
* configurable and the details are hidden by default.
|
|
32072
|
+
* If object is given, it will be serialized using `JSON.stringify`.
|
|
32073
|
+
* Since version 1.103, a callback function can be used. It should return a promise, that resolves with
|
|
32074
|
+
* a `string` value or a JSON object, which will be stringified, or rejects - in this case a default error
|
|
32075
|
+
* message will be displayed.
|
|
31955
32076
|
*/
|
|
31956
|
-
details?: string;
|
|
32077
|
+
details?: string | object | (() => Promise<string | object>);
|
|
31957
32078
|
/**
|
|
31958
32079
|
* The width of the MessageBox
|
|
31959
32080
|
*/
|
|
@@ -31987,8 +32108,6 @@ declare namespace sap {
|
|
|
31987
32108
|
*
|
|
31988
32109
|
*
|
|
31989
32110
|
* The callback is called with the following signature
|
|
31990
|
-
*
|
|
31991
|
-
*
|
|
31992
32111
|
* ```javascript
|
|
31993
32112
|
*
|
|
31994
32113
|
* function(oAction)
|
|
@@ -32062,11 +32181,15 @@ declare namespace sap {
|
|
|
32062
32181
|
*/
|
|
32063
32182
|
horizontalScrolling?: boolean;
|
|
32064
32183
|
/**
|
|
32065
|
-
* Added since version 1.28.0. If 'details' is set
|
|
32066
|
-
* the
|
|
32067
|
-
*
|
|
32184
|
+
* Added since version 1.28.0. If 'details' is set, a link to view details is added. When the user clicks
|
|
32185
|
+
* the link, the text area containing 'details' information is displayed. The initial visibility is not
|
|
32186
|
+
* configurable and the details are hidden by default.
|
|
32187
|
+
* If object is given, it will be serialized using `JSON.stringify`.
|
|
32188
|
+
* Since version 1.103, a callback function can be used. It should return a promise, that resolves with
|
|
32189
|
+
* a `string` value or a JSON object, which will be stringified, or rejects - in this case a default error
|
|
32190
|
+
* message will be displayed.
|
|
32068
32191
|
*/
|
|
32069
|
-
details?: string;
|
|
32192
|
+
details?: string | object | (() => Promise<string | object>);
|
|
32070
32193
|
/**
|
|
32071
32194
|
* Added since version 1.72.0. Whether the MessageBox will be closed automatically when a routing navigation
|
|
32072
32195
|
* occurs.
|
|
@@ -32095,7 +32218,7 @@ declare namespace sap {
|
|
|
32095
32218
|
* ```
|
|
32096
32219
|
*
|
|
32097
32220
|
*
|
|
32098
|
-
* The callback is called with the following signature
|
|
32221
|
+
* The callback is called with the following signature
|
|
32099
32222
|
* ```javascript
|
|
32100
32223
|
*
|
|
32101
32224
|
* function (oAction)
|
|
@@ -32169,11 +32292,15 @@ declare namespace sap {
|
|
|
32169
32292
|
*/
|
|
32170
32293
|
horizontalScrolling?: boolean;
|
|
32171
32294
|
/**
|
|
32172
|
-
* Added since version 1.28.0. If 'details' is set
|
|
32173
|
-
* the
|
|
32174
|
-
*
|
|
32295
|
+
* Added since version 1.28.0. If 'details' is set, a link to view details is added. When the user clicks
|
|
32296
|
+
* the link, the text area containing 'details' information is displayed. The initial visibility is not
|
|
32297
|
+
* configurable and the details are hidden by default.
|
|
32298
|
+
* If object is given, it will be serialized using `JSON.stringify`.
|
|
32299
|
+
* Since version 1.103, a callback function can be used. It should return a promise, that resolves with
|
|
32300
|
+
* a `string` value or a JSON object, which will be stringified, or rejects - in this case a default error
|
|
32301
|
+
* message will be displayed.
|
|
32175
32302
|
*/
|
|
32176
|
-
details?: string;
|
|
32303
|
+
details?: string | object | (() => Promise<string | object>);
|
|
32177
32304
|
/**
|
|
32178
32305
|
* Added since version 1.72.0. Whether the MessageBox will be closed automatically when a routing navigation
|
|
32179
32306
|
* occurs.
|
|
@@ -32685,16 +32812,16 @@ declare namespace sap {
|
|
|
32685
32812
|
*/
|
|
32686
32813
|
removeAllButtons(): string[];
|
|
32687
32814
|
/**
|
|
32688
|
-
*
|
|
32815
|
+
* Removes the given button from the `ActionSelect` content.
|
|
32689
32816
|
*
|
|
32690
|
-
* @returns The
|
|
32817
|
+
* @returns The ID of the removed button or `null`.
|
|
32691
32818
|
*/
|
|
32692
32819
|
removeButton(
|
|
32693
32820
|
/**
|
|
32694
|
-
* The button to remove or its index or
|
|
32821
|
+
* The button to remove or its index or ID.
|
|
32695
32822
|
*/
|
|
32696
32823
|
vButton: int | string | sap.m.Button
|
|
32697
|
-
): string;
|
|
32824
|
+
): string | null;
|
|
32698
32825
|
}
|
|
32699
32826
|
/**
|
|
32700
32827
|
* @SINCE 1.9.1
|
|
@@ -33397,7 +33524,7 @@ declare namespace sap {
|
|
|
33397
33524
|
* The button to remove or its index or id
|
|
33398
33525
|
*/
|
|
33399
33526
|
vButton: int | string | sap.m.Button
|
|
33400
|
-
): sap.m.Button;
|
|
33527
|
+
): sap.m.Button | null;
|
|
33401
33528
|
/**
|
|
33402
33529
|
* Sets a new value for property {@link #getCancelButtonText cancelButtonText}.
|
|
33403
33530
|
*
|
|
@@ -35193,7 +35320,7 @@ declare namespace sap {
|
|
|
35193
35320
|
* The contentLeft to remove or its index or id
|
|
35194
35321
|
*/
|
|
35195
35322
|
vContentLeft: int | string | sap.ui.core.Control
|
|
35196
|
-
): sap.ui.core.Control;
|
|
35323
|
+
): sap.ui.core.Control | null;
|
|
35197
35324
|
/**
|
|
35198
35325
|
* Removes a contentMiddle from the aggregation {@link #getContentMiddle contentMiddle}.
|
|
35199
35326
|
*
|
|
@@ -35204,7 +35331,7 @@ declare namespace sap {
|
|
|
35204
35331
|
* The contentMiddle to remove or its index or id
|
|
35205
35332
|
*/
|
|
35206
35333
|
vContentMiddle: int | string | sap.ui.core.Control
|
|
35207
|
-
): sap.ui.core.Control;
|
|
35334
|
+
): sap.ui.core.Control | null;
|
|
35208
35335
|
/**
|
|
35209
35336
|
* Removes a contentRight from the aggregation {@link #getContentRight contentRight}.
|
|
35210
35337
|
*
|
|
@@ -35215,7 +35342,7 @@ declare namespace sap {
|
|
|
35215
35342
|
* The contentRight to remove or its index or id
|
|
35216
35343
|
*/
|
|
35217
35344
|
vContentRight: int | string | sap.ui.core.Control
|
|
35218
|
-
): sap.ui.core.Control;
|
|
35345
|
+
): sap.ui.core.Control | null;
|
|
35219
35346
|
/**
|
|
35220
35347
|
* @SINCE 1.22
|
|
35221
35348
|
*
|
|
@@ -35312,6 +35439,121 @@ declare namespace sap {
|
|
|
35312
35439
|
bTranslucent?: boolean
|
|
35313
35440
|
): this;
|
|
35314
35441
|
}
|
|
35442
|
+
/**
|
|
35443
|
+
* Helper Class for implementing the IBar interface. Should be created once per IBar instance.
|
|
35444
|
+
*/
|
|
35445
|
+
class BarInPageEnabler extends sap.ui.base.Object {
|
|
35446
|
+
constructor();
|
|
35447
|
+
|
|
35448
|
+
/**
|
|
35449
|
+
* Adds the sapMBarChildClass to a control.
|
|
35450
|
+
*/
|
|
35451
|
+
static addChildClassTo(
|
|
35452
|
+
/**
|
|
35453
|
+
* The sap.ui.core.Control to which the sapMBarChildClass will be added
|
|
35454
|
+
*/
|
|
35455
|
+
oControl: sap.ui.core.Control
|
|
35456
|
+
): void;
|
|
35457
|
+
/**
|
|
35458
|
+
* Creates a new subclass of class sap.m.BarInPageEnabler with name `sClassName` and enriches it with the
|
|
35459
|
+
* information contained in `oClassInfo`.
|
|
35460
|
+
*
|
|
35461
|
+
* `oClassInfo` might contain the same kind of information as described in {@link sap.ui.base.Object.extend}.
|
|
35462
|
+
*
|
|
35463
|
+
* @returns Created class / constructor function
|
|
35464
|
+
*/
|
|
35465
|
+
static extend<T extends Record<string, unknown>>(
|
|
35466
|
+
/**
|
|
35467
|
+
* Name of the class being created
|
|
35468
|
+
*/
|
|
35469
|
+
sClassName: string,
|
|
35470
|
+
/**
|
|
35471
|
+
* Object literal with information about the class
|
|
35472
|
+
*/
|
|
35473
|
+
oClassInfo?: sap.ClassInfo<T, sap.m.BarInPageEnabler>,
|
|
35474
|
+
/**
|
|
35475
|
+
* Constructor function for the metadata object; if not given, it defaults to the metadata implementation
|
|
35476
|
+
* used by this class
|
|
35477
|
+
*/
|
|
35478
|
+
FNMetaImpl?: Function
|
|
35479
|
+
): Function;
|
|
35480
|
+
/**
|
|
35481
|
+
* Returns a metadata object for class sap.m.BarInPageEnabler.
|
|
35482
|
+
*
|
|
35483
|
+
* @returns Metadata object describing this class
|
|
35484
|
+
*/
|
|
35485
|
+
static getMetadata(): sap.ui.base.Metadata;
|
|
35486
|
+
/**
|
|
35487
|
+
* Renders the tooltip for the given control
|
|
35488
|
+
*/
|
|
35489
|
+
static renderTooltip(
|
|
35490
|
+
/**
|
|
35491
|
+
* the RenderManager that can be used for writing to the render output buffer.
|
|
35492
|
+
*/
|
|
35493
|
+
oRM: sap.ui.core.RenderManager,
|
|
35494
|
+
/**
|
|
35495
|
+
* an object representation of the control that should be rendered.
|
|
35496
|
+
*/
|
|
35497
|
+
oControl: sap.ui.core.Control
|
|
35498
|
+
): void;
|
|
35499
|
+
/**
|
|
35500
|
+
* Sets classes and HTML tag according to the context of the page.
|
|
35501
|
+
*
|
|
35502
|
+
* Possible contexts are header, footer, subheader.
|
|
35503
|
+
*
|
|
35504
|
+
* @returns `this` for chaining
|
|
35505
|
+
*/
|
|
35506
|
+
applyTagAndContextClassFor(
|
|
35507
|
+
/**
|
|
35508
|
+
* allowed values are header, footer, subheader.
|
|
35509
|
+
*/
|
|
35510
|
+
sContext: string
|
|
35511
|
+
): sap.m.IBar;
|
|
35512
|
+
/**
|
|
35513
|
+
* Gets the Bar contexts inside page.
|
|
35514
|
+
*
|
|
35515
|
+
* @returns with all available contexts.
|
|
35516
|
+
*/
|
|
35517
|
+
getContext(): Object;
|
|
35518
|
+
/**
|
|
35519
|
+
* Gets the HTML tag of the root domref.
|
|
35520
|
+
*
|
|
35521
|
+
* @returns the HTML-tag
|
|
35522
|
+
*/
|
|
35523
|
+
getHTMLTag(): string;
|
|
35524
|
+
/**
|
|
35525
|
+
* Determines whether the bar is sensitive to the container context.
|
|
35526
|
+
*
|
|
35527
|
+
* Implementation of the IBar interface.
|
|
35528
|
+
*
|
|
35529
|
+
* @returns isContextSensitive
|
|
35530
|
+
*/
|
|
35531
|
+
isContextSensitive(): boolean;
|
|
35532
|
+
/**
|
|
35533
|
+
* Renders the HTML for the given control, using the provided {@link sap.ui.core.RenderManager}.
|
|
35534
|
+
*/
|
|
35535
|
+
render(
|
|
35536
|
+
/**
|
|
35537
|
+
* the RenderManager that can be used for writing to the render output buffer.
|
|
35538
|
+
*/
|
|
35539
|
+
oRM: sap.ui.core.RenderManager,
|
|
35540
|
+
/**
|
|
35541
|
+
* an object representation of the control that should be rendered.
|
|
35542
|
+
*/
|
|
35543
|
+
oControl: sap.ui.core.Control
|
|
35544
|
+
): void;
|
|
35545
|
+
/**
|
|
35546
|
+
* Sets the HTML tag of the root element.
|
|
35547
|
+
*
|
|
35548
|
+
* @returns `this` to allow method chaining
|
|
35549
|
+
*/
|
|
35550
|
+
setHTMLTag(
|
|
35551
|
+
/**
|
|
35552
|
+
* The new root element
|
|
35553
|
+
*/
|
|
35554
|
+
sNewTag: string
|
|
35555
|
+
): sap.m.IBar;
|
|
35556
|
+
}
|
|
35315
35557
|
/**
|
|
35316
35558
|
* @SINCE 1.34
|
|
35317
35559
|
*
|
|
@@ -35321,8 +35563,13 @@ declare namespace sap {
|
|
|
35321
35563
|
*/
|
|
35322
35564
|
class Breadcrumbs
|
|
35323
35565
|
extends sap.ui.core.Control
|
|
35324
|
-
implements
|
|
35566
|
+
implements
|
|
35567
|
+
sap.m.IBreadcrumbs,
|
|
35568
|
+
sap.m.IOverflowToolbarContent,
|
|
35569
|
+
sap.ui.core.IShrinkable {
|
|
35325
35570
|
__implements__sap_m_IBreadcrumbs: boolean;
|
|
35571
|
+
__implements__sap_m_IOverflowToolbarContent: boolean;
|
|
35572
|
+
__implements__sap_ui_core_IShrinkable: boolean;
|
|
35326
35573
|
/**
|
|
35327
35574
|
* Constructor for a new `Breadcrumbs`.
|
|
35328
35575
|
*
|
|
@@ -35536,7 +35783,7 @@ declare namespace sap {
|
|
|
35536
35783
|
* The link to remove or its index or id
|
|
35537
35784
|
*/
|
|
35538
35785
|
vLink: int | string | sap.m.Link
|
|
35539
|
-
): sap.m.Link;
|
|
35786
|
+
): sap.m.Link | null;
|
|
35540
35787
|
/**
|
|
35541
35788
|
* @SINCE 1.34
|
|
35542
35789
|
*
|
|
@@ -37691,7 +37938,7 @@ declare namespace sap {
|
|
|
37691
37938
|
* The page to remove or its index or id
|
|
37692
37939
|
*/
|
|
37693
37940
|
vPage: int | string | sap.ui.core.Control
|
|
37694
|
-
): sap.ui.core.Control;
|
|
37941
|
+
): sap.ui.core.Control | null;
|
|
37695
37942
|
/**
|
|
37696
37943
|
* Sets the associated {@link #getActivePage activePage}.
|
|
37697
37944
|
*
|
|
@@ -40370,7 +40617,7 @@ declare namespace sap {
|
|
|
40370
40617
|
* The cell to remove or its index or id
|
|
40371
40618
|
*/
|
|
40372
40619
|
vCell: int | string | sap.ui.core.Control
|
|
40373
|
-
): sap.ui.core.Control;
|
|
40620
|
+
): sap.ui.core.Control | null;
|
|
40374
40621
|
/**
|
|
40375
40622
|
* Pemove pop-in from DOM
|
|
40376
40623
|
*/
|
|
@@ -41170,9 +41417,9 @@ declare namespace sap {
|
|
|
41170
41417
|
/**
|
|
41171
41418
|
* Gets the first item from the aggregation named `items`.
|
|
41172
41419
|
*
|
|
41173
|
-
* @returns The first item, or null if there are no items.
|
|
41420
|
+
* @returns The first item, or `null` if there are no items.
|
|
41174
41421
|
*/
|
|
41175
|
-
getFirstItem(): sap.ui.core.Item;
|
|
41422
|
+
getFirstItem(): sap.ui.core.Item | null;
|
|
41176
41423
|
/**
|
|
41177
41424
|
* @SINCE 1.66
|
|
41178
41425
|
*
|
|
@@ -41185,14 +41432,14 @@ declare namespace sap {
|
|
|
41185
41432
|
/**
|
|
41186
41433
|
* Gets the item from the aggregation named `items` at the given 0-based index.
|
|
41187
41434
|
*
|
|
41188
|
-
* @returns Item at the given index, or null if none.
|
|
41435
|
+
* @returns Item at the given index, or `null` if none.
|
|
41189
41436
|
*/
|
|
41190
41437
|
getItemAt(
|
|
41191
41438
|
/**
|
|
41192
41439
|
* Index of the item to return.
|
|
41193
41440
|
*/
|
|
41194
41441
|
iIndex: int
|
|
41195
|
-
): sap.ui.core.Item;
|
|
41442
|
+
): sap.ui.core.Item | null;
|
|
41196
41443
|
/**
|
|
41197
41444
|
* Gets the item with the given key from the aggregation named `items`.
|
|
41198
41445
|
* **Note:** If duplicate keys exist, the first item matching the key is returned.
|
|
@@ -41215,9 +41462,9 @@ declare namespace sap {
|
|
|
41215
41462
|
/**
|
|
41216
41463
|
* Gets the last item from the aggregation named `items`.
|
|
41217
41464
|
*
|
|
41218
|
-
* @returns The last item, or null if there are no items.
|
|
41465
|
+
* @returns The last item, or `null` if there are no items.
|
|
41219
41466
|
*/
|
|
41220
|
-
getLastItem(): sap.ui.core.Item;
|
|
41467
|
+
getLastItem(): sap.ui.core.Item | null;
|
|
41221
41468
|
/**
|
|
41222
41469
|
* @deprecated (since 1.62) - The list structure should not be used as per SAP note: 2746748.
|
|
41223
41470
|
*
|
|
@@ -41426,7 +41673,7 @@ declare namespace sap {
|
|
|
41426
41673
|
* The item to remove or its index or id
|
|
41427
41674
|
*/
|
|
41428
41675
|
vItem: int | string | sap.ui.core.Item
|
|
41429
|
-
): sap.ui.core.Item;
|
|
41676
|
+
): sap.ui.core.Item | null;
|
|
41430
41677
|
/**
|
|
41431
41678
|
* @SINCE 1.58
|
|
41432
41679
|
*
|
|
@@ -42214,7 +42461,7 @@ declare namespace sap {
|
|
|
42214
42461
|
* The content to remove or its index or id
|
|
42215
42462
|
*/
|
|
42216
42463
|
vContent: int | string | sap.ui.core.Control
|
|
42217
|
-
): sap.ui.core.Control;
|
|
42464
|
+
): sap.ui.core.Control | null;
|
|
42218
42465
|
/**
|
|
42219
42466
|
* @SINCE 1.84
|
|
42220
42467
|
*
|
|
@@ -42487,7 +42734,7 @@ declare namespace sap {
|
|
|
42487
42734
|
* The content to remove or its index or id
|
|
42488
42735
|
*/
|
|
42489
42736
|
vContent: int | string | sap.ui.core.Control
|
|
42490
|
-
): sap.ui.core.Control;
|
|
42737
|
+
): sap.ui.core.Control | null;
|
|
42491
42738
|
/**
|
|
42492
42739
|
* Unbinds aggregation {@link #getContent content} from model data.
|
|
42493
42740
|
*
|
|
@@ -45821,7 +46068,7 @@ declare namespace sap {
|
|
|
45821
46068
|
* The button to remove or its index or id
|
|
45822
46069
|
*/
|
|
45823
46070
|
vButton: int | string | sap.m.Button
|
|
45824
|
-
): sap.m.Button;
|
|
46071
|
+
): sap.m.Button | null;
|
|
45825
46072
|
/**
|
|
45826
46073
|
* Removes a content from the aggregation {@link #getContent content}.
|
|
45827
46074
|
*
|
|
@@ -45832,7 +46079,7 @@ declare namespace sap {
|
|
|
45832
46079
|
* The content to remove or its index or id
|
|
45833
46080
|
*/
|
|
45834
46081
|
vContent: int | string | sap.ui.core.Control
|
|
45835
|
-
): sap.ui.core.Control;
|
|
46082
|
+
): sap.ui.core.Control | null;
|
|
45836
46083
|
/**
|
|
45837
46084
|
* @SINCE 1.15.1
|
|
45838
46085
|
*
|
|
@@ -48512,7 +48759,7 @@ declare namespace sap {
|
|
|
48512
48759
|
* The list to remove or its index or id
|
|
48513
48760
|
*/
|
|
48514
48761
|
vList: int | string | sap.m.FacetFilterList
|
|
48515
|
-
): sap.m.FacetFilterList;
|
|
48762
|
+
): sap.m.FacetFilterList | null;
|
|
48516
48763
|
/**
|
|
48517
48764
|
* Sets a new value for property {@link #getLiveSearch liveSearch}.
|
|
48518
48765
|
*
|
|
@@ -50927,7 +51174,7 @@ declare namespace sap {
|
|
|
50927
51174
|
* The action to remove or its index or id
|
|
50928
51175
|
*/
|
|
50929
51176
|
vAction: int | string | sap.m.FeedListItemAction
|
|
50930
|
-
): sap.m.FeedListItemAction;
|
|
51177
|
+
): sap.m.FeedListItemAction | null;
|
|
50931
51178
|
/**
|
|
50932
51179
|
* @SINCE 1.52.0
|
|
50933
51180
|
*
|
|
@@ -51824,7 +52071,7 @@ declare namespace sap {
|
|
|
51824
52071
|
* The item to remove or its index or id
|
|
51825
52072
|
*/
|
|
51826
52073
|
vItem: int | string | sap.ui.core.Control
|
|
51827
|
-
): sap.ui.core.Control;
|
|
52074
|
+
): sap.ui.core.Control | null;
|
|
51828
52075
|
/**
|
|
51829
52076
|
* @SINCE 1.36.0
|
|
51830
52077
|
*
|
|
@@ -52124,14 +52371,14 @@ declare namespace sap {
|
|
|
52124
52371
|
/**
|
|
52125
52372
|
* Returns the correct FlexBox item DOM reference.
|
|
52126
52373
|
*
|
|
52127
|
-
* @returns The Element's DOM Element sub DOM Element or null
|
|
52374
|
+
* @returns The Element's DOM Element, sub DOM Element or `null`
|
|
52128
52375
|
*/
|
|
52129
52376
|
getDomRef(
|
|
52130
52377
|
/**
|
|
52131
52378
|
* ID suffix to get the DOMRef for
|
|
52132
52379
|
*/
|
|
52133
52380
|
sSuffix?: string
|
|
52134
|
-
): Element;
|
|
52381
|
+
): Element | null;
|
|
52135
52382
|
/**
|
|
52136
52383
|
* Gets current value of property {@link #getGrowFactor growFactor}.
|
|
52137
52384
|
*
|
|
@@ -52602,7 +52849,7 @@ declare namespace sap {
|
|
|
52602
52849
|
* The control to remove or its index or id
|
|
52603
52850
|
*/
|
|
52604
52851
|
vControl: int | string | sap.m.Link
|
|
52605
|
-
): sap.m.Link;
|
|
52852
|
+
): sap.m.Link | null;
|
|
52606
52853
|
/**
|
|
52607
52854
|
* @SINCE 1.45.5
|
|
52608
52855
|
*
|
|
@@ -53442,7 +53689,8 @@ declare namespace sap {
|
|
|
53442
53689
|
*/
|
|
53443
53690
|
getIcon(): sap.ui.core.Control;
|
|
53444
53691
|
/**
|
|
53445
|
-
* @
|
|
53692
|
+
* @SINCE 1.103
|
|
53693
|
+
* @EXPERIMENTAL (since 1.103)
|
|
53446
53694
|
*
|
|
53447
53695
|
* Gets current value of property {@link #getIconLoaded iconLoaded}.
|
|
53448
53696
|
*
|
|
@@ -53588,7 +53836,7 @@ declare namespace sap {
|
|
|
53588
53836
|
getUrl(): sap.ui.core.URI;
|
|
53589
53837
|
/**
|
|
53590
53838
|
* @SINCE 1.95
|
|
53591
|
-
* @EXPERIMENTAL
|
|
53839
|
+
* @EXPERIMENTAL (since 1.95)
|
|
53592
53840
|
*
|
|
53593
53841
|
* Gets current value of property {@link #getValueColor valueColor}.
|
|
53594
53842
|
*
|
|
@@ -53695,7 +53943,7 @@ declare namespace sap {
|
|
|
53695
53943
|
* The actionButton to remove or its index or id
|
|
53696
53944
|
*/
|
|
53697
53945
|
vActionButton: int | string | sap.m.Button
|
|
53698
|
-
): sap.m.Button;
|
|
53946
|
+
): sap.m.Button | null;
|
|
53699
53947
|
/**
|
|
53700
53948
|
* @EXPERIMENTAL (since 1.96)
|
|
53701
53949
|
*
|
|
@@ -53724,7 +53972,7 @@ declare namespace sap {
|
|
|
53724
53972
|
* The tileContent to remove or its index or id
|
|
53725
53973
|
*/
|
|
53726
53974
|
vTileContent: int | string | sap.m.TileContent
|
|
53727
|
-
): sap.m.TileContent;
|
|
53975
|
+
): sap.m.TileContent | null;
|
|
53728
53976
|
/**
|
|
53729
53977
|
* @SINCE 1.82
|
|
53730
53978
|
*
|
|
@@ -53943,7 +54191,8 @@ declare namespace sap {
|
|
|
53943
54191
|
oIcon: sap.ui.core.Control
|
|
53944
54192
|
): this;
|
|
53945
54193
|
/**
|
|
53946
|
-
* @
|
|
54194
|
+
* @SINCE 1.103
|
|
54195
|
+
* @EXPERIMENTAL (since 1.103)
|
|
53947
54196
|
*
|
|
53948
54197
|
* Sets a new value for property {@link #getIconLoaded iconLoaded}.
|
|
53949
54198
|
*
|
|
@@ -54166,7 +54415,7 @@ declare namespace sap {
|
|
|
54166
54415
|
): this;
|
|
54167
54416
|
/**
|
|
54168
54417
|
* @SINCE 1.95
|
|
54169
|
-
* @EXPERIMENTAL
|
|
54418
|
+
* @EXPERIMENTAL (since 1.95)
|
|
54170
54419
|
*
|
|
54171
54420
|
* Sets a new value for property {@link #getValueColor valueColor}.
|
|
54172
54421
|
*
|
|
@@ -55078,7 +55327,7 @@ declare namespace sap {
|
|
|
55078
55327
|
* The content to remove or its index or id
|
|
55079
55328
|
*/
|
|
55080
55329
|
vContent: int | string | sap.ui.core.Control
|
|
55081
|
-
): sap.ui.core.Control;
|
|
55330
|
+
): sap.ui.core.Control | null;
|
|
55082
55331
|
/**
|
|
55083
55332
|
* Sets a new value for property {@link #getBackgroundDesign backgroundDesign}.
|
|
55084
55333
|
*
|
|
@@ -55255,35 +55504,6 @@ declare namespace sap {
|
|
|
55255
55504
|
sWidth: sap.ui.core.CSSSize
|
|
55256
55505
|
): this;
|
|
55257
55506
|
}
|
|
55258
|
-
/**
|
|
55259
|
-
* Helper Class for implementing the IBar interface. Should be created once per IBar instance.
|
|
55260
|
-
*/
|
|
55261
|
-
class IBarInPageEnabler {
|
|
55262
|
-
constructor();
|
|
55263
|
-
|
|
55264
|
-
/**
|
|
55265
|
-
* Adds the sapMBarChildClass to a control.
|
|
55266
|
-
*/
|
|
55267
|
-
static addChildClassTo(
|
|
55268
|
-
/**
|
|
55269
|
-
* The sap.ui.core.Control to which the sapMBarChildClass will be added
|
|
55270
|
-
*/
|
|
55271
|
-
oControl: sap.ui.core.Control
|
|
55272
|
-
): void;
|
|
55273
|
-
/**
|
|
55274
|
-
* Renders the tooltip for the given control
|
|
55275
|
-
*/
|
|
55276
|
-
static renderTooltip(
|
|
55277
|
-
/**
|
|
55278
|
-
* the RenderManager that can be used for writing to the render output buffer.
|
|
55279
|
-
*/
|
|
55280
|
-
oRM: sap.ui.core.RenderManager,
|
|
55281
|
-
/**
|
|
55282
|
-
* an object representation of the control that should be rendered.
|
|
55283
|
-
*/
|
|
55284
|
-
oControl: sap.ui.core.Control
|
|
55285
|
-
): void;
|
|
55286
|
-
}
|
|
55287
55507
|
/**
|
|
55288
55508
|
* The IconTabBar represents a collection of tabs with associated content. Overview: The IconTabBar can
|
|
55289
55509
|
* be used for navigation within an object, or as a filter. Different types of IconTabBar are used based
|
|
@@ -55671,7 +55891,8 @@ declare namespace sap {
|
|
|
55671
55891
|
*
|
|
55672
55892
|
* Specifies whether tab reordering is enabled. Relevant only for desktop devices. The {@link sap.m.IconTabSeparator
|
|
55673
55893
|
* sap.m.IconTabSeparator} cannot be dragged and dropped Items can be moved around {@link sap.m.IconTabSeparator
|
|
55674
|
-
* sap.m.IconTabSeparator}
|
|
55894
|
+
* sap.m.IconTabSeparator} Reordering is enabled via keyboard using `Ctrl` + arrow keys (Windows) and `Control`
|
|
55895
|
+
* + arrow keys (Mac OS)
|
|
55675
55896
|
*
|
|
55676
55897
|
* Default value is `false`.
|
|
55677
55898
|
*
|
|
@@ -55919,7 +56140,7 @@ declare namespace sap {
|
|
|
55919
56140
|
* The content to remove or its index or id
|
|
55920
56141
|
*/
|
|
55921
56142
|
vContent: int | string | sap.ui.core.Control
|
|
55922
|
-
): sap.ui.core.Control;
|
|
56143
|
+
): sap.ui.core.Control | null;
|
|
55923
56144
|
/**
|
|
55924
56145
|
* Removes a item from the aggregation {@link #getItems items}.
|
|
55925
56146
|
*
|
|
@@ -55930,7 +56151,7 @@ declare namespace sap {
|
|
|
55930
56151
|
* The item to remove or its index or id
|
|
55931
56152
|
*/
|
|
55932
56153
|
vItem: int | string | sap.m.IconTab
|
|
55933
|
-
): sap.m.IconTab;
|
|
56154
|
+
): sap.m.IconTab | null;
|
|
55934
56155
|
/**
|
|
55935
56156
|
* @SINCE 1.26
|
|
55936
56157
|
*
|
|
@@ -56497,7 +56718,7 @@ declare namespace sap {
|
|
|
56497
56718
|
* The content to remove or its index or id
|
|
56498
56719
|
*/
|
|
56499
56720
|
vContent: int | string | sap.ui.core.Control
|
|
56500
|
-
): sap.ui.core.Control;
|
|
56721
|
+
): sap.ui.core.Control | null;
|
|
56501
56722
|
/**
|
|
56502
56723
|
* @SINCE 1.77
|
|
56503
56724
|
*
|
|
@@ -56510,7 +56731,7 @@ declare namespace sap {
|
|
|
56510
56731
|
* The item to remove or its index or id
|
|
56511
56732
|
*/
|
|
56512
56733
|
vItem: int | string | sap.m.IconTab
|
|
56513
|
-
): sap.m.IconTab;
|
|
56734
|
+
): sap.m.IconTab | null;
|
|
56514
56735
|
/**
|
|
56515
56736
|
* Renders this item in the IconTabHeader.
|
|
56516
56737
|
*/
|
|
@@ -56893,7 +57114,8 @@ declare namespace sap {
|
|
|
56893
57114
|
*
|
|
56894
57115
|
* Specifies whether tab reordering is enabled. Relevant only for desktop devices. The {@link sap.m.IconTabSeparator
|
|
56895
57116
|
* sap.m.IconTabSeparator} cannot be dragged and dropped Items can be moved around {@link sap.m.IconTabSeparator
|
|
56896
|
-
* sap.m.IconTabSeparator}
|
|
57117
|
+
* sap.m.IconTabSeparator} Reordering is enabled via keyboard using `Ctrl` + arrow keys (Windows) and `Control`
|
|
57118
|
+
* + arrow keys (Mac OS)
|
|
56897
57119
|
*
|
|
56898
57120
|
* Default value is `false`.
|
|
56899
57121
|
*
|
|
@@ -57064,7 +57286,7 @@ declare namespace sap {
|
|
|
57064
57286
|
* The item to remove or its index or id
|
|
57065
57287
|
*/
|
|
57066
57288
|
vItem: int | string | sap.m.IconTab
|
|
57067
|
-
): sap.m.IconTab;
|
|
57289
|
+
): sap.m.IconTab | null;
|
|
57068
57290
|
/**
|
|
57069
57291
|
* @SINCE 1.80
|
|
57070
57292
|
*
|
|
@@ -57114,7 +57336,8 @@ declare namespace sap {
|
|
|
57114
57336
|
*
|
|
57115
57337
|
* Specifies whether tab reordering is enabled. Relevant only for desktop devices. The {@link sap.m.IconTabSeparator
|
|
57116
57338
|
* sap.m.IconTabSeparator} cannot be dragged and dropped Items can be moved around {@link sap.m.IconTabSeparator
|
|
57117
|
-
* sap.m.IconTabSeparator}
|
|
57339
|
+
* sap.m.IconTabSeparator} Reordering is enabled via keyboard using `Ctrl` + arrow keys (Windows) and `Control`
|
|
57340
|
+
* + arrow keys (Mac OS)
|
|
57118
57341
|
*
|
|
57119
57342
|
* When called with a value of `null` or `undefined`, the default value of the property will be restored.
|
|
57120
57343
|
*
|
|
@@ -57743,7 +57966,7 @@ declare namespace sap {
|
|
|
57743
57966
|
* The additionalContent to remove or its index or id
|
|
57744
57967
|
*/
|
|
57745
57968
|
vAdditionalContent: int | string | sap.m.Button
|
|
57746
|
-
): sap.m.Button;
|
|
57969
|
+
): sap.m.Button | null;
|
|
57747
57970
|
/**
|
|
57748
57971
|
* @SINCE 1.98
|
|
57749
57972
|
*
|
|
@@ -60612,7 +60835,7 @@ declare namespace sap {
|
|
|
60612
60835
|
* The suggestionColumn to remove or its index or id
|
|
60613
60836
|
*/
|
|
60614
60837
|
vSuggestionColumn: int | string | sap.m.Column
|
|
60615
|
-
): sap.m.Column;
|
|
60838
|
+
): sap.m.Column | null;
|
|
60616
60839
|
/**
|
|
60617
60840
|
* Removes suggestion item.
|
|
60618
60841
|
*
|
|
@@ -60640,7 +60863,7 @@ declare namespace sap {
|
|
|
60640
60863
|
| string
|
|
60641
60864
|
| sap.m.ColumnListItem
|
|
60642
60865
|
| sap.m.GroupHeaderListItem
|
|
60643
|
-
): sap.m.ColumnListItem | sap.m.GroupHeaderListItem;
|
|
60866
|
+
): sap.m.ColumnListItem | sap.m.GroupHeaderListItem | null;
|
|
60644
60867
|
/**
|
|
60645
60868
|
* @SINCE 1.61
|
|
60646
60869
|
*
|
|
@@ -62256,7 +62479,7 @@ declare namespace sap {
|
|
|
62256
62479
|
* The content to remove or its index or id
|
|
62257
62480
|
*/
|
|
62258
62481
|
vContent: int | string | sap.ui.core.Control
|
|
62259
|
-
): sap.ui.core.Control;
|
|
62482
|
+
): sap.ui.core.Control | null;
|
|
62260
62483
|
/**
|
|
62261
62484
|
* Sets a new value for property {@link #getLabel label}.
|
|
62262
62485
|
*
|
|
@@ -62989,7 +63212,7 @@ declare namespace sap {
|
|
|
62989
63212
|
* The imageContent to remove or its index or id
|
|
62990
63213
|
*/
|
|
62991
63214
|
vImageContent: int | string | sap.m.LightBoxItem
|
|
62992
|
-
): sap.m.LightBoxItem;
|
|
63215
|
+
): sap.m.LightBoxItem | null;
|
|
62993
63216
|
/**
|
|
62994
63217
|
* Unbinds aggregation {@link #getImageContent imageContent} from model data.
|
|
62995
63218
|
*
|
|
@@ -65522,7 +65745,7 @@ declare namespace sap {
|
|
|
65522
65745
|
* The item to remove or its index or id
|
|
65523
65746
|
*/
|
|
65524
65747
|
vItem: int | string | sap.m.ListItemBase
|
|
65525
|
-
): sap.m.ListItemBase;
|
|
65748
|
+
): sap.m.ListItemBase | null;
|
|
65526
65749
|
/**
|
|
65527
65750
|
* Removes visible selections of the current selection mode.
|
|
65528
65751
|
*/
|
|
@@ -67017,7 +67240,7 @@ declare namespace sap {
|
|
|
67017
67240
|
* The rule to remove or its index or id
|
|
67018
67241
|
*/
|
|
67019
67242
|
vRule: int | string | sap.m.MaskInputRule
|
|
67020
|
-
): sap.m.MaskInputRule;
|
|
67243
|
+
): sap.m.MaskInputRule | null;
|
|
67021
67244
|
/**
|
|
67022
67245
|
* Sets a new value for property {@link #getMask mask}.
|
|
67023
67246
|
*
|
|
@@ -67563,7 +67786,7 @@ declare namespace sap {
|
|
|
67563
67786
|
* The item to remove or its index or id
|
|
67564
67787
|
*/
|
|
67565
67788
|
vItem: int | string | sap.m.MenuItem
|
|
67566
|
-
): sap.m.MenuItem;
|
|
67789
|
+
): sap.m.MenuItem | null;
|
|
67567
67790
|
/**
|
|
67568
67791
|
* Sets the title of the `Menu`.
|
|
67569
67792
|
*
|
|
@@ -68674,7 +68897,7 @@ declare namespace sap {
|
|
|
68674
68897
|
* The item to remove or its index or id
|
|
68675
68898
|
*/
|
|
68676
68899
|
vItem: int | string | sap.m.MenuItem
|
|
68677
|
-
): sap.m.MenuItem;
|
|
68900
|
+
): sap.m.MenuItem | null;
|
|
68678
68901
|
/**
|
|
68679
68902
|
* Sets a new value for property {@link #getIcon icon}.
|
|
68680
68903
|
*
|
|
@@ -69515,7 +69738,7 @@ declare namespace sap {
|
|
|
69515
69738
|
* The button to remove or its index or id
|
|
69516
69739
|
*/
|
|
69517
69740
|
vButton: int | string | sap.m.Button
|
|
69518
|
-
): sap.m.Button;
|
|
69741
|
+
): sap.m.Button | null;
|
|
69519
69742
|
/**
|
|
69520
69743
|
* Sets the aggregated {@link #getCustomDescription customDescription}.
|
|
69521
69744
|
*
|
|
@@ -70715,7 +70938,7 @@ declare namespace sap {
|
|
|
70715
70938
|
* The item to remove or its index or id
|
|
70716
70939
|
*/
|
|
70717
70940
|
vItem: int | string | sap.m.MessageItem | sap.m.MessagePopoverItem
|
|
70718
|
-
): sap.m.MessageItem | sap.m.MessagePopoverItem;
|
|
70941
|
+
): sap.m.MessageItem | sap.m.MessagePopoverItem | null;
|
|
70719
70942
|
/**
|
|
70720
70943
|
* Sets a new value for property {@link #getAsyncDescriptionHandler asyncDescriptionHandler}.
|
|
70721
70944
|
*
|
|
@@ -71993,7 +72216,7 @@ declare namespace sap {
|
|
|
71993
72216
|
* The item to remove or its index or id
|
|
71994
72217
|
*/
|
|
71995
72218
|
vItem: int | string | sap.m.MessageItem
|
|
71996
|
-
): sap.m.MessageItem;
|
|
72219
|
+
): sap.m.MessageItem | null;
|
|
71997
72220
|
/**
|
|
71998
72221
|
* Sets a new value for property {@link #getAsyncDescriptionHandler asyncDescriptionHandler}.
|
|
71999
72222
|
*
|
|
@@ -72477,16 +72700,16 @@ declare namespace sap {
|
|
|
72477
72700
|
*/
|
|
72478
72701
|
removeAllSelectedItems(): sap.ui.core.ID[];
|
|
72479
72702
|
/**
|
|
72480
|
-
* Removes
|
|
72703
|
+
* Removes a selected item from the association named `selectedItems`.
|
|
72481
72704
|
*
|
|
72482
|
-
* @returns The removed
|
|
72705
|
+
* @returns The removed item or `null`
|
|
72483
72706
|
*/
|
|
72484
72707
|
removeSelectedItem(
|
|
72485
72708
|
/**
|
|
72486
|
-
* The item to be removed
|
|
72709
|
+
* The item to be removed or its ID
|
|
72487
72710
|
*/
|
|
72488
|
-
oItem: sap.ui.core.Item | sap.ui.core.ID
|
|
72489
|
-
): sap.ui.core.
|
|
72711
|
+
oItem: sap.ui.core.Item | sap.ui.core.ID
|
|
72712
|
+
): sap.ui.core.Item | null;
|
|
72490
72713
|
/**
|
|
72491
72714
|
* Removes selected items. Only items with valid keys are removed.
|
|
72492
72715
|
*
|
|
@@ -73128,7 +73351,7 @@ declare namespace sap {
|
|
|
73128
73351
|
* The token to remove or its index or id
|
|
73129
73352
|
*/
|
|
73130
73353
|
vToken: int | string | sap.m.Token
|
|
73131
|
-
): sap.m.Token;
|
|
73354
|
+
): sap.m.Token | null;
|
|
73132
73355
|
/**
|
|
73133
73356
|
* Function removes a validation callback.
|
|
73134
73357
|
*/
|
|
@@ -73800,16 +74023,16 @@ declare namespace sap {
|
|
|
73800
74023
|
*/
|
|
73801
74024
|
getInitialPage(): sap.ui.core.ID;
|
|
73802
74025
|
/**
|
|
73803
|
-
* Returns the control with the given ID from the
|
|
74026
|
+
* Returns the control with the given ID from the `pages` aggregation (if available).
|
|
73804
74027
|
*
|
|
73805
|
-
* @returns The control with the given ID or null if it doesn
|
|
74028
|
+
* @returns The control with the given ID or `null` if it doesn't exist
|
|
73806
74029
|
*/
|
|
73807
74030
|
getPage(
|
|
73808
74031
|
/**
|
|
73809
74032
|
* The ID of the aggregated control to find
|
|
73810
74033
|
*/
|
|
73811
74034
|
pageId: string
|
|
73812
|
-
): sap.ui.core.Control;
|
|
74035
|
+
): sap.ui.core.Control | null;
|
|
73813
74036
|
/**
|
|
73814
74037
|
* Gets content of aggregation {@link #getPages pages}.
|
|
73815
74038
|
*
|
|
@@ -73945,7 +74168,7 @@ declare namespace sap {
|
|
|
73945
74168
|
/**
|
|
73946
74169
|
* Removes a page.
|
|
73947
74170
|
*
|
|
73948
|
-
* @returns the removed page or null
|
|
74171
|
+
* @returns the removed page or `null`
|
|
73949
74172
|
*/
|
|
73950
74173
|
removePage(
|
|
73951
74174
|
/**
|
|
@@ -73953,7 +74176,7 @@ declare namespace sap {
|
|
|
73953
74176
|
* a negative value or a value greater or equal than the current size of the aggregation, nothing is removed.
|
|
73954
74177
|
*/
|
|
73955
74178
|
vPage: int | string | sap.ui.core.Control
|
|
73956
|
-
): sap.ui.core.Control;
|
|
74179
|
+
): sap.ui.core.Control | null;
|
|
73957
74180
|
/**
|
|
73958
74181
|
* @SINCE 1.30
|
|
73959
74182
|
*
|
|
@@ -74723,7 +74946,7 @@ declare namespace sap {
|
|
|
74723
74946
|
* The button to remove or its index or id
|
|
74724
74947
|
*/
|
|
74725
74948
|
vButton: int | string | sap.m.Button
|
|
74726
|
-
): sap.m.Button;
|
|
74949
|
+
): sap.m.Button | null;
|
|
74727
74950
|
/**
|
|
74728
74951
|
* Sets a new value for property {@link #getAuthorName authorName}.
|
|
74729
74952
|
*
|
|
@@ -75160,7 +75383,7 @@ declare namespace sap {
|
|
|
75160
75383
|
* The item to remove or its index or id
|
|
75161
75384
|
*/
|
|
75162
75385
|
vItem: int | string | sap.m.NotificationListItem
|
|
75163
|
-
): sap.m.NotificationListItem;
|
|
75386
|
+
): sap.m.NotificationListItem | null;
|
|
75164
75387
|
/**
|
|
75165
75388
|
* @deprecated (since 1.73)
|
|
75166
75389
|
*
|
|
@@ -77536,7 +77759,7 @@ declare namespace sap {
|
|
|
77536
77759
|
* The additionalNumber to remove or its index or id
|
|
77537
77760
|
*/
|
|
77538
77761
|
vAdditionalNumber: int | string | sap.m.ObjectNumber
|
|
77539
|
-
): sap.m.ObjectNumber;
|
|
77762
|
+
): sap.m.ObjectNumber | null;
|
|
77540
77763
|
/**
|
|
77541
77764
|
* @SINCE 1.38.0
|
|
77542
77765
|
*
|
|
@@ -77617,7 +77840,7 @@ declare namespace sap {
|
|
|
77617
77840
|
* The attribute to remove or its index or id
|
|
77618
77841
|
*/
|
|
77619
77842
|
vAttribute: int | string | sap.m.ObjectAttribute
|
|
77620
|
-
): sap.m.ObjectAttribute;
|
|
77843
|
+
): sap.m.ObjectAttribute | null;
|
|
77621
77844
|
/**
|
|
77622
77845
|
* Removes a marker from the aggregation {@link #getMarkers markers}.
|
|
77623
77846
|
*
|
|
@@ -77628,7 +77851,7 @@ declare namespace sap {
|
|
|
77628
77851
|
* The marker to remove or its index or id
|
|
77629
77852
|
*/
|
|
77630
77853
|
vMarker: int | string | sap.m.ObjectMarker
|
|
77631
|
-
): sap.m.ObjectMarker;
|
|
77854
|
+
): sap.m.ObjectMarker | null;
|
|
77632
77855
|
/**
|
|
77633
77856
|
* @SINCE 1.16.0
|
|
77634
77857
|
*
|
|
@@ -77641,7 +77864,7 @@ declare namespace sap {
|
|
|
77641
77864
|
* The status to remove or its index or id
|
|
77642
77865
|
*/
|
|
77643
77866
|
vStatus: int | string | sap.ui.core.Control
|
|
77644
|
-
): sap.ui.core.Control;
|
|
77867
|
+
): sap.ui.core.Control | null;
|
|
77645
77868
|
/**
|
|
77646
77869
|
* Sets a new value for property {@link #getBackgroundDesign backgroundDesign}.
|
|
77647
77870
|
*
|
|
@@ -79031,7 +79254,7 @@ declare namespace sap {
|
|
|
79031
79254
|
* The attribute to remove or its index or id
|
|
79032
79255
|
*/
|
|
79033
79256
|
vAttribute: int | string | sap.m.ObjectAttribute
|
|
79034
|
-
): sap.m.ObjectAttribute;
|
|
79257
|
+
): sap.m.ObjectAttribute | null;
|
|
79035
79258
|
/**
|
|
79036
79259
|
* Removes a marker from the aggregation {@link #getMarkers markers}.
|
|
79037
79260
|
*
|
|
@@ -79042,7 +79265,7 @@ declare namespace sap {
|
|
|
79042
79265
|
* The marker to remove or its index or id
|
|
79043
79266
|
*/
|
|
79044
79267
|
vMarker: int | string | sap.m.ObjectMarker
|
|
79045
|
-
): sap.m.ObjectMarker;
|
|
79268
|
+
): sap.m.ObjectMarker | null;
|
|
79046
79269
|
/**
|
|
79047
79270
|
* Sets a new value for property {@link #getActiveIcon activeIcon}.
|
|
79048
79271
|
*
|
|
@@ -80609,10 +80832,12 @@ declare namespace sap {
|
|
|
80609
80832
|
* Overflow Behavior: By default, only the following controls can move to the overflow area:
|
|
80610
80833
|
*
|
|
80611
80834
|
*
|
|
80835
|
+
* - {@link sap.m.Breadcrumbs}
|
|
80612
80836
|
* - {@link sap.m.Button}
|
|
80613
80837
|
* - {@link sap.m.CheckBox}
|
|
80614
80838
|
* - {@link sap.m.ComboBox}
|
|
80615
80839
|
* - {@link sap.m.DatePicker}
|
|
80840
|
+
* - {@link sap.m.DateRangeSelection}
|
|
80616
80841
|
* - {@link sap.m.DateTimeInput}
|
|
80617
80842
|
* - {@link sap.m.DateTimePicker}
|
|
80618
80843
|
* - {@link sap.m.GenericTag}
|
|
@@ -80635,10 +80860,10 @@ declare namespace sap {
|
|
|
80635
80860
|
*
|
|
80636
80861
|
* **Note:** The `OverflowToolbar` is an adaptive container that checks the available width and hides the
|
|
80637
80862
|
* part of its content that doesn't fit. It is intended that simple controls, such as {@link sap.m.Button}
|
|
80638
|
-
* and {@link sap.m.Label} are used as content. Embedding other adaptive container controls
|
|
80639
|
-
* sap.m.Breadcrumbs}, results in competition for the available space - both controls calculate
|
|
80640
|
-
* space based on the other one's size and both change their width at the same time, leading
|
|
80641
|
-
* distributed space.
|
|
80863
|
+
* and {@link sap.m.Label} are used as content. Embedding other adaptive container controls (with the exception
|
|
80864
|
+
* of {@link sap.m.Breadcrumbs}), results in competition for the available space - both controls calculate
|
|
80865
|
+
* the available space based on the other one's size and both change their width at the same time, leading
|
|
80866
|
+
* to incorrectly distributed space.
|
|
80642
80867
|
*
|
|
80643
80868
|
* Responsive behavior:
|
|
80644
80869
|
*
|
|
@@ -81797,7 +82022,7 @@ declare namespace sap {
|
|
|
81797
82022
|
* The columnsItem to remove or its index or id
|
|
81798
82023
|
*/
|
|
81799
82024
|
vColumnsItem: int | string | sap.m.P13nColumnsItem
|
|
81800
|
-
): sap.m.P13nColumnsItem;
|
|
82025
|
+
): sap.m.P13nColumnsItem | null;
|
|
81801
82026
|
/**
|
|
81802
82027
|
* @SINCE 1.26.7
|
|
81803
82028
|
*
|
|
@@ -82845,7 +83070,7 @@ declare namespace sap {
|
|
|
82845
83070
|
* The panel to remove or its index or id
|
|
82846
83071
|
*/
|
|
82847
83072
|
vPanel: int | string | sap.m.P13nPanel
|
|
82848
|
-
): sap.m.P13nPanel;
|
|
83073
|
+
): sap.m.P13nPanel | null;
|
|
82849
83074
|
/**
|
|
82850
83075
|
* Sets a new value for property {@link #getInitialVisiblePanelType initialVisiblePanelType}.
|
|
82851
83076
|
*
|
|
@@ -83484,7 +83709,7 @@ declare namespace sap {
|
|
|
83484
83709
|
* The availableChartType to remove or its index or id
|
|
83485
83710
|
*/
|
|
83486
83711
|
vAvailableChartType: int | string | sap.ui.core.Item
|
|
83487
|
-
): sap.ui.core.Item;
|
|
83712
|
+
): sap.ui.core.Item | null;
|
|
83488
83713
|
/**
|
|
83489
83714
|
* Removes a dimMeasureItem from the aggregation {@link #getDimMeasureItems dimMeasureItems}.
|
|
83490
83715
|
*
|
|
@@ -83495,7 +83720,7 @@ declare namespace sap {
|
|
|
83495
83720
|
* The dimMeasureItem to remove or its index or id
|
|
83496
83721
|
*/
|
|
83497
83722
|
vDimMeasureItem: int | string | sap.m.P13nDimMeasureItem
|
|
83498
|
-
): sap.m.P13nDimMeasureItem;
|
|
83723
|
+
): sap.m.P13nDimMeasureItem | null;
|
|
83499
83724
|
/**
|
|
83500
83725
|
* Sets a new value for property {@link #getChartTypeKey chartTypeKey}.
|
|
83501
83726
|
*
|
|
@@ -84272,7 +84497,7 @@ declare namespace sap {
|
|
|
84272
84497
|
* The filterItem to remove or its index or id
|
|
84273
84498
|
*/
|
|
84274
84499
|
vFilterItem: int | string | sap.m.P13nFilterItem
|
|
84275
|
-
): sap.m.P13nFilterItem;
|
|
84500
|
+
): sap.m.P13nFilterItem | null;
|
|
84276
84501
|
/**
|
|
84277
84502
|
* @SINCE 1.28
|
|
84278
84503
|
*
|
|
@@ -84977,7 +85202,7 @@ declare namespace sap {
|
|
|
84977
85202
|
* The groupItem to remove or its index or id
|
|
84978
85203
|
*/
|
|
84979
85204
|
vGroupItem: int | string | sap.m.P13nGroupItem
|
|
84980
|
-
): sap.m.P13nGroupItem;
|
|
85205
|
+
): sap.m.P13nGroupItem | null;
|
|
84981
85206
|
/**
|
|
84982
85207
|
* @SINCE 1.28
|
|
84983
85208
|
*
|
|
@@ -85975,7 +86200,7 @@ declare namespace sap {
|
|
|
85975
86200
|
* The item to remove or its index or id
|
|
85976
86201
|
*/
|
|
85977
86202
|
vItem: int | string | sap.m.P13nItem
|
|
85978
|
-
): sap.m.P13nItem;
|
|
86203
|
+
): sap.m.P13nItem | null;
|
|
85979
86204
|
/**
|
|
85980
86205
|
* Sets a new value for property {@link #getChangeNotifier changeNotifier}.
|
|
85981
86206
|
*
|
|
@@ -86608,7 +86833,7 @@ declare namespace sap {
|
|
|
86608
86833
|
* The sortItem to remove or its index or id
|
|
86609
86834
|
*/
|
|
86610
86835
|
vSortItem: int | string | sap.m.P13nSortItem
|
|
86611
|
-
): sap.m.P13nSortItem;
|
|
86836
|
+
): sap.m.P13nSortItem | null;
|
|
86612
86837
|
/**
|
|
86613
86838
|
* @SINCE 1.28
|
|
86614
86839
|
*
|
|
@@ -87288,7 +87513,7 @@ declare namespace sap {
|
|
|
87288
87513
|
* The content to remove or its index or id
|
|
87289
87514
|
*/
|
|
87290
87515
|
vContent: int | string | sap.ui.core.Control
|
|
87291
|
-
): sap.ui.core.Control;
|
|
87516
|
+
): sap.ui.core.Control | null;
|
|
87292
87517
|
/**
|
|
87293
87518
|
* Removes a headerContent from the aggregation {@link #getHeaderContent headerContent}.
|
|
87294
87519
|
*
|
|
@@ -87299,7 +87524,7 @@ declare namespace sap {
|
|
|
87299
87524
|
* The headerContent to remove or its index or id
|
|
87300
87525
|
*/
|
|
87301
87526
|
vHeaderContent: int | string | sap.ui.core.Control
|
|
87302
|
-
): sap.ui.core.Control;
|
|
87527
|
+
): sap.ui.core.Control | null;
|
|
87303
87528
|
/**
|
|
87304
87529
|
* Scrolls to the given position. Only available if enableScrolling is set to "true".
|
|
87305
87530
|
*
|
|
@@ -88707,7 +88932,7 @@ declare namespace sap {
|
|
|
88707
88932
|
* The content to remove or its index or id
|
|
88708
88933
|
*/
|
|
88709
88934
|
vContent: int | string | sap.ui.core.Control
|
|
88710
|
-
): sap.ui.core.Control;
|
|
88935
|
+
): sap.ui.core.Control | null;
|
|
88711
88936
|
/**
|
|
88712
88937
|
* @SINCE 1.46
|
|
88713
88938
|
*
|
|
@@ -89388,7 +89613,7 @@ declare namespace sap {
|
|
|
89388
89613
|
* The popupButton to remove or its index or id
|
|
89389
89614
|
*/
|
|
89390
89615
|
vPopupButton: int | string | sap.m.Button
|
|
89391
|
-
): sap.m.Button;
|
|
89616
|
+
): sap.m.Button | null;
|
|
89392
89617
|
/**
|
|
89393
89618
|
* Sets a new value for property {@link #getDisplayType displayType}.
|
|
89394
89619
|
*
|
|
@@ -90832,7 +91057,7 @@ declare namespace sap {
|
|
|
90832
91057
|
* The row to remove or its index or id
|
|
90833
91058
|
*/
|
|
90834
91059
|
vRow: int | string | sap.m.PlanningCalendarRow
|
|
90835
|
-
): sap.m.PlanningCalendarRow;
|
|
91060
|
+
): sap.m.PlanningCalendarRow | null;
|
|
90836
91061
|
/**
|
|
90837
91062
|
* Removes a specialDate from the aggregation {@link #getSpecialDates specialDates}.
|
|
90838
91063
|
*
|
|
@@ -90843,7 +91068,7 @@ declare namespace sap {
|
|
|
90843
91068
|
* The specialDate to remove or its index or id
|
|
90844
91069
|
*/
|
|
90845
91070
|
vSpecialDate: int | string | sap.ui.unified.DateTypeRange
|
|
90846
|
-
): sap.ui.unified.DateTypeRange;
|
|
91071
|
+
): sap.ui.unified.DateTypeRange | null;
|
|
90847
91072
|
/**
|
|
90848
91073
|
* Removes a toolbarContent from the aggregation {@link #getToolbarContent toolbarContent}.
|
|
90849
91074
|
*
|
|
@@ -90854,7 +91079,7 @@ declare namespace sap {
|
|
|
90854
91079
|
* The toolbarContent to remove or its index or id
|
|
90855
91080
|
*/
|
|
90856
91081
|
vToolbarContent: int | string | sap.ui.core.Control
|
|
90857
|
-
): sap.ui.core.Control;
|
|
91082
|
+
): sap.ui.core.Control | null;
|
|
90858
91083
|
/**
|
|
90859
91084
|
* Removes a view from the aggregation {@link #getViews views}.
|
|
90860
91085
|
*
|
|
@@ -90865,7 +91090,7 @@ declare namespace sap {
|
|
|
90865
91090
|
* The view to remove or its index or id
|
|
90866
91091
|
*/
|
|
90867
91092
|
vView: int | string | sap.m.PlanningCalendarView
|
|
90868
|
-
): sap.m.PlanningCalendarView;
|
|
91093
|
+
): sap.m.PlanningCalendarView | null;
|
|
90869
91094
|
/**
|
|
90870
91095
|
* Selects or deselects all `PlanningCalendarRows`.
|
|
90871
91096
|
*
|
|
@@ -91481,7 +91706,7 @@ declare namespace sap {
|
|
|
91481
91706
|
* The appointmentItem to remove or its index or id
|
|
91482
91707
|
*/
|
|
91483
91708
|
vAppointmentItem: int | string | sap.ui.unified.CalendarLegendItem
|
|
91484
|
-
): sap.ui.unified.CalendarLegendItem;
|
|
91709
|
+
): sap.ui.unified.CalendarLegendItem | null;
|
|
91485
91710
|
/**
|
|
91486
91711
|
* Sets a new value for property {@link #getAppointmentItemsHeader appointmentItemsHeader}.
|
|
91487
91712
|
*
|
|
@@ -92469,7 +92694,7 @@ declare namespace sap {
|
|
|
92469
92694
|
* The appointment to remove or its index or id
|
|
92470
92695
|
*/
|
|
92471
92696
|
vAppointment: int | string | sap.ui.unified.CalendarAppointment
|
|
92472
|
-
): sap.ui.unified.CalendarAppointment;
|
|
92697
|
+
): sap.ui.unified.CalendarAppointment | null;
|
|
92473
92698
|
/**
|
|
92474
92699
|
* @SINCE 1.67
|
|
92475
92700
|
* @EXPERIMENTAL (since 1.67)
|
|
@@ -92483,7 +92708,7 @@ declare namespace sap {
|
|
|
92483
92708
|
* The headerContent to remove or its index or id
|
|
92484
92709
|
*/
|
|
92485
92710
|
vHeaderContent: int | string | sap.ui.core.Control
|
|
92486
|
-
): sap.ui.core.Control;
|
|
92711
|
+
): sap.ui.core.Control | null;
|
|
92487
92712
|
/**
|
|
92488
92713
|
* Removes a intervalHeader from the aggregation {@link #getIntervalHeaders intervalHeaders}.
|
|
92489
92714
|
*
|
|
@@ -92494,7 +92719,7 @@ declare namespace sap {
|
|
|
92494
92719
|
* The intervalHeader to remove or its index or id
|
|
92495
92720
|
*/
|
|
92496
92721
|
vIntervalHeader: int | string | sap.ui.unified.CalendarAppointment
|
|
92497
|
-
): sap.ui.unified.CalendarAppointment;
|
|
92722
|
+
): sap.ui.unified.CalendarAppointment | null;
|
|
92498
92723
|
/**
|
|
92499
92724
|
* @SINCE 1.56
|
|
92500
92725
|
*
|
|
@@ -92507,7 +92732,7 @@ declare namespace sap {
|
|
|
92507
92732
|
* The specialDate to remove or its index or id
|
|
92508
92733
|
*/
|
|
92509
92734
|
vSpecialDate: int | string | sap.ui.unified.DateTypeRange
|
|
92510
|
-
): sap.ui.unified.DateTypeRange;
|
|
92735
|
+
): sap.ui.unified.DateTypeRange | null;
|
|
92511
92736
|
/**
|
|
92512
92737
|
* @SINCE 1.56
|
|
92513
92738
|
*
|
|
@@ -94078,7 +94303,7 @@ declare namespace sap {
|
|
|
94078
94303
|
* The content to remove or its index or id
|
|
94079
94304
|
*/
|
|
94080
94305
|
vContent: int | string | sap.ui.core.Control
|
|
94081
|
-
): sap.ui.core.Control;
|
|
94306
|
+
): sap.ui.core.Control | null;
|
|
94082
94307
|
/**
|
|
94083
94308
|
* @SINCE 1.15.1
|
|
94084
94309
|
*
|
|
@@ -96094,7 +96319,7 @@ declare namespace sap {
|
|
|
96094
96319
|
* The page to remove or its index or id
|
|
96095
96320
|
*/
|
|
96096
96321
|
vPage: int | string | sap.m.QuickViewPage
|
|
96097
|
-
): sap.m.QuickViewPage;
|
|
96322
|
+
): sap.m.QuickViewPage | null;
|
|
96098
96323
|
/**
|
|
96099
96324
|
* Unbinds aggregation {@link #getPages pages} from model data.
|
|
96100
96325
|
*
|
|
@@ -96368,7 +96593,7 @@ declare namespace sap {
|
|
|
96368
96593
|
* The element to remove or its index or id
|
|
96369
96594
|
*/
|
|
96370
96595
|
vElement: int | string | sap.m.QuickViewGroupElement
|
|
96371
|
-
): sap.m.QuickViewGroupElement;
|
|
96596
|
+
): sap.m.QuickViewGroupElement | null;
|
|
96372
96597
|
/**
|
|
96373
96598
|
* Sets a new value for property {@link #getHeading heading}.
|
|
96374
96599
|
*
|
|
@@ -96972,7 +97197,7 @@ declare namespace sap {
|
|
|
96972
97197
|
* The group to remove or its index or id
|
|
96973
97198
|
*/
|
|
96974
97199
|
vGroup: int | string | sap.m.QuickViewGroup
|
|
96975
|
-
): sap.m.QuickViewGroup;
|
|
97200
|
+
): sap.m.QuickViewGroup | null;
|
|
96976
97201
|
/**
|
|
96977
97202
|
* @SINCE 1.92
|
|
96978
97203
|
*
|
|
@@ -98114,9 +98339,9 @@ declare namespace sap {
|
|
|
98114
98339
|
/**
|
|
98115
98340
|
* Removes all radio buttons.
|
|
98116
98341
|
*
|
|
98117
|
-
* @returns Array of removed buttons
|
|
98342
|
+
* @returns Array of removed buttons.
|
|
98118
98343
|
*/
|
|
98119
|
-
removeAllButtons():
|
|
98344
|
+
removeAllButtons(): sap.m.RadioButton[];
|
|
98120
98345
|
/**
|
|
98121
98346
|
* Removes an ariaDescribedBy from the association named {@link #getAriaDescribedBy ariaDescribedBy}.
|
|
98122
98347
|
*
|
|
@@ -99810,7 +100035,7 @@ declare namespace sap {
|
|
|
99810
100035
|
* The content to remove or its index or id
|
|
99811
100036
|
*/
|
|
99812
100037
|
vContent: int | string | sap.ui.core.Control
|
|
99813
|
-
): sap.ui.core.Control;
|
|
100038
|
+
): sap.ui.core.Control | null;
|
|
99814
100039
|
/**
|
|
99815
100040
|
* Setter for beginButton aggregation
|
|
99816
100041
|
*
|
|
@@ -100439,7 +100664,7 @@ declare namespace sap {
|
|
|
100439
100664
|
* The content to remove or its index or id
|
|
100440
100665
|
*/
|
|
100441
100666
|
vContent: int | string | sap.ui.core.Control
|
|
100442
|
-
): sap.ui.core.Control;
|
|
100667
|
+
): sap.ui.core.Control | null;
|
|
100443
100668
|
/**
|
|
100444
100669
|
* Scrolls to the given position. When called while the control is not rendered (yet), the scrolling position
|
|
100445
100670
|
* is still applied, but there is no animation.
|
|
@@ -101335,7 +101560,7 @@ declare namespace sap {
|
|
|
101335
101560
|
* The suggestionItem to remove or its index or id
|
|
101336
101561
|
*/
|
|
101337
101562
|
vSuggestionItem: int | string | sap.m.SuggestionItem
|
|
101338
|
-
): sap.m.SuggestionItem;
|
|
101563
|
+
): sap.m.SuggestionItem | null;
|
|
101339
101564
|
/**
|
|
101340
101565
|
* Sets a new value for property {@link #getEnabled enabled}.
|
|
101341
101566
|
*
|
|
@@ -102178,7 +102403,7 @@ declare namespace sap {
|
|
|
102178
102403
|
* The button to remove or its index or id
|
|
102179
102404
|
*/
|
|
102180
102405
|
vButton: int | string | sap.m.Button
|
|
102181
|
-
): sap.m.Button;
|
|
102406
|
+
): sap.m.Button | null;
|
|
102182
102407
|
/**
|
|
102183
102408
|
* Removes an item from `items` aggregation.
|
|
102184
102409
|
*/
|
|
@@ -102919,7 +103144,7 @@ declare namespace sap {
|
|
|
102919
103144
|
*
|
|
102920
103145
|
* Gets the first item from the aggregation named `items`.
|
|
102921
103146
|
*
|
|
102922
|
-
* @returns The first item, or null if there are no items.
|
|
103147
|
+
* @returns The first item, or `null` if there are no items.
|
|
102923
103148
|
*/
|
|
102924
103149
|
getFirstItem(): sap.ui.core.Item | null;
|
|
102925
103150
|
/**
|
|
@@ -102967,7 +103192,7 @@ declare namespace sap {
|
|
|
102967
103192
|
*
|
|
102968
103193
|
* Gets the item from the aggregation named `items` at the given 0-based index.
|
|
102969
103194
|
*
|
|
102970
|
-
* @returns Item at the given index, or null if none.
|
|
103195
|
+
* @returns Item at the given index, or `null` if none.
|
|
102971
103196
|
*/
|
|
102972
103197
|
getItemAt(
|
|
102973
103198
|
/**
|
|
@@ -103003,7 +103228,7 @@ declare namespace sap {
|
|
|
103003
103228
|
*
|
|
103004
103229
|
* Gets the last item from the aggregation named `items`.
|
|
103005
103230
|
*
|
|
103006
|
-
* @returns The last item, or null if there are no items.
|
|
103231
|
+
* @returns The last item, or `null` if there are no items.
|
|
103007
103232
|
*/
|
|
103008
103233
|
getLastItem(): sap.ui.core.Item | null;
|
|
103009
103234
|
/**
|
|
@@ -103282,14 +103507,14 @@ declare namespace sap {
|
|
|
103282
103507
|
/**
|
|
103283
103508
|
* Removes an item from the aggregation named `items`.
|
|
103284
103509
|
*
|
|
103285
|
-
* @returns The removed item or null
|
|
103510
|
+
* @returns The removed item or `null`.
|
|
103286
103511
|
*/
|
|
103287
103512
|
removeItem(
|
|
103288
103513
|
/**
|
|
103289
103514
|
* The item to be removed or its index or ID.
|
|
103290
103515
|
*/
|
|
103291
103516
|
vItem: int | string | sap.ui.core.Item
|
|
103292
|
-
): sap.ui.core.Item;
|
|
103517
|
+
): sap.ui.core.Item | null;
|
|
103293
103518
|
/**
|
|
103294
103519
|
* @SINCE 1.16
|
|
103295
103520
|
*
|
|
@@ -104214,9 +104439,9 @@ declare namespace sap {
|
|
|
104214
104439
|
/**
|
|
104215
104440
|
* Forward method to the inner dialog: getDomRef
|
|
104216
104441
|
*
|
|
104217
|
-
* @returns The Element's DOM Element sub DOM Element or null
|
|
104442
|
+
* @returns The Element's DOM Element, sub DOM Element or `null`
|
|
104218
104443
|
*/
|
|
104219
|
-
getDomRef(): Element;
|
|
104444
|
+
getDomRef(): Element | null;
|
|
104220
104445
|
/**
|
|
104221
104446
|
* @SINCE 1.70
|
|
104222
104447
|
*
|
|
@@ -104427,7 +104652,7 @@ declare namespace sap {
|
|
|
104427
104652
|
* The item to remove or its index or id
|
|
104428
104653
|
*/
|
|
104429
104654
|
vItem: int | string | sap.m.ListItemBase
|
|
104430
|
-
): sap.m.ListItemBase;
|
|
104655
|
+
): sap.m.ListItemBase | null;
|
|
104431
104656
|
/**
|
|
104432
104657
|
* Forward method to the inner dialog: removeStyleClass
|
|
104433
104658
|
*
|
|
@@ -105652,7 +105877,7 @@ declare namespace sap {
|
|
|
105652
105877
|
* The action to remove or its index or id
|
|
105653
105878
|
*/
|
|
105654
105879
|
vAction: int | string | sap.ui.core.Item
|
|
105655
|
-
): sap.ui.core.Item;
|
|
105880
|
+
): sap.ui.core.Item | null;
|
|
105656
105881
|
/**
|
|
105657
105882
|
* Removes a actionGroup from the aggregation {@link #getActionGroups actionGroups}.
|
|
105658
105883
|
*
|
|
@@ -105663,7 +105888,7 @@ declare namespace sap {
|
|
|
105663
105888
|
* The actionGroup to remove or its index or id
|
|
105664
105889
|
*/
|
|
105665
105890
|
vActionGroup: int | string | sap.ui.core.Item
|
|
105666
|
-
): sap.ui.core.Item;
|
|
105891
|
+
): sap.ui.core.Item | null;
|
|
105667
105892
|
/**
|
|
105668
105893
|
* Removes all the controls from the aggregation {@link #getActionGroups actionGroups}.
|
|
105669
105894
|
*
|
|
@@ -105698,7 +105923,7 @@ declare namespace sap {
|
|
|
105698
105923
|
* The item to remove or its index or id
|
|
105699
105924
|
*/
|
|
105700
105925
|
vItem: int | string | sap.m.SelectionDetailsItem
|
|
105701
|
-
): sap.m.SelectionDetailsItem;
|
|
105926
|
+
): sap.m.SelectionDetailsItem | null;
|
|
105702
105927
|
/**
|
|
105703
105928
|
* Sets the popover to modal or non-modal based on the given parameter. This only takes effect on desktop
|
|
105704
105929
|
* or tablet. Please see the documentation {@link sap.m.ResponsivePopover#modal}.
|
|
@@ -106052,7 +106277,7 @@ declare namespace sap {
|
|
|
106052
106277
|
* The action to remove or its index or id
|
|
106053
106278
|
*/
|
|
106054
106279
|
vAction: int | string | sap.ui.core.Item
|
|
106055
|
-
): sap.ui.core.Item;
|
|
106280
|
+
): sap.ui.core.Item | null;
|
|
106056
106281
|
/**
|
|
106057
106282
|
* Removes a actionGroup from the aggregation {@link #getActionGroups actionGroups}.
|
|
106058
106283
|
*
|
|
@@ -106063,7 +106288,7 @@ declare namespace sap {
|
|
|
106063
106288
|
* The actionGroup to remove or its index or id
|
|
106064
106289
|
*/
|
|
106065
106290
|
vActionGroup: int | string | sap.ui.core.Item
|
|
106066
|
-
): sap.ui.core.Item;
|
|
106291
|
+
): sap.ui.core.Item | null;
|
|
106067
106292
|
/**
|
|
106068
106293
|
* Removes all the controls from the aggregation {@link #getActionGroups actionGroups}.
|
|
106069
106294
|
*
|
|
@@ -106305,7 +106530,7 @@ declare namespace sap {
|
|
|
106305
106530
|
* The action to remove or its index or id
|
|
106306
106531
|
*/
|
|
106307
106532
|
vAction: int | string | sap.ui.core.Item
|
|
106308
|
-
): sap.ui.core.Item;
|
|
106533
|
+
): sap.ui.core.Item | null;
|
|
106309
106534
|
/**
|
|
106310
106535
|
* Removes all the controls from the aggregation {@link #getActions actions}.
|
|
106311
106536
|
*
|
|
@@ -106332,7 +106557,7 @@ declare namespace sap {
|
|
|
106332
106557
|
* The line to remove or its index or id
|
|
106333
106558
|
*/
|
|
106334
106559
|
vLine: int | string | sap.m.SelectionDetailsItemLine
|
|
106335
|
-
): sap.m.SelectionDetailsItemLine;
|
|
106560
|
+
): sap.m.SelectionDetailsItemLine | null;
|
|
106336
106561
|
/**
|
|
106337
106562
|
* Sets a new value for property {@link #getEnableNav enableNav}.
|
|
106338
106563
|
*
|
|
@@ -106399,7 +106624,7 @@ declare namespace sap {
|
|
|
106399
106624
|
* The action to remove or its index or id
|
|
106400
106625
|
*/
|
|
106401
106626
|
vAction: int | string | sap.ui.core.Item
|
|
106402
|
-
): sap.ui.core.Item;
|
|
106627
|
+
): sap.ui.core.Item | null;
|
|
106403
106628
|
/**
|
|
106404
106629
|
* Sets a new value for property {@link #getEnableNav enableNav}.
|
|
106405
106630
|
*
|
|
@@ -106935,7 +107160,7 @@ declare namespace sap {
|
|
|
106935
107160
|
/**
|
|
106936
107161
|
* Gets the first item from the aggregation named `items`.
|
|
106937
107162
|
*
|
|
106938
|
-
* @returns The first item, or null if there are no items.
|
|
107163
|
+
* @returns The first item, or `null` if there are no items.
|
|
106939
107164
|
*/
|
|
106940
107165
|
getFirstItem(): sap.ui.core.Item | null;
|
|
106941
107166
|
/**
|
|
@@ -106953,7 +107178,7 @@ declare namespace sap {
|
|
|
106953
107178
|
/**
|
|
106954
107179
|
* Gets the item from the aggregation named `items` at the given 0-based index.
|
|
106955
107180
|
*
|
|
106956
|
-
* @returns Item at the given index, or null if none.
|
|
107181
|
+
* @returns Item at the given index, or `null` if none.
|
|
106957
107182
|
*/
|
|
106958
107183
|
getItemAt(
|
|
106959
107184
|
/**
|
|
@@ -106966,7 +107191,7 @@ declare namespace sap {
|
|
|
106966
107191
|
*
|
|
106967
107192
|
* **Note: ** If duplicate keys exists, the first item matching the key is returned.
|
|
106968
107193
|
*
|
|
106969
|
-
* @returns The matched item or null
|
|
107194
|
+
* @returns The matched item or `null`
|
|
106970
107195
|
*/
|
|
106971
107196
|
getItemByKey(
|
|
106972
107197
|
/**
|
|
@@ -106998,7 +107223,7 @@ declare namespace sap {
|
|
|
106998
107223
|
/**
|
|
106999
107224
|
* Gets the enabled items from the aggregation named `items`.
|
|
107000
107225
|
*
|
|
107001
|
-
* @returns The last item, or null if there are no items.
|
|
107226
|
+
* @returns The last item, or `null` if there are no items.
|
|
107002
107227
|
*/
|
|
107003
107228
|
getLastItem(): sap.ui.core.Item | null;
|
|
107004
107229
|
/**
|
|
@@ -107122,14 +107347,14 @@ declare namespace sap {
|
|
|
107122
107347
|
/**
|
|
107123
107348
|
* Removes an item from the aggregation named `items`.
|
|
107124
107349
|
*
|
|
107125
|
-
* @returns The removed item or null
|
|
107350
|
+
* @returns The removed item or `null`.
|
|
107126
107351
|
*/
|
|
107127
107352
|
removeItem(
|
|
107128
107353
|
/**
|
|
107129
107354
|
* The item to remove or its index or id.
|
|
107130
107355
|
*/
|
|
107131
107356
|
vItem: int | string | sap.ui.core.Item
|
|
107132
|
-
): sap.ui.core.Item;
|
|
107357
|
+
): sap.ui.core.Item | null;
|
|
107133
107358
|
/**
|
|
107134
107359
|
* Sets a new value for property {@link #getEnabled enabled}.
|
|
107135
107360
|
*
|
|
@@ -109115,7 +109340,7 @@ declare namespace sap {
|
|
|
109115
109340
|
* The action to remove or its index or id
|
|
109116
109341
|
*/
|
|
109117
109342
|
vAction: int | string | sap.ui.core.Control
|
|
109118
|
-
): sap.ui.core.Control;
|
|
109343
|
+
): sap.ui.core.Control | null;
|
|
109119
109344
|
/**
|
|
109120
109345
|
* Removes all the controls from the aggregation {@link #getActions actions}.
|
|
109121
109346
|
*
|
|
@@ -109160,7 +109385,7 @@ declare namespace sap {
|
|
|
109160
109385
|
* The appointment to remove or its index or id
|
|
109161
109386
|
*/
|
|
109162
109387
|
vAppointment: int | string | sap.ui.unified.CalendarAppointment
|
|
109163
|
-
): sap.ui.unified.CalendarAppointment;
|
|
109388
|
+
): sap.ui.unified.CalendarAppointment | null;
|
|
109164
109389
|
/**
|
|
109165
109390
|
* @SINCE 1.66
|
|
109166
109391
|
*
|
|
@@ -109173,7 +109398,7 @@ declare namespace sap {
|
|
|
109173
109398
|
* The specialDate to remove or its index or id
|
|
109174
109399
|
*/
|
|
109175
109400
|
vSpecialDate: int | string | sap.ui.unified.DateTypeRange
|
|
109176
|
-
): sap.ui.unified.DateTypeRange;
|
|
109401
|
+
): sap.ui.unified.DateTypeRange | null;
|
|
109177
109402
|
/**
|
|
109178
109403
|
* Removes a view from the aggregation {@link #getViews views}.
|
|
109179
109404
|
*
|
|
@@ -109184,7 +109409,7 @@ declare namespace sap {
|
|
|
109184
109409
|
* The view to remove or its index or id
|
|
109185
109410
|
*/
|
|
109186
109411
|
vView: int | string | sap.m.SinglePlanningCalendarView
|
|
109187
|
-
): sap.m.SinglePlanningCalendarView;
|
|
109412
|
+
): sap.m.SinglePlanningCalendarView | null;
|
|
109188
109413
|
/**
|
|
109189
109414
|
* @SINCE 1.65
|
|
109190
109415
|
*
|
|
@@ -110530,7 +110755,7 @@ declare namespace sap {
|
|
|
110530
110755
|
* The customTooltip to remove or its index or id
|
|
110531
110756
|
*/
|
|
110532
110757
|
vCustomTooltip: int | string | sap.m.SliderTooltipBase
|
|
110533
|
-
): sap.m.SliderTooltipBase;
|
|
110758
|
+
): sap.m.SliderTooltipBase | null;
|
|
110534
110759
|
/**
|
|
110535
110760
|
* Sets a new value for property {@link #getEnabled enabled}.
|
|
110536
110761
|
*
|
|
@@ -111197,7 +111422,7 @@ declare namespace sap {
|
|
|
111197
111422
|
* The tile to remove or its index or id
|
|
111198
111423
|
*/
|
|
111199
111424
|
vTile: int | string | sap.m.GenericTile
|
|
111200
|
-
): sap.m.GenericTile;
|
|
111425
|
+
): sap.m.GenericTile | null;
|
|
111201
111426
|
/**
|
|
111202
111427
|
* Sets a new value for property {@link #getDisplayTime displayTime}.
|
|
111203
111428
|
*
|
|
@@ -113092,7 +113317,7 @@ declare namespace sap {
|
|
|
113092
113317
|
* The detailPage to remove or its index or id
|
|
113093
113318
|
*/
|
|
113094
113319
|
vDetailPage: int | string | sap.ui.core.Control
|
|
113095
|
-
): sap.ui.core.Control;
|
|
113320
|
+
): sap.ui.core.Control | null;
|
|
113096
113321
|
/**
|
|
113097
113322
|
* Removes a masterPage from the aggregation {@link #getMasterPages masterPages}.
|
|
113098
113323
|
*
|
|
@@ -113103,7 +113328,7 @@ declare namespace sap {
|
|
|
113103
113328
|
* The masterPage to remove or its index or id
|
|
113104
113329
|
*/
|
|
113105
113330
|
vMasterPage: int | string | sap.ui.core.Control
|
|
113106
|
-
): sap.ui.core.Control;
|
|
113331
|
+
): sap.ui.core.Control | null;
|
|
113107
113332
|
/**
|
|
113108
113333
|
* @SINCE 1.11.2
|
|
113109
113334
|
*
|
|
@@ -116302,14 +116527,14 @@ declare namespace sap {
|
|
|
116302
116527
|
/**
|
|
116303
116528
|
* Removes an item from the aggregation named `items`.
|
|
116304
116529
|
*
|
|
116305
|
-
* @returns The removed item or null
|
|
116530
|
+
* @returns The removed item or `null`
|
|
116306
116531
|
*/
|
|
116307
116532
|
removeItem(
|
|
116308
116533
|
/**
|
|
116309
116534
|
* The item to remove or its index or ID
|
|
116310
116535
|
*/
|
|
116311
116536
|
vItem: int | string | sap.m.TabContainerItem
|
|
116312
|
-
): sap.m.TabContainerItem;
|
|
116537
|
+
): sap.m.TabContainerItem | null;
|
|
116313
116538
|
/**
|
|
116314
116539
|
* @SINCE 1.71
|
|
116315
116540
|
*
|
|
@@ -116652,7 +116877,7 @@ declare namespace sap {
|
|
|
116652
116877
|
* The content to remove or its index or id
|
|
116653
116878
|
*/
|
|
116654
116879
|
vContent: int | string | sap.ui.core.Control
|
|
116655
|
-
): sap.ui.core.Control;
|
|
116880
|
+
): sap.ui.core.Control | null;
|
|
116656
116881
|
/**
|
|
116657
116882
|
* @EXPERIMENTAL (since 1.63)
|
|
116658
116883
|
*
|
|
@@ -117410,7 +117635,7 @@ declare namespace sap {
|
|
|
117410
117635
|
* The column to remove or its index or id
|
|
117411
117636
|
*/
|
|
117412
117637
|
vColumn: int | string | sap.m.Column
|
|
117413
|
-
): sap.m.Column;
|
|
117638
|
+
): sap.m.Column | null;
|
|
117414
117639
|
/**
|
|
117415
117640
|
* @SINCE 1.52
|
|
117416
117641
|
*
|
|
@@ -119178,9 +119403,9 @@ declare namespace sap {
|
|
|
119178
119403
|
/**
|
|
119179
119404
|
* Transfers method to the inner dialog: getDomRef
|
|
119180
119405
|
*
|
|
119181
|
-
* @returns The Element's DOM Element sub DOM Element or null
|
|
119406
|
+
* @returns The Element's DOM Element, sub DOM Element or `null`
|
|
119182
119407
|
*/
|
|
119183
|
-
getDomRef(): Element;
|
|
119408
|
+
getDomRef(): Element | null;
|
|
119184
119409
|
/**
|
|
119185
119410
|
* @SINCE 1.71
|
|
119186
119411
|
*
|
|
@@ -119430,7 +119655,7 @@ declare namespace sap {
|
|
|
119430
119655
|
* The column to remove or its index or id
|
|
119431
119656
|
*/
|
|
119432
119657
|
vColumn: int | string | sap.m.Column
|
|
119433
|
-
): sap.m.Column;
|
|
119658
|
+
): sap.m.Column | null;
|
|
119434
119659
|
/**
|
|
119435
119660
|
* Removes a item from the aggregation {@link #getItems items}.
|
|
119436
119661
|
*
|
|
@@ -119441,7 +119666,7 @@ declare namespace sap {
|
|
|
119441
119666
|
* The item to remove or its index or id
|
|
119442
119667
|
*/
|
|
119443
119668
|
vItem: int | string | sap.m.ColumnListItem
|
|
119444
|
-
): sap.m.ColumnListItem;
|
|
119669
|
+
): sap.m.ColumnListItem | null;
|
|
119445
119670
|
/**
|
|
119446
119671
|
* Transfers method to the inner dialog: removeStyleClass
|
|
119447
119672
|
*
|
|
@@ -119876,7 +120101,7 @@ declare namespace sap {
|
|
|
119876
120101
|
* Clamps the wrapping text according to max lines and returns the found ellipsis position. Parameters can
|
|
119877
120102
|
* be used for better performance.
|
|
119878
120103
|
*
|
|
119879
|
-
* @returns Returns found ellipsis position or undefined
|
|
120104
|
+
* @returns Returns found ellipsis position or `undefined`.
|
|
119880
120105
|
*/
|
|
119881
120106
|
clampText(
|
|
119882
120107
|
/**
|
|
@@ -121281,7 +121506,7 @@ declare namespace sap {
|
|
|
121281
121506
|
* The tile to remove or its index or id
|
|
121282
121507
|
*/
|
|
121283
121508
|
vTile: int | string | sap.m.Tile
|
|
121284
|
-
): sap.m.Tile;
|
|
121509
|
+
): sap.m.Tile | null;
|
|
121285
121510
|
/**
|
|
121286
121511
|
* Scrolls to the page where the given Tile or tile index is included. Optionally this can be done animated
|
|
121287
121512
|
* or not. With IE9 the scroll is never animated.
|
|
@@ -122357,7 +122582,7 @@ declare namespace sap {
|
|
|
122357
122582
|
* The rule to remove or its index or id
|
|
122358
122583
|
*/
|
|
122359
122584
|
vRule: int | string | sap.m.MaskInputRule
|
|
122360
|
-
): sap.m.MaskInputRule;
|
|
122585
|
+
): sap.m.MaskInputRule | null;
|
|
122361
122586
|
/**
|
|
122362
122587
|
* Sets the value of the date.
|
|
122363
122588
|
*
|
|
@@ -124926,7 +125151,7 @@ declare namespace sap {
|
|
|
124926
125151
|
* The token to remove or its index or id
|
|
124927
125152
|
*/
|
|
124928
125153
|
vToken: int | string | sap.m.Token
|
|
124929
|
-
): sap.m.Token;
|
|
125154
|
+
): sap.m.Token | null;
|
|
124930
125155
|
/**
|
|
124931
125156
|
* @deprecated (since 1.81) - replaced by {@link MultiInput.prototype.addValidator}
|
|
124932
125157
|
*
|
|
@@ -125463,7 +125688,7 @@ declare namespace sap {
|
|
|
125463
125688
|
* The content to remove or its index or id
|
|
125464
125689
|
*/
|
|
125465
125690
|
vContent: int | string | sap.ui.core.Control
|
|
125466
|
-
): sap.ui.core.Control;
|
|
125691
|
+
): sap.ui.core.Control | null;
|
|
125467
125692
|
/**
|
|
125468
125693
|
* Sets a new value for property {@link #getActive active}.
|
|
125469
125694
|
*
|
|
@@ -125702,7 +125927,9 @@ declare namespace sap {
|
|
|
125702
125927
|
* Determines whether the control, when in a toolbar, is shrinkable or not. For controls with fixed width
|
|
125703
125928
|
* (100px, 5rem, etc...) this property is ignored.
|
|
125704
125929
|
*
|
|
125705
|
-
*
|
|
125930
|
+
* **Notes:**
|
|
125931
|
+
* - Nested layout controls should not be shrinkable.
|
|
125932
|
+
* - This property has no effect on `sap.m.Breadcrumbs` as it is shrinkable by default.
|
|
125706
125933
|
*
|
|
125707
125934
|
* Default value is `false`.
|
|
125708
125935
|
*
|
|
@@ -125745,7 +125972,9 @@ declare namespace sap {
|
|
|
125745
125972
|
* Determines whether the control, when in a toolbar, is shrinkable or not. For controls with fixed width
|
|
125746
125973
|
* (100px, 5rem, etc...) this property is ignored.
|
|
125747
125974
|
*
|
|
125748
|
-
*
|
|
125975
|
+
* **Notes:**
|
|
125976
|
+
* - Nested layout controls should not be shrinkable.
|
|
125977
|
+
* - This property has no effect on `sap.m.Breadcrumbs` as it is shrinkable by default.
|
|
125749
125978
|
*
|
|
125750
125979
|
* When called with a value of `null` or `undefined`, the default value of the property will be restored.
|
|
125751
125980
|
*
|
|
@@ -127611,7 +127840,7 @@ declare namespace sap {
|
|
|
127611
127840
|
*
|
|
127612
127841
|
* Retrieves the currently selected UploadCollectionItem.
|
|
127613
127842
|
*
|
|
127614
|
-
* @returns The currently selected item or null
|
|
127843
|
+
* @returns The currently selected item or `null`
|
|
127615
127844
|
*/
|
|
127616
127845
|
getSelectedItem(): sap.m.UploadCollectionItem | null;
|
|
127617
127846
|
/**
|
|
@@ -127824,7 +128053,7 @@ declare namespace sap {
|
|
|
127824
128053
|
* The headerParameter to remove or its index or id
|
|
127825
128054
|
*/
|
|
127826
128055
|
vHeaderParameter: int | string | sap.m.UploadCollectionParameter
|
|
127827
|
-
): sap.m.UploadCollectionParameter;
|
|
128056
|
+
): sap.m.UploadCollectionParameter | null;
|
|
127828
128057
|
/**
|
|
127829
128058
|
* Removes a item from the aggregation {@link #getItems items}.
|
|
127830
128059
|
*
|
|
@@ -127835,7 +128064,7 @@ declare namespace sap {
|
|
|
127835
128064
|
* The item to remove or its index or id
|
|
127836
128065
|
*/
|
|
127837
128066
|
vItem: int | string | sap.m.UploadCollectionItem
|
|
127838
|
-
): sap.m.UploadCollectionItem;
|
|
128067
|
+
): sap.m.UploadCollectionItem | null;
|
|
127839
128068
|
/**
|
|
127840
128069
|
* Removes a parameter from the aggregation {@link #getParameters parameters}.
|
|
127841
128070
|
*
|
|
@@ -127846,7 +128075,7 @@ declare namespace sap {
|
|
|
127846
128075
|
* The parameter to remove or its index or id
|
|
127847
128076
|
*/
|
|
127848
128077
|
vParameter: int | string | sap.m.UploadCollectionParameter
|
|
127849
|
-
): sap.m.UploadCollectionParameter;
|
|
128078
|
+
): sap.m.UploadCollectionParameter | null;
|
|
127850
128079
|
/**
|
|
127851
128080
|
* @SINCE 1.34.0
|
|
127852
128081
|
*
|
|
@@ -128900,7 +129129,7 @@ declare namespace sap {
|
|
|
128900
129129
|
* The attribute to remove or its index or id
|
|
128901
129130
|
*/
|
|
128902
129131
|
vAttribute: int | string | sap.m.ObjectAttribute
|
|
128903
|
-
): sap.m.ObjectAttribute;
|
|
129132
|
+
): sap.m.ObjectAttribute | null;
|
|
128904
129133
|
/**
|
|
128905
129134
|
* @SINCE 1.40.0
|
|
128906
129135
|
*
|
|
@@ -128913,7 +129142,7 @@ declare namespace sap {
|
|
|
128913
129142
|
* The marker to remove or its index or id
|
|
128914
129143
|
*/
|
|
128915
129144
|
vMarker: int | string | sap.m.ObjectMarker
|
|
128916
|
-
): sap.m.ObjectMarker;
|
|
129145
|
+
): sap.m.ObjectMarker | null;
|
|
128917
129146
|
/**
|
|
128918
129147
|
* @SINCE 1.30.0
|
|
128919
129148
|
*
|
|
@@ -128926,7 +129155,7 @@ declare namespace sap {
|
|
|
128926
129155
|
* The status to remove or its index or id
|
|
128927
129156
|
*/
|
|
128928
129157
|
vStatus: int | string | sap.m.ObjectStatus
|
|
128929
|
-
): sap.m.ObjectStatus;
|
|
129158
|
+
): sap.m.ObjectStatus | null;
|
|
128930
129159
|
/**
|
|
128931
129160
|
* @SINCE 1.30.0
|
|
128932
129161
|
*
|
|
@@ -129772,7 +130001,7 @@ declare namespace sap {
|
|
|
129772
130001
|
* The content to remove or its index or id
|
|
129773
130002
|
*/
|
|
129774
130003
|
vContent: int | string | sap.ui.core.Control
|
|
129775
|
-
): sap.ui.core.Control;
|
|
130004
|
+
): sap.ui.core.Control | null;
|
|
129776
130005
|
/**
|
|
129777
130006
|
* Sets a new value for property {@link #getIcon icon}.
|
|
129778
130007
|
*
|
|
@@ -130547,9 +130776,9 @@ declare namespace sap {
|
|
|
130547
130776
|
/**
|
|
130548
130777
|
* Forward method to the inner dialog method: getDomRef.
|
|
130549
130778
|
*
|
|
130550
|
-
* @returns The Element's DOM Element sub DOM Element or null
|
|
130779
|
+
* @returns The Element's DOM Element, sub DOM Element or `null`
|
|
130551
130780
|
*/
|
|
130552
|
-
getDomRef(): Element;
|
|
130781
|
+
getDomRef(): Element | null;
|
|
130553
130782
|
/**
|
|
130554
130783
|
* @SINCE 1.16
|
|
130555
130784
|
*
|
|
@@ -130934,12 +131163,12 @@ declare namespace sap {
|
|
|
130934
131163
|
* The customTab to remove or its index or id
|
|
130935
131164
|
*/
|
|
130936
131165
|
vCustomTab: int | string | sap.m.ViewSettingsCustomTab
|
|
130937
|
-
): sap.m.ViewSettingsCustomTab;
|
|
131166
|
+
): sap.m.ViewSettingsCustomTab | null;
|
|
130938
131167
|
/**
|
|
130939
131168
|
* Removes a filter Item and resets the remembered page if it was the filter detail page of the removed
|
|
130940
131169
|
* filter.
|
|
130941
131170
|
*
|
|
130942
|
-
* @returns The removed item or null
|
|
131171
|
+
* @returns The removed item or `null`
|
|
130943
131172
|
*/
|
|
130944
131173
|
removeFilterItem(
|
|
130945
131174
|
/**
|
|
@@ -130959,7 +131188,7 @@ declare namespace sap {
|
|
|
130959
131188
|
* The groupItem to remove or its index or id
|
|
130960
131189
|
*/
|
|
130961
131190
|
vGroupItem: int | string | sap.m.ViewSettingsItem
|
|
130962
|
-
): sap.m.ViewSettingsItem;
|
|
131191
|
+
): sap.m.ViewSettingsItem | null;
|
|
130963
131192
|
/**
|
|
130964
131193
|
* @SINCE 1.16
|
|
130965
131194
|
*
|
|
@@ -130972,7 +131201,7 @@ declare namespace sap {
|
|
|
130972
131201
|
* The presetFilterItem to remove or its index or id
|
|
130973
131202
|
*/
|
|
130974
131203
|
vPresetFilterItem: int | string | sap.m.ViewSettingsItem
|
|
130975
|
-
): sap.m.ViewSettingsItem;
|
|
131204
|
+
): sap.m.ViewSettingsItem | null;
|
|
130976
131205
|
/**
|
|
130977
131206
|
* @SINCE 1.16
|
|
130978
131207
|
*
|
|
@@ -130985,7 +131214,7 @@ declare namespace sap {
|
|
|
130985
131214
|
* The sortItem to remove or its index or id
|
|
130986
131215
|
*/
|
|
130987
131216
|
vSortItem: int | string | sap.m.ViewSettingsItem
|
|
130988
|
-
): sap.m.ViewSettingsItem;
|
|
131217
|
+
): sap.m.ViewSettingsItem | null;
|
|
130989
131218
|
/**
|
|
130990
131219
|
* Forward method to the inner dialog method: removeStyleClass.
|
|
130991
131220
|
*
|
|
@@ -131473,7 +131702,7 @@ declare namespace sap {
|
|
|
131473
131702
|
* The item to remove or its index or id
|
|
131474
131703
|
*/
|
|
131475
131704
|
vItem: int | string | sap.m.ViewSettingsItem
|
|
131476
|
-
): sap.m.ViewSettingsItem;
|
|
131705
|
+
): sap.m.ViewSettingsItem | null;
|
|
131477
131706
|
/**
|
|
131478
131707
|
* Sets a new value for property {@link #getMultiSelect multiSelect}.
|
|
131479
131708
|
*
|
|
@@ -132086,7 +132315,7 @@ declare namespace sap {
|
|
|
132086
132315
|
* The item to remove or its index or id
|
|
132087
132316
|
*/
|
|
132088
132317
|
vItem: int | string | sap.ui.core.Item
|
|
132089
|
-
): sap.ui.core.Item;
|
|
132318
|
+
): sap.ui.core.Item | null;
|
|
132090
132319
|
/**
|
|
132091
132320
|
* Sets a new value for property {@link #getIsCyclic isCyclic}.
|
|
132092
132321
|
*
|
|
@@ -132313,7 +132542,7 @@ declare namespace sap {
|
|
|
132313
132542
|
* The slider to remove or its index or id
|
|
132314
132543
|
*/
|
|
132315
132544
|
vSlider: int | string | sap.m.WheelSlider
|
|
132316
|
-
): sap.m.WheelSlider;
|
|
132545
|
+
): sap.m.WheelSlider | null;
|
|
132317
132546
|
/**
|
|
132318
132547
|
* Sets a new value for property {@link #getHeight height}.
|
|
132319
132548
|
*
|
|
@@ -133401,7 +133630,7 @@ declare namespace sap {
|
|
|
133401
133630
|
* The content to remove or its index or id
|
|
133402
133631
|
*/
|
|
133403
133632
|
vContent: int | string | sap.ui.core.Control
|
|
133404
|
-
): sap.ui.core.Control;
|
|
133633
|
+
): sap.ui.core.Control | null;
|
|
133405
133634
|
/**
|
|
133406
133635
|
* @SINCE 1.32
|
|
133407
133636
|
*
|