@openui5/ts-types-esm 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.f.d.ts +170 -24
- package/types/sap.m.d.ts +536 -290
- 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 +300 -94
- 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 +3 -3
- 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 +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.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.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 module "sap/f/library" {
|
|
4
4
|
export interface IShellBar {
|
|
@@ -51,7 +51,7 @@ declare module "sap/m/library" {
|
|
|
51
51
|
*
|
|
52
52
|
* Search given control's parents and try to find iScroll.
|
|
53
53
|
*
|
|
54
|
-
* @returns iScroll reference or undefined if cannot find
|
|
54
|
+
* @returns iScroll reference or `undefined` if cannot find
|
|
55
55
|
*/
|
|
56
56
|
export function getIScroll(
|
|
57
57
|
/**
|
|
@@ -83,7 +83,7 @@ declare module "sap/m/library" {
|
|
|
83
83
|
*
|
|
84
84
|
* Search given control's parents and try to find a ScrollDelegate.
|
|
85
85
|
*
|
|
86
|
-
* @returns ScrollDelegate or undefined if it cannot be found
|
|
86
|
+
* @returns ScrollDelegate or `undefined` if it cannot be found
|
|
87
87
|
*/
|
|
88
88
|
export function getScrollDelegate(
|
|
89
89
|
/**
|
|
@@ -3120,7 +3120,8 @@ declare module "sap/m/library" {
|
|
|
3120
3120
|
/**
|
|
3121
3121
|
* Converts the given percentage value to an absolute number based on the given base size.
|
|
3122
3122
|
*
|
|
3123
|
-
* @returns The calculated size string with "px" as unit or null when the format of given parameter is
|
|
3123
|
+
* @returns The calculated size string with "px" as unit or `null` when the format of given parameter is
|
|
3124
|
+
* wrong.
|
|
3124
3125
|
*/
|
|
3125
3126
|
function calcPercentageSize(
|
|
3126
3127
|
/**
|
|
@@ -3131,7 +3132,7 @@ declare module "sap/m/library" {
|
|
|
3131
3132
|
* A float number which the calculation is based on.
|
|
3132
3133
|
*/
|
|
3133
3134
|
fBaseSize: float
|
|
3134
|
-
):
|
|
3135
|
+
): string | null;
|
|
3135
3136
|
}
|
|
3136
3137
|
|
|
3137
3138
|
export namespace semantic {
|
|
@@ -3434,16 +3435,16 @@ declare module "sap/m/ActionSelect" {
|
|
|
3434
3435
|
*/
|
|
3435
3436
|
removeAllButtons(): string[];
|
|
3436
3437
|
/**
|
|
3437
|
-
*
|
|
3438
|
+
* Removes the given button from the `ActionSelect` content.
|
|
3438
3439
|
*
|
|
3439
|
-
* @returns The
|
|
3440
|
+
* @returns The ID of the removed button or `null`.
|
|
3440
3441
|
*/
|
|
3441
3442
|
removeButton(
|
|
3442
3443
|
/**
|
|
3443
|
-
* The button to remove or its index or
|
|
3444
|
+
* The button to remove or its index or ID.
|
|
3444
3445
|
*/
|
|
3445
3446
|
vButton: int | string | Button
|
|
3446
|
-
): string;
|
|
3447
|
+
): string | null;
|
|
3447
3448
|
}
|
|
3448
3449
|
|
|
3449
3450
|
export interface $ActionSelectSettings extends $SelectSettings {
|
|
@@ -4171,7 +4172,7 @@ declare module "sap/m/ActionSheet" {
|
|
|
4171
4172
|
* The button to remove or its index or id
|
|
4172
4173
|
*/
|
|
4173
4174
|
vButton: int | string | Button
|
|
4174
|
-
): Button;
|
|
4175
|
+
): Button | null;
|
|
4175
4176
|
/**
|
|
4176
4177
|
* Sets a new value for property {@link #getCancelButtonText cancelButtonText}.
|
|
4177
4178
|
*
|
|
@@ -6549,7 +6550,7 @@ declare module "sap/m/Bar" {
|
|
|
6549
6550
|
* The contentLeft to remove or its index or id
|
|
6550
6551
|
*/
|
|
6551
6552
|
vContentLeft: int | string | Control
|
|
6552
|
-
): Control;
|
|
6553
|
+
): Control | null;
|
|
6553
6554
|
/**
|
|
6554
6555
|
* Removes a contentMiddle from the aggregation {@link #getContentMiddle contentMiddle}.
|
|
6555
6556
|
*
|
|
@@ -6560,7 +6561,7 @@ declare module "sap/m/Bar" {
|
|
|
6560
6561
|
* The contentMiddle to remove or its index or id
|
|
6561
6562
|
*/
|
|
6562
6563
|
vContentMiddle: int | string | Control
|
|
6563
|
-
): Control;
|
|
6564
|
+
): Control | null;
|
|
6564
6565
|
/**
|
|
6565
6566
|
* Removes a contentRight from the aggregation {@link #getContentRight contentRight}.
|
|
6566
6567
|
*
|
|
@@ -6571,7 +6572,7 @@ declare module "sap/m/Bar" {
|
|
|
6571
6572
|
* The contentRight to remove or its index or id
|
|
6572
6573
|
*/
|
|
6573
6574
|
vContentRight: int | string | Control
|
|
6574
|
-
): Control;
|
|
6575
|
+
): Control | null;
|
|
6575
6576
|
/**
|
|
6576
6577
|
* @SINCE 1.22
|
|
6577
6578
|
*
|
|
@@ -6741,12 +6742,144 @@ declare module "sap/m/Bar" {
|
|
|
6741
6742
|
}
|
|
6742
6743
|
}
|
|
6743
6744
|
|
|
6745
|
+
declare module "sap/m/BarInPageEnabler" {
|
|
6746
|
+
import BaseObject from "sap/ui/base/Object";
|
|
6747
|
+
|
|
6748
|
+
import Control from "sap/ui/core/Control";
|
|
6749
|
+
|
|
6750
|
+
import { IBar } from "sap/m/library";
|
|
6751
|
+
|
|
6752
|
+
import Metadata from "sap/ui/base/Metadata";
|
|
6753
|
+
|
|
6754
|
+
import RenderManager from "sap/ui/core/RenderManager";
|
|
6755
|
+
|
|
6756
|
+
/**
|
|
6757
|
+
* Helper Class for implementing the IBar interface. Should be created once per IBar instance.
|
|
6758
|
+
*/
|
|
6759
|
+
export default class BarInPageEnabler extends BaseObject {
|
|
6760
|
+
constructor();
|
|
6761
|
+
|
|
6762
|
+
/**
|
|
6763
|
+
* Adds the sapMBarChildClass to a control.
|
|
6764
|
+
*/
|
|
6765
|
+
static addChildClassTo(
|
|
6766
|
+
/**
|
|
6767
|
+
* The sap.ui.core.Control to which the sapMBarChildClass will be added
|
|
6768
|
+
*/
|
|
6769
|
+
oControl: Control
|
|
6770
|
+
): void;
|
|
6771
|
+
/**
|
|
6772
|
+
* Creates a new subclass of class sap.m.BarInPageEnabler with name `sClassName` and enriches it with the
|
|
6773
|
+
* information contained in `oClassInfo`.
|
|
6774
|
+
*
|
|
6775
|
+
* `oClassInfo` might contain the same kind of information as described in {@link sap.ui.base.Object.extend}.
|
|
6776
|
+
*
|
|
6777
|
+
* @returns Created class / constructor function
|
|
6778
|
+
*/
|
|
6779
|
+
static extend<T extends Record<string, unknown>>(
|
|
6780
|
+
/**
|
|
6781
|
+
* Name of the class being created
|
|
6782
|
+
*/
|
|
6783
|
+
sClassName: string,
|
|
6784
|
+
/**
|
|
6785
|
+
* Object literal with information about the class
|
|
6786
|
+
*/
|
|
6787
|
+
oClassInfo?: sap.ClassInfo<T, BarInPageEnabler>,
|
|
6788
|
+
/**
|
|
6789
|
+
* Constructor function for the metadata object; if not given, it defaults to the metadata implementation
|
|
6790
|
+
* used by this class
|
|
6791
|
+
*/
|
|
6792
|
+
FNMetaImpl?: Function
|
|
6793
|
+
): Function;
|
|
6794
|
+
/**
|
|
6795
|
+
* Returns a metadata object for class sap.m.BarInPageEnabler.
|
|
6796
|
+
*
|
|
6797
|
+
* @returns Metadata object describing this class
|
|
6798
|
+
*/
|
|
6799
|
+
static getMetadata(): Metadata;
|
|
6800
|
+
/**
|
|
6801
|
+
* Renders the tooltip for the given control
|
|
6802
|
+
*/
|
|
6803
|
+
static renderTooltip(
|
|
6804
|
+
/**
|
|
6805
|
+
* the RenderManager that can be used for writing to the render output buffer.
|
|
6806
|
+
*/
|
|
6807
|
+
oRM: RenderManager,
|
|
6808
|
+
/**
|
|
6809
|
+
* an object representation of the control that should be rendered.
|
|
6810
|
+
*/
|
|
6811
|
+
oControl: Control
|
|
6812
|
+
): void;
|
|
6813
|
+
/**
|
|
6814
|
+
* Sets classes and HTML tag according to the context of the page.
|
|
6815
|
+
*
|
|
6816
|
+
* Possible contexts are header, footer, subheader.
|
|
6817
|
+
*
|
|
6818
|
+
* @returns `this` for chaining
|
|
6819
|
+
*/
|
|
6820
|
+
applyTagAndContextClassFor(
|
|
6821
|
+
/**
|
|
6822
|
+
* allowed values are header, footer, subheader.
|
|
6823
|
+
*/
|
|
6824
|
+
sContext: string
|
|
6825
|
+
): IBar;
|
|
6826
|
+
/**
|
|
6827
|
+
* Gets the Bar contexts inside page.
|
|
6828
|
+
*
|
|
6829
|
+
* @returns with all available contexts.
|
|
6830
|
+
*/
|
|
6831
|
+
getContext(): Object;
|
|
6832
|
+
/**
|
|
6833
|
+
* Gets the HTML tag of the root domref.
|
|
6834
|
+
*
|
|
6835
|
+
* @returns the HTML-tag
|
|
6836
|
+
*/
|
|
6837
|
+
getHTMLTag(): string;
|
|
6838
|
+
/**
|
|
6839
|
+
* Determines whether the bar is sensitive to the container context.
|
|
6840
|
+
*
|
|
6841
|
+
* Implementation of the IBar interface.
|
|
6842
|
+
*
|
|
6843
|
+
* @returns isContextSensitive
|
|
6844
|
+
*/
|
|
6845
|
+
isContextSensitive(): boolean;
|
|
6846
|
+
/**
|
|
6847
|
+
* Renders the HTML for the given control, using the provided {@link sap.ui.core.RenderManager}.
|
|
6848
|
+
*/
|
|
6849
|
+
render(
|
|
6850
|
+
/**
|
|
6851
|
+
* the RenderManager that can be used for writing to the render output buffer.
|
|
6852
|
+
*/
|
|
6853
|
+
oRM: RenderManager,
|
|
6854
|
+
/**
|
|
6855
|
+
* an object representation of the control that should be rendered.
|
|
6856
|
+
*/
|
|
6857
|
+
oControl: Control
|
|
6858
|
+
): void;
|
|
6859
|
+
/**
|
|
6860
|
+
* Sets the HTML tag of the root element.
|
|
6861
|
+
*
|
|
6862
|
+
* @returns `this` to allow method chaining
|
|
6863
|
+
*/
|
|
6864
|
+
setHTMLTag(
|
|
6865
|
+
/**
|
|
6866
|
+
* The new root element
|
|
6867
|
+
*/
|
|
6868
|
+
sNewTag: string
|
|
6869
|
+
): IBar;
|
|
6870
|
+
}
|
|
6871
|
+
}
|
|
6872
|
+
|
|
6744
6873
|
declare module "sap/m/Breadcrumbs" {
|
|
6745
6874
|
import { default as Control, $ControlSettings } from "sap/ui/core/Control";
|
|
6746
6875
|
|
|
6747
|
-
import {
|
|
6876
|
+
import {
|
|
6877
|
+
IBreadcrumbs,
|
|
6878
|
+
IOverflowToolbarContent,
|
|
6879
|
+
BreadcrumbsSeparatorStyle,
|
|
6880
|
+
} from "sap/m/library";
|
|
6748
6881
|
|
|
6749
|
-
import { ID } from "sap/ui/core/library";
|
|
6882
|
+
import { IShrinkable, ID } from "sap/ui/core/library";
|
|
6750
6883
|
|
|
6751
6884
|
import Link from "sap/m/Link";
|
|
6752
6885
|
|
|
@@ -6764,8 +6897,12 @@ declare module "sap/m/Breadcrumbs" {
|
|
|
6764
6897
|
* navigation path. The last three steps can be accessed as links directly, while the remaining links prior
|
|
6765
6898
|
* to them are available in a drop-down menu.
|
|
6766
6899
|
*/
|
|
6767
|
-
export default class Breadcrumbs
|
|
6900
|
+
export default class Breadcrumbs
|
|
6901
|
+
extends Control
|
|
6902
|
+
implements IBreadcrumbs, IOverflowToolbarContent, IShrinkable {
|
|
6768
6903
|
__implements__sap_m_IBreadcrumbs: boolean;
|
|
6904
|
+
__implements__sap_m_IOverflowToolbarContent: boolean;
|
|
6905
|
+
__implements__sap_ui_core_IShrinkable: boolean;
|
|
6769
6906
|
/**
|
|
6770
6907
|
* Constructor for a new `Breadcrumbs`.
|
|
6771
6908
|
*
|
|
@@ -6981,7 +7118,7 @@ declare module "sap/m/Breadcrumbs" {
|
|
|
6981
7118
|
* The link to remove or its index or id
|
|
6982
7119
|
*/
|
|
6983
7120
|
vLink: int | string | Link
|
|
6984
|
-
): Link;
|
|
7121
|
+
): Link | null;
|
|
6985
7122
|
/**
|
|
6986
7123
|
* @SINCE 1.34
|
|
6987
7124
|
*
|
|
@@ -9493,7 +9630,7 @@ declare module "sap/m/Carousel" {
|
|
|
9493
9630
|
* The page to remove or its index or id
|
|
9494
9631
|
*/
|
|
9495
9632
|
vPage: int | string | Control
|
|
9496
|
-
): Control;
|
|
9633
|
+
): Control | null;
|
|
9497
9634
|
/**
|
|
9498
9635
|
* Sets the associated {@link #getActivePage activePage}.
|
|
9499
9636
|
*
|
|
@@ -12757,7 +12894,7 @@ declare module "sap/m/ColumnListItem" {
|
|
|
12757
12894
|
* The cell to remove or its index or id
|
|
12758
12895
|
*/
|
|
12759
12896
|
vCell: int | string | Control
|
|
12760
|
-
): Control;
|
|
12897
|
+
): Control | null;
|
|
12761
12898
|
/**
|
|
12762
12899
|
* Pemove pop-in from DOM
|
|
12763
12900
|
*/
|
|
@@ -13672,9 +13809,9 @@ declare module "sap/m/ComboBoxBase" {
|
|
|
13672
13809
|
/**
|
|
13673
13810
|
* Gets the first item from the aggregation named `items`.
|
|
13674
13811
|
*
|
|
13675
|
-
* @returns The first item, or null if there are no items.
|
|
13812
|
+
* @returns The first item, or `null` if there are no items.
|
|
13676
13813
|
*/
|
|
13677
|
-
getFirstItem(): Item;
|
|
13814
|
+
getFirstItem(): Item | null;
|
|
13678
13815
|
/**
|
|
13679
13816
|
* @SINCE 1.66
|
|
13680
13817
|
*
|
|
@@ -13687,14 +13824,14 @@ declare module "sap/m/ComboBoxBase" {
|
|
|
13687
13824
|
/**
|
|
13688
13825
|
* Gets the item from the aggregation named `items` at the given 0-based index.
|
|
13689
13826
|
*
|
|
13690
|
-
* @returns Item at the given index, or null if none.
|
|
13827
|
+
* @returns Item at the given index, or `null` if none.
|
|
13691
13828
|
*/
|
|
13692
13829
|
getItemAt(
|
|
13693
13830
|
/**
|
|
13694
13831
|
* Index of the item to return.
|
|
13695
13832
|
*/
|
|
13696
13833
|
iIndex: int
|
|
13697
|
-
): Item;
|
|
13834
|
+
): Item | null;
|
|
13698
13835
|
/**
|
|
13699
13836
|
* Gets the item with the given key from the aggregation named `items`.
|
|
13700
13837
|
* **Note:** If duplicate keys exist, the first item matching the key is returned.
|
|
@@ -13717,9 +13854,9 @@ declare module "sap/m/ComboBoxBase" {
|
|
|
13717
13854
|
/**
|
|
13718
13855
|
* Gets the last item from the aggregation named `items`.
|
|
13719
13856
|
*
|
|
13720
|
-
* @returns The last item, or null if there are no items.
|
|
13857
|
+
* @returns The last item, or `null` if there are no items.
|
|
13721
13858
|
*/
|
|
13722
|
-
getLastItem(): Item;
|
|
13859
|
+
getLastItem(): Item | null;
|
|
13723
13860
|
/**
|
|
13724
13861
|
* @deprecated (since 1.62) - The list structure should not be used as per SAP note: 2746748.
|
|
13725
13862
|
*
|
|
@@ -13928,7 +14065,7 @@ declare module "sap/m/ComboBoxBase" {
|
|
|
13928
14065
|
* The item to remove or its index or id
|
|
13929
14066
|
*/
|
|
13930
14067
|
vItem: int | string | Item
|
|
13931
|
-
): Item;
|
|
14068
|
+
): Item | null;
|
|
13932
14069
|
/**
|
|
13933
14070
|
* @SINCE 1.58
|
|
13934
14071
|
*
|
|
@@ -14878,7 +15015,7 @@ declare module "sap/m/CustomListItem" {
|
|
|
14878
15015
|
* The content to remove or its index or id
|
|
14879
15016
|
*/
|
|
14880
15017
|
vContent: int | string | Control
|
|
14881
|
-
): Control;
|
|
15018
|
+
): Control | null;
|
|
14882
15019
|
/**
|
|
14883
15020
|
* @SINCE 1.84
|
|
14884
15021
|
*
|
|
@@ -15198,7 +15335,7 @@ declare module "sap/m/CustomTreeItem" {
|
|
|
15198
15335
|
* The content to remove or its index or id
|
|
15199
15336
|
*/
|
|
15200
15337
|
vContent: int | string | Control
|
|
15201
|
-
): Control;
|
|
15338
|
+
): Control | null;
|
|
15202
15339
|
/**
|
|
15203
15340
|
* Unbinds aggregation {@link #getContent content} from model data.
|
|
15204
15341
|
*
|
|
@@ -18994,7 +19131,7 @@ declare module "sap/m/Dialog" {
|
|
|
18994
19131
|
* The button to remove or its index or id
|
|
18995
19132
|
*/
|
|
18996
19133
|
vButton: int | string | Button
|
|
18997
|
-
): Button;
|
|
19134
|
+
): Button | null;
|
|
18998
19135
|
/**
|
|
18999
19136
|
* Removes a content from the aggregation {@link #getContent content}.
|
|
19000
19137
|
*
|
|
@@ -19005,7 +19142,7 @@ declare module "sap/m/Dialog" {
|
|
|
19005
19142
|
* The content to remove or its index or id
|
|
19006
19143
|
*/
|
|
19007
19144
|
vContent: int | string | Control
|
|
19008
|
-
): Control;
|
|
19145
|
+
): Control | null;
|
|
19009
19146
|
/**
|
|
19010
19147
|
* @SINCE 1.15.1
|
|
19011
19148
|
*
|
|
@@ -22406,7 +22543,7 @@ declare module "sap/m/FacetFilter" {
|
|
|
22406
22543
|
* The list to remove or its index or id
|
|
22407
22544
|
*/
|
|
22408
22545
|
vList: int | string | FacetFilterList
|
|
22409
|
-
): FacetFilterList;
|
|
22546
|
+
): FacetFilterList | null;
|
|
22410
22547
|
/**
|
|
22411
22548
|
* Sets a new value for property {@link #getLiveSearch liveSearch}.
|
|
22412
22549
|
*
|
|
@@ -25266,7 +25403,7 @@ declare module "sap/m/FeedListItem" {
|
|
|
25266
25403
|
* The action to remove or its index or id
|
|
25267
25404
|
*/
|
|
25268
25405
|
vAction: int | string | FeedListItemAction
|
|
25269
|
-
): FeedListItemAction;
|
|
25406
|
+
): FeedListItemAction | null;
|
|
25270
25407
|
/**
|
|
25271
25408
|
* @SINCE 1.52.0
|
|
25272
25409
|
*
|
|
@@ -26388,7 +26525,7 @@ declare module "sap/m/FlexBox" {
|
|
|
26388
26525
|
* The item to remove or its index or id
|
|
26389
26526
|
*/
|
|
26390
26527
|
vItem: int | string | Control
|
|
26391
|
-
): Control;
|
|
26528
|
+
): Control | null;
|
|
26392
26529
|
/**
|
|
26393
26530
|
* @SINCE 1.36.0
|
|
26394
26531
|
*
|
|
@@ -26804,14 +26941,14 @@ declare module "sap/m/FlexItemData" {
|
|
|
26804
26941
|
/**
|
|
26805
26942
|
* Returns the correct FlexBox item DOM reference.
|
|
26806
26943
|
*
|
|
26807
|
-
* @returns The Element's DOM Element sub DOM Element or null
|
|
26944
|
+
* @returns The Element's DOM Element, sub DOM Element or `null`
|
|
26808
26945
|
*/
|
|
26809
26946
|
getDomRef(
|
|
26810
26947
|
/**
|
|
26811
26948
|
* ID suffix to get the DOMRef for
|
|
26812
26949
|
*/
|
|
26813
26950
|
sSuffix?: string
|
|
26814
|
-
): Element;
|
|
26951
|
+
): Element | null;
|
|
26815
26952
|
/**
|
|
26816
26953
|
* Gets current value of property {@link #getGrowFactor growFactor}.
|
|
26817
26954
|
*
|
|
@@ -27379,7 +27516,7 @@ declare module "sap/m/FormattedText" {
|
|
|
27379
27516
|
* The control to remove or its index or id
|
|
27380
27517
|
*/
|
|
27381
27518
|
vControl: int | string | Link
|
|
27382
|
-
): Link;
|
|
27519
|
+
): Link | null;
|
|
27383
27520
|
/**
|
|
27384
27521
|
* @SINCE 1.45.5
|
|
27385
27522
|
*
|
|
@@ -28426,7 +28563,8 @@ declare module "sap/m/GenericTile" {
|
|
|
28426
28563
|
*/
|
|
28427
28564
|
getIcon(): Control;
|
|
28428
28565
|
/**
|
|
28429
|
-
* @
|
|
28566
|
+
* @SINCE 1.103
|
|
28567
|
+
* @EXPERIMENTAL (since 1.103)
|
|
28430
28568
|
*
|
|
28431
28569
|
* Gets current value of property {@link #getIconLoaded iconLoaded}.
|
|
28432
28570
|
*
|
|
@@ -28572,7 +28710,7 @@ declare module "sap/m/GenericTile" {
|
|
|
28572
28710
|
getUrl(): URI;
|
|
28573
28711
|
/**
|
|
28574
28712
|
* @SINCE 1.95
|
|
28575
|
-
* @EXPERIMENTAL
|
|
28713
|
+
* @EXPERIMENTAL (since 1.95)
|
|
28576
28714
|
*
|
|
28577
28715
|
* Gets current value of property {@link #getValueColor valueColor}.
|
|
28578
28716
|
*
|
|
@@ -28679,7 +28817,7 @@ declare module "sap/m/GenericTile" {
|
|
|
28679
28817
|
* The actionButton to remove or its index or id
|
|
28680
28818
|
*/
|
|
28681
28819
|
vActionButton: int | string | Button
|
|
28682
|
-
): Button;
|
|
28820
|
+
): Button | null;
|
|
28683
28821
|
/**
|
|
28684
28822
|
* @EXPERIMENTAL (since 1.96)
|
|
28685
28823
|
*
|
|
@@ -28708,7 +28846,7 @@ declare module "sap/m/GenericTile" {
|
|
|
28708
28846
|
* The tileContent to remove or its index or id
|
|
28709
28847
|
*/
|
|
28710
28848
|
vTileContent: int | string | TileContent
|
|
28711
|
-
): TileContent;
|
|
28849
|
+
): TileContent | null;
|
|
28712
28850
|
/**
|
|
28713
28851
|
* @SINCE 1.82
|
|
28714
28852
|
*
|
|
@@ -28927,7 +29065,8 @@ declare module "sap/m/GenericTile" {
|
|
|
28927
29065
|
oIcon: Control
|
|
28928
29066
|
): this;
|
|
28929
29067
|
/**
|
|
28930
|
-
* @
|
|
29068
|
+
* @SINCE 1.103
|
|
29069
|
+
* @EXPERIMENTAL (since 1.103)
|
|
28931
29070
|
*
|
|
28932
29071
|
* Sets a new value for property {@link #getIconLoaded iconLoaded}.
|
|
28933
29072
|
*
|
|
@@ -29150,7 +29289,7 @@ declare module "sap/m/GenericTile" {
|
|
|
29150
29289
|
): this;
|
|
29151
29290
|
/**
|
|
29152
29291
|
* @SINCE 1.95
|
|
29153
|
-
* @EXPERIMENTAL
|
|
29292
|
+
* @EXPERIMENTAL (since 1.95)
|
|
29154
29293
|
*
|
|
29155
29294
|
* Sets a new value for property {@link #getValueColor valueColor}.
|
|
29156
29295
|
*
|
|
@@ -29425,7 +29564,7 @@ declare module "sap/m/GenericTile" {
|
|
|
29425
29564
|
|
|
29426
29565
|
/**
|
|
29427
29566
|
* @SINCE 1.95
|
|
29428
|
-
* @EXPERIMENTAL
|
|
29567
|
+
* @EXPERIMENTAL (since 1.95)
|
|
29429
29568
|
*
|
|
29430
29569
|
* The semantic color of the value.
|
|
29431
29570
|
*/
|
|
@@ -29435,7 +29574,8 @@ declare module "sap/m/GenericTile" {
|
|
|
29435
29574
|
| `{${string}}`;
|
|
29436
29575
|
|
|
29437
29576
|
/**
|
|
29438
|
-
* @
|
|
29577
|
+
* @SINCE 1.103
|
|
29578
|
+
* @EXPERIMENTAL (since 1.103)
|
|
29439
29579
|
*
|
|
29440
29580
|
* The load state of the tileIcon.
|
|
29441
29581
|
*/
|
|
@@ -30420,7 +30560,7 @@ declare module "sap/m/HeaderContainer" {
|
|
|
30420
30560
|
* The content to remove or its index or id
|
|
30421
30561
|
*/
|
|
30422
30562
|
vContent: int | string | Control
|
|
30423
|
-
): Control;
|
|
30563
|
+
): Control | null;
|
|
30424
30564
|
/**
|
|
30425
30565
|
* Sets a new value for property {@link #getBackgroundDesign backgroundDesign}.
|
|
30426
30566
|
*
|
|
@@ -31099,7 +31239,8 @@ declare module "sap/m/IconTabBar" {
|
|
|
31099
31239
|
*
|
|
31100
31240
|
* Specifies whether tab reordering is enabled. Relevant only for desktop devices. The {@link sap.m.IconTabSeparator
|
|
31101
31241
|
* sap.m.IconTabSeparator} cannot be dragged and dropped Items can be moved around {@link sap.m.IconTabSeparator
|
|
31102
|
-
* sap.m.IconTabSeparator}
|
|
31242
|
+
* sap.m.IconTabSeparator} Reordering is enabled via keyboard using `Ctrl` + arrow keys (Windows) and `Control`
|
|
31243
|
+
* + arrow keys (Mac OS)
|
|
31103
31244
|
*
|
|
31104
31245
|
* Default value is `false`.
|
|
31105
31246
|
*
|
|
@@ -31349,7 +31490,7 @@ declare module "sap/m/IconTabBar" {
|
|
|
31349
31490
|
* The content to remove or its index or id
|
|
31350
31491
|
*/
|
|
31351
31492
|
vContent: int | string | Control
|
|
31352
|
-
): Control;
|
|
31493
|
+
): Control | null;
|
|
31353
31494
|
/**
|
|
31354
31495
|
* Removes a item from the aggregation {@link #getItems items}.
|
|
31355
31496
|
*
|
|
@@ -31360,7 +31501,7 @@ declare module "sap/m/IconTabBar" {
|
|
|
31360
31501
|
* The item to remove or its index or id
|
|
31361
31502
|
*/
|
|
31362
31503
|
vItem: int | string | IconTab
|
|
31363
|
-
): IconTab;
|
|
31504
|
+
): IconTab | null;
|
|
31364
31505
|
/**
|
|
31365
31506
|
* @SINCE 1.26
|
|
31366
31507
|
*
|
|
@@ -31726,7 +31867,8 @@ declare module "sap/m/IconTabBar" {
|
|
|
31726
31867
|
*
|
|
31727
31868
|
* Specifies whether tab reordering is enabled. Relevant only for desktop devices. The {@link sap.m.IconTabSeparator
|
|
31728
31869
|
* sap.m.IconTabSeparator} cannot be dragged and dropped Items can be moved around {@link sap.m.IconTabSeparator
|
|
31729
|
-
* sap.m.IconTabSeparator}
|
|
31870
|
+
* sap.m.IconTabSeparator} Reordering is enabled via keyboard using `Ctrl` + arrow keys (Windows) and `Control`
|
|
31871
|
+
* + arrow keys (Mac OS)
|
|
31730
31872
|
*/
|
|
31731
31873
|
enableTabReordering?: boolean | PropertyBindingInfo | `{${string}}`;
|
|
31732
31874
|
|
|
@@ -32131,7 +32273,7 @@ declare module "sap/m/IconTabFilter" {
|
|
|
32131
32273
|
* The content to remove or its index or id
|
|
32132
32274
|
*/
|
|
32133
32275
|
vContent: int | string | Control
|
|
32134
|
-
): Control;
|
|
32276
|
+
): Control | null;
|
|
32135
32277
|
/**
|
|
32136
32278
|
* @SINCE 1.77
|
|
32137
32279
|
*
|
|
@@ -32144,7 +32286,7 @@ declare module "sap/m/IconTabFilter" {
|
|
|
32144
32286
|
* The item to remove or its index or id
|
|
32145
32287
|
*/
|
|
32146
32288
|
vItem: int | string | IconTab
|
|
32147
|
-
): IconTab;
|
|
32289
|
+
): IconTab | null;
|
|
32148
32290
|
/**
|
|
32149
32291
|
* Renders this item in the IconTabHeader.
|
|
32150
32292
|
*/
|
|
@@ -32622,7 +32764,8 @@ declare module "sap/m/IconTabHeader" {
|
|
|
32622
32764
|
*
|
|
32623
32765
|
* Specifies whether tab reordering is enabled. Relevant only for desktop devices. The {@link sap.m.IconTabSeparator
|
|
32624
32766
|
* sap.m.IconTabSeparator} cannot be dragged and dropped Items can be moved around {@link sap.m.IconTabSeparator
|
|
32625
|
-
* sap.m.IconTabSeparator}
|
|
32767
|
+
* sap.m.IconTabSeparator} Reordering is enabled via keyboard using `Ctrl` + arrow keys (Windows) and `Control`
|
|
32768
|
+
* + arrow keys (Mac OS)
|
|
32626
32769
|
*
|
|
32627
32770
|
* Default value is `false`.
|
|
32628
32771
|
*
|
|
@@ -32793,7 +32936,7 @@ declare module "sap/m/IconTabHeader" {
|
|
|
32793
32936
|
* The item to remove or its index or id
|
|
32794
32937
|
*/
|
|
32795
32938
|
vItem: int | string | IconTab
|
|
32796
|
-
): IconTab;
|
|
32939
|
+
): IconTab | null;
|
|
32797
32940
|
/**
|
|
32798
32941
|
* @SINCE 1.80
|
|
32799
32942
|
*
|
|
@@ -32843,7 +32986,8 @@ declare module "sap/m/IconTabHeader" {
|
|
|
32843
32986
|
*
|
|
32844
32987
|
* Specifies whether tab reordering is enabled. Relevant only for desktop devices. The {@link sap.m.IconTabSeparator
|
|
32845
32988
|
* sap.m.IconTabSeparator} cannot be dragged and dropped Items can be moved around {@link sap.m.IconTabSeparator
|
|
32846
|
-
* sap.m.IconTabSeparator}
|
|
32989
|
+
* sap.m.IconTabSeparator} Reordering is enabled via keyboard using `Ctrl` + arrow keys (Windows) and `Control`
|
|
32990
|
+
* + arrow keys (Mac OS)
|
|
32847
32991
|
*
|
|
32848
32992
|
* When called with a value of `null` or `undefined`, the default value of the property will be restored.
|
|
32849
32993
|
*
|
|
@@ -33080,7 +33224,8 @@ declare module "sap/m/IconTabHeader" {
|
|
|
33080
33224
|
*
|
|
33081
33225
|
* Specifies whether tab reordering is enabled. Relevant only for desktop devices. The {@link sap.m.IconTabSeparator
|
|
33082
33226
|
* sap.m.IconTabSeparator} cannot be dragged and dropped Items can be moved around {@link sap.m.IconTabSeparator
|
|
33083
|
-
* sap.m.IconTabSeparator}
|
|
33227
|
+
* sap.m.IconTabSeparator} Reordering is enabled via keyboard using `Ctrl` + arrow keys (Windows) and `Control`
|
|
33228
|
+
* + arrow keys (Mac OS)
|
|
33084
33229
|
*/
|
|
33085
33230
|
enableTabReordering?: boolean | PropertyBindingInfo | `{${string}}`;
|
|
33086
33231
|
|
|
@@ -33649,7 +33794,7 @@ declare module "sap/m/IllustratedMessage" {
|
|
|
33649
33794
|
* The additionalContent to remove or its index or id
|
|
33650
33795
|
*/
|
|
33651
33796
|
vAdditionalContent: int | string | Button
|
|
33652
|
-
): Button;
|
|
33797
|
+
): Button | null;
|
|
33653
33798
|
/**
|
|
33654
33799
|
* @SINCE 1.98
|
|
33655
33800
|
*
|
|
@@ -37220,7 +37365,7 @@ declare module "sap/m/Input" {
|
|
|
37220
37365
|
* The suggestionColumn to remove or its index or id
|
|
37221
37366
|
*/
|
|
37222
37367
|
vSuggestionColumn: int | string | Column
|
|
37223
|
-
): Column;
|
|
37368
|
+
): Column | null;
|
|
37224
37369
|
/**
|
|
37225
37370
|
* Removes suggestion item.
|
|
37226
37371
|
*
|
|
@@ -37244,7 +37389,7 @@ declare module "sap/m/Input" {
|
|
|
37244
37389
|
* The suggestionRow to remove or its index or id
|
|
37245
37390
|
*/
|
|
37246
37391
|
vSuggestionRow: int | string | ColumnListItem | GroupHeaderListItem
|
|
37247
|
-
): ColumnListItem | GroupHeaderListItem;
|
|
37392
|
+
): ColumnListItem | GroupHeaderListItem | null;
|
|
37248
37393
|
/**
|
|
37249
37394
|
* @SINCE 1.61
|
|
37250
37395
|
*
|
|
@@ -39735,7 +39880,7 @@ declare module "sap/m/InputListItem" {
|
|
|
39735
39880
|
* The content to remove or its index or id
|
|
39736
39881
|
*/
|
|
39737
39882
|
vContent: int | string | Control
|
|
39738
|
-
): Control;
|
|
39883
|
+
): Control | null;
|
|
39739
39884
|
/**
|
|
39740
39885
|
* Sets a new value for property {@link #getLabel label}.
|
|
39741
39886
|
*
|
|
@@ -39938,7 +40083,7 @@ declare module "sap/m/InstanceManager" {
|
|
|
39938
40083
|
* as long as it has a close method.
|
|
39939
40084
|
*/
|
|
39940
40085
|
oDialog: Control
|
|
39941
|
-
):
|
|
40086
|
+
): this;
|
|
39942
40087
|
/**
|
|
39943
40088
|
* Adds an instance to the given category. If the instance is already added to the same category, it won't
|
|
39944
40089
|
* be added again.
|
|
@@ -39954,7 +40099,7 @@ declare module "sap/m/InstanceManager" {
|
|
|
39954
40099
|
* The instance that will be added to the given category.
|
|
39955
40100
|
*/
|
|
39956
40101
|
oInstance: object
|
|
39957
|
-
):
|
|
40102
|
+
): this;
|
|
39958
40103
|
/**
|
|
39959
40104
|
* Adds a control to predefined lightbox category in instance manager.
|
|
39960
40105
|
*
|
|
@@ -39966,7 +40111,7 @@ declare module "sap/m/InstanceManager" {
|
|
|
39966
40111
|
* as long as it has a close method.
|
|
39967
40112
|
*/
|
|
39968
40113
|
oLightBox: LightBox
|
|
39969
|
-
):
|
|
40114
|
+
): this;
|
|
39970
40115
|
/**
|
|
39971
40116
|
* Adds a control to predefined popover category in instance manager.
|
|
39972
40117
|
*
|
|
@@ -39978,25 +40123,25 @@ declare module "sap/m/InstanceManager" {
|
|
|
39978
40123
|
* also be added as long as it has a close method.
|
|
39979
40124
|
*/
|
|
39980
40125
|
oPopover: Control
|
|
39981
|
-
):
|
|
40126
|
+
): this;
|
|
39982
40127
|
/**
|
|
39983
40128
|
* Closes all of the open dialogs.
|
|
39984
40129
|
*
|
|
39985
40130
|
* @returns Enable method chaining.
|
|
39986
40131
|
*/
|
|
39987
|
-
closeAllDialogs(fnCallback: Function):
|
|
40132
|
+
closeAllDialogs(fnCallback: Function): this;
|
|
39988
40133
|
/**
|
|
39989
40134
|
* Closes all open lightboxes.
|
|
39990
40135
|
*
|
|
39991
40136
|
* @returns Enable method chaining.
|
|
39992
40137
|
*/
|
|
39993
|
-
closeAllLightBoxes():
|
|
40138
|
+
closeAllLightBoxes(): this;
|
|
39994
40139
|
/**
|
|
39995
40140
|
* Closes all open popovers.
|
|
39996
40141
|
*
|
|
39997
40142
|
* @returns Enable method chaining.
|
|
39998
40143
|
*/
|
|
39999
|
-
closeAllPopovers():
|
|
40144
|
+
closeAllPopovers(): this;
|
|
40000
40145
|
/**
|
|
40001
40146
|
* Returns an array of managed instances in the given category.
|
|
40002
40147
|
*
|
|
@@ -40007,7 +40152,7 @@ declare module "sap/m/InstanceManager" {
|
|
|
40007
40152
|
* The category's id.
|
|
40008
40153
|
*/
|
|
40009
40154
|
sCategoryId: string
|
|
40010
|
-
): object;
|
|
40155
|
+
): object[];
|
|
40011
40156
|
/**
|
|
40012
40157
|
* Gets all of the open dialogs. If there's no dialog open, an empty array is returned.
|
|
40013
40158
|
*
|
|
@@ -40124,7 +40269,7 @@ declare module "sap/m/InstanceManager" {
|
|
|
40124
40269
|
/**
|
|
40125
40270
|
* Removes control from predefined dialog category in instance manager.
|
|
40126
40271
|
*
|
|
40127
|
-
* @returns The removed popover or null
|
|
40272
|
+
* @returns The removed popover or `null`. If the popover isn't managed, this method returns `null` instead
|
|
40128
40273
|
* of the removed popover.
|
|
40129
40274
|
*/
|
|
40130
40275
|
removeDialogInstance(
|
|
@@ -40136,7 +40281,7 @@ declare module "sap/m/InstanceManager" {
|
|
|
40136
40281
|
/**
|
|
40137
40282
|
* Removes a managed instance from the given category.
|
|
40138
40283
|
*
|
|
40139
|
-
* @returns The removed instance or null
|
|
40284
|
+
* @returns The removed instance or `null`. If the instance isn't managed, this method returns `null` instead
|
|
40140
40285
|
* of the instance object.
|
|
40141
40286
|
*/
|
|
40142
40287
|
removeInstance(
|
|
@@ -40148,11 +40293,11 @@ declare module "sap/m/InstanceManager" {
|
|
|
40148
40293
|
* The instance that will be removed from the given category.
|
|
40149
40294
|
*/
|
|
40150
40295
|
oInstance: object
|
|
40151
|
-
): object;
|
|
40296
|
+
): object | null;
|
|
40152
40297
|
/**
|
|
40153
40298
|
* Removes control from predefined lightbox category in instance manager.
|
|
40154
40299
|
*
|
|
40155
|
-
* @returns The removed popover or null
|
|
40300
|
+
* @returns The removed popover or `null`. If the LightBox isn't managed, this method returns `null` instead
|
|
40156
40301
|
* of the removed LightBox.
|
|
40157
40302
|
*/
|
|
40158
40303
|
removeLightBoxInstance(
|
|
@@ -40164,7 +40309,7 @@ declare module "sap/m/InstanceManager" {
|
|
|
40164
40309
|
/**
|
|
40165
40310
|
* Removes control from predefined popover category in instance manager.
|
|
40166
40311
|
*
|
|
40167
|
-
* @returns The removed popover or null
|
|
40312
|
+
* @returns The removed popover or `null`. If the popover isn't managed, this method returns `null` instead
|
|
40168
40313
|
* of the removed popover.
|
|
40169
40314
|
*/
|
|
40170
40315
|
removePopoverInstance(
|
|
@@ -40172,7 +40317,7 @@ declare module "sap/m/InstanceManager" {
|
|
|
40172
40317
|
* to be removed from instance manager.
|
|
40173
40318
|
*/
|
|
40174
40319
|
oPopover: Control
|
|
40175
|
-
): Control;
|
|
40320
|
+
): Control | null;
|
|
40176
40321
|
}
|
|
40177
40322
|
const InstanceManager: InstanceManager;
|
|
40178
40323
|
export default InstanceManager;
|
|
@@ -41001,7 +41146,7 @@ declare module "sap/m/LightBox" {
|
|
|
41001
41146
|
* The imageContent to remove or its index or id
|
|
41002
41147
|
*/
|
|
41003
41148
|
vImageContent: int | string | LightBoxItem
|
|
41004
|
-
): LightBoxItem;
|
|
41149
|
+
): LightBoxItem | null;
|
|
41005
41150
|
/**
|
|
41006
41151
|
* Unbinds aggregation {@link #getImageContent imageContent} from model data.
|
|
41007
41152
|
*
|
|
@@ -43805,7 +43950,7 @@ declare module "sap/m/ListBase" {
|
|
|
43805
43950
|
* The item to remove or its index or id
|
|
43806
43951
|
*/
|
|
43807
43952
|
vItem: int | string | ListItemBase
|
|
43808
|
-
): ListItemBase;
|
|
43953
|
+
): ListItemBase | null;
|
|
43809
43954
|
/**
|
|
43810
43955
|
* Removes visible selections of the current selection mode.
|
|
43811
43956
|
*/
|
|
@@ -45772,7 +45917,7 @@ declare module "sap/m/MaskInput" {
|
|
|
45772
45917
|
* The rule to remove or its index or id
|
|
45773
45918
|
*/
|
|
45774
45919
|
vRule: int | string | MaskInputRule
|
|
45775
|
-
): MaskInputRule;
|
|
45920
|
+
): MaskInputRule | null;
|
|
45776
45921
|
/**
|
|
45777
45922
|
* Sets a new value for property {@link #getMask mask}.
|
|
45778
45923
|
*
|
|
@@ -46395,7 +46540,7 @@ declare module "sap/m/Menu" {
|
|
|
46395
46540
|
* The item to remove or its index or id
|
|
46396
46541
|
*/
|
|
46397
46542
|
vItem: int | string | MenuItem
|
|
46398
|
-
): MenuItem;
|
|
46543
|
+
): MenuItem | null;
|
|
46399
46544
|
/**
|
|
46400
46545
|
* Sets the title of the `Menu`.
|
|
46401
46546
|
*
|
|
@@ -47681,7 +47826,7 @@ declare module "sap/m/MenuItem" {
|
|
|
47681
47826
|
* The item to remove or its index or id
|
|
47682
47827
|
*/
|
|
47683
47828
|
vItem: int | string | MenuItem
|
|
47684
|
-
): MenuItem;
|
|
47829
|
+
): MenuItem | null;
|
|
47685
47830
|
/**
|
|
47686
47831
|
* Sets a new value for property {@link #getIcon icon}.
|
|
47687
47832
|
*
|
|
@@ -47808,17 +47953,17 @@ declare module "sap/m/MessageBox" {
|
|
|
47808
47953
|
* Example:
|
|
47809
47954
|
* ```javascript
|
|
47810
47955
|
*
|
|
47811
|
-
*
|
|
47812
|
-
*
|
|
47813
|
-
*
|
|
47814
|
-
*
|
|
47815
|
-
*
|
|
47816
|
-
*
|
|
47817
|
-
*
|
|
47818
|
-
*
|
|
47819
|
-
*
|
|
47820
|
-
*
|
|
47821
|
-
*
|
|
47956
|
+
* sap.ui.define(["sap/m/MessageBox"], function (MessageBox) {
|
|
47957
|
+
* MessageBox.show(
|
|
47958
|
+
* "This message should appear in the message box.", {
|
|
47959
|
+
* icon: MessageBox.Icon.INFORMATION,
|
|
47960
|
+
* title: "My message box title",
|
|
47961
|
+
* actions: [MessageBox.Action.YES, MessageBox.Action.NO],
|
|
47962
|
+
* emphasizedAction: MessageBox.Action.YES,
|
|
47963
|
+
* onClose: function (oAction) { / * do something * / }
|
|
47964
|
+
* }
|
|
47965
|
+
* );
|
|
47966
|
+
* });
|
|
47822
47967
|
* ```
|
|
47823
47968
|
*
|
|
47824
47969
|
*
|
|
@@ -47928,11 +48073,15 @@ declare module "sap/m/MessageBox" {
|
|
|
47928
48073
|
*/
|
|
47929
48074
|
horizontalScrolling?: boolean;
|
|
47930
48075
|
/**
|
|
47931
|
-
* Added since version 1.28.0. If 'details' is set
|
|
47932
|
-
* the
|
|
47933
|
-
*
|
|
48076
|
+
* Added since version 1.28.0. If 'details' is set, a link to view details is added. When the user clicks
|
|
48077
|
+
* the link, the text area containing 'details' information is displayed. The initial visibility is not
|
|
48078
|
+
* configurable and the details are hidden by default.
|
|
48079
|
+
* If object is given, it will be serialized using `JSON.stringify`.
|
|
48080
|
+
* Since version 1.103, a callback function can be used. It should return a promise, that resolves with
|
|
48081
|
+
* a `string` value or a JSON object, which will be stringified, or rejects - in this case a default error
|
|
48082
|
+
* message will be displayed.
|
|
47934
48083
|
*/
|
|
47935
|
-
details?: string;
|
|
48084
|
+
details?: string | object | (() => Promise<string | object>);
|
|
47936
48085
|
/**
|
|
47937
48086
|
* Added since version 1.72.0. Whether the MessageBox will be closed automatically when a routing navigation
|
|
47938
48087
|
* occurs.
|
|
@@ -48042,11 +48191,15 @@ declare module "sap/m/MessageBox" {
|
|
|
48042
48191
|
*/
|
|
48043
48192
|
horizontalScrolling?: boolean;
|
|
48044
48193
|
/**
|
|
48045
|
-
* Added since version 1.28.0. If 'details' is set
|
|
48046
|
-
* the
|
|
48047
|
-
*
|
|
48194
|
+
* Added since version 1.28.0. If 'details' is set, a link to view details is added. When the user clicks
|
|
48195
|
+
* the link, the text area containing 'details' information is displayed. The initial visibility is not
|
|
48196
|
+
* configurable and the details are hidden by default.
|
|
48197
|
+
* If object is given, it will be serialized using `JSON.stringify`.
|
|
48198
|
+
* Since version 1.103, a callback function can be used. It should return a promise, that resolves with
|
|
48199
|
+
* a `string` value or a JSON object, which will be stringified, or rejects - in this case a default error
|
|
48200
|
+
* message will be displayed.
|
|
48048
48201
|
*/
|
|
48049
|
-
details?: string;
|
|
48202
|
+
details?: string | object | (() => Promise<string | object>);
|
|
48050
48203
|
/**
|
|
48051
48204
|
* Added since version 1.72.0. Whether the MessageBox will be closed automatically when a routing navigation
|
|
48052
48205
|
* occurs.
|
|
@@ -48151,11 +48304,15 @@ declare module "sap/m/MessageBox" {
|
|
|
48151
48304
|
*/
|
|
48152
48305
|
horizontalScrolling?: boolean;
|
|
48153
48306
|
/**
|
|
48154
|
-
* Added since version 1.28.0. If 'details' is set
|
|
48155
|
-
* the
|
|
48156
|
-
*
|
|
48307
|
+
* Added since version 1.28.0. If 'details' is set, a link to view details is added. When the user clicks
|
|
48308
|
+
* the link, the text area containing 'details' information is displayed. The initial visibility is not
|
|
48309
|
+
* configurable and the details are hidden by default.
|
|
48310
|
+
* If object is given, it will be serialized using `JSON.stringify`.
|
|
48311
|
+
* Since version 1.103, a callback function can be used. It should return a promise, that resolves with
|
|
48312
|
+
* a `string` value or a JSON object, which will be stringified, or rejects - in this case a default error
|
|
48313
|
+
* message will be displayed.
|
|
48157
48314
|
*/
|
|
48158
|
-
details?: string;
|
|
48315
|
+
details?: string | object | (() => Promise<string | object>);
|
|
48159
48316
|
/**
|
|
48160
48317
|
* Added since version 1.72.0. Whether the MessageBox will be closed automatically when a routing navigation
|
|
48161
48318
|
* occurs.
|
|
@@ -48184,7 +48341,7 @@ declare module "sap/m/MessageBox" {
|
|
|
48184
48341
|
* ```
|
|
48185
48342
|
*
|
|
48186
48343
|
*
|
|
48187
|
-
* The callback is called with the following signature
|
|
48344
|
+
* The callback is called with the following signature
|
|
48188
48345
|
* ```javascript
|
|
48189
48346
|
*
|
|
48190
48347
|
* function (oAction)
|
|
@@ -48258,11 +48415,15 @@ declare module "sap/m/MessageBox" {
|
|
|
48258
48415
|
*/
|
|
48259
48416
|
horizontalScrolling?: boolean;
|
|
48260
48417
|
/**
|
|
48261
|
-
* Added since version 1.28.0. If 'details' is set
|
|
48262
|
-
* the
|
|
48263
|
-
*
|
|
48418
|
+
* Added since version 1.28.0. If 'details' is set, a link to view details is added. When the user clicks
|
|
48419
|
+
* the link, the text area containing 'details' information is displayed. The initial visibility is not
|
|
48420
|
+
* configurable and the details are hidden by default.
|
|
48421
|
+
* If object is given, it will be serialized using `JSON.stringify`.
|
|
48422
|
+
* Since version 1.103, a callback function can be used. It should return a promise, that resolves with
|
|
48423
|
+
* a `string` value or a JSON object, which will be stringified, or rejects - in this case a default error
|
|
48424
|
+
* message will be displayed.
|
|
48264
48425
|
*/
|
|
48265
|
-
details?: string;
|
|
48426
|
+
details?: string | object | (() => Promise<string | object>);
|
|
48266
48427
|
/**
|
|
48267
48428
|
* Added since version 1.72.0. Whether the MessageBox will be closed automatically when a routing navigation
|
|
48268
48429
|
* occurs.
|
|
@@ -48375,11 +48536,15 @@ declare module "sap/m/MessageBox" {
|
|
|
48375
48536
|
*/
|
|
48376
48537
|
horizontalScrolling?: boolean;
|
|
48377
48538
|
/**
|
|
48378
|
-
* Added since version 1.28.0. If 'details' is set
|
|
48379
|
-
* the
|
|
48380
|
-
*
|
|
48539
|
+
* Added since version 1.28.0. If 'details' is set, a link to view details is added. When the user clicks
|
|
48540
|
+
* the link, the text area containing 'details' information is displayed. The initial visibility is not
|
|
48541
|
+
* configurable and the details are hidden by default.
|
|
48542
|
+
* If object is given, it will be serialized using `JSON.stringify`.
|
|
48543
|
+
* Since version 1.103, a callback function can be used. It should return a promise, that resolves with
|
|
48544
|
+
* a `string` value or a JSON object, which will be stringified, or rejects - in this case a default error
|
|
48545
|
+
* message will be displayed.
|
|
48381
48546
|
*/
|
|
48382
|
-
details?: string;
|
|
48547
|
+
details?: string | object | (() => Promise<string | object>);
|
|
48383
48548
|
/**
|
|
48384
48549
|
* The width of the MessageBox
|
|
48385
48550
|
*/
|
|
@@ -48413,8 +48578,6 @@ declare module "sap/m/MessageBox" {
|
|
|
48413
48578
|
*
|
|
48414
48579
|
*
|
|
48415
48580
|
* The callback is called with the following signature
|
|
48416
|
-
*
|
|
48417
|
-
*
|
|
48418
48581
|
* ```javascript
|
|
48419
48582
|
*
|
|
48420
48583
|
* function(oAction)
|
|
@@ -48488,11 +48651,15 @@ declare module "sap/m/MessageBox" {
|
|
|
48488
48651
|
*/
|
|
48489
48652
|
horizontalScrolling?: boolean;
|
|
48490
48653
|
/**
|
|
48491
|
-
* Added since version 1.28.0. If 'details' is set
|
|
48492
|
-
* the
|
|
48493
|
-
*
|
|
48654
|
+
* Added since version 1.28.0. If 'details' is set, a link to view details is added. When the user clicks
|
|
48655
|
+
* the link, the text area containing 'details' information is displayed. The initial visibility is not
|
|
48656
|
+
* configurable and the details are hidden by default.
|
|
48657
|
+
* If object is given, it will be serialized using `JSON.stringify`.
|
|
48658
|
+
* Since version 1.103, a callback function can be used. It should return a promise, that resolves with
|
|
48659
|
+
* a `string` value or a JSON object, which will be stringified, or rejects - in this case a default error
|
|
48660
|
+
* message will be displayed.
|
|
48494
48661
|
*/
|
|
48495
|
-
details?: string;
|
|
48662
|
+
details?: string | object | (() => Promise<string | object>);
|
|
48496
48663
|
/**
|
|
48497
48664
|
* Added since version 1.72.0. Whether the MessageBox will be closed automatically when a routing navigation
|
|
48498
48665
|
* occurs.
|
|
@@ -48521,7 +48688,7 @@ declare module "sap/m/MessageBox" {
|
|
|
48521
48688
|
* ```
|
|
48522
48689
|
*
|
|
48523
48690
|
*
|
|
48524
|
-
* The callback is called with the following signature
|
|
48691
|
+
* The callback is called with the following signature
|
|
48525
48692
|
* ```javascript
|
|
48526
48693
|
*
|
|
48527
48694
|
* function (oAction)
|
|
@@ -48595,11 +48762,15 @@ declare module "sap/m/MessageBox" {
|
|
|
48595
48762
|
*/
|
|
48596
48763
|
horizontalScrolling?: boolean;
|
|
48597
48764
|
/**
|
|
48598
|
-
* Added since version 1.28.0. If 'details' is set
|
|
48599
|
-
* the
|
|
48600
|
-
*
|
|
48765
|
+
* Added since version 1.28.0. If 'details' is set, a link to view details is added. When the user clicks
|
|
48766
|
+
* the link, the text area containing 'details' information is displayed. The initial visibility is not
|
|
48767
|
+
* configurable and the details are hidden by default.
|
|
48768
|
+
* If object is given, it will be serialized using `JSON.stringify`.
|
|
48769
|
+
* Since version 1.103, a callback function can be used. It should return a promise, that resolves with
|
|
48770
|
+
* a `string` value or a JSON object, which will be stringified, or rejects - in this case a default error
|
|
48771
|
+
* message will be displayed.
|
|
48601
48772
|
*/
|
|
48602
|
-
details?: string;
|
|
48773
|
+
details?: string | object | (() => Promise<string | object>);
|
|
48603
48774
|
/**
|
|
48604
48775
|
* Added since version 1.72.0. Whether the MessageBox will be closed automatically when a routing navigation
|
|
48605
48776
|
* occurs.
|
|
@@ -49557,7 +49728,7 @@ declare module "sap/m/MessagePage" {
|
|
|
49557
49728
|
* The button to remove or its index or id
|
|
49558
49729
|
*/
|
|
49559
49730
|
vButton: int | string | Button
|
|
49560
|
-
): Button;
|
|
49731
|
+
): Button | null;
|
|
49561
49732
|
/**
|
|
49562
49733
|
* Sets the aggregated {@link #getCustomDescription customDescription}.
|
|
49563
49734
|
*
|
|
@@ -50892,7 +51063,7 @@ declare module "sap/m/MessagePopover" {
|
|
|
50892
51063
|
* The item to remove or its index or id
|
|
50893
51064
|
*/
|
|
50894
51065
|
vItem: int | string | MessageItem | MessagePopoverItem
|
|
50895
|
-
): MessageItem | MessagePopoverItem;
|
|
51066
|
+
): MessageItem | MessagePopoverItem | null;
|
|
50896
51067
|
/**
|
|
50897
51068
|
* Sets a new value for property {@link #getAsyncDescriptionHandler asyncDescriptionHandler}.
|
|
50898
51069
|
*
|
|
@@ -52504,7 +52675,7 @@ declare module "sap/m/MessageView" {
|
|
|
52504
52675
|
* The item to remove or its index or id
|
|
52505
52676
|
*/
|
|
52506
52677
|
vItem: int | string | MessageItem
|
|
52507
|
-
): MessageItem;
|
|
52678
|
+
): MessageItem | null;
|
|
52508
52679
|
/**
|
|
52509
52680
|
* Sets a new value for property {@link #getAsyncDescriptionHandler asyncDescriptionHandler}.
|
|
52510
52681
|
*
|
|
@@ -53083,16 +53254,16 @@ declare module "sap/m/MultiComboBox" {
|
|
|
53083
53254
|
*/
|
|
53084
53255
|
removeAllSelectedItems(): ID[];
|
|
53085
53256
|
/**
|
|
53086
|
-
* Removes
|
|
53257
|
+
* Removes a selected item from the association named `selectedItems`.
|
|
53087
53258
|
*
|
|
53088
|
-
* @returns The removed
|
|
53259
|
+
* @returns The removed item or `null`
|
|
53089
53260
|
*/
|
|
53090
53261
|
removeSelectedItem(
|
|
53091
53262
|
/**
|
|
53092
|
-
* The item to be removed
|
|
53263
|
+
* The item to be removed or its ID
|
|
53093
53264
|
*/
|
|
53094
|
-
oItem: Item | ID
|
|
53095
|
-
):
|
|
53265
|
+
oItem: Item | ID
|
|
53266
|
+
): Item | null;
|
|
53096
53267
|
/**
|
|
53097
53268
|
* Removes selected items. Only items with valid keys are removed.
|
|
53098
53269
|
*
|
|
@@ -53783,7 +53954,7 @@ declare module "sap/m/MultiInput" {
|
|
|
53783
53954
|
* The token to remove or its index or id
|
|
53784
53955
|
*/
|
|
53785
53956
|
vToken: int | string | Token
|
|
53786
|
-
): Token;
|
|
53957
|
+
): Token | null;
|
|
53787
53958
|
/**
|
|
53788
53959
|
* Function removes a validation callback.
|
|
53789
53960
|
*/
|
|
@@ -54510,16 +54681,16 @@ declare module "sap/m/NavContainer" {
|
|
|
54510
54681
|
*/
|
|
54511
54682
|
getInitialPage(): ID;
|
|
54512
54683
|
/**
|
|
54513
|
-
* Returns the control with the given ID from the
|
|
54684
|
+
* Returns the control with the given ID from the `pages` aggregation (if available).
|
|
54514
54685
|
*
|
|
54515
|
-
* @returns The control with the given ID or null if it doesn
|
|
54686
|
+
* @returns The control with the given ID or `null` if it doesn't exist
|
|
54516
54687
|
*/
|
|
54517
54688
|
getPage(
|
|
54518
54689
|
/**
|
|
54519
54690
|
* The ID of the aggregated control to find
|
|
54520
54691
|
*/
|
|
54521
54692
|
pageId: string
|
|
54522
|
-
): Control;
|
|
54693
|
+
): Control | null;
|
|
54523
54694
|
/**
|
|
54524
54695
|
* Gets content of aggregation {@link #getPages pages}.
|
|
54525
54696
|
*
|
|
@@ -54655,7 +54826,7 @@ declare module "sap/m/NavContainer" {
|
|
|
54655
54826
|
/**
|
|
54656
54827
|
* Removes a page.
|
|
54657
54828
|
*
|
|
54658
|
-
* @returns the removed page or null
|
|
54829
|
+
* @returns the removed page or `null`
|
|
54659
54830
|
*/
|
|
54660
54831
|
removePage(
|
|
54661
54832
|
/**
|
|
@@ -54663,7 +54834,7 @@ declare module "sap/m/NavContainer" {
|
|
|
54663
54834
|
* a negative value or a value greater or equal than the current size of the aggregation, nothing is removed.
|
|
54664
54835
|
*/
|
|
54665
54836
|
vPage: int | string | Control
|
|
54666
|
-
): Control;
|
|
54837
|
+
): Control | null;
|
|
54667
54838
|
/**
|
|
54668
54839
|
* @SINCE 1.30
|
|
54669
54840
|
*
|
|
@@ -55608,7 +55779,7 @@ declare module "sap/m/NotificationListBase" {
|
|
|
55608
55779
|
* The button to remove or its index or id
|
|
55609
55780
|
*/
|
|
55610
55781
|
vButton: int | string | Button
|
|
55611
|
-
): Button;
|
|
55782
|
+
): Button | null;
|
|
55612
55783
|
/**
|
|
55613
55784
|
* Sets a new value for property {@link #getAuthorName authorName}.
|
|
55614
55785
|
*
|
|
@@ -56119,7 +56290,7 @@ declare module "sap/m/NotificationListGroup" {
|
|
|
56119
56290
|
* The item to remove or its index or id
|
|
56120
56291
|
*/
|
|
56121
56292
|
vItem: int | string | NotificationListItem
|
|
56122
|
-
): NotificationListItem;
|
|
56293
|
+
): NotificationListItem | null;
|
|
56123
56294
|
/**
|
|
56124
56295
|
* @deprecated (since 1.73)
|
|
56125
56296
|
*
|
|
@@ -58863,7 +59034,7 @@ declare module "sap/m/ObjectHeader" {
|
|
|
58863
59034
|
* The additionalNumber to remove or its index or id
|
|
58864
59035
|
*/
|
|
58865
59036
|
vAdditionalNumber: int | string | ObjectNumber
|
|
58866
|
-
): ObjectNumber;
|
|
59037
|
+
): ObjectNumber | null;
|
|
58867
59038
|
/**
|
|
58868
59039
|
* @SINCE 1.38.0
|
|
58869
59040
|
*
|
|
@@ -58944,7 +59115,7 @@ declare module "sap/m/ObjectHeader" {
|
|
|
58944
59115
|
* The attribute to remove or its index or id
|
|
58945
59116
|
*/
|
|
58946
59117
|
vAttribute: int | string | ObjectAttribute
|
|
58947
|
-
): ObjectAttribute;
|
|
59118
|
+
): ObjectAttribute | null;
|
|
58948
59119
|
/**
|
|
58949
59120
|
* Removes a marker from the aggregation {@link #getMarkers markers}.
|
|
58950
59121
|
*
|
|
@@ -58955,7 +59126,7 @@ declare module "sap/m/ObjectHeader" {
|
|
|
58955
59126
|
* The marker to remove or its index or id
|
|
58956
59127
|
*/
|
|
58957
59128
|
vMarker: int | string | ObjectMarker
|
|
58958
|
-
): ObjectMarker;
|
|
59129
|
+
): ObjectMarker | null;
|
|
58959
59130
|
/**
|
|
58960
59131
|
* @SINCE 1.16.0
|
|
58961
59132
|
*
|
|
@@ -58968,7 +59139,7 @@ declare module "sap/m/ObjectHeader" {
|
|
|
58968
59139
|
* The status to remove or its index or id
|
|
58969
59140
|
*/
|
|
58970
59141
|
vStatus: int | string | Control
|
|
58971
|
-
): Control;
|
|
59142
|
+
): Control | null;
|
|
58972
59143
|
/**
|
|
58973
59144
|
* Sets a new value for property {@link #getBackgroundDesign backgroundDesign}.
|
|
58974
59145
|
*
|
|
@@ -60858,7 +61029,7 @@ declare module "sap/m/ObjectListItem" {
|
|
|
60858
61029
|
* The attribute to remove or its index or id
|
|
60859
61030
|
*/
|
|
60860
61031
|
vAttribute: int | string | ObjectAttribute
|
|
60861
|
-
): ObjectAttribute;
|
|
61032
|
+
): ObjectAttribute | null;
|
|
60862
61033
|
/**
|
|
60863
61034
|
* Removes a marker from the aggregation {@link #getMarkers markers}.
|
|
60864
61035
|
*
|
|
@@ -60869,7 +61040,7 @@ declare module "sap/m/ObjectListItem" {
|
|
|
60869
61040
|
* The marker to remove or its index or id
|
|
60870
61041
|
*/
|
|
60871
61042
|
vMarker: int | string | ObjectMarker
|
|
60872
|
-
): ObjectMarker;
|
|
61043
|
+
): ObjectMarker | null;
|
|
60873
61044
|
/**
|
|
60874
61045
|
* Sets a new value for property {@link #getActiveIcon activeIcon}.
|
|
60875
61046
|
*
|
|
@@ -62879,10 +63050,12 @@ declare module "sap/m/OverflowToolbar" {
|
|
|
62879
63050
|
* Overflow Behavior: By default, only the following controls can move to the overflow area:
|
|
62880
63051
|
*
|
|
62881
63052
|
*
|
|
63053
|
+
* - {@link sap.m.Breadcrumbs}
|
|
62882
63054
|
* - {@link sap.m.Button}
|
|
62883
63055
|
* - {@link sap.m.CheckBox}
|
|
62884
63056
|
* - {@link sap.m.ComboBox}
|
|
62885
63057
|
* - {@link sap.m.DatePicker}
|
|
63058
|
+
* - {@link sap.m.DateRangeSelection}
|
|
62886
63059
|
* - {@link sap.m.DateTimeInput}
|
|
62887
63060
|
* - {@link sap.m.DateTimePicker}
|
|
62888
63061
|
* - {@link sap.m.GenericTag}
|
|
@@ -62905,10 +63078,10 @@ declare module "sap/m/OverflowToolbar" {
|
|
|
62905
63078
|
*
|
|
62906
63079
|
* **Note:** The `OverflowToolbar` is an adaptive container that checks the available width and hides the
|
|
62907
63080
|
* part of its content that doesn't fit. It is intended that simple controls, such as {@link sap.m.Button}
|
|
62908
|
-
* and {@link sap.m.Label} are used as content. Embedding other adaptive container controls
|
|
62909
|
-
* sap.m.Breadcrumbs}, results in competition for the available space - both controls calculate
|
|
62910
|
-
* space based on the other one's size and both change their width at the same time, leading
|
|
62911
|
-
* distributed space.
|
|
63081
|
+
* and {@link sap.m.Label} are used as content. Embedding other adaptive container controls (with the exception
|
|
63082
|
+
* of {@link sap.m.Breadcrumbs}), results in competition for the available space - both controls calculate
|
|
63083
|
+
* the available space based on the other one's size and both change their width at the same time, leading
|
|
63084
|
+
* to incorrectly distributed space.
|
|
62912
63085
|
*
|
|
62913
63086
|
* Responsive behavior:
|
|
62914
63087
|
*
|
|
@@ -63969,7 +64142,7 @@ declare module "sap/m/p13n/Popup" {
|
|
|
63969
64142
|
* The additionalButton to remove or its index or id
|
|
63970
64143
|
*/
|
|
63971
64144
|
vAdditionalButton: int | string | Button
|
|
63972
|
-
): Button;
|
|
64145
|
+
): Button | null;
|
|
63973
64146
|
/**
|
|
63974
64147
|
* Removes all the controls from the aggregation {@link #getAdditionalButtons additionalButtons}.
|
|
63975
64148
|
*
|
|
@@ -65234,7 +65407,7 @@ declare module "sap/m/P13nColumnsPanel" {
|
|
|
65234
65407
|
* The columnsItem to remove or its index or id
|
|
65235
65408
|
*/
|
|
65236
65409
|
vColumnsItem: int | string | P13nColumnsItem
|
|
65237
|
-
): P13nColumnsItem;
|
|
65410
|
+
): P13nColumnsItem | null;
|
|
65238
65411
|
/**
|
|
65239
65412
|
* @SINCE 1.26.7
|
|
65240
65413
|
*
|
|
@@ -66443,7 +66616,7 @@ declare module "sap/m/P13nDialog" {
|
|
|
66443
66616
|
* The panel to remove or its index or id
|
|
66444
66617
|
*/
|
|
66445
66618
|
vPanel: int | string | P13nPanel
|
|
66446
|
-
): P13nPanel;
|
|
66619
|
+
): P13nPanel | null;
|
|
66447
66620
|
/**
|
|
66448
66621
|
* Sets a new value for property {@link #getInitialVisiblePanelType initialVisiblePanelType}.
|
|
66449
66622
|
*
|
|
@@ -67184,7 +67357,7 @@ declare module "sap/m/P13nDimMeasurePanel" {
|
|
|
67184
67357
|
* The availableChartType to remove or its index or id
|
|
67185
67358
|
*/
|
|
67186
67359
|
vAvailableChartType: int | string | Item
|
|
67187
|
-
): Item;
|
|
67360
|
+
): Item | null;
|
|
67188
67361
|
/**
|
|
67189
67362
|
* Removes a dimMeasureItem from the aggregation {@link #getDimMeasureItems dimMeasureItems}.
|
|
67190
67363
|
*
|
|
@@ -67195,7 +67368,7 @@ declare module "sap/m/P13nDimMeasurePanel" {
|
|
|
67195
67368
|
* The dimMeasureItem to remove or its index or id
|
|
67196
67369
|
*/
|
|
67197
67370
|
vDimMeasureItem: int | string | P13nDimMeasureItem
|
|
67198
|
-
): P13nDimMeasureItem;
|
|
67371
|
+
): P13nDimMeasureItem | null;
|
|
67199
67372
|
/**
|
|
67200
67373
|
* Sets a new value for property {@link #getChartTypeKey chartTypeKey}.
|
|
67201
67374
|
*
|
|
@@ -68068,7 +68241,7 @@ declare module "sap/m/P13nFilterPanel" {
|
|
|
68068
68241
|
* The filterItem to remove or its index or id
|
|
68069
68242
|
*/
|
|
68070
68243
|
vFilterItem: int | string | P13nFilterItem
|
|
68071
|
-
): P13nFilterItem;
|
|
68244
|
+
): P13nFilterItem | null;
|
|
68072
68245
|
/**
|
|
68073
68246
|
* @SINCE 1.28
|
|
68074
68247
|
*
|
|
@@ -68884,7 +69057,7 @@ declare module "sap/m/P13nGroupPanel" {
|
|
|
68884
69057
|
* The groupItem to remove or its index or id
|
|
68885
69058
|
*/
|
|
68886
69059
|
vGroupItem: int | string | P13nGroupItem
|
|
68887
|
-
): P13nGroupItem;
|
|
69060
|
+
): P13nGroupItem | null;
|
|
68888
69061
|
/**
|
|
68889
69062
|
* @SINCE 1.28
|
|
68890
69063
|
*
|
|
@@ -70075,7 +70248,7 @@ declare module "sap/m/P13nPanel" {
|
|
|
70075
70248
|
* The item to remove or its index or id
|
|
70076
70249
|
*/
|
|
70077
70250
|
vItem: int | string | P13nItem
|
|
70078
|
-
): P13nItem;
|
|
70251
|
+
): P13nItem | null;
|
|
70079
70252
|
/**
|
|
70080
70253
|
* Sets a new value for property {@link #getChangeNotifier changeNotifier}.
|
|
70081
70254
|
*
|
|
@@ -70797,7 +70970,7 @@ declare module "sap/m/P13nSortPanel" {
|
|
|
70797
70970
|
* The sortItem to remove or its index or id
|
|
70798
70971
|
*/
|
|
70799
70972
|
vSortItem: int | string | P13nSortItem
|
|
70800
|
-
): P13nSortItem;
|
|
70973
|
+
): P13nSortItem | null;
|
|
70801
70974
|
/**
|
|
70802
70975
|
* @SINCE 1.28
|
|
70803
70976
|
*
|
|
@@ -71544,7 +71717,7 @@ declare module "sap/m/Page" {
|
|
|
71544
71717
|
* The content to remove or its index or id
|
|
71545
71718
|
*/
|
|
71546
71719
|
vContent: int | string | Control
|
|
71547
|
-
): Control;
|
|
71720
|
+
): Control | null;
|
|
71548
71721
|
/**
|
|
71549
71722
|
* Removes a headerContent from the aggregation {@link #getHeaderContent headerContent}.
|
|
71550
71723
|
*
|
|
@@ -71555,7 +71728,7 @@ declare module "sap/m/Page" {
|
|
|
71555
71728
|
* The headerContent to remove or its index or id
|
|
71556
71729
|
*/
|
|
71557
71730
|
vHeaderContent: int | string | Control
|
|
71558
|
-
): Control;
|
|
71731
|
+
): Control | null;
|
|
71559
71732
|
/**
|
|
71560
71733
|
* Scrolls to the given position. Only available if enableScrolling is set to "true".
|
|
71561
71734
|
*
|
|
@@ -73330,7 +73503,7 @@ declare module "sap/m/Panel" {
|
|
|
73330
73503
|
* The content to remove or its index or id
|
|
73331
73504
|
*/
|
|
73332
73505
|
vContent: int | string | Control
|
|
73333
|
-
): Control;
|
|
73506
|
+
): Control | null;
|
|
73334
73507
|
/**
|
|
73335
73508
|
* @SINCE 1.46
|
|
73336
73509
|
*
|
|
@@ -74128,7 +74301,7 @@ declare module "sap/m/PDFViewer" {
|
|
|
74128
74301
|
* The popupButton to remove or its index or id
|
|
74129
74302
|
*/
|
|
74130
74303
|
vPopupButton: int | string | Button
|
|
74131
|
-
): Button;
|
|
74304
|
+
): Button | null;
|
|
74132
74305
|
/**
|
|
74133
74306
|
* Sets a new value for property {@link #getDisplayType displayType}.
|
|
74134
74307
|
*
|
|
@@ -75714,7 +75887,7 @@ declare module "sap/m/PlanningCalendar" {
|
|
|
75714
75887
|
* The row to remove or its index or id
|
|
75715
75888
|
*/
|
|
75716
75889
|
vRow: int | string | PlanningCalendarRow
|
|
75717
|
-
): PlanningCalendarRow;
|
|
75890
|
+
): PlanningCalendarRow | null;
|
|
75718
75891
|
/**
|
|
75719
75892
|
* Removes a specialDate from the aggregation {@link #getSpecialDates specialDates}.
|
|
75720
75893
|
*
|
|
@@ -75725,7 +75898,7 @@ declare module "sap/m/PlanningCalendar" {
|
|
|
75725
75898
|
* The specialDate to remove or its index or id
|
|
75726
75899
|
*/
|
|
75727
75900
|
vSpecialDate: int | string | DateTypeRange
|
|
75728
|
-
): DateTypeRange;
|
|
75901
|
+
): DateTypeRange | null;
|
|
75729
75902
|
/**
|
|
75730
75903
|
* Removes a toolbarContent from the aggregation {@link #getToolbarContent toolbarContent}.
|
|
75731
75904
|
*
|
|
@@ -75736,7 +75909,7 @@ declare module "sap/m/PlanningCalendar" {
|
|
|
75736
75909
|
* The toolbarContent to remove or its index or id
|
|
75737
75910
|
*/
|
|
75738
75911
|
vToolbarContent: int | string | Control
|
|
75739
|
-
): Control;
|
|
75912
|
+
): Control | null;
|
|
75740
75913
|
/**
|
|
75741
75914
|
* Removes a view from the aggregation {@link #getViews views}.
|
|
75742
75915
|
*
|
|
@@ -75747,7 +75920,7 @@ declare module "sap/m/PlanningCalendar" {
|
|
|
75747
75920
|
* The view to remove or its index or id
|
|
75748
75921
|
*/
|
|
75749
75922
|
vView: int | string | PlanningCalendarView
|
|
75750
|
-
): PlanningCalendarView;
|
|
75923
|
+
): PlanningCalendarView | null;
|
|
75751
75924
|
/**
|
|
75752
75925
|
* Selects or deselects all `PlanningCalendarRows`.
|
|
75753
75926
|
*
|
|
@@ -76712,7 +76885,7 @@ declare module "sap/m/PlanningCalendarLegend" {
|
|
|
76712
76885
|
* The appointmentItem to remove or its index or id
|
|
76713
76886
|
*/
|
|
76714
76887
|
vAppointmentItem: int | string | CalendarLegendItem
|
|
76715
|
-
): CalendarLegendItem;
|
|
76888
|
+
): CalendarLegendItem | null;
|
|
76716
76889
|
/**
|
|
76717
76890
|
* Sets a new value for property {@link #getAppointmentItemsHeader appointmentItemsHeader}.
|
|
76718
76891
|
*
|
|
@@ -77745,7 +77918,7 @@ declare module "sap/m/PlanningCalendarRow" {
|
|
|
77745
77918
|
* The appointment to remove or its index or id
|
|
77746
77919
|
*/
|
|
77747
77920
|
vAppointment: int | string | CalendarAppointment
|
|
77748
|
-
): CalendarAppointment;
|
|
77921
|
+
): CalendarAppointment | null;
|
|
77749
77922
|
/**
|
|
77750
77923
|
* @SINCE 1.67
|
|
77751
77924
|
* @EXPERIMENTAL (since 1.67)
|
|
@@ -77759,7 +77932,7 @@ declare module "sap/m/PlanningCalendarRow" {
|
|
|
77759
77932
|
* The headerContent to remove or its index or id
|
|
77760
77933
|
*/
|
|
77761
77934
|
vHeaderContent: int | string | Control
|
|
77762
|
-
): Control;
|
|
77935
|
+
): Control | null;
|
|
77763
77936
|
/**
|
|
77764
77937
|
* Removes a intervalHeader from the aggregation {@link #getIntervalHeaders intervalHeaders}.
|
|
77765
77938
|
*
|
|
@@ -77770,7 +77943,7 @@ declare module "sap/m/PlanningCalendarRow" {
|
|
|
77770
77943
|
* The intervalHeader to remove or its index or id
|
|
77771
77944
|
*/
|
|
77772
77945
|
vIntervalHeader: int | string | CalendarAppointment
|
|
77773
|
-
): CalendarAppointment;
|
|
77946
|
+
): CalendarAppointment | null;
|
|
77774
77947
|
/**
|
|
77775
77948
|
* @SINCE 1.56
|
|
77776
77949
|
*
|
|
@@ -77783,7 +77956,7 @@ declare module "sap/m/PlanningCalendarRow" {
|
|
|
77783
77956
|
* The specialDate to remove or its index or id
|
|
77784
77957
|
*/
|
|
77785
77958
|
vSpecialDate: int | string | DateTypeRange
|
|
77786
|
-
): DateTypeRange;
|
|
77959
|
+
): DateTypeRange | null;
|
|
77787
77960
|
/**
|
|
77788
77961
|
* @SINCE 1.56
|
|
77789
77962
|
*
|
|
@@ -79129,6 +79302,57 @@ declare module "sap/m/plugins/DataStateIndicator" {
|
|
|
79129
79302
|
*/
|
|
79130
79303
|
oListener?: object
|
|
79131
79304
|
): this;
|
|
79305
|
+
/**
|
|
79306
|
+
* @SINCE 1.103
|
|
79307
|
+
*
|
|
79308
|
+
* Attaches event handler `fnFunction` to the {@link #event:close close} event of this `sap.m.plugins.DataStateIndicator`.
|
|
79309
|
+
*
|
|
79310
|
+
* When called, the context of the event handler (its `this`) will be bound to `oListener` if specified,
|
|
79311
|
+
* otherwise it will be bound to this `sap.m.plugins.DataStateIndicator` itself.
|
|
79312
|
+
*
|
|
79313
|
+
* This event is fired when the user presses the `Close` button of the `MessageStrip` control which is managed
|
|
79314
|
+
* by this plugin.
|
|
79315
|
+
*
|
|
79316
|
+
* @returns Reference to `this` in order to allow method chaining
|
|
79317
|
+
*/
|
|
79318
|
+
attachClose(
|
|
79319
|
+
/**
|
|
79320
|
+
* An application-specific payload object that will be passed to the event handler along with the event
|
|
79321
|
+
* object when firing the event
|
|
79322
|
+
*/
|
|
79323
|
+
oData: object,
|
|
79324
|
+
/**
|
|
79325
|
+
* The function to be called when the event occurs
|
|
79326
|
+
*/
|
|
79327
|
+
fnFunction: (p1: Event) => void,
|
|
79328
|
+
/**
|
|
79329
|
+
* Context object to call the event handler with. Defaults to this `sap.m.plugins.DataStateIndicator` itself
|
|
79330
|
+
*/
|
|
79331
|
+
oListener?: object
|
|
79332
|
+
): this;
|
|
79333
|
+
/**
|
|
79334
|
+
* @SINCE 1.103
|
|
79335
|
+
*
|
|
79336
|
+
* Attaches event handler `fnFunction` to the {@link #event:close close} event of this `sap.m.plugins.DataStateIndicator`.
|
|
79337
|
+
*
|
|
79338
|
+
* When called, the context of the event handler (its `this`) will be bound to `oListener` if specified,
|
|
79339
|
+
* otherwise it will be bound to this `sap.m.plugins.DataStateIndicator` itself.
|
|
79340
|
+
*
|
|
79341
|
+
* This event is fired when the user presses the `Close` button of the `MessageStrip` control which is managed
|
|
79342
|
+
* by this plugin.
|
|
79343
|
+
*
|
|
79344
|
+
* @returns Reference to `this` in order to allow method chaining
|
|
79345
|
+
*/
|
|
79346
|
+
attachClose(
|
|
79347
|
+
/**
|
|
79348
|
+
* The function to be called when the event occurs
|
|
79349
|
+
*/
|
|
79350
|
+
fnFunction: (p1: Event) => void,
|
|
79351
|
+
/**
|
|
79352
|
+
* Context object to call the event handler with. Defaults to this `sap.m.plugins.DataStateIndicator` itself
|
|
79353
|
+
*/
|
|
79354
|
+
oListener?: object
|
|
79355
|
+
): this;
|
|
79132
79356
|
/**
|
|
79133
79357
|
* Attaches event handler `fnFunction` to the {@link #event:dataStateChange dataStateChange} event of this
|
|
79134
79358
|
* `sap.m.plugins.DataStateIndicator`.
|
|
@@ -79214,6 +79438,25 @@ declare module "sap/m/plugins/DataStateIndicator" {
|
|
|
79214
79438
|
*/
|
|
79215
79439
|
oListener?: object
|
|
79216
79440
|
): this;
|
|
79441
|
+
/**
|
|
79442
|
+
* @SINCE 1.103
|
|
79443
|
+
*
|
|
79444
|
+
* Detaches event handler `fnFunction` from the {@link #event:close close} event of this `sap.m.plugins.DataStateIndicator`.
|
|
79445
|
+
*
|
|
79446
|
+
* The passed function and listener object must match the ones used for event registration.
|
|
79447
|
+
*
|
|
79448
|
+
* @returns Reference to `this` in order to allow method chaining
|
|
79449
|
+
*/
|
|
79450
|
+
detachClose(
|
|
79451
|
+
/**
|
|
79452
|
+
* The function to be called, when the event occurs
|
|
79453
|
+
*/
|
|
79454
|
+
fnFunction: (p1: Event) => void,
|
|
79455
|
+
/**
|
|
79456
|
+
* Context object on which the given function had to be called
|
|
79457
|
+
*/
|
|
79458
|
+
oListener?: object
|
|
79459
|
+
): this;
|
|
79217
79460
|
/**
|
|
79218
79461
|
* Detaches event handler `fnFunction` from the {@link #event:dataStateChange dataStateChange} event of
|
|
79219
79462
|
* this `sap.m.plugins.DataStateIndicator`.
|
|
@@ -79269,6 +79512,19 @@ declare module "sap/m/plugins/DataStateIndicator" {
|
|
|
79269
79512
|
*/
|
|
79270
79513
|
mParameters?: object
|
|
79271
79514
|
): boolean;
|
|
79515
|
+
/**
|
|
79516
|
+
* @SINCE 1.103
|
|
79517
|
+
*
|
|
79518
|
+
* Fires event {@link #event:close close} to attached listeners.
|
|
79519
|
+
*
|
|
79520
|
+
* @returns Reference to `this` in order to allow method chaining
|
|
79521
|
+
*/
|
|
79522
|
+
fireClose(
|
|
79523
|
+
/**
|
|
79524
|
+
* Parameters to pass along with the event
|
|
79525
|
+
*/
|
|
79526
|
+
mParameters?: object
|
|
79527
|
+
): this;
|
|
79272
79528
|
/**
|
|
79273
79529
|
* Fires event {@link #event:dataStateChange dataStateChange} to attached listeners.
|
|
79274
79530
|
*
|
|
@@ -79429,6 +79685,14 @@ declare module "sap/m/plugins/DataStateIndicator" {
|
|
|
79429
79685
|
* is set to `true`.
|
|
79430
79686
|
*/
|
|
79431
79687
|
clearFilter?: (oEvent: Event) => void;
|
|
79688
|
+
|
|
79689
|
+
/**
|
|
79690
|
+
* @SINCE 1.103
|
|
79691
|
+
*
|
|
79692
|
+
* This event is fired when the user presses the `Close` button of the `MessageStrip` control which is managed
|
|
79693
|
+
* by this plugin.
|
|
79694
|
+
*/
|
|
79695
|
+
close?: (oEvent: Event) => void;
|
|
79432
79696
|
}
|
|
79433
79697
|
}
|
|
79434
79698
|
|
|
@@ -80574,7 +80838,7 @@ declare module "sap/m/Popover" {
|
|
|
80574
80838
|
* The content to remove or its index or id
|
|
80575
80839
|
*/
|
|
80576
80840
|
vContent: int | string | Control
|
|
80577
|
-
): Control;
|
|
80841
|
+
): Control | null;
|
|
80578
80842
|
/**
|
|
80579
80843
|
* @SINCE 1.15.1
|
|
80580
80844
|
*
|
|
@@ -83054,7 +83318,7 @@ declare module "sap/m/QuickViewBase" {
|
|
|
83054
83318
|
* The page to remove or its index or id
|
|
83055
83319
|
*/
|
|
83056
83320
|
vPage: int | string | QuickViewPage
|
|
83057
|
-
): QuickViewPage;
|
|
83321
|
+
): QuickViewPage | null;
|
|
83058
83322
|
/**
|
|
83059
83323
|
* Unbinds aggregation {@link #getPages pages} from model data.
|
|
83060
83324
|
*
|
|
@@ -83385,7 +83649,7 @@ declare module "sap/m/QuickViewGroup" {
|
|
|
83385
83649
|
* The element to remove or its index or id
|
|
83386
83650
|
*/
|
|
83387
83651
|
vElement: int | string | QuickViewGroupElement
|
|
83388
|
-
): QuickViewGroupElement;
|
|
83652
|
+
): QuickViewGroupElement | null;
|
|
83389
83653
|
/**
|
|
83390
83654
|
* Sets a new value for property {@link #getHeading heading}.
|
|
83391
83655
|
*
|
|
@@ -84090,7 +84354,7 @@ declare module "sap/m/QuickViewPage" {
|
|
|
84090
84354
|
* The group to remove or its index or id
|
|
84091
84355
|
*/
|
|
84092
84356
|
vGroup: int | string | QuickViewGroup
|
|
84093
|
-
): QuickViewGroup;
|
|
84357
|
+
): QuickViewGroup | null;
|
|
84094
84358
|
/**
|
|
84095
84359
|
* @SINCE 1.92
|
|
84096
84360
|
*
|
|
@@ -85445,9 +85709,9 @@ declare module "sap/m/RadioButtonGroup" {
|
|
|
85445
85709
|
/**
|
|
85446
85710
|
* Removes all radio buttons.
|
|
85447
85711
|
*
|
|
85448
|
-
* @returns Array of removed buttons
|
|
85712
|
+
* @returns Array of removed buttons.
|
|
85449
85713
|
*/
|
|
85450
|
-
removeAllButtons():
|
|
85714
|
+
removeAllButtons(): RadioButton[];
|
|
85451
85715
|
/**
|
|
85452
85716
|
* Removes an ariaDescribedBy from the association named {@link #getAriaDescribedBy ariaDescribedBy}.
|
|
85453
85717
|
*
|
|
@@ -87369,7 +87633,7 @@ declare module "sap/m/ResponsivePopover" {
|
|
|
87369
87633
|
* The content to remove or its index or id
|
|
87370
87634
|
*/
|
|
87371
87635
|
vContent: int | string | Control
|
|
87372
|
-
): Control;
|
|
87636
|
+
): Control | null;
|
|
87373
87637
|
/**
|
|
87374
87638
|
* Setter for beginButton aggregation
|
|
87375
87639
|
*
|
|
@@ -89063,7 +89327,7 @@ declare module "sap/m/ScrollContainer" {
|
|
|
89063
89327
|
* The content to remove or its index or id
|
|
89064
89328
|
*/
|
|
89065
89329
|
vContent: int | string | Control
|
|
89066
|
-
): Control;
|
|
89330
|
+
): Control | null;
|
|
89067
89331
|
/**
|
|
89068
89332
|
* Scrolls to the given position. When called while the control is not rendered (yet), the scrolling position
|
|
89069
89333
|
* is still applied, but there is no animation.
|
|
@@ -90026,7 +90290,7 @@ declare module "sap/m/SearchField" {
|
|
|
90026
90290
|
* The suggestionItem to remove or its index or id
|
|
90027
90291
|
*/
|
|
90028
90292
|
vSuggestionItem: int | string | SuggestionItem
|
|
90029
|
-
): SuggestionItem;
|
|
90293
|
+
): SuggestionItem | null;
|
|
90030
90294
|
/**
|
|
90031
90295
|
* Sets a new value for property {@link #getEnabled enabled}.
|
|
90032
90296
|
*
|
|
@@ -91037,7 +91301,7 @@ declare module "sap/m/SegmentedButton" {
|
|
|
91037
91301
|
* The button to remove or its index or id
|
|
91038
91302
|
*/
|
|
91039
91303
|
vButton: int | string | Button
|
|
91040
|
-
): Button;
|
|
91304
|
+
): Button | null;
|
|
91041
91305
|
/**
|
|
91042
91306
|
* Removes an item from `items` aggregation.
|
|
91043
91307
|
*/
|
|
@@ -91937,7 +92201,7 @@ declare module "sap/m/Select" {
|
|
|
91937
92201
|
*
|
|
91938
92202
|
* Gets the first item from the aggregation named `items`.
|
|
91939
92203
|
*
|
|
91940
|
-
* @returns The first item, or null if there are no items.
|
|
92204
|
+
* @returns The first item, or `null` if there are no items.
|
|
91941
92205
|
*/
|
|
91942
92206
|
getFirstItem(): Item | null;
|
|
91943
92207
|
/**
|
|
@@ -91985,7 +92249,7 @@ declare module "sap/m/Select" {
|
|
|
91985
92249
|
*
|
|
91986
92250
|
* Gets the item from the aggregation named `items` at the given 0-based index.
|
|
91987
92251
|
*
|
|
91988
|
-
* @returns Item at the given index, or null if none.
|
|
92252
|
+
* @returns Item at the given index, or `null` if none.
|
|
91989
92253
|
*/
|
|
91990
92254
|
getItemAt(
|
|
91991
92255
|
/**
|
|
@@ -92021,7 +92285,7 @@ declare module "sap/m/Select" {
|
|
|
92021
92285
|
*
|
|
92022
92286
|
* Gets the last item from the aggregation named `items`.
|
|
92023
92287
|
*
|
|
92024
|
-
* @returns The last item, or null if there are no items.
|
|
92288
|
+
* @returns The last item, or `null` if there are no items.
|
|
92025
92289
|
*/
|
|
92026
92290
|
getLastItem(): Item | null;
|
|
92027
92291
|
/**
|
|
@@ -92300,14 +92564,14 @@ declare module "sap/m/Select" {
|
|
|
92300
92564
|
/**
|
|
92301
92565
|
* Removes an item from the aggregation named `items`.
|
|
92302
92566
|
*
|
|
92303
|
-
* @returns The removed item or null
|
|
92567
|
+
* @returns The removed item or `null`.
|
|
92304
92568
|
*/
|
|
92305
92569
|
removeItem(
|
|
92306
92570
|
/**
|
|
92307
92571
|
* The item to be removed or its index or ID.
|
|
92308
92572
|
*/
|
|
92309
92573
|
vItem: int | string | Item
|
|
92310
|
-
): Item;
|
|
92574
|
+
): Item | null;
|
|
92311
92575
|
/**
|
|
92312
92576
|
* @SINCE 1.16
|
|
92313
92577
|
*
|
|
@@ -93493,9 +93757,9 @@ declare module "sap/m/SelectDialog" {
|
|
|
93493
93757
|
/**
|
|
93494
93758
|
* Forward method to the inner dialog: getDomRef
|
|
93495
93759
|
*
|
|
93496
|
-
* @returns The Element's DOM Element sub DOM Element or null
|
|
93760
|
+
* @returns The Element's DOM Element, sub DOM Element or `null`
|
|
93497
93761
|
*/
|
|
93498
|
-
getDomRef(): Element;
|
|
93762
|
+
getDomRef(): Element | null;
|
|
93499
93763
|
/**
|
|
93500
93764
|
* @SINCE 1.70
|
|
93501
93765
|
*
|
|
@@ -93706,7 +93970,7 @@ declare module "sap/m/SelectDialog" {
|
|
|
93706
93970
|
* The item to remove or its index or id
|
|
93707
93971
|
*/
|
|
93708
93972
|
vItem: int | string | ListItemBase
|
|
93709
|
-
): ListItemBase;
|
|
93973
|
+
): ListItemBase | null;
|
|
93710
93974
|
/**
|
|
93711
93975
|
* Forward method to the inner dialog: removeStyleClass
|
|
93712
93976
|
*
|
|
@@ -95129,7 +95393,7 @@ declare module "sap/m/SelectionDetails" {
|
|
|
95129
95393
|
* The action to remove or its index or id
|
|
95130
95394
|
*/
|
|
95131
95395
|
vAction: int | string | Item
|
|
95132
|
-
): Item;
|
|
95396
|
+
): Item | null;
|
|
95133
95397
|
/**
|
|
95134
95398
|
* Removes a actionGroup from the aggregation {@link #getActionGroups actionGroups}.
|
|
95135
95399
|
*
|
|
@@ -95140,7 +95404,7 @@ declare module "sap/m/SelectionDetails" {
|
|
|
95140
95404
|
* The actionGroup to remove or its index or id
|
|
95141
95405
|
*/
|
|
95142
95406
|
vActionGroup: int | string | Item
|
|
95143
|
-
): Item;
|
|
95407
|
+
): Item | null;
|
|
95144
95408
|
/**
|
|
95145
95409
|
* Removes all the controls from the aggregation {@link #getActionGroups actionGroups}.
|
|
95146
95410
|
*
|
|
@@ -95175,7 +95439,7 @@ declare module "sap/m/SelectionDetails" {
|
|
|
95175
95439
|
* The item to remove or its index or id
|
|
95176
95440
|
*/
|
|
95177
95441
|
vItem: int | string | SelectionDetailsItem
|
|
95178
|
-
): SelectionDetailsItem;
|
|
95442
|
+
): SelectionDetailsItem | null;
|
|
95179
95443
|
/**
|
|
95180
95444
|
* Sets the popover to modal or non-modal based on the given parameter. This only takes effect on desktop
|
|
95181
95445
|
* or tablet. Please see the documentation {@link sap.m.ResponsivePopover#modal}.
|
|
@@ -95581,7 +95845,7 @@ declare module "sap/m/SelectionDetailsFacade" {
|
|
|
95581
95845
|
* The action to remove or its index or id
|
|
95582
95846
|
*/
|
|
95583
95847
|
vAction: int | string | Item
|
|
95584
|
-
): Item;
|
|
95848
|
+
): Item | null;
|
|
95585
95849
|
/**
|
|
95586
95850
|
* Removes a actionGroup from the aggregation {@link #getActionGroups actionGroups}.
|
|
95587
95851
|
*
|
|
@@ -95592,7 +95856,7 @@ declare module "sap/m/SelectionDetailsFacade" {
|
|
|
95592
95856
|
* The actionGroup to remove or its index or id
|
|
95593
95857
|
*/
|
|
95594
95858
|
vActionGroup: int | string | Item
|
|
95595
|
-
): Item;
|
|
95859
|
+
): Item | null;
|
|
95596
95860
|
/**
|
|
95597
95861
|
* Removes all the controls from the aggregation {@link #getActionGroups actionGroups}.
|
|
95598
95862
|
*
|
|
@@ -95852,7 +96116,7 @@ declare module "sap/m/SelectionDetailsItem" {
|
|
|
95852
96116
|
* The action to remove or its index or id
|
|
95853
96117
|
*/
|
|
95854
96118
|
vAction: int | string | Item
|
|
95855
|
-
): Item;
|
|
96119
|
+
): Item | null;
|
|
95856
96120
|
/**
|
|
95857
96121
|
* Removes all the controls from the aggregation {@link #getActions actions}.
|
|
95858
96122
|
*
|
|
@@ -95879,7 +96143,7 @@ declare module "sap/m/SelectionDetailsItem" {
|
|
|
95879
96143
|
* The line to remove or its index or id
|
|
95880
96144
|
*/
|
|
95881
96145
|
vLine: int | string | SelectionDetailsItemLine
|
|
95882
|
-
): SelectionDetailsItemLine;
|
|
96146
|
+
): SelectionDetailsItemLine | null;
|
|
95883
96147
|
/**
|
|
95884
96148
|
* Sets a new value for property {@link #getEnableNav enableNav}.
|
|
95885
96149
|
*
|
|
@@ -96501,7 +96765,7 @@ declare module "sap/m/SelectList" {
|
|
|
96501
96765
|
/**
|
|
96502
96766
|
* Gets the first item from the aggregation named `items`.
|
|
96503
96767
|
*
|
|
96504
|
-
* @returns The first item, or null if there are no items.
|
|
96768
|
+
* @returns The first item, or `null` if there are no items.
|
|
96505
96769
|
*/
|
|
96506
96770
|
getFirstItem(): Item | null;
|
|
96507
96771
|
/**
|
|
@@ -96519,7 +96783,7 @@ declare module "sap/m/SelectList" {
|
|
|
96519
96783
|
/**
|
|
96520
96784
|
* Gets the item from the aggregation named `items` at the given 0-based index.
|
|
96521
96785
|
*
|
|
96522
|
-
* @returns Item at the given index, or null if none.
|
|
96786
|
+
* @returns Item at the given index, or `null` if none.
|
|
96523
96787
|
*/
|
|
96524
96788
|
getItemAt(
|
|
96525
96789
|
/**
|
|
@@ -96532,7 +96796,7 @@ declare module "sap/m/SelectList" {
|
|
|
96532
96796
|
*
|
|
96533
96797
|
* **Note: ** If duplicate keys exists, the first item matching the key is returned.
|
|
96534
96798
|
*
|
|
96535
|
-
* @returns The matched item or null
|
|
96799
|
+
* @returns The matched item or `null`
|
|
96536
96800
|
*/
|
|
96537
96801
|
getItemByKey(
|
|
96538
96802
|
/**
|
|
@@ -96566,7 +96830,7 @@ declare module "sap/m/SelectList" {
|
|
|
96566
96830
|
/**
|
|
96567
96831
|
* Gets the enabled items from the aggregation named `items`.
|
|
96568
96832
|
*
|
|
96569
|
-
* @returns The last item, or null if there are no items.
|
|
96833
|
+
* @returns The last item, or `null` if there are no items.
|
|
96570
96834
|
*/
|
|
96571
96835
|
getLastItem(): Item | null;
|
|
96572
96836
|
/**
|
|
@@ -96690,14 +96954,14 @@ declare module "sap/m/SelectList" {
|
|
|
96690
96954
|
/**
|
|
96691
96955
|
* Removes an item from the aggregation named `items`.
|
|
96692
96956
|
*
|
|
96693
|
-
* @returns The removed item or null
|
|
96957
|
+
* @returns The removed item or `null`.
|
|
96694
96958
|
*/
|
|
96695
96959
|
removeItem(
|
|
96696
96960
|
/**
|
|
96697
96961
|
* The item to remove or its index or id.
|
|
96698
96962
|
*/
|
|
96699
96963
|
vItem: int | string | Item
|
|
96700
|
-
): Item;
|
|
96964
|
+
): Item | null;
|
|
96701
96965
|
/**
|
|
96702
96966
|
* Sets a new value for property {@link #getEnabled enabled}.
|
|
96703
96967
|
*
|
|
@@ -101651,7 +101915,7 @@ declare module "sap/m/semantic/SemanticPage" {
|
|
|
101651
101915
|
* The content to remove or its index or id
|
|
101652
101916
|
*/
|
|
101653
101917
|
vContent: int | string | Control
|
|
101654
|
-
): Control;
|
|
101918
|
+
): Control | null;
|
|
101655
101919
|
/**
|
|
101656
101920
|
* Removes a customFooterContent from the aggregation {@link #getCustomFooterContent customFooterContent}.
|
|
101657
101921
|
*
|
|
@@ -101662,7 +101926,7 @@ declare module "sap/m/semantic/SemanticPage" {
|
|
|
101662
101926
|
* The customFooterContent to remove or its index or id
|
|
101663
101927
|
*/
|
|
101664
101928
|
vCustomFooterContent: int | string | Button
|
|
101665
|
-
): Button;
|
|
101929
|
+
): Button | null;
|
|
101666
101930
|
/**
|
|
101667
101931
|
* Removes a customHeaderContent from the aggregation {@link #getCustomHeaderContent customHeaderContent}.
|
|
101668
101932
|
*
|
|
@@ -101673,7 +101937,7 @@ declare module "sap/m/semantic/SemanticPage" {
|
|
|
101673
101937
|
* The customHeaderContent to remove or its index or id
|
|
101674
101938
|
*/
|
|
101675
101939
|
vCustomHeaderContent: int | string | Button
|
|
101676
|
-
): Button;
|
|
101940
|
+
): Button | null;
|
|
101677
101941
|
/**
|
|
101678
101942
|
* @SINCE 1.52
|
|
101679
101943
|
*
|
|
@@ -102239,7 +102503,7 @@ declare module "sap/m/semantic/SemanticSelect" {
|
|
|
102239
102503
|
* The item to remove or its index or id
|
|
102240
102504
|
*/
|
|
102241
102505
|
vItem: int | string | Item
|
|
102242
|
-
): Item;
|
|
102506
|
+
): Item | null;
|
|
102243
102507
|
/**
|
|
102244
102508
|
* Sets a new value for property {@link #getEnabled enabled}.
|
|
102245
102509
|
*
|
|
@@ -102848,7 +103112,7 @@ declare module "sap/m/semantic/ShareMenuPage" {
|
|
|
102848
103112
|
* The customShareMenuContent to remove or its index or id
|
|
102849
103113
|
*/
|
|
102850
103114
|
vCustomShareMenuContent: int | string | Button
|
|
102851
|
-
): Button;
|
|
103115
|
+
): Button | null;
|
|
102852
103116
|
}
|
|
102853
103117
|
|
|
102854
103118
|
export interface $ShareMenuPageSettings extends $SemanticPageSettings {
|
|
@@ -105037,7 +105301,7 @@ declare module "sap/m/SinglePlanningCalendar" {
|
|
|
105037
105301
|
* The action to remove or its index or id
|
|
105038
105302
|
*/
|
|
105039
105303
|
vAction: int | string | Control
|
|
105040
|
-
): Control;
|
|
105304
|
+
): Control | null;
|
|
105041
105305
|
/**
|
|
105042
105306
|
* Removes all the controls from the aggregation {@link #getActions actions}.
|
|
105043
105307
|
*
|
|
@@ -105082,7 +105346,7 @@ declare module "sap/m/SinglePlanningCalendar" {
|
|
|
105082
105346
|
* The appointment to remove or its index or id
|
|
105083
105347
|
*/
|
|
105084
105348
|
vAppointment: int | string | CalendarAppointment
|
|
105085
|
-
): CalendarAppointment;
|
|
105349
|
+
): CalendarAppointment | null;
|
|
105086
105350
|
/**
|
|
105087
105351
|
* @SINCE 1.66
|
|
105088
105352
|
*
|
|
@@ -105095,7 +105359,7 @@ declare module "sap/m/SinglePlanningCalendar" {
|
|
|
105095
105359
|
* The specialDate to remove or its index or id
|
|
105096
105360
|
*/
|
|
105097
105361
|
vSpecialDate: int | string | DateTypeRange
|
|
105098
|
-
): DateTypeRange;
|
|
105362
|
+
): DateTypeRange | null;
|
|
105099
105363
|
/**
|
|
105100
105364
|
* Removes a view from the aggregation {@link #getViews views}.
|
|
105101
105365
|
*
|
|
@@ -105106,7 +105370,7 @@ declare module "sap/m/SinglePlanningCalendar" {
|
|
|
105106
105370
|
* The view to remove or its index or id
|
|
105107
105371
|
*/
|
|
105108
105372
|
vView: int | string | SinglePlanningCalendarView
|
|
105109
|
-
): SinglePlanningCalendarView;
|
|
105373
|
+
): SinglePlanningCalendarView | null;
|
|
105110
105374
|
/**
|
|
105111
105375
|
* @SINCE 1.65
|
|
105112
105376
|
*
|
|
@@ -106770,7 +107034,7 @@ declare module "sap/m/Slider" {
|
|
|
106770
107034
|
* The customTooltip to remove or its index or id
|
|
106771
107035
|
*/
|
|
106772
107036
|
vCustomTooltip: int | string | SliderTooltipBase
|
|
106773
|
-
): SliderTooltipBase;
|
|
107037
|
+
): SliderTooltipBase | null;
|
|
106774
107038
|
/**
|
|
106775
107039
|
* Sets a new value for property {@link #getEnabled enabled}.
|
|
106776
107040
|
*
|
|
@@ -107586,7 +107850,7 @@ declare module "sap/m/SlideTile" {
|
|
|
107586
107850
|
* The tile to remove or its index or id
|
|
107587
107851
|
*/
|
|
107588
107852
|
vTile: int | string | GenericTile
|
|
107589
|
-
): GenericTile;
|
|
107853
|
+
): GenericTile | null;
|
|
107590
107854
|
/**
|
|
107591
107855
|
* Sets a new value for property {@link #getDisplayTime displayTime}.
|
|
107592
107856
|
*
|
|
@@ -109610,7 +109874,7 @@ declare module "sap/m/SplitContainer" {
|
|
|
109610
109874
|
* The detailPage to remove or its index or id
|
|
109611
109875
|
*/
|
|
109612
109876
|
vDetailPage: int | string | Control
|
|
109613
|
-
): Control;
|
|
109877
|
+
): Control | null;
|
|
109614
109878
|
/**
|
|
109615
109879
|
* Removes a masterPage from the aggregation {@link #getMasterPages masterPages}.
|
|
109616
109880
|
*
|
|
@@ -109621,7 +109885,7 @@ declare module "sap/m/SplitContainer" {
|
|
|
109621
109885
|
* The masterPage to remove or its index or id
|
|
109622
109886
|
*/
|
|
109623
109887
|
vMasterPage: int | string | Control
|
|
109624
|
-
): Control;
|
|
109888
|
+
): Control | null;
|
|
109625
109889
|
/**
|
|
109626
109890
|
* @SINCE 1.11.2
|
|
109627
109891
|
*
|
|
@@ -113556,14 +113820,14 @@ declare module "sap/m/TabContainer" {
|
|
|
113556
113820
|
/**
|
|
113557
113821
|
* Removes an item from the aggregation named `items`.
|
|
113558
113822
|
*
|
|
113559
|
-
* @returns The removed item or null
|
|
113823
|
+
* @returns The removed item or `null`
|
|
113560
113824
|
*/
|
|
113561
113825
|
removeItem(
|
|
113562
113826
|
/**
|
|
113563
113827
|
* The item to remove or its index or ID
|
|
113564
113828
|
*/
|
|
113565
113829
|
vItem: int | string | TabContainerItem
|
|
113566
|
-
): TabContainerItem;
|
|
113830
|
+
): TabContainerItem | null;
|
|
113567
113831
|
/**
|
|
113568
113832
|
* @SINCE 1.71
|
|
113569
113833
|
*
|
|
@@ -113972,7 +114236,7 @@ declare module "sap/m/TabContainerItem" {
|
|
|
113972
114236
|
* The content to remove or its index or id
|
|
113973
114237
|
*/
|
|
113974
114238
|
vContent: int | string | Control
|
|
113975
|
-
): Control;
|
|
114239
|
+
): Control | null;
|
|
113976
114240
|
/**
|
|
113977
114241
|
* @EXPERIMENTAL (since 1.63)
|
|
113978
114242
|
*
|
|
@@ -114804,7 +115068,7 @@ declare module "sap/m/Table" {
|
|
|
114804
115068
|
* The column to remove or its index or id
|
|
114805
115069
|
*/
|
|
114806
115070
|
vColumn: int | string | Column
|
|
114807
|
-
): Column;
|
|
115071
|
+
): Column | null;
|
|
114808
115072
|
/**
|
|
114809
115073
|
* @SINCE 1.52
|
|
114810
115074
|
*
|
|
@@ -116899,9 +117163,9 @@ declare module "sap/m/TableSelectDialog" {
|
|
|
116899
117163
|
/**
|
|
116900
117164
|
* Transfers method to the inner dialog: getDomRef
|
|
116901
117165
|
*
|
|
116902
|
-
* @returns The Element's DOM Element sub DOM Element or null
|
|
117166
|
+
* @returns The Element's DOM Element, sub DOM Element or `null`
|
|
116903
117167
|
*/
|
|
116904
|
-
getDomRef(): Element;
|
|
117168
|
+
getDomRef(): Element | null;
|
|
116905
117169
|
/**
|
|
116906
117170
|
* @SINCE 1.71
|
|
116907
117171
|
*
|
|
@@ -117151,7 +117415,7 @@ declare module "sap/m/TableSelectDialog" {
|
|
|
117151
117415
|
* The column to remove or its index or id
|
|
117152
117416
|
*/
|
|
117153
117417
|
vColumn: int | string | Column
|
|
117154
|
-
): Column;
|
|
117418
|
+
): Column | null;
|
|
117155
117419
|
/**
|
|
117156
117420
|
* Removes a item from the aggregation {@link #getItems items}.
|
|
117157
117421
|
*
|
|
@@ -117162,7 +117426,7 @@ declare module "sap/m/TableSelectDialog" {
|
|
|
117162
117426
|
* The item to remove or its index or id
|
|
117163
117427
|
*/
|
|
117164
117428
|
vItem: int | string | ColumnListItem
|
|
117165
|
-
): ColumnListItem;
|
|
117429
|
+
): ColumnListItem | null;
|
|
117166
117430
|
/**
|
|
117167
117431
|
* Transfers method to the inner dialog: removeStyleClass
|
|
117168
117432
|
*
|
|
@@ -117763,7 +118027,7 @@ declare module "sap/m/Text" {
|
|
|
117763
118027
|
* Clamps the wrapping text according to max lines and returns the found ellipsis position. Parameters can
|
|
117764
118028
|
* be used for better performance.
|
|
117765
118029
|
*
|
|
117766
|
-
* @returns Returns found ellipsis position or undefined
|
|
118030
|
+
* @returns Returns found ellipsis position or `undefined`.
|
|
117767
118031
|
*/
|
|
117768
118032
|
clampText(
|
|
117769
118033
|
/**
|
|
@@ -119373,7 +119637,7 @@ declare module "sap/m/TileContainer" {
|
|
|
119373
119637
|
* The tile to remove or its index or id
|
|
119374
119638
|
*/
|
|
119375
119639
|
vTile: int | string | Tile
|
|
119376
|
-
): Tile;
|
|
119640
|
+
): Tile | null;
|
|
119377
119641
|
/**
|
|
119378
119642
|
* Scrolls to the page where the given Tile or tile index is included. Optionally this can be done animated
|
|
119379
119643
|
* or not. With IE9 the scroll is never animated.
|
|
@@ -120610,7 +120874,7 @@ declare module "sap/m/TimePicker" {
|
|
|
120610
120874
|
* The rule to remove or its index or id
|
|
120611
120875
|
*/
|
|
120612
120876
|
vRule: int | string | MaskInputRule
|
|
120613
|
-
): MaskInputRule;
|
|
120877
|
+
): MaskInputRule | null;
|
|
120614
120878
|
/**
|
|
120615
120879
|
* Sets the value of the date.
|
|
120616
120880
|
*
|
|
@@ -123650,7 +123914,7 @@ declare module "sap/m/Tokenizer" {
|
|
|
123650
123914
|
* The token to remove or its index or id
|
|
123651
123915
|
*/
|
|
123652
123916
|
vToken: int | string | Token
|
|
123653
|
-
): Token;
|
|
123917
|
+
): Token | null;
|
|
123654
123918
|
/**
|
|
123655
123919
|
* @deprecated (since 1.81) - replaced by {@link MultiInput.prototype.addValidator}
|
|
123656
123920
|
*
|
|
@@ -124268,7 +124532,7 @@ declare module "sap/m/Toolbar" {
|
|
|
124268
124532
|
* The content to remove or its index or id
|
|
124269
124533
|
*/
|
|
124270
124534
|
vContent: int | string | Control
|
|
124271
|
-
): Control;
|
|
124535
|
+
): Control | null;
|
|
124272
124536
|
/**
|
|
124273
124537
|
* Sets a new value for property {@link #getActive active}.
|
|
124274
124538
|
*
|
|
@@ -124603,7 +124867,9 @@ declare module "sap/m/ToolbarLayoutData" {
|
|
|
124603
124867
|
* Determines whether the control, when in a toolbar, is shrinkable or not. For controls with fixed width
|
|
124604
124868
|
* (100px, 5rem, etc...) this property is ignored.
|
|
124605
124869
|
*
|
|
124606
|
-
*
|
|
124870
|
+
* **Notes:**
|
|
124871
|
+
* - Nested layout controls should not be shrinkable.
|
|
124872
|
+
* - This property has no effect on `sap.m.Breadcrumbs` as it is shrinkable by default.
|
|
124607
124873
|
*
|
|
124608
124874
|
* Default value is `false`.
|
|
124609
124875
|
*
|
|
@@ -124646,7 +124912,9 @@ declare module "sap/m/ToolbarLayoutData" {
|
|
|
124646
124912
|
* Determines whether the control, when in a toolbar, is shrinkable or not. For controls with fixed width
|
|
124647
124913
|
* (100px, 5rem, etc...) this property is ignored.
|
|
124648
124914
|
*
|
|
124649
|
-
*
|
|
124915
|
+
* **Notes:**
|
|
124916
|
+
* - Nested layout controls should not be shrinkable.
|
|
124917
|
+
* - This property has no effect on `sap.m.Breadcrumbs` as it is shrinkable by default.
|
|
124650
124918
|
*
|
|
124651
124919
|
* When called with a value of `null` or `undefined`, the default value of the property will be restored.
|
|
124652
124920
|
*
|
|
@@ -124667,7 +124935,9 @@ declare module "sap/m/ToolbarLayoutData" {
|
|
|
124667
124935
|
* Determines whether the control, when in a toolbar, is shrinkable or not. For controls with fixed width
|
|
124668
124936
|
* (100px, 5rem, etc...) this property is ignored.
|
|
124669
124937
|
*
|
|
124670
|
-
*
|
|
124938
|
+
* **Notes:**
|
|
124939
|
+
* - Nested layout controls should not be shrinkable.
|
|
124940
|
+
* - This property has no effect on `sap.m.Breadcrumbs` as it is shrinkable by default.
|
|
124671
124941
|
*/
|
|
124672
124942
|
shrinkable?: boolean | PropertyBindingInfo | `{${string}}`;
|
|
124673
124943
|
|
|
@@ -127884,7 +128154,7 @@ declare module "sap/m/upload/UploadSet" {
|
|
|
127884
128154
|
*
|
|
127885
128155
|
* Retrieves the currently selected UploadSetItem.
|
|
127886
128156
|
*
|
|
127887
|
-
* @returns The currently selected item or null
|
|
128157
|
+
* @returns The currently selected item or `null`
|
|
127888
128158
|
*/
|
|
127889
128159
|
getSelectedItem(): UploadSetItem | null;
|
|
127890
128160
|
/**
|
|
@@ -128045,6 +128315,8 @@ declare module "sap/m/upload/UploadSet" {
|
|
|
128045
128315
|
iIndex: int
|
|
128046
128316
|
): this;
|
|
128047
128317
|
/**
|
|
128318
|
+
* @SINCE 1.103.0
|
|
128319
|
+
*
|
|
128048
128320
|
* Opens the FileUploader dialog. When an UploadSetItem is provided, this method can be used to update a
|
|
128049
128321
|
* file with a new version.
|
|
128050
128322
|
*
|
|
@@ -128100,7 +128372,7 @@ declare module "sap/m/upload/UploadSet" {
|
|
|
128100
128372
|
* The headerField to remove or its index or id
|
|
128101
128373
|
*/
|
|
128102
128374
|
vHeaderField: int | string | Item
|
|
128103
|
-
): Item;
|
|
128375
|
+
): Item | null;
|
|
128104
128376
|
/**
|
|
128105
128377
|
* Removes a incompleteItem from the aggregation {@link #getIncompleteItems incompleteItems}.
|
|
128106
128378
|
*
|
|
@@ -128111,7 +128383,7 @@ declare module "sap/m/upload/UploadSet" {
|
|
|
128111
128383
|
* The incompleteItem to remove or its index or id
|
|
128112
128384
|
*/
|
|
128113
128385
|
vIncompleteItem: int | string | UploadSetItem
|
|
128114
|
-
): UploadSetItem;
|
|
128386
|
+
): UploadSetItem | null;
|
|
128115
128387
|
/**
|
|
128116
128388
|
* Removes a item from the aggregation {@link #getItems items}.
|
|
128117
128389
|
*
|
|
@@ -128122,7 +128394,7 @@ declare module "sap/m/upload/UploadSet" {
|
|
|
128122
128394
|
* The item to remove or its index or id
|
|
128123
128395
|
*/
|
|
128124
128396
|
vItem: int | string | UploadSetItem
|
|
128125
|
-
): UploadSetItem;
|
|
128397
|
+
): UploadSetItem | null;
|
|
128126
128398
|
/**
|
|
128127
128399
|
* @SINCE 1.100.0
|
|
128128
128400
|
*
|
|
@@ -129388,7 +129660,7 @@ declare module "sap/m/upload/UploadSetItem" {
|
|
|
129388
129660
|
* The attribute to remove or its index or id
|
|
129389
129661
|
*/
|
|
129390
129662
|
vAttribute: int | string | ObjectAttribute
|
|
129391
|
-
): ObjectAttribute;
|
|
129663
|
+
): ObjectAttribute | null;
|
|
129392
129664
|
/**
|
|
129393
129665
|
* @SINCE 1.90
|
|
129394
129666
|
*
|
|
@@ -129401,7 +129673,7 @@ declare module "sap/m/upload/UploadSetItem" {
|
|
|
129401
129673
|
* The headerField to remove or its index or id
|
|
129402
129674
|
*/
|
|
129403
129675
|
vHeaderField: int | string | Item
|
|
129404
|
-
): Item;
|
|
129676
|
+
): Item | null;
|
|
129405
129677
|
/**
|
|
129406
129678
|
* Removes a marker from the aggregation {@link #getMarkers markers}.
|
|
129407
129679
|
*
|
|
@@ -129412,7 +129684,7 @@ declare module "sap/m/upload/UploadSetItem" {
|
|
|
129412
129684
|
* The marker to remove or its index or id
|
|
129413
129685
|
*/
|
|
129414
129686
|
vMarker: int | string | ObjectMarker
|
|
129415
|
-
): ObjectMarker;
|
|
129687
|
+
): ObjectMarker | null;
|
|
129416
129688
|
/**
|
|
129417
129689
|
* Removes a status from the aggregation {@link #getStatuses statuses}.
|
|
129418
129690
|
*
|
|
@@ -129423,7 +129695,7 @@ declare module "sap/m/upload/UploadSetItem" {
|
|
|
129423
129695
|
* The status to remove or its index or id
|
|
129424
129696
|
*/
|
|
129425
129697
|
vStatus: int | string | ObjectStatus
|
|
129426
|
-
): ObjectStatus;
|
|
129698
|
+
): ObjectStatus | null;
|
|
129427
129699
|
/**
|
|
129428
129700
|
* Sets a new value for property {@link #getEnabledEdit enabledEdit}.
|
|
129429
129701
|
*
|
|
@@ -129735,6 +130007,8 @@ declare module "sap/m/upload/UploadSetToolbarPlaceholder" {
|
|
|
129735
130007
|
import ElementMetadata from "sap/ui/core/ElementMetadata";
|
|
129736
130008
|
|
|
129737
130009
|
/**
|
|
130010
|
+
* @SINCE 1.103.0
|
|
130011
|
+
*
|
|
129738
130012
|
* Used to create a customizable toolbar for the UploadSet. A FileUploader instance is required in the toolbar
|
|
129739
130013
|
* and it is placed by the application.
|
|
129740
130014
|
*/
|
|
@@ -131086,7 +131360,7 @@ declare module "sap/m/UploadCollection" {
|
|
|
131086
131360
|
*
|
|
131087
131361
|
* Retrieves the currently selected UploadCollectionItem.
|
|
131088
131362
|
*
|
|
131089
|
-
* @returns The currently selected item or null
|
|
131363
|
+
* @returns The currently selected item or `null`
|
|
131090
131364
|
*/
|
|
131091
131365
|
getSelectedItem(): UploadCollectionItem | null;
|
|
131092
131366
|
/**
|
|
@@ -131299,7 +131573,7 @@ declare module "sap/m/UploadCollection" {
|
|
|
131299
131573
|
* The headerParameter to remove or its index or id
|
|
131300
131574
|
*/
|
|
131301
131575
|
vHeaderParameter: int | string | UploadCollectionParameter
|
|
131302
|
-
): UploadCollectionParameter;
|
|
131576
|
+
): UploadCollectionParameter | null;
|
|
131303
131577
|
/**
|
|
131304
131578
|
* Removes a item from the aggregation {@link #getItems items}.
|
|
131305
131579
|
*
|
|
@@ -131310,7 +131584,7 @@ declare module "sap/m/UploadCollection" {
|
|
|
131310
131584
|
* The item to remove or its index or id
|
|
131311
131585
|
*/
|
|
131312
131586
|
vItem: int | string | UploadCollectionItem
|
|
131313
|
-
): UploadCollectionItem;
|
|
131587
|
+
): UploadCollectionItem | null;
|
|
131314
131588
|
/**
|
|
131315
131589
|
* Removes a parameter from the aggregation {@link #getParameters parameters}.
|
|
131316
131590
|
*
|
|
@@ -131321,7 +131595,7 @@ declare module "sap/m/UploadCollection" {
|
|
|
131321
131595
|
* The parameter to remove or its index or id
|
|
131322
131596
|
*/
|
|
131323
131597
|
vParameter: int | string | UploadCollectionParameter
|
|
131324
|
-
): UploadCollectionParameter;
|
|
131598
|
+
): UploadCollectionParameter | null;
|
|
131325
131599
|
/**
|
|
131326
131600
|
* @SINCE 1.34.0
|
|
131327
131601
|
*
|
|
@@ -132621,7 +132895,7 @@ declare module "sap/m/UploadCollectionItem" {
|
|
|
132621
132895
|
* The attribute to remove or its index or id
|
|
132622
132896
|
*/
|
|
132623
132897
|
vAttribute: int | string | ObjectAttribute
|
|
132624
|
-
): ObjectAttribute;
|
|
132898
|
+
): ObjectAttribute | null;
|
|
132625
132899
|
/**
|
|
132626
132900
|
* @SINCE 1.40.0
|
|
132627
132901
|
*
|
|
@@ -132634,7 +132908,7 @@ declare module "sap/m/UploadCollectionItem" {
|
|
|
132634
132908
|
* The marker to remove or its index or id
|
|
132635
132909
|
*/
|
|
132636
132910
|
vMarker: int | string | ObjectMarker
|
|
132637
|
-
): ObjectMarker;
|
|
132911
|
+
): ObjectMarker | null;
|
|
132638
132912
|
/**
|
|
132639
132913
|
* @SINCE 1.30.0
|
|
132640
132914
|
*
|
|
@@ -132647,7 +132921,7 @@ declare module "sap/m/UploadCollectionItem" {
|
|
|
132647
132921
|
* The status to remove or its index or id
|
|
132648
132922
|
*/
|
|
132649
132923
|
vStatus: int | string | ObjectStatus
|
|
132650
|
-
): ObjectStatus;
|
|
132924
|
+
): ObjectStatus | null;
|
|
132651
132925
|
/**
|
|
132652
132926
|
* @SINCE 1.30.0
|
|
132653
132927
|
*
|
|
@@ -133735,7 +134009,7 @@ declare module "sap/m/ViewSettingsCustomTab" {
|
|
|
133735
134009
|
* The content to remove or its index or id
|
|
133736
134010
|
*/
|
|
133737
134011
|
vContent: int | string | Control
|
|
133738
|
-
): Control;
|
|
134012
|
+
): Control | null;
|
|
133739
134013
|
/**
|
|
133740
134014
|
* Sets a new value for property {@link #getIcon icon}.
|
|
133741
134015
|
*
|
|
@@ -134551,9 +134825,9 @@ declare module "sap/m/ViewSettingsDialog" {
|
|
|
134551
134825
|
/**
|
|
134552
134826
|
* Forward method to the inner dialog method: getDomRef.
|
|
134553
134827
|
*
|
|
134554
|
-
* @returns The Element's DOM Element sub DOM Element or null
|
|
134828
|
+
* @returns The Element's DOM Element, sub DOM Element or `null`
|
|
134555
134829
|
*/
|
|
134556
|
-
getDomRef(): Element;
|
|
134830
|
+
getDomRef(): Element | null;
|
|
134557
134831
|
/**
|
|
134558
134832
|
* @SINCE 1.16
|
|
134559
134833
|
*
|
|
@@ -134940,12 +135214,12 @@ declare module "sap/m/ViewSettingsDialog" {
|
|
|
134940
135214
|
* The customTab to remove or its index or id
|
|
134941
135215
|
*/
|
|
134942
135216
|
vCustomTab: int | string | ViewSettingsCustomTab
|
|
134943
|
-
): ViewSettingsCustomTab;
|
|
135217
|
+
): ViewSettingsCustomTab | null;
|
|
134944
135218
|
/**
|
|
134945
135219
|
* Removes a filter Item and resets the remembered page if it was the filter detail page of the removed
|
|
134946
135220
|
* filter.
|
|
134947
135221
|
*
|
|
134948
|
-
* @returns The removed item or null
|
|
135222
|
+
* @returns The removed item or `null`
|
|
134949
135223
|
*/
|
|
134950
135224
|
removeFilterItem(
|
|
134951
135225
|
/**
|
|
@@ -134965,7 +135239,7 @@ declare module "sap/m/ViewSettingsDialog" {
|
|
|
134965
135239
|
* The groupItem to remove or its index or id
|
|
134966
135240
|
*/
|
|
134967
135241
|
vGroupItem: int | string | ViewSettingsItem
|
|
134968
|
-
): ViewSettingsItem;
|
|
135242
|
+
): ViewSettingsItem | null;
|
|
134969
135243
|
/**
|
|
134970
135244
|
* @SINCE 1.16
|
|
134971
135245
|
*
|
|
@@ -134978,7 +135252,7 @@ declare module "sap/m/ViewSettingsDialog" {
|
|
|
134978
135252
|
* The presetFilterItem to remove or its index or id
|
|
134979
135253
|
*/
|
|
134980
135254
|
vPresetFilterItem: int | string | ViewSettingsItem
|
|
134981
|
-
): ViewSettingsItem;
|
|
135255
|
+
): ViewSettingsItem | null;
|
|
134982
135256
|
/**
|
|
134983
135257
|
* @SINCE 1.16
|
|
134984
135258
|
*
|
|
@@ -134991,7 +135265,7 @@ declare module "sap/m/ViewSettingsDialog" {
|
|
|
134991
135265
|
* The sortItem to remove or its index or id
|
|
134992
135266
|
*/
|
|
134993
135267
|
vSortItem: int | string | ViewSettingsItem
|
|
134994
|
-
): ViewSettingsItem;
|
|
135268
|
+
): ViewSettingsItem | null;
|
|
134995
135269
|
/**
|
|
134996
135270
|
* Forward method to the inner dialog method: removeStyleClass.
|
|
134997
135271
|
*
|
|
@@ -135649,7 +135923,7 @@ declare module "sap/m/ViewSettingsFilterItem" {
|
|
|
135649
135923
|
* The item to remove or its index or id
|
|
135650
135924
|
*/
|
|
135651
135925
|
vItem: int | string | ViewSettingsItem
|
|
135652
|
-
): ViewSettingsItem;
|
|
135926
|
+
): ViewSettingsItem | null;
|
|
135653
135927
|
/**
|
|
135654
135928
|
* Sets a new value for property {@link #getMultiSelect multiSelect}.
|
|
135655
135929
|
*
|
|
@@ -136325,7 +136599,7 @@ declare module "sap/m/WheelSlider" {
|
|
|
136325
136599
|
* The item to remove or its index or id
|
|
136326
136600
|
*/
|
|
136327
136601
|
vItem: int | string | Item
|
|
136328
|
-
): Item;
|
|
136602
|
+
): Item | null;
|
|
136329
136603
|
/**
|
|
136330
136604
|
* Sets a new value for property {@link #getIsCyclic isCyclic}.
|
|
136331
136605
|
*
|
|
@@ -136610,7 +136884,7 @@ declare module "sap/m/WheelSliderContainer" {
|
|
|
136610
136884
|
* The slider to remove or its index or id
|
|
136611
136885
|
*/
|
|
136612
136886
|
vSlider: int | string | WheelSlider
|
|
136613
|
-
): WheelSlider;
|
|
136887
|
+
): WheelSlider | null;
|
|
136614
136888
|
/**
|
|
136615
136889
|
* Sets a new value for property {@link #getHeight height}.
|
|
136616
136890
|
*
|
|
@@ -137853,7 +138127,7 @@ declare module "sap/m/WizardStep" {
|
|
|
137853
138127
|
* The content to remove or its index or id
|
|
137854
138128
|
*/
|
|
137855
138129
|
vContent: int | string | Control
|
|
137856
|
-
): Control;
|
|
138130
|
+
): Control | null;
|
|
137857
138131
|
/**
|
|
137858
138132
|
* @SINCE 1.32
|
|
137859
138133
|
*
|
|
@@ -138087,7 +138361,7 @@ declare namespace sap {
|
|
|
138087
138361
|
*
|
|
138088
138362
|
* Search given control's parents and try to find iScroll.
|
|
138089
138363
|
*
|
|
138090
|
-
* @returns iScroll reference or undefined if cannot find
|
|
138364
|
+
* @returns iScroll reference or `undefined` if cannot find
|
|
138091
138365
|
*/
|
|
138092
138366
|
function getIScroll(
|
|
138093
138367
|
/**
|
|
@@ -138119,7 +138393,7 @@ declare namespace sap {
|
|
|
138119
138393
|
*
|
|
138120
138394
|
* Search given control's parents and try to find a ScrollDelegate.
|
|
138121
138395
|
*
|
|
138122
|
-
* @returns ScrollDelegate or undefined if it cannot be found
|
|
138396
|
+
* @returns ScrollDelegate or `undefined` if it cannot be found
|
|
138123
138397
|
*/
|
|
138124
138398
|
function getScrollDelegate(
|
|
138125
138399
|
/**
|
|
@@ -138282,7 +138556,8 @@ declare namespace sap {
|
|
|
138282
138556
|
/**
|
|
138283
138557
|
* Converts the given percentage value to an absolute number based on the given base size.
|
|
138284
138558
|
*
|
|
138285
|
-
* @returns The calculated size string with "px" as unit or null when the format of given parameter is
|
|
138559
|
+
* @returns The calculated size string with "px" as unit or `null` when the format of given parameter is
|
|
138560
|
+
* wrong.
|
|
138286
138561
|
*/
|
|
138287
138562
|
function calcPercentageSize(
|
|
138288
138563
|
/**
|
|
@@ -138293,7 +138568,7 @@ declare namespace sap {
|
|
|
138293
138568
|
* A float number which the calculation is based on.
|
|
138294
138569
|
*/
|
|
138295
138570
|
fBaseSize: float
|
|
138296
|
-
):
|
|
138571
|
+
): string | null;
|
|
138297
138572
|
}
|
|
138298
138573
|
/**
|
|
138299
138574
|
* Touch helper.
|
|
@@ -138332,35 +138607,6 @@ declare namespace sap {
|
|
|
138332
138607
|
): object | undefined;
|
|
138333
138608
|
}
|
|
138334
138609
|
|
|
138335
|
-
/**
|
|
138336
|
-
* Helper Class for implementing the IBar interface. Should be created once per IBar instance.
|
|
138337
|
-
*/
|
|
138338
|
-
class IBarInPageEnabler {
|
|
138339
|
-
constructor();
|
|
138340
|
-
|
|
138341
|
-
/**
|
|
138342
|
-
* Adds the sapMBarChildClass to a control.
|
|
138343
|
-
*/
|
|
138344
|
-
static addChildClassTo(
|
|
138345
|
-
/**
|
|
138346
|
-
* The sap.ui.core.Control to which the sapMBarChildClass will be added
|
|
138347
|
-
*/
|
|
138348
|
-
oControl: import("sap/ui/core/Control").default
|
|
138349
|
-
): void;
|
|
138350
|
-
/**
|
|
138351
|
-
* Renders the tooltip for the given control
|
|
138352
|
-
*/
|
|
138353
|
-
static renderTooltip(
|
|
138354
|
-
/**
|
|
138355
|
-
* the RenderManager that can be used for writing to the render output buffer.
|
|
138356
|
-
*/
|
|
138357
|
-
oRM: import("sap/ui/core/RenderManager").default,
|
|
138358
|
-
/**
|
|
138359
|
-
* an object representation of the control that should be rendered.
|
|
138360
|
-
*/
|
|
138361
|
-
oControl: import("sap/ui/core/Control").default
|
|
138362
|
-
): void;
|
|
138363
|
-
}
|
|
138364
138610
|
/**
|
|
138365
138611
|
* @SINCE 1.48.0
|
|
138366
138612
|
*
|
|
@@ -138403,7 +138649,7 @@ declare namespace sap {
|
|
|
138403
138649
|
* The action to remove or its index or id
|
|
138404
138650
|
*/
|
|
138405
138651
|
vAction: int | string | import("sap/ui/core/Item").default
|
|
138406
|
-
): import("sap/ui/core/Item").default;
|
|
138652
|
+
): import("sap/ui/core/Item").default | null;
|
|
138407
138653
|
/**
|
|
138408
138654
|
* Sets a new value for property {@link #getEnableNav enableNav}.
|
|
138409
138655
|
*
|