@openui5/ts-types 1.102.2 → 1.104.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.f.d.ts +320 -24
- package/types/sap.m.d.ts +2388 -334
- 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.core.d.ts +384 -111
- package/types/sap.ui.dt.d.ts +1 -1
- package/types/sap.ui.fl.d.ts +3 -1
- package/types/sap.ui.integration.d.ts +43 -64
- package/types/sap.ui.layout.d.ts +33 -41
- package/types/sap.ui.mdc.d.ts +1 -1
- package/types/sap.ui.rta.d.ts +3 -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 +115 -35
- package/types/sap.ui.ux3.d.ts +43 -43
- package/types/sap.ui.webc.common.d.ts +1 -1
- package/types/sap.ui.webc.fiori.d.ts +30 -30
- package/types/sap.ui.webc.main.d.ts +49 -49
- package/types/sap.uxap.d.ts +13 -13
package/types/sap.ui.ux3.d.ts
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
// For Library Version: 1.
|
|
1
|
+
// For Library Version: 1.104.0
|
|
2
2
|
|
|
3
3
|
declare namespace sap {
|
|
4
4
|
namespace ui {
|
|
@@ -3246,7 +3246,7 @@ declare namespace sap {
|
|
|
3246
3246
|
* The item to remove or its index or id
|
|
3247
3247
|
*/
|
|
3248
3248
|
vItem: int | string | sap.ui.core.Item
|
|
3249
|
-
): sap.ui.core.Item;
|
|
3249
|
+
): sap.ui.core.Item | null;
|
|
3250
3250
|
/**
|
|
3251
3251
|
*
|
|
3252
3252
|
* @returns the id of the removed selectedItem or null
|
|
@@ -4376,7 +4376,7 @@ declare namespace sap {
|
|
|
4376
4376
|
* The filter to remove or its index or id
|
|
4377
4377
|
*/
|
|
4378
4378
|
vFilter: int | string | sap.ui.core.Control
|
|
4379
|
-
): sap.ui.core.Control;
|
|
4379
|
+
): sap.ui.core.Control | null;
|
|
4380
4380
|
/**
|
|
4381
4381
|
* Removes a item from the aggregation {@link #getItems items}.
|
|
4382
4382
|
*
|
|
@@ -4387,7 +4387,7 @@ declare namespace sap {
|
|
|
4387
4387
|
* The item to remove or its index or id
|
|
4388
4388
|
*/
|
|
4389
4389
|
vItem: int | string | sap.ui.ux3.DataSetItem
|
|
4390
|
-
): sap.ui.ux3.DataSetItem;
|
|
4390
|
+
): sap.ui.ux3.DataSetItem | null;
|
|
4391
4391
|
/**
|
|
4392
4392
|
* remove a toolbarItem to the toolbar
|
|
4393
4393
|
*/
|
|
@@ -4402,7 +4402,7 @@ declare namespace sap {
|
|
|
4402
4402
|
* The view to remove or its index or id
|
|
4403
4403
|
*/
|
|
4404
4404
|
vView: int | string | sap.ui.ux3.DataSetView
|
|
4405
|
-
): sap.ui.ux3.DataSetView;
|
|
4405
|
+
): sap.ui.ux3.DataSetView | null;
|
|
4406
4406
|
/**
|
|
4407
4407
|
* Set the LeadSelection index
|
|
4408
4408
|
*/
|
|
@@ -5505,7 +5505,7 @@ declare namespace sap {
|
|
|
5505
5505
|
* The attribute to remove or its index or id
|
|
5506
5506
|
*/
|
|
5507
5507
|
vAttribute: int | string | sap.ui.ux3.ExactAttribute
|
|
5508
|
-
): sap.ui.ux3.ExactAttribute;
|
|
5508
|
+
): sap.ui.ux3.ExactAttribute | null;
|
|
5509
5509
|
/**
|
|
5510
5510
|
* Sets a new value for property {@link #getResultText resultText}.
|
|
5511
5511
|
*
|
|
@@ -5741,7 +5741,7 @@ declare namespace sap {
|
|
|
5741
5741
|
* The content to remove or its index or id
|
|
5742
5742
|
*/
|
|
5743
5743
|
vContent: int | string | sap.ui.core.Control
|
|
5744
|
-
): sap.ui.core.Control;
|
|
5744
|
+
): sap.ui.core.Control | null;
|
|
5745
5745
|
/**
|
|
5746
5746
|
* Removes a toolbarItem from the aggregation {@link #getToolbarItems toolbarItems}.
|
|
5747
5747
|
*
|
|
@@ -5752,7 +5752,7 @@ declare namespace sap {
|
|
|
5752
5752
|
* The toolbarItem to remove or its index or id
|
|
5753
5753
|
*/
|
|
5754
5754
|
vToolbarItem: int | string | sap.ui.commons.ToolbarItem
|
|
5755
|
-
): sap.ui.commons.ToolbarItem;
|
|
5755
|
+
): sap.ui.commons.ToolbarItem | null;
|
|
5756
5756
|
/**
|
|
5757
5757
|
* Sets a new value for property {@link #getToolbarVisible toolbarVisible}.
|
|
5758
5758
|
*
|
|
@@ -6083,7 +6083,7 @@ declare namespace sap {
|
|
|
6083
6083
|
* The attribute to remove or its index or id
|
|
6084
6084
|
*/
|
|
6085
6085
|
vAttribute: int | string | sap.ui.ux3.ExactAttribute
|
|
6086
|
-
): sap.ui.ux3.ExactAttribute;
|
|
6086
|
+
): sap.ui.ux3.ExactAttribute | null;
|
|
6087
6087
|
/**
|
|
6088
6088
|
* Scrolls the corresponding list of this attribute until the given direct child attribute is visible. If
|
|
6089
6089
|
* the corresponding list is not yet visible the call is buffered until the list is available.
|
|
@@ -6679,7 +6679,7 @@ declare namespace sap {
|
|
|
6679
6679
|
* The attribute to remove or its index or id
|
|
6680
6680
|
*/
|
|
6681
6681
|
vAttribute: int | string | sap.ui.ux3.ExactAttribute
|
|
6682
|
-
): sap.ui.ux3.ExactAttribute;
|
|
6682
|
+
): sap.ui.ux3.ExactAttribute | null;
|
|
6683
6683
|
/**
|
|
6684
6684
|
* Deselects all currently selected attributes and closes all attribute lists.
|
|
6685
6685
|
*/
|
|
@@ -7139,7 +7139,7 @@ declare namespace sap {
|
|
|
7139
7139
|
* The subList to remove or its index or id
|
|
7140
7140
|
*/
|
|
7141
7141
|
vSubList: int | string | sap.ui.ux3.ExactList
|
|
7142
|
-
): sap.ui.ux3.ExactList;
|
|
7142
|
+
): sap.ui.ux3.ExactList | null;
|
|
7143
7143
|
/**
|
|
7144
7144
|
* Sets the associated {@link #getData data}.
|
|
7145
7145
|
*
|
|
@@ -7349,7 +7349,7 @@ declare namespace sap {
|
|
|
7349
7349
|
* The list to remove or its index or id
|
|
7350
7350
|
*/
|
|
7351
7351
|
vList: int | string | sap.ui.ux3.FacetFilterList
|
|
7352
|
-
): sap.ui.ux3.FacetFilterList;
|
|
7352
|
+
): sap.ui.ux3.FacetFilterList | null;
|
|
7353
7353
|
/**
|
|
7354
7354
|
* Sets a new value for property {@link #getVisibleItemCountMode visibleItemCountMode}.
|
|
7355
7355
|
*
|
|
@@ -7645,7 +7645,7 @@ declare namespace sap {
|
|
|
7645
7645
|
* The item to remove or its index or id
|
|
7646
7646
|
*/
|
|
7647
7647
|
vItem: int | string | sap.ui.core.ListItem
|
|
7648
|
-
): sap.ui.core.ListItem;
|
|
7648
|
+
): sap.ui.core.ListItem | null;
|
|
7649
7649
|
/**
|
|
7650
7650
|
* @SINCE 1.9.0
|
|
7651
7651
|
*
|
|
@@ -8461,7 +8461,7 @@ declare namespace sap {
|
|
|
8461
8461
|
* The chunk to remove or its index or id
|
|
8462
8462
|
*/
|
|
8463
8463
|
vChunk: int | string | sap.ui.ux3.FeedChunk
|
|
8464
|
-
): sap.ui.ux3.FeedChunk;
|
|
8464
|
+
): sap.ui.ux3.FeedChunk | null;
|
|
8465
8465
|
/**
|
|
8466
8466
|
* Removes a filterItem from the aggregation {@link #getFilterItems filterItems}.
|
|
8467
8467
|
*
|
|
@@ -8472,7 +8472,7 @@ declare namespace sap {
|
|
|
8472
8472
|
* The filterItem to remove or its index or id
|
|
8473
8473
|
*/
|
|
8474
8474
|
vFilterItem: int | string | sap.ui.core.ListItem
|
|
8475
|
-
): sap.ui.core.ListItem;
|
|
8475
|
+
): sap.ui.core.ListItem | null;
|
|
8476
8476
|
/**
|
|
8477
8477
|
* Removes a toolsMenuItem from the aggregation {@link #getToolsMenuItems toolsMenuItems}.
|
|
8478
8478
|
*
|
|
@@ -8483,7 +8483,7 @@ declare namespace sap {
|
|
|
8483
8483
|
* The toolsMenuItem to remove or its index or id
|
|
8484
8484
|
*/
|
|
8485
8485
|
vToolsMenuItem: int | string | sap.ui.commons.MenuItem
|
|
8486
|
-
): sap.ui.commons.MenuItem;
|
|
8486
|
+
): sap.ui.commons.MenuItem | null;
|
|
8487
8487
|
/**
|
|
8488
8488
|
* Sets a new value for property {@link #getFeederSender feederSender}.
|
|
8489
8489
|
*
|
|
@@ -9635,7 +9635,7 @@ declare namespace sap {
|
|
|
9635
9635
|
* The actionMenuItem to remove or its index or id
|
|
9636
9636
|
*/
|
|
9637
9637
|
vActionMenuItem: int | string | sap.ui.commons.MenuItem
|
|
9638
|
-
): sap.ui.commons.MenuItem;
|
|
9638
|
+
): sap.ui.commons.MenuItem | null;
|
|
9639
9639
|
/**
|
|
9640
9640
|
* Removes all the controls from the aggregation {@link #getActionMenuItems actionMenuItems}.
|
|
9641
9641
|
*
|
|
@@ -9662,7 +9662,7 @@ declare namespace sap {
|
|
|
9662
9662
|
* The comment to remove or its index or id
|
|
9663
9663
|
*/
|
|
9664
9664
|
vComment: int | string | sap.ui.ux3.FeedChunk
|
|
9665
|
-
): sap.ui.ux3.FeedChunk;
|
|
9665
|
+
): sap.ui.ux3.FeedChunk | null;
|
|
9666
9666
|
/**
|
|
9667
9667
|
* @deprecated (since 1.4.0) - Not longer used. If a chunk is a comment is determined from hierarchy. If
|
|
9668
9668
|
* the parent is a chunk it's automatically a comment.
|
|
@@ -10484,7 +10484,7 @@ declare namespace sap {
|
|
|
10484
10484
|
* The item to remove or its index or id
|
|
10485
10485
|
*/
|
|
10486
10486
|
vItem: int | string | sap.ui.ux3.NavigationItem
|
|
10487
|
-
): sap.ui.ux3.NavigationItem;
|
|
10487
|
+
): sap.ui.ux3.NavigationItem | null;
|
|
10488
10488
|
/**
|
|
10489
10489
|
* Replaces the currently associated items with the ones in the given array
|
|
10490
10490
|
*/
|
|
@@ -10707,7 +10707,7 @@ declare namespace sap {
|
|
|
10707
10707
|
* The subItem to remove or its index or id
|
|
10708
10708
|
*/
|
|
10709
10709
|
vSubItem: int | string | sap.ui.ux3.NavigationItem
|
|
10710
|
-
): sap.ui.ux3.NavigationItem;
|
|
10710
|
+
): sap.ui.ux3.NavigationItem | null;
|
|
10711
10711
|
/**
|
|
10712
10712
|
* Sets a new value for property {@link #getHref href}.
|
|
10713
10713
|
*
|
|
@@ -11109,7 +11109,7 @@ declare namespace sap {
|
|
|
11109
11109
|
* The notifier to remove or its index or id
|
|
11110
11110
|
*/
|
|
11111
11111
|
vNotifier: int | string | sap.ui.core.Element
|
|
11112
|
-
): sap.ui.core.Element;
|
|
11112
|
+
): sap.ui.core.Element | null;
|
|
11113
11113
|
/**
|
|
11114
11114
|
* @SINCE 1.22.11
|
|
11115
11115
|
*/
|
|
@@ -11406,7 +11406,7 @@ declare namespace sap {
|
|
|
11406
11406
|
* The message to remove or its index or id
|
|
11407
11407
|
*/
|
|
11408
11408
|
vMessage: int | string | sap.ui.core.Message
|
|
11409
|
-
): sap.ui.core.Message;
|
|
11409
|
+
): sap.ui.core.Message | null;
|
|
11410
11410
|
/**
|
|
11411
11411
|
* Sets a new value for property {@link #getIcon icon}.
|
|
11412
11412
|
*
|
|
@@ -12033,7 +12033,7 @@ declare namespace sap {
|
|
|
12033
12033
|
* The content to remove or its index or id
|
|
12034
12034
|
*/
|
|
12035
12035
|
vContent: int | string | sap.ui.core.Control
|
|
12036
|
-
): sap.ui.core.Control;
|
|
12036
|
+
): sap.ui.core.Control | null;
|
|
12037
12037
|
}
|
|
12038
12038
|
/**
|
|
12039
12039
|
* @deprecated (since 1.38)
|
|
@@ -12194,7 +12194,7 @@ declare namespace sap {
|
|
|
12194
12194
|
* The content to remove or its index or id
|
|
12195
12195
|
*/
|
|
12196
12196
|
vContent: int | string | sap.ui.core.Control
|
|
12197
|
-
): sap.ui.core.Control;
|
|
12197
|
+
): sap.ui.core.Control | null;
|
|
12198
12198
|
/**
|
|
12199
12199
|
* The height for the OverlayDialog.
|
|
12200
12200
|
*/
|
|
@@ -12795,7 +12795,7 @@ declare namespace sap {
|
|
|
12795
12795
|
* The action to remove or its index or id
|
|
12796
12796
|
*/
|
|
12797
12797
|
vAction: int | string | sap.ui.ux3.ThingAction
|
|
12798
|
-
): sap.ui.ux3.ThingAction;
|
|
12798
|
+
): sap.ui.ux3.ThingAction | null;
|
|
12799
12799
|
/**
|
|
12800
12800
|
* Removes all the controls from the aggregation {@link #getActions actions}.
|
|
12801
12801
|
*
|
|
@@ -12822,7 +12822,7 @@ declare namespace sap {
|
|
|
12822
12822
|
* The content to remove or its index or id
|
|
12823
12823
|
*/
|
|
12824
12824
|
vContent: int | string | sap.ui.core.Element
|
|
12825
|
-
): sap.ui.core.Element;
|
|
12825
|
+
): sap.ui.core.Element | null;
|
|
12826
12826
|
/**
|
|
12827
12827
|
* Sets the aggregated {@link #getActionBar actionBar}.
|
|
12828
12828
|
*
|
|
@@ -14261,7 +14261,7 @@ declare namespace sap {
|
|
|
14261
14261
|
* The content to remove or its index or id
|
|
14262
14262
|
*/
|
|
14263
14263
|
vContent: int | string | sap.ui.core.Control
|
|
14264
|
-
): sap.ui.core.Control;
|
|
14264
|
+
): sap.ui.core.Control | null;
|
|
14265
14265
|
/**
|
|
14266
14266
|
* Removes a headerItem from the aggregation {@link #getHeaderItems headerItems}.
|
|
14267
14267
|
*
|
|
@@ -14272,7 +14272,7 @@ declare namespace sap {
|
|
|
14272
14272
|
* The headerItem to remove or its index or id
|
|
14273
14273
|
*/
|
|
14274
14274
|
vHeaderItem: int | string | sap.ui.core.Control
|
|
14275
|
-
): sap.ui.core.Control;
|
|
14275
|
+
): sap.ui.core.Control | null;
|
|
14276
14276
|
/**
|
|
14277
14277
|
* Removes a paneBarItem from the aggregation {@link #getPaneBarItems paneBarItems}.
|
|
14278
14278
|
*
|
|
@@ -14283,7 +14283,7 @@ declare namespace sap {
|
|
|
14283
14283
|
* The paneBarItem to remove or its index or id
|
|
14284
14284
|
*/
|
|
14285
14285
|
vPaneBarItem: int | string | sap.ui.core.Item
|
|
14286
|
-
): sap.ui.core.Item;
|
|
14286
|
+
): sap.ui.core.Item | null;
|
|
14287
14287
|
/**
|
|
14288
14288
|
* Removes a paneContent from the aggregation {@link #getPaneContent paneContent}.
|
|
14289
14289
|
*
|
|
@@ -14294,7 +14294,7 @@ declare namespace sap {
|
|
|
14294
14294
|
* The paneContent to remove or its index or id
|
|
14295
14295
|
*/
|
|
14296
14296
|
vPaneContent: int | string | sap.ui.core.Control
|
|
14297
|
-
): sap.ui.core.Control;
|
|
14297
|
+
): sap.ui.core.Control | null;
|
|
14298
14298
|
/**
|
|
14299
14299
|
* Removes a toolPopup from the aggregation {@link #getToolPopups toolPopups}.
|
|
14300
14300
|
*
|
|
@@ -14305,7 +14305,7 @@ declare namespace sap {
|
|
|
14305
14305
|
* The toolPopup to remove or its index or id
|
|
14306
14306
|
*/
|
|
14307
14307
|
vToolPopup: int | string | sap.ui.ux3.ToolPopup
|
|
14308
|
-
): sap.ui.ux3.ToolPopup;
|
|
14308
|
+
): sap.ui.ux3.ToolPopup | null;
|
|
14309
14309
|
/**
|
|
14310
14310
|
* Removes a worksetItem from the aggregation {@link #getWorksetItems worksetItems}.
|
|
14311
14311
|
*
|
|
@@ -14316,7 +14316,7 @@ declare namespace sap {
|
|
|
14316
14316
|
* The worksetItem to remove or its index or id
|
|
14317
14317
|
*/
|
|
14318
14318
|
vWorksetItem: int | string | sap.ui.ux3.NavigationItem
|
|
14319
|
-
): sap.ui.ux3.NavigationItem;
|
|
14319
|
+
): sap.ui.ux3.NavigationItem | null;
|
|
14320
14320
|
/**
|
|
14321
14321
|
* @SINCE 1.14.0
|
|
14322
14322
|
*
|
|
@@ -15083,7 +15083,7 @@ declare namespace sap {
|
|
|
15083
15083
|
* The action to remove or its index or id
|
|
15084
15084
|
*/
|
|
15085
15085
|
vAction: int | string | sap.ui.ux3.ThingGroup
|
|
15086
|
-
): sap.ui.ux3.ThingGroup;
|
|
15086
|
+
): sap.ui.ux3.ThingGroup | null;
|
|
15087
15087
|
/**
|
|
15088
15088
|
* Removes all the controls from the aggregation {@link #getActions actions}.
|
|
15089
15089
|
*
|
|
@@ -15110,7 +15110,7 @@ declare namespace sap {
|
|
|
15110
15110
|
* The content to remove or its index or id
|
|
15111
15111
|
*/
|
|
15112
15112
|
vContent: int | string | sap.ui.core.Control
|
|
15113
|
-
): sap.ui.core.Control;
|
|
15113
|
+
): sap.ui.core.Control | null;
|
|
15114
15114
|
/**
|
|
15115
15115
|
* Sets a new value for property {@link #getColspan colspan}.
|
|
15116
15116
|
*
|
|
@@ -15818,7 +15818,7 @@ declare namespace sap {
|
|
|
15818
15818
|
* The action to remove or its index or id
|
|
15819
15819
|
*/
|
|
15820
15820
|
vAction: int | string | sap.ui.ux3.ThingAction
|
|
15821
|
-
): sap.ui.ux3.ThingAction;
|
|
15821
|
+
): sap.ui.ux3.ThingAction | null;
|
|
15822
15822
|
/**
|
|
15823
15823
|
* Removes all the controls from the aggregation {@link #getActions actions}.
|
|
15824
15824
|
*
|
|
@@ -15861,7 +15861,7 @@ declare namespace sap {
|
|
|
15861
15861
|
* The facet to remove or its index or id
|
|
15862
15862
|
*/
|
|
15863
15863
|
vFacet: int | string | sap.ui.ux3.NavigationItem
|
|
15864
|
-
): sap.ui.ux3.NavigationItem;
|
|
15864
|
+
): sap.ui.ux3.NavigationItem | null;
|
|
15865
15865
|
/**
|
|
15866
15866
|
* Removes a facetContent from the aggregation {@link #getFacetContent facetContent}.
|
|
15867
15867
|
*
|
|
@@ -15872,7 +15872,7 @@ declare namespace sap {
|
|
|
15872
15872
|
* The facetContent to remove or its index or id
|
|
15873
15873
|
*/
|
|
15874
15874
|
vFacetContent: int | string | sap.ui.ux3.ThingGroup
|
|
15875
|
-
): sap.ui.ux3.ThingGroup;
|
|
15875
|
+
): sap.ui.ux3.ThingGroup | null;
|
|
15876
15876
|
/**
|
|
15877
15877
|
* Removes a headerContent from the aggregation {@link #getHeaderContent headerContent}.
|
|
15878
15878
|
*
|
|
@@ -15883,7 +15883,7 @@ declare namespace sap {
|
|
|
15883
15883
|
* The headerContent to remove or its index or id
|
|
15884
15884
|
*/
|
|
15885
15885
|
vHeaderContent: int | string | sap.ui.ux3.ThingGroup
|
|
15886
|
-
): sap.ui.ux3.ThingGroup;
|
|
15886
|
+
): sap.ui.ux3.ThingGroup | null;
|
|
15887
15887
|
/**
|
|
15888
15888
|
* Sets the aggregated {@link #getActionBar actionBar}.
|
|
15889
15889
|
*
|
|
@@ -16538,7 +16538,7 @@ declare namespace sap {
|
|
|
16538
16538
|
* The facet to remove or its index or id
|
|
16539
16539
|
*/
|
|
16540
16540
|
vFacet: int | string | sap.ui.ux3.NavigationItem
|
|
16541
|
-
): sap.ui.ux3.NavigationItem;
|
|
16541
|
+
): sap.ui.ux3.NavigationItem | null;
|
|
16542
16542
|
/**
|
|
16543
16543
|
* Removes a facetContent from the aggregation {@link #getFacetContent facetContent}.
|
|
16544
16544
|
*
|
|
@@ -16549,7 +16549,7 @@ declare namespace sap {
|
|
|
16549
16549
|
* The facetContent to remove or its index or id
|
|
16550
16550
|
*/
|
|
16551
16551
|
vFacetContent: int | string | sap.ui.ux3.ThingGroup
|
|
16552
|
-
): sap.ui.ux3.ThingGroup;
|
|
16552
|
+
): sap.ui.ux3.ThingGroup | null;
|
|
16553
16553
|
/**
|
|
16554
16554
|
* Removes a headerContent from the aggregation {@link #getHeaderContent headerContent}.
|
|
16555
16555
|
*
|
|
@@ -16560,7 +16560,7 @@ declare namespace sap {
|
|
|
16560
16560
|
* The headerContent to remove or its index or id
|
|
16561
16561
|
*/
|
|
16562
16562
|
vHeaderContent: int | string | sap.ui.ux3.ThingGroup
|
|
16563
|
-
): sap.ui.ux3.ThingGroup;
|
|
16563
|
+
): sap.ui.ux3.ThingGroup | null;
|
|
16564
16564
|
/**
|
|
16565
16565
|
* Sets the aggregated {@link #getActionBar actionBar}.
|
|
16566
16566
|
*
|
|
@@ -17560,7 +17560,7 @@ declare namespace sap {
|
|
|
17560
17560
|
* The button to remove or its index or id
|
|
17561
17561
|
*/
|
|
17562
17562
|
vButton: int | string | sap.ui.core.Control
|
|
17563
|
-
): sap.ui.core.Control;
|
|
17563
|
+
): sap.ui.core.Control | null;
|
|
17564
17564
|
/**
|
|
17565
17565
|
* Removes a content from the aggregation {@link #getContent content}.
|
|
17566
17566
|
*
|
|
@@ -17571,7 +17571,7 @@ declare namespace sap {
|
|
|
17571
17571
|
* The content to remove or its index or id
|
|
17572
17572
|
*/
|
|
17573
17573
|
vContent: int | string | sap.ui.core.Control
|
|
17574
|
-
): sap.ui.core.Control;
|
|
17574
|
+
): sap.ui.core.Control | null;
|
|
17575
17575
|
/**
|
|
17576
17576
|
* @SINCE 1.19.0
|
|
17577
17577
|
*
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
// For Library Version: 1.
|
|
1
|
+
// For Library Version: 1.104.0
|
|
2
2
|
|
|
3
3
|
declare namespace sap {
|
|
4
4
|
namespace ui {
|
|
@@ -2114,7 +2114,7 @@ declare namespace sap {
|
|
|
2114
2114
|
* The endContent to remove or its index or id
|
|
2115
2115
|
*/
|
|
2116
2116
|
vEndContent: int | string | sap.ui.core.Control
|
|
2117
|
-
): sap.ui.core.Control;
|
|
2117
|
+
): sap.ui.core.Control | null;
|
|
2118
2118
|
/**
|
|
2119
2119
|
* Removes a middleContent from the aggregation {@link #getMiddleContent middleContent}.
|
|
2120
2120
|
*
|
|
@@ -2125,7 +2125,7 @@ declare namespace sap {
|
|
|
2125
2125
|
* The middleContent to remove or its index or id
|
|
2126
2126
|
*/
|
|
2127
2127
|
vMiddleContent: int | string | sap.ui.core.Control
|
|
2128
|
-
): sap.ui.core.Control;
|
|
2128
|
+
): sap.ui.core.Control | null;
|
|
2129
2129
|
/**
|
|
2130
2130
|
* Removes a startContent from the aggregation {@link #getStartContent startContent}.
|
|
2131
2131
|
*
|
|
@@ -2136,7 +2136,7 @@ declare namespace sap {
|
|
|
2136
2136
|
* The startContent to remove or its index or id
|
|
2137
2137
|
*/
|
|
2138
2138
|
vStartContent: int | string | sap.ui.core.Control
|
|
2139
|
-
): sap.ui.core.Control;
|
|
2139
|
+
): sap.ui.core.Control | null;
|
|
2140
2140
|
/**
|
|
2141
2141
|
* Sets a new value for property {@link #getDesign design}.
|
|
2142
2142
|
*
|
|
@@ -2868,7 +2868,7 @@ declare namespace sap {
|
|
|
2868
2868
|
* The content to remove or its index or id
|
|
2869
2869
|
*/
|
|
2870
2870
|
vContent: int | string | sap.ui.core.Control
|
|
2871
|
-
): sap.ui.core.Control;
|
|
2871
|
+
): sap.ui.core.Control | null;
|
|
2872
2872
|
/**
|
|
2873
2873
|
* Removes a sideContent from the aggregation {@link #getSideContent sideContent}.
|
|
2874
2874
|
*
|
|
@@ -2879,7 +2879,7 @@ declare namespace sap {
|
|
|
2879
2879
|
* The sideContent to remove or its index or id
|
|
2880
2880
|
*/
|
|
2881
2881
|
vSideContent: int | string | sap.ui.core.Control
|
|
2882
|
-
): sap.ui.core.Control;
|
|
2882
|
+
): sap.ui.core.Control | null;
|
|
2883
2883
|
/**
|
|
2884
2884
|
* Sets a new value for property {@link #getEqualSplit equalSplit}.
|
|
2885
2885
|
*
|
|
@@ -3171,7 +3171,7 @@ declare namespace sap {
|
|
|
3171
3171
|
* The value to remove or its index or id
|
|
3172
3172
|
*/
|
|
3173
3173
|
vValue: int | string | sap.ui.webc.fiori.IFilterItemOption
|
|
3174
|
-
): sap.ui.webc.fiori.IFilterItemOption;
|
|
3174
|
+
): sap.ui.webc.fiori.IFilterItemOption | null;
|
|
3175
3175
|
/**
|
|
3176
3176
|
* Sets a new value for property {@link #getText text}.
|
|
3177
3177
|
*
|
|
@@ -4024,7 +4024,7 @@ declare namespace sap {
|
|
|
4024
4024
|
* The action to remove or its index or id
|
|
4025
4025
|
*/
|
|
4026
4026
|
vAction: int | string | sap.ui.webc.main.IButton
|
|
4027
|
-
): sap.ui.webc.main.IButton;
|
|
4027
|
+
): sap.ui.webc.main.IButton | null;
|
|
4028
4028
|
/**
|
|
4029
4029
|
* Removes all the controls from the aggregation {@link #getActions actions}.
|
|
4030
4030
|
*
|
|
@@ -4562,7 +4562,7 @@ declare namespace sap {
|
|
|
4562
4562
|
* The item to remove or its index or id
|
|
4563
4563
|
*/
|
|
4564
4564
|
vItem: int | string | sap.ui.webc.fiori.IMediaGalleryItem
|
|
4565
|
-
): sap.ui.webc.fiori.IMediaGalleryItem;
|
|
4565
|
+
): sap.ui.webc.fiori.IMediaGalleryItem | null;
|
|
4566
4566
|
/**
|
|
4567
4567
|
* Sets a new value for property {@link #getInteractiveDisplayArea interactiveDisplayArea}.
|
|
4568
4568
|
*
|
|
@@ -5535,7 +5535,7 @@ declare namespace sap {
|
|
|
5535
5535
|
* The action to remove or its index or id
|
|
5536
5536
|
*/
|
|
5537
5537
|
vAction: int | string | sap.ui.webc.fiori.INotificationAction
|
|
5538
|
-
): sap.ui.webc.fiori.INotificationAction;
|
|
5538
|
+
): sap.ui.webc.fiori.INotificationAction | null;
|
|
5539
5539
|
/**
|
|
5540
5540
|
* Removes all the controls from the aggregation {@link #getActions actions}.
|
|
5541
5541
|
*
|
|
@@ -5562,7 +5562,7 @@ declare namespace sap {
|
|
|
5562
5562
|
* The item to remove or its index or id
|
|
5563
5563
|
*/
|
|
5564
5564
|
vItem: int | string | sap.ui.webc.fiori.INotificationListItem
|
|
5565
|
-
): sap.ui.webc.fiori.INotificationListItem;
|
|
5565
|
+
): sap.ui.webc.fiori.INotificationListItem | null;
|
|
5566
5566
|
/**
|
|
5567
5567
|
* Sets a new value for property {@link #getBusy busy}.
|
|
5568
5568
|
*
|
|
@@ -6103,7 +6103,7 @@ declare namespace sap {
|
|
|
6103
6103
|
* The action to remove or its index or id
|
|
6104
6104
|
*/
|
|
6105
6105
|
vAction: int | string | sap.ui.webc.fiori.INotificationAction
|
|
6106
|
-
): sap.ui.webc.fiori.INotificationAction;
|
|
6106
|
+
): sap.ui.webc.fiori.INotificationAction | null;
|
|
6107
6107
|
/**
|
|
6108
6108
|
* Removes all the controls from the aggregation {@link #getActions actions}.
|
|
6109
6109
|
*
|
|
@@ -6130,7 +6130,7 @@ declare namespace sap {
|
|
|
6130
6130
|
* The footnote to remove or its index or id
|
|
6131
6131
|
*/
|
|
6132
6132
|
vFootnote: int | string | sap.ui.core.Control
|
|
6133
|
-
): sap.ui.core.Control;
|
|
6133
|
+
): sap.ui.core.Control | null;
|
|
6134
6134
|
/**
|
|
6135
6135
|
* Sets the aggregated {@link #getAvatar avatar}.
|
|
6136
6136
|
*
|
|
@@ -6529,7 +6529,7 @@ declare namespace sap {
|
|
|
6529
6529
|
* The content to remove or its index or id
|
|
6530
6530
|
*/
|
|
6531
6531
|
vContent: int | string | sap.ui.core.Control
|
|
6532
|
-
): sap.ui.core.Control;
|
|
6532
|
+
): sap.ui.core.Control | null;
|
|
6533
6533
|
/**
|
|
6534
6534
|
* Sets a new value for property {@link #getBackgroundDesign backgroundDesign}.
|
|
6535
6535
|
*
|
|
@@ -6813,7 +6813,7 @@ declare namespace sap {
|
|
|
6813
6813
|
* The item to remove or its index or id
|
|
6814
6814
|
*/
|
|
6815
6815
|
vItem: int | string | sap.ui.webc.fiori.IProductSwitchItem
|
|
6816
|
-
): sap.ui.webc.fiori.IProductSwitchItem;
|
|
6816
|
+
): sap.ui.webc.fiori.IProductSwitchItem | null;
|
|
6817
6817
|
}
|
|
6818
6818
|
/**
|
|
6819
6819
|
* @SINCE 1.92.0
|
|
@@ -8013,7 +8013,7 @@ declare namespace sap {
|
|
|
8013
8013
|
* The item to remove or its index or id
|
|
8014
8014
|
*/
|
|
8015
8015
|
vItem: int | string | sap.ui.webc.fiori.IShellBarItem
|
|
8016
|
-
): sap.ui.webc.fiori.IShellBarItem;
|
|
8016
|
+
): sap.ui.webc.fiori.IShellBarItem | null;
|
|
8017
8017
|
/**
|
|
8018
8018
|
* Removes a menuItem from the aggregation {@link #getMenuItems menuItems}.
|
|
8019
8019
|
*
|
|
@@ -8024,7 +8024,7 @@ declare namespace sap {
|
|
|
8024
8024
|
* The menuItem to remove or its index or id
|
|
8025
8025
|
*/
|
|
8026
8026
|
vMenuItem: int | string | sap.ui.webc.main.IListItem
|
|
8027
|
-
): sap.ui.webc.main.IListItem;
|
|
8027
|
+
): sap.ui.webc.main.IListItem | null;
|
|
8028
8028
|
/**
|
|
8029
8029
|
* Sets a new value for property {@link #getAccessibilityTexts accessibilityTexts}.
|
|
8030
8030
|
*
|
|
@@ -8808,7 +8808,7 @@ declare namespace sap {
|
|
|
8808
8808
|
* The fixedItem to remove or its index or id
|
|
8809
8809
|
*/
|
|
8810
8810
|
vFixedItem: int | string | sap.ui.webc.fiori.ISideNavigationItem
|
|
8811
|
-
): sap.ui.webc.fiori.ISideNavigationItem;
|
|
8811
|
+
): sap.ui.webc.fiori.ISideNavigationItem | null;
|
|
8812
8812
|
/**
|
|
8813
8813
|
* Removes a header from the aggregation {@link #getHeader header}.
|
|
8814
8814
|
*
|
|
@@ -8819,7 +8819,7 @@ declare namespace sap {
|
|
|
8819
8819
|
* The header to remove or its index or id
|
|
8820
8820
|
*/
|
|
8821
8821
|
vHeader: int | string | sap.ui.core.Control
|
|
8822
|
-
): sap.ui.core.Control;
|
|
8822
|
+
): sap.ui.core.Control | null;
|
|
8823
8823
|
/**
|
|
8824
8824
|
* Removes a item from the aggregation {@link #getItems items}.
|
|
8825
8825
|
*
|
|
@@ -8830,7 +8830,7 @@ declare namespace sap {
|
|
|
8830
8830
|
* The item to remove or its index or id
|
|
8831
8831
|
*/
|
|
8832
8832
|
vItem: int | string | sap.ui.webc.fiori.ISideNavigationItem
|
|
8833
|
-
): sap.ui.webc.fiori.ISideNavigationItem;
|
|
8833
|
+
): sap.ui.webc.fiori.ISideNavigationItem | null;
|
|
8834
8834
|
/**
|
|
8835
8835
|
* Sets a new value for property {@link #getCollapsed collapsed}.
|
|
8836
8836
|
*
|
|
@@ -9050,7 +9050,7 @@ declare namespace sap {
|
|
|
9050
9050
|
* The item to remove or its index or id
|
|
9051
9051
|
*/
|
|
9052
9052
|
vItem: int | string | sap.ui.webc.fiori.ISideNavigationSubItem
|
|
9053
|
-
): sap.ui.webc.fiori.ISideNavigationSubItem;
|
|
9053
|
+
): sap.ui.webc.fiori.ISideNavigationSubItem | null;
|
|
9054
9054
|
/**
|
|
9055
9055
|
* Sets a new value for property {@link #getExpanded expanded}.
|
|
9056
9056
|
*
|
|
@@ -9624,7 +9624,7 @@ declare namespace sap {
|
|
|
9624
9624
|
* The item to remove or its index or id
|
|
9625
9625
|
*/
|
|
9626
9626
|
vItem: int | string | sap.ui.webc.fiori.ITimelineItem
|
|
9627
|
-
): sap.ui.webc.fiori.ITimelineItem;
|
|
9627
|
+
): sap.ui.webc.fiori.ITimelineItem | null;
|
|
9628
9628
|
/**
|
|
9629
9629
|
* Sets a new value for property {@link #getAccessibleName accessibleName}.
|
|
9630
9630
|
*
|
|
@@ -9968,7 +9968,7 @@ declare namespace sap {
|
|
|
9968
9968
|
* The content to remove or its index or id
|
|
9969
9969
|
*/
|
|
9970
9970
|
vContent: int | string | sap.ui.core.Control
|
|
9971
|
-
): sap.ui.core.Control;
|
|
9971
|
+
): sap.ui.core.Control | null;
|
|
9972
9972
|
/**
|
|
9973
9973
|
* Sets a new value for property {@link #getIcon icon}.
|
|
9974
9974
|
*
|
|
@@ -10595,7 +10595,7 @@ declare namespace sap {
|
|
|
10595
10595
|
* The header to remove or its index or id
|
|
10596
10596
|
*/
|
|
10597
10597
|
vHeader: int | string | sap.ui.core.Control
|
|
10598
|
-
): sap.ui.core.Control;
|
|
10598
|
+
): sap.ui.core.Control | null;
|
|
10599
10599
|
/**
|
|
10600
10600
|
* Removes a item from the aggregation {@link #getItems items}.
|
|
10601
10601
|
*
|
|
@@ -10606,7 +10606,7 @@ declare namespace sap {
|
|
|
10606
10606
|
* The item to remove or its index or id
|
|
10607
10607
|
*/
|
|
10608
10608
|
vItem: int | string | sap.ui.webc.fiori.IUploadCollectionItem
|
|
10609
|
-
): sap.ui.webc.fiori.IUploadCollectionItem;
|
|
10609
|
+
): sap.ui.webc.fiori.IUploadCollectionItem | null;
|
|
10610
10610
|
/**
|
|
10611
10611
|
* Sets a new value for property {@link #getAccessibleName accessibleName}.
|
|
10612
10612
|
*
|
|
@@ -11293,7 +11293,7 @@ declare namespace sap {
|
|
|
11293
11293
|
* The content to remove or its index or id
|
|
11294
11294
|
*/
|
|
11295
11295
|
vContent: int | string | sap.ui.core.Control
|
|
11296
|
-
): sap.ui.core.Control;
|
|
11296
|
+
): sap.ui.core.Control | null;
|
|
11297
11297
|
/**
|
|
11298
11298
|
* Sets a new value for property {@link #getDisableDeleteButton disableDeleteButton}.
|
|
11299
11299
|
*
|
|
@@ -11851,7 +11851,7 @@ declare namespace sap {
|
|
|
11851
11851
|
* The filterItem to remove or its index or id
|
|
11852
11852
|
*/
|
|
11853
11853
|
vFilterItem: int | string | sap.ui.webc.fiori.IFilterItem
|
|
11854
|
-
): sap.ui.webc.fiori.IFilterItem;
|
|
11854
|
+
): sap.ui.webc.fiori.IFilterItem | null;
|
|
11855
11855
|
/**
|
|
11856
11856
|
* Removes a sortItem from the aggregation {@link #getSortItems sortItems}.
|
|
11857
11857
|
*
|
|
@@ -11862,7 +11862,7 @@ declare namespace sap {
|
|
|
11862
11862
|
* The sortItem to remove or its index or id
|
|
11863
11863
|
*/
|
|
11864
11864
|
vSortItem: int | string | sap.ui.webc.fiori.ISortItem
|
|
11865
|
-
): sap.ui.webc.fiori.ISortItem;
|
|
11865
|
+
): sap.ui.webc.fiori.ISortItem | null;
|
|
11866
11866
|
/**
|
|
11867
11867
|
* Sets a new value for property {@link #getSortDescending sortDescending}.
|
|
11868
11868
|
*
|
|
@@ -12184,7 +12184,7 @@ declare namespace sap {
|
|
|
12184
12184
|
* The step to remove or its index or id
|
|
12185
12185
|
*/
|
|
12186
12186
|
vStep: int | string | sap.ui.webc.fiori.IWizardStep
|
|
12187
|
-
): sap.ui.webc.fiori.IWizardStep;
|
|
12187
|
+
): sap.ui.webc.fiori.IWizardStep | null;
|
|
12188
12188
|
/**
|
|
12189
12189
|
* Sets a new value for property {@link #getHeight height}.
|
|
12190
12190
|
*
|
|
@@ -12441,7 +12441,7 @@ declare namespace sap {
|
|
|
12441
12441
|
* The content to remove or its index or id
|
|
12442
12442
|
*/
|
|
12443
12443
|
vContent: int | string | sap.ui.core.Control
|
|
12444
|
-
): sap.ui.core.Control;
|
|
12444
|
+
): sap.ui.core.Control | null;
|
|
12445
12445
|
/**
|
|
12446
12446
|
* Sets a new value for property {@link #getBranching branching}.
|
|
12447
12447
|
*
|