@openui5/ts-types-esm 1.102.2 → 1.104.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/package.json +1 -1
- package/types/sap.f.d.ts +318 -24
- package/types/sap.m.d.ts +2471 -364
- 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 +390 -113
- package/types/sap.ui.dt.d.ts +1 -1
- package/types/sap.ui.fl.d.ts +107 -66
- package/types/sap.ui.integration.d.ts +48 -67
- package/types/sap.ui.layout.d.ts +33 -41
- package/types/sap.ui.mdc.d.ts +1 -1
- package/types/sap.ui.rta.d.ts +3 -1
- package/types/sap.ui.suite.d.ts +1 -1
- package/types/sap.ui.support.d.ts +1 -1
- package/types/sap.ui.table.d.ts +9 -9
- package/types/sap.ui.testrecorder.d.ts +1 -1
- package/types/sap.ui.unified.d.ts +115 -35
- package/types/sap.ui.ux3.d.ts +43 -43
- package/types/sap.ui.webc.common.d.ts +1 -1
- package/types/sap.ui.webc.fiori.d.ts +30 -30
- package/types/sap.ui.webc.main.d.ts +49 -49
- package/types/sap.uxap.d.ts +13 -13
package/types/sap.m.d.ts
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
// For Library Version: 1.
|
|
1
|
+
// For Library Version: 1.104.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
|
/**
|
|
@@ -1265,6 +1265,21 @@ declare module "sap/m/library" {
|
|
|
1265
1265
|
*/
|
|
1266
1266
|
TimeOutError = "TIME_OUT_ERROR",
|
|
1267
1267
|
}
|
|
1268
|
+
/**
|
|
1269
|
+
* @SINCE 1.104.0
|
|
1270
|
+
*
|
|
1271
|
+
* Enumeration for possible Link accessibility roles.
|
|
1272
|
+
*/
|
|
1273
|
+
export enum LinkAccessibleRole {
|
|
1274
|
+
/**
|
|
1275
|
+
* Link will receive `role="Button"` attibute.
|
|
1276
|
+
*/
|
|
1277
|
+
Button = "Button",
|
|
1278
|
+
/**
|
|
1279
|
+
* Default mode.
|
|
1280
|
+
*/
|
|
1281
|
+
Default = "Default",
|
|
1282
|
+
}
|
|
1268
1283
|
/**
|
|
1269
1284
|
* @SINCE 1.45.5
|
|
1270
1285
|
*
|
|
@@ -3116,11 +3131,35 @@ declare module "sap/m/library" {
|
|
|
3116
3131
|
): void;
|
|
3117
3132
|
}
|
|
3118
3133
|
|
|
3134
|
+
export namespace p13n {
|
|
3135
|
+
/**
|
|
3136
|
+
* @SINCE 1.97
|
|
3137
|
+
* @EXPERIMENTAL
|
|
3138
|
+
*
|
|
3139
|
+
* Interface for P13nPopup which are suitable as content for the `sap.m.p13n.Popup`. Implementation of this
|
|
3140
|
+
* interface should include the following methods:
|
|
3141
|
+
* - `getTitle`
|
|
3142
|
+
*/
|
|
3143
|
+
interface IContent {
|
|
3144
|
+
__implements__sap_m_p13n_IContent: boolean;
|
|
3145
|
+
|
|
3146
|
+
/**
|
|
3147
|
+
* @EXPERIMENTAL
|
|
3148
|
+
*
|
|
3149
|
+
* Returns the title, which should be displayed in the P13nPopup to describe related content.
|
|
3150
|
+
*
|
|
3151
|
+
* @returns The title for the corresponding content to be displayed in the `sap.m.p13n.Popup`.
|
|
3152
|
+
*/
|
|
3153
|
+
getTitle(): string;
|
|
3154
|
+
}
|
|
3155
|
+
}
|
|
3156
|
+
|
|
3119
3157
|
export namespace PopupHelper {
|
|
3120
3158
|
/**
|
|
3121
3159
|
* Converts the given percentage value to an absolute number based on the given base size.
|
|
3122
3160
|
*
|
|
3123
|
-
* @returns The calculated size string with "px" as unit or null when the format of given parameter is
|
|
3161
|
+
* @returns The calculated size string with "px" as unit or `null` when the format of given parameter is
|
|
3162
|
+
* wrong.
|
|
3124
3163
|
*/
|
|
3125
3164
|
function calcPercentageSize(
|
|
3126
3165
|
/**
|
|
@@ -3131,7 +3170,7 @@ declare module "sap/m/library" {
|
|
|
3131
3170
|
* A float number which the calculation is based on.
|
|
3132
3171
|
*/
|
|
3133
3172
|
fBaseSize: float
|
|
3134
|
-
):
|
|
3173
|
+
): string | null;
|
|
3135
3174
|
}
|
|
3136
3175
|
|
|
3137
3176
|
export namespace semantic {
|
|
@@ -3434,16 +3473,16 @@ declare module "sap/m/ActionSelect" {
|
|
|
3434
3473
|
*/
|
|
3435
3474
|
removeAllButtons(): string[];
|
|
3436
3475
|
/**
|
|
3437
|
-
*
|
|
3476
|
+
* Removes the given button from the `ActionSelect` content.
|
|
3438
3477
|
*
|
|
3439
|
-
* @returns The
|
|
3478
|
+
* @returns The ID of the removed button or `null`.
|
|
3440
3479
|
*/
|
|
3441
3480
|
removeButton(
|
|
3442
3481
|
/**
|
|
3443
|
-
* The button to remove or its index or
|
|
3482
|
+
* The button to remove or its index or ID.
|
|
3444
3483
|
*/
|
|
3445
3484
|
vButton: int | string | Button
|
|
3446
|
-
): string;
|
|
3485
|
+
): string | null;
|
|
3447
3486
|
}
|
|
3448
3487
|
|
|
3449
3488
|
export interface $ActionSelectSettings extends $SelectSettings {
|
|
@@ -4171,7 +4210,7 @@ declare module "sap/m/ActionSheet" {
|
|
|
4171
4210
|
* The button to remove or its index or id
|
|
4172
4211
|
*/
|
|
4173
4212
|
vButton: int | string | Button
|
|
4174
|
-
): Button;
|
|
4213
|
+
): Button | null;
|
|
4175
4214
|
/**
|
|
4176
4215
|
* Sets a new value for property {@link #getCancelButtonText cancelButtonText}.
|
|
4177
4216
|
*
|
|
@@ -6549,7 +6588,7 @@ declare module "sap/m/Bar" {
|
|
|
6549
6588
|
* The contentLeft to remove or its index or id
|
|
6550
6589
|
*/
|
|
6551
6590
|
vContentLeft: int | string | Control
|
|
6552
|
-
): Control;
|
|
6591
|
+
): Control | null;
|
|
6553
6592
|
/**
|
|
6554
6593
|
* Removes a contentMiddle from the aggregation {@link #getContentMiddle contentMiddle}.
|
|
6555
6594
|
*
|
|
@@ -6560,7 +6599,7 @@ declare module "sap/m/Bar" {
|
|
|
6560
6599
|
* The contentMiddle to remove or its index or id
|
|
6561
6600
|
*/
|
|
6562
6601
|
vContentMiddle: int | string | Control
|
|
6563
|
-
): Control;
|
|
6602
|
+
): Control | null;
|
|
6564
6603
|
/**
|
|
6565
6604
|
* Removes a contentRight from the aggregation {@link #getContentRight contentRight}.
|
|
6566
6605
|
*
|
|
@@ -6571,7 +6610,7 @@ declare module "sap/m/Bar" {
|
|
|
6571
6610
|
* The contentRight to remove or its index or id
|
|
6572
6611
|
*/
|
|
6573
6612
|
vContentRight: int | string | Control
|
|
6574
|
-
): Control;
|
|
6613
|
+
): Control | null;
|
|
6575
6614
|
/**
|
|
6576
6615
|
* @SINCE 1.22
|
|
6577
6616
|
*
|
|
@@ -6741,12 +6780,144 @@ declare module "sap/m/Bar" {
|
|
|
6741
6780
|
}
|
|
6742
6781
|
}
|
|
6743
6782
|
|
|
6783
|
+
declare module "sap/m/BarInPageEnabler" {
|
|
6784
|
+
import BaseObject from "sap/ui/base/Object";
|
|
6785
|
+
|
|
6786
|
+
import Control from "sap/ui/core/Control";
|
|
6787
|
+
|
|
6788
|
+
import { IBar } from "sap/m/library";
|
|
6789
|
+
|
|
6790
|
+
import Metadata from "sap/ui/base/Metadata";
|
|
6791
|
+
|
|
6792
|
+
import RenderManager from "sap/ui/core/RenderManager";
|
|
6793
|
+
|
|
6794
|
+
/**
|
|
6795
|
+
* Helper Class for implementing the IBar interface. Should be created once per IBar instance.
|
|
6796
|
+
*/
|
|
6797
|
+
export default class BarInPageEnabler extends BaseObject {
|
|
6798
|
+
constructor();
|
|
6799
|
+
|
|
6800
|
+
/**
|
|
6801
|
+
* Adds the sapMBarChildClass to a control.
|
|
6802
|
+
*/
|
|
6803
|
+
static addChildClassTo(
|
|
6804
|
+
/**
|
|
6805
|
+
* The sap.ui.core.Control to which the sapMBarChildClass will be added
|
|
6806
|
+
*/
|
|
6807
|
+
oControl: Control
|
|
6808
|
+
): void;
|
|
6809
|
+
/**
|
|
6810
|
+
* Creates a new subclass of class sap.m.BarInPageEnabler with name `sClassName` and enriches it with the
|
|
6811
|
+
* information contained in `oClassInfo`.
|
|
6812
|
+
*
|
|
6813
|
+
* `oClassInfo` might contain the same kind of information as described in {@link sap.ui.base.Object.extend}.
|
|
6814
|
+
*
|
|
6815
|
+
* @returns Created class / constructor function
|
|
6816
|
+
*/
|
|
6817
|
+
static extend<T extends Record<string, unknown>>(
|
|
6818
|
+
/**
|
|
6819
|
+
* Name of the class being created
|
|
6820
|
+
*/
|
|
6821
|
+
sClassName: string,
|
|
6822
|
+
/**
|
|
6823
|
+
* Object literal with information about the class
|
|
6824
|
+
*/
|
|
6825
|
+
oClassInfo?: sap.ClassInfo<T, BarInPageEnabler>,
|
|
6826
|
+
/**
|
|
6827
|
+
* Constructor function for the metadata object; if not given, it defaults to the metadata implementation
|
|
6828
|
+
* used by this class
|
|
6829
|
+
*/
|
|
6830
|
+
FNMetaImpl?: Function
|
|
6831
|
+
): Function;
|
|
6832
|
+
/**
|
|
6833
|
+
* Returns a metadata object for class sap.m.BarInPageEnabler.
|
|
6834
|
+
*
|
|
6835
|
+
* @returns Metadata object describing this class
|
|
6836
|
+
*/
|
|
6837
|
+
static getMetadata(): Metadata;
|
|
6838
|
+
/**
|
|
6839
|
+
* Renders the tooltip for the given control
|
|
6840
|
+
*/
|
|
6841
|
+
static renderTooltip(
|
|
6842
|
+
/**
|
|
6843
|
+
* the RenderManager that can be used for writing to the render output buffer.
|
|
6844
|
+
*/
|
|
6845
|
+
oRM: RenderManager,
|
|
6846
|
+
/**
|
|
6847
|
+
* an object representation of the control that should be rendered.
|
|
6848
|
+
*/
|
|
6849
|
+
oControl: Control
|
|
6850
|
+
): void;
|
|
6851
|
+
/**
|
|
6852
|
+
* Sets classes and HTML tag according to the context of the page.
|
|
6853
|
+
*
|
|
6854
|
+
* Possible contexts are header, footer, subheader.
|
|
6855
|
+
*
|
|
6856
|
+
* @returns `this` for chaining
|
|
6857
|
+
*/
|
|
6858
|
+
applyTagAndContextClassFor(
|
|
6859
|
+
/**
|
|
6860
|
+
* allowed values are header, footer, subheader.
|
|
6861
|
+
*/
|
|
6862
|
+
sContext: string
|
|
6863
|
+
): IBar;
|
|
6864
|
+
/**
|
|
6865
|
+
* Gets the Bar contexts inside page.
|
|
6866
|
+
*
|
|
6867
|
+
* @returns with all available contexts.
|
|
6868
|
+
*/
|
|
6869
|
+
getContext(): Object;
|
|
6870
|
+
/**
|
|
6871
|
+
* Gets the HTML tag of the root domref.
|
|
6872
|
+
*
|
|
6873
|
+
* @returns the HTML-tag
|
|
6874
|
+
*/
|
|
6875
|
+
getHTMLTag(): string;
|
|
6876
|
+
/**
|
|
6877
|
+
* Determines whether the bar is sensitive to the container context.
|
|
6878
|
+
*
|
|
6879
|
+
* Implementation of the IBar interface.
|
|
6880
|
+
*
|
|
6881
|
+
* @returns isContextSensitive
|
|
6882
|
+
*/
|
|
6883
|
+
isContextSensitive(): boolean;
|
|
6884
|
+
/**
|
|
6885
|
+
* Renders the HTML for the given control, using the provided {@link sap.ui.core.RenderManager}.
|
|
6886
|
+
*/
|
|
6887
|
+
render(
|
|
6888
|
+
/**
|
|
6889
|
+
* the RenderManager that can be used for writing to the render output buffer.
|
|
6890
|
+
*/
|
|
6891
|
+
oRM: RenderManager,
|
|
6892
|
+
/**
|
|
6893
|
+
* an object representation of the control that should be rendered.
|
|
6894
|
+
*/
|
|
6895
|
+
oControl: Control
|
|
6896
|
+
): void;
|
|
6897
|
+
/**
|
|
6898
|
+
* Sets the HTML tag of the root element.
|
|
6899
|
+
*
|
|
6900
|
+
* @returns `this` to allow method chaining
|
|
6901
|
+
*/
|
|
6902
|
+
setHTMLTag(
|
|
6903
|
+
/**
|
|
6904
|
+
* The new root element
|
|
6905
|
+
*/
|
|
6906
|
+
sNewTag: string
|
|
6907
|
+
): IBar;
|
|
6908
|
+
}
|
|
6909
|
+
}
|
|
6910
|
+
|
|
6744
6911
|
declare module "sap/m/Breadcrumbs" {
|
|
6745
6912
|
import { default as Control, $ControlSettings } from "sap/ui/core/Control";
|
|
6746
6913
|
|
|
6747
|
-
import {
|
|
6914
|
+
import {
|
|
6915
|
+
IBreadcrumbs,
|
|
6916
|
+
IOverflowToolbarContent,
|
|
6917
|
+
BreadcrumbsSeparatorStyle,
|
|
6918
|
+
} from "sap/m/library";
|
|
6748
6919
|
|
|
6749
|
-
import { ID } from "sap/ui/core/library";
|
|
6920
|
+
import { IShrinkable, ID } from "sap/ui/core/library";
|
|
6750
6921
|
|
|
6751
6922
|
import Link from "sap/m/Link";
|
|
6752
6923
|
|
|
@@ -6764,8 +6935,12 @@ declare module "sap/m/Breadcrumbs" {
|
|
|
6764
6935
|
* navigation path. The last three steps can be accessed as links directly, while the remaining links prior
|
|
6765
6936
|
* to them are available in a drop-down menu.
|
|
6766
6937
|
*/
|
|
6767
|
-
export default class Breadcrumbs
|
|
6938
|
+
export default class Breadcrumbs
|
|
6939
|
+
extends Control
|
|
6940
|
+
implements IBreadcrumbs, IOverflowToolbarContent, IShrinkable {
|
|
6768
6941
|
__implements__sap_m_IBreadcrumbs: boolean;
|
|
6942
|
+
__implements__sap_m_IOverflowToolbarContent: boolean;
|
|
6943
|
+
__implements__sap_ui_core_IShrinkable: boolean;
|
|
6769
6944
|
/**
|
|
6770
6945
|
* Constructor for a new `Breadcrumbs`.
|
|
6771
6946
|
*
|
|
@@ -6981,7 +7156,7 @@ declare module "sap/m/Breadcrumbs" {
|
|
|
6981
7156
|
* The link to remove or its index or id
|
|
6982
7157
|
*/
|
|
6983
7158
|
vLink: int | string | Link
|
|
6984
|
-
): Link;
|
|
7159
|
+
): Link | null;
|
|
6985
7160
|
/**
|
|
6986
7161
|
* @SINCE 1.34
|
|
6987
7162
|
*
|
|
@@ -9493,7 +9668,7 @@ declare module "sap/m/Carousel" {
|
|
|
9493
9668
|
* The page to remove or its index or id
|
|
9494
9669
|
*/
|
|
9495
9670
|
vPage: int | string | Control
|
|
9496
|
-
): Control;
|
|
9671
|
+
): Control | null;
|
|
9497
9672
|
/**
|
|
9498
9673
|
* Sets the associated {@link #getActivePage activePage}.
|
|
9499
9674
|
*
|
|
@@ -12757,7 +12932,7 @@ declare module "sap/m/ColumnListItem" {
|
|
|
12757
12932
|
* The cell to remove or its index or id
|
|
12758
12933
|
*/
|
|
12759
12934
|
vCell: int | string | Control
|
|
12760
|
-
): Control;
|
|
12935
|
+
): Control | null;
|
|
12761
12936
|
/**
|
|
12762
12937
|
* Pemove pop-in from DOM
|
|
12763
12938
|
*/
|
|
@@ -13672,9 +13847,9 @@ declare module "sap/m/ComboBoxBase" {
|
|
|
13672
13847
|
/**
|
|
13673
13848
|
* Gets the first item from the aggregation named `items`.
|
|
13674
13849
|
*
|
|
13675
|
-
* @returns The first item, or null if there are no items.
|
|
13850
|
+
* @returns The first item, or `null` if there are no items.
|
|
13676
13851
|
*/
|
|
13677
|
-
getFirstItem(): Item;
|
|
13852
|
+
getFirstItem(): Item | null;
|
|
13678
13853
|
/**
|
|
13679
13854
|
* @SINCE 1.66
|
|
13680
13855
|
*
|
|
@@ -13687,14 +13862,14 @@ declare module "sap/m/ComboBoxBase" {
|
|
|
13687
13862
|
/**
|
|
13688
13863
|
* Gets the item from the aggregation named `items` at the given 0-based index.
|
|
13689
13864
|
*
|
|
13690
|
-
* @returns Item at the given index, or null if none.
|
|
13865
|
+
* @returns Item at the given index, or `null` if none.
|
|
13691
13866
|
*/
|
|
13692
13867
|
getItemAt(
|
|
13693
13868
|
/**
|
|
13694
13869
|
* Index of the item to return.
|
|
13695
13870
|
*/
|
|
13696
13871
|
iIndex: int
|
|
13697
|
-
): Item;
|
|
13872
|
+
): Item | null;
|
|
13698
13873
|
/**
|
|
13699
13874
|
* Gets the item with the given key from the aggregation named `items`.
|
|
13700
13875
|
* **Note:** If duplicate keys exist, the first item matching the key is returned.
|
|
@@ -13717,9 +13892,9 @@ declare module "sap/m/ComboBoxBase" {
|
|
|
13717
13892
|
/**
|
|
13718
13893
|
* Gets the last item from the aggregation named `items`.
|
|
13719
13894
|
*
|
|
13720
|
-
* @returns The last item, or null if there are no items.
|
|
13895
|
+
* @returns The last item, or `null` if there are no items.
|
|
13721
13896
|
*/
|
|
13722
|
-
getLastItem(): Item;
|
|
13897
|
+
getLastItem(): Item | null;
|
|
13723
13898
|
/**
|
|
13724
13899
|
* @deprecated (since 1.62) - The list structure should not be used as per SAP note: 2746748.
|
|
13725
13900
|
*
|
|
@@ -13928,7 +14103,7 @@ declare module "sap/m/ComboBoxBase" {
|
|
|
13928
14103
|
* The item to remove or its index or id
|
|
13929
14104
|
*/
|
|
13930
14105
|
vItem: int | string | Item
|
|
13931
|
-
): Item;
|
|
14106
|
+
): Item | null;
|
|
13932
14107
|
/**
|
|
13933
14108
|
* @SINCE 1.58
|
|
13934
14109
|
*
|
|
@@ -14878,7 +15053,7 @@ declare module "sap/m/CustomListItem" {
|
|
|
14878
15053
|
* The content to remove or its index or id
|
|
14879
15054
|
*/
|
|
14880
15055
|
vContent: int | string | Control
|
|
14881
|
-
): Control;
|
|
15056
|
+
): Control | null;
|
|
14882
15057
|
/**
|
|
14883
15058
|
* @SINCE 1.84
|
|
14884
15059
|
*
|
|
@@ -15198,7 +15373,7 @@ declare module "sap/m/CustomTreeItem" {
|
|
|
15198
15373
|
* The content to remove or its index or id
|
|
15199
15374
|
*/
|
|
15200
15375
|
vContent: int | string | Control
|
|
15201
|
-
): Control;
|
|
15376
|
+
): Control | null;
|
|
15202
15377
|
/**
|
|
15203
15378
|
* Unbinds aggregation {@link #getContent content} from model data.
|
|
15204
15379
|
*
|
|
@@ -16632,6 +16807,8 @@ declare module "sap/m/DateRangeSelection" {
|
|
|
16632
16807
|
declare module "sap/m/DateTimeField" {
|
|
16633
16808
|
import { default as InputBase, $InputBaseSettings } from "sap/m/InputBase";
|
|
16634
16809
|
|
|
16810
|
+
import Event from "sap/ui/base/Event";
|
|
16811
|
+
|
|
16635
16812
|
import ElementMetadata from "sap/ui/core/ElementMetadata";
|
|
16636
16813
|
|
|
16637
16814
|
import { PropertyBindingInfo } from "sap/ui/base/ManagedObject";
|
|
@@ -16704,6 +16881,102 @@ declare module "sap/m/DateTimeField" {
|
|
|
16704
16881
|
* @returns Metadata object describing this class
|
|
16705
16882
|
*/
|
|
16706
16883
|
static getMetadata(): ElementMetadata;
|
|
16884
|
+
/**
|
|
16885
|
+
* @SINCE 1.104.0
|
|
16886
|
+
*
|
|
16887
|
+
* Attaches event handler `fnFunction` to the {@link #event:liveChange liveChange} event of this `sap.m.DateTimeField`.
|
|
16888
|
+
*
|
|
16889
|
+
* When called, the context of the event handler (its `this`) will be bound to `oListener` if specified,
|
|
16890
|
+
* otherwise it will be bound to this `sap.m.DateTimeField` itself.
|
|
16891
|
+
*
|
|
16892
|
+
* Fired when the value of the `DateTimeField` is changed by user interaction - each keystroke, delete,
|
|
16893
|
+
* paste, etc.
|
|
16894
|
+
*
|
|
16895
|
+
* **Note:** Browsing autocomplete suggestions doesn't fire the event.
|
|
16896
|
+
*
|
|
16897
|
+
* @returns Reference to `this` in order to allow method chaining
|
|
16898
|
+
*/
|
|
16899
|
+
attachLiveChange(
|
|
16900
|
+
/**
|
|
16901
|
+
* An application-specific payload object that will be passed to the event handler along with the event
|
|
16902
|
+
* object when firing the event
|
|
16903
|
+
*/
|
|
16904
|
+
oData: object,
|
|
16905
|
+
/**
|
|
16906
|
+
* The function to be called when the event occurs
|
|
16907
|
+
*/
|
|
16908
|
+
fnFunction: (p1: Event) => void,
|
|
16909
|
+
/**
|
|
16910
|
+
* Context object to call the event handler with. Defaults to this `sap.m.DateTimeField` itself
|
|
16911
|
+
*/
|
|
16912
|
+
oListener?: object
|
|
16913
|
+
): this;
|
|
16914
|
+
/**
|
|
16915
|
+
* @SINCE 1.104.0
|
|
16916
|
+
*
|
|
16917
|
+
* Attaches event handler `fnFunction` to the {@link #event:liveChange liveChange} event of this `sap.m.DateTimeField`.
|
|
16918
|
+
*
|
|
16919
|
+
* When called, the context of the event handler (its `this`) will be bound to `oListener` if specified,
|
|
16920
|
+
* otherwise it will be bound to this `sap.m.DateTimeField` itself.
|
|
16921
|
+
*
|
|
16922
|
+
* Fired when the value of the `DateTimeField` is changed by user interaction - each keystroke, delete,
|
|
16923
|
+
* paste, etc.
|
|
16924
|
+
*
|
|
16925
|
+
* **Note:** Browsing autocomplete suggestions doesn't fire the event.
|
|
16926
|
+
*
|
|
16927
|
+
* @returns Reference to `this` in order to allow method chaining
|
|
16928
|
+
*/
|
|
16929
|
+
attachLiveChange(
|
|
16930
|
+
/**
|
|
16931
|
+
* The function to be called when the event occurs
|
|
16932
|
+
*/
|
|
16933
|
+
fnFunction: (p1: Event) => void,
|
|
16934
|
+
/**
|
|
16935
|
+
* Context object to call the event handler with. Defaults to this `sap.m.DateTimeField` itself
|
|
16936
|
+
*/
|
|
16937
|
+
oListener?: object
|
|
16938
|
+
): this;
|
|
16939
|
+
/**
|
|
16940
|
+
* @SINCE 1.104.0
|
|
16941
|
+
*
|
|
16942
|
+
* Detaches event handler `fnFunction` from the {@link #event:liveChange liveChange} event of this `sap.m.DateTimeField`.
|
|
16943
|
+
*
|
|
16944
|
+
* The passed function and listener object must match the ones used for event registration.
|
|
16945
|
+
*
|
|
16946
|
+
* @returns Reference to `this` in order to allow method chaining
|
|
16947
|
+
*/
|
|
16948
|
+
detachLiveChange(
|
|
16949
|
+
/**
|
|
16950
|
+
* The function to be called, when the event occurs
|
|
16951
|
+
*/
|
|
16952
|
+
fnFunction: (p1: Event) => void,
|
|
16953
|
+
/**
|
|
16954
|
+
* Context object on which the given function had to be called
|
|
16955
|
+
*/
|
|
16956
|
+
oListener?: object
|
|
16957
|
+
): this;
|
|
16958
|
+
/**
|
|
16959
|
+
* @SINCE 1.104.0
|
|
16960
|
+
*
|
|
16961
|
+
* Fires event {@link #event:liveChange liveChange} to attached listeners.
|
|
16962
|
+
*
|
|
16963
|
+
* @returns Reference to `this` in order to allow method chaining
|
|
16964
|
+
*/
|
|
16965
|
+
fireLiveChange(
|
|
16966
|
+
/**
|
|
16967
|
+
* Parameters to pass along with the event
|
|
16968
|
+
*/
|
|
16969
|
+
mParameters?: {
|
|
16970
|
+
/**
|
|
16971
|
+
* The current value of the input, after a live change event.
|
|
16972
|
+
*/
|
|
16973
|
+
value?: string;
|
|
16974
|
+
/**
|
|
16975
|
+
* The previous value of the input, before the last user interaction.
|
|
16976
|
+
*/
|
|
16977
|
+
previousValue?: string;
|
|
16978
|
+
}
|
|
16979
|
+
): this;
|
|
16707
16980
|
/**
|
|
16708
16981
|
* Gets current value of property {@link #getDateValue dateValue}.
|
|
16709
16982
|
*
|
|
@@ -16724,6 +16997,12 @@ declare module "sap/m/DateTimeField" {
|
|
|
16724
16997
|
* @returns Value of property `displayFormat`
|
|
16725
16998
|
*/
|
|
16726
16999
|
getDisplayFormat(): string;
|
|
17000
|
+
/**
|
|
17001
|
+
* Gets the inner input DOM value.
|
|
17002
|
+
*
|
|
17003
|
+
* @returns The value of the input.
|
|
17004
|
+
*/
|
|
17005
|
+
getDOMValue(): any;
|
|
16727
17006
|
/**
|
|
16728
17007
|
* @SINCE 1.54
|
|
16729
17008
|
*
|
|
@@ -16749,6 +17028,15 @@ declare module "sap/m/DateTimeField" {
|
|
|
16749
17028
|
* @returns Value of property `valueFormat`
|
|
16750
17029
|
*/
|
|
16751
17030
|
getValueFormat(): string;
|
|
17031
|
+
/**
|
|
17032
|
+
* Event handler for user input.
|
|
17033
|
+
*/
|
|
17034
|
+
oninput(
|
|
17035
|
+
/**
|
|
17036
|
+
* User input.
|
|
17037
|
+
*/
|
|
17038
|
+
oEvent: jQuery.Event
|
|
17039
|
+
): void;
|
|
16752
17040
|
/**
|
|
16753
17041
|
* Sets a new value for property {@link #getDateValue dateValue}.
|
|
16754
17042
|
*
|
|
@@ -16857,6 +17145,16 @@ declare module "sap/m/DateTimeField" {
|
|
|
16857
17145
|
* parts of the JavaScript Date Object.
|
|
16858
17146
|
*/
|
|
16859
17147
|
initialFocusedDateValue?: object | PropertyBindingInfo | `{${string}}`;
|
|
17148
|
+
|
|
17149
|
+
/**
|
|
17150
|
+
* @SINCE 1.104.0
|
|
17151
|
+
*
|
|
17152
|
+
* Fired when the value of the `DateTimeField` is changed by user interaction - each keystroke, delete,
|
|
17153
|
+
* paste, etc.
|
|
17154
|
+
*
|
|
17155
|
+
* **Note:** Browsing autocomplete suggestions doesn't fire the event.
|
|
17156
|
+
*/
|
|
17157
|
+
liveChange?: (oEvent: Event) => void;
|
|
16860
17158
|
}
|
|
16861
17159
|
}
|
|
16862
17160
|
|
|
@@ -18994,7 +19292,7 @@ declare module "sap/m/Dialog" {
|
|
|
18994
19292
|
* The button to remove or its index or id
|
|
18995
19293
|
*/
|
|
18996
19294
|
vButton: int | string | Button
|
|
18997
|
-
): Button;
|
|
19295
|
+
): Button | null;
|
|
18998
19296
|
/**
|
|
18999
19297
|
* Removes a content from the aggregation {@link #getContent content}.
|
|
19000
19298
|
*
|
|
@@ -19005,7 +19303,7 @@ declare module "sap/m/Dialog" {
|
|
|
19005
19303
|
* The content to remove or its index or id
|
|
19006
19304
|
*/
|
|
19007
19305
|
vContent: int | string | Control
|
|
19008
|
-
): Control;
|
|
19306
|
+
): Control | null;
|
|
19009
19307
|
/**
|
|
19010
19308
|
* @SINCE 1.15.1
|
|
19011
19309
|
*
|
|
@@ -22406,7 +22704,7 @@ declare module "sap/m/FacetFilter" {
|
|
|
22406
22704
|
* The list to remove or its index or id
|
|
22407
22705
|
*/
|
|
22408
22706
|
vList: int | string | FacetFilterList
|
|
22409
|
-
): FacetFilterList;
|
|
22707
|
+
): FacetFilterList | null;
|
|
22410
22708
|
/**
|
|
22411
22709
|
* Sets a new value for property {@link #getLiveSearch liveSearch}.
|
|
22412
22710
|
*
|
|
@@ -25266,7 +25564,7 @@ declare module "sap/m/FeedListItem" {
|
|
|
25266
25564
|
* The action to remove or its index or id
|
|
25267
25565
|
*/
|
|
25268
25566
|
vAction: int | string | FeedListItemAction
|
|
25269
|
-
): FeedListItemAction;
|
|
25567
|
+
): FeedListItemAction | null;
|
|
25270
25568
|
/**
|
|
25271
25569
|
* @SINCE 1.52.0
|
|
25272
25570
|
*
|
|
@@ -26388,7 +26686,7 @@ declare module "sap/m/FlexBox" {
|
|
|
26388
26686
|
* The item to remove or its index or id
|
|
26389
26687
|
*/
|
|
26390
26688
|
vItem: int | string | Control
|
|
26391
|
-
): Control;
|
|
26689
|
+
): Control | null;
|
|
26392
26690
|
/**
|
|
26393
26691
|
* @SINCE 1.36.0
|
|
26394
26692
|
*
|
|
@@ -26804,14 +27102,14 @@ declare module "sap/m/FlexItemData" {
|
|
|
26804
27102
|
/**
|
|
26805
27103
|
* Returns the correct FlexBox item DOM reference.
|
|
26806
27104
|
*
|
|
26807
|
-
* @returns The Element's DOM Element sub DOM Element or null
|
|
27105
|
+
* @returns The Element's DOM Element, sub DOM Element or `null`
|
|
26808
27106
|
*/
|
|
26809
27107
|
getDomRef(
|
|
26810
27108
|
/**
|
|
26811
27109
|
* ID suffix to get the DOMRef for
|
|
26812
27110
|
*/
|
|
26813
27111
|
sSuffix?: string
|
|
26814
|
-
): Element;
|
|
27112
|
+
): Element | null;
|
|
26815
27113
|
/**
|
|
26816
27114
|
* Gets current value of property {@link #getGrowFactor growFactor}.
|
|
26817
27115
|
*
|
|
@@ -27379,7 +27677,7 @@ declare module "sap/m/FormattedText" {
|
|
|
27379
27677
|
* The control to remove or its index or id
|
|
27380
27678
|
*/
|
|
27381
27679
|
vControl: int | string | Link
|
|
27382
|
-
): Link;
|
|
27680
|
+
): Link | null;
|
|
27383
27681
|
/**
|
|
27384
27682
|
* @SINCE 1.45.5
|
|
27385
27683
|
*
|
|
@@ -28426,6 +28724,9 @@ declare module "sap/m/GenericTile" {
|
|
|
28426
28724
|
*/
|
|
28427
28725
|
getIcon(): Control;
|
|
28428
28726
|
/**
|
|
28727
|
+
* @SINCE 1.103
|
|
28728
|
+
* @EXPERIMENTAL (since 1.103)
|
|
28729
|
+
*
|
|
28429
28730
|
* Gets current value of property {@link #getIconLoaded iconLoaded}.
|
|
28430
28731
|
*
|
|
28431
28732
|
* The load state of the tileIcon.
|
|
@@ -28677,7 +28978,7 @@ declare module "sap/m/GenericTile" {
|
|
|
28677
28978
|
* The actionButton to remove or its index or id
|
|
28678
28979
|
*/
|
|
28679
28980
|
vActionButton: int | string | Button
|
|
28680
|
-
): Button;
|
|
28981
|
+
): Button | null;
|
|
28681
28982
|
/**
|
|
28682
28983
|
* @EXPERIMENTAL (since 1.96)
|
|
28683
28984
|
*
|
|
@@ -28706,7 +29007,7 @@ declare module "sap/m/GenericTile" {
|
|
|
28706
29007
|
* The tileContent to remove or its index or id
|
|
28707
29008
|
*/
|
|
28708
29009
|
vTileContent: int | string | TileContent
|
|
28709
|
-
): TileContent;
|
|
29010
|
+
): TileContent | null;
|
|
28710
29011
|
/**
|
|
28711
29012
|
* @SINCE 1.82
|
|
28712
29013
|
*
|
|
@@ -28925,6 +29226,9 @@ declare module "sap/m/GenericTile" {
|
|
|
28925
29226
|
oIcon: Control
|
|
28926
29227
|
): this;
|
|
28927
29228
|
/**
|
|
29229
|
+
* @SINCE 1.103
|
|
29230
|
+
* @EXPERIMENTAL (since 1.103)
|
|
29231
|
+
*
|
|
28928
29232
|
* Sets a new value for property {@link #getIconLoaded iconLoaded}.
|
|
28929
29233
|
*
|
|
28930
29234
|
* The load state of the tileIcon.
|
|
@@ -29431,6 +29735,9 @@ declare module "sap/m/GenericTile" {
|
|
|
29431
29735
|
| `{${string}}`;
|
|
29432
29736
|
|
|
29433
29737
|
/**
|
|
29738
|
+
* @SINCE 1.103
|
|
29739
|
+
* @EXPERIMENTAL (since 1.103)
|
|
29740
|
+
*
|
|
29434
29741
|
* The load state of the tileIcon.
|
|
29435
29742
|
*/
|
|
29436
29743
|
iconLoaded?: boolean | PropertyBindingInfo | `{${string}}`;
|
|
@@ -30414,7 +30721,7 @@ declare module "sap/m/HeaderContainer" {
|
|
|
30414
30721
|
* The content to remove or its index or id
|
|
30415
30722
|
*/
|
|
30416
30723
|
vContent: int | string | Control
|
|
30417
|
-
): Control;
|
|
30724
|
+
): Control | null;
|
|
30418
30725
|
/**
|
|
30419
30726
|
* Sets a new value for property {@link #getBackgroundDesign backgroundDesign}.
|
|
30420
30727
|
*
|
|
@@ -31093,7 +31400,8 @@ declare module "sap/m/IconTabBar" {
|
|
|
31093
31400
|
*
|
|
31094
31401
|
* Specifies whether tab reordering is enabled. Relevant only for desktop devices. The {@link sap.m.IconTabSeparator
|
|
31095
31402
|
* sap.m.IconTabSeparator} cannot be dragged and dropped Items can be moved around {@link sap.m.IconTabSeparator
|
|
31096
|
-
* sap.m.IconTabSeparator}
|
|
31403
|
+
* sap.m.IconTabSeparator} Reordering is enabled via keyboard using `Ctrl` + arrow keys (Windows) and `Control`
|
|
31404
|
+
* + arrow keys (Mac OS)
|
|
31097
31405
|
*
|
|
31098
31406
|
* Default value is `false`.
|
|
31099
31407
|
*
|
|
@@ -31343,7 +31651,7 @@ declare module "sap/m/IconTabBar" {
|
|
|
31343
31651
|
* The content to remove or its index or id
|
|
31344
31652
|
*/
|
|
31345
31653
|
vContent: int | string | Control
|
|
31346
|
-
): Control;
|
|
31654
|
+
): Control | null;
|
|
31347
31655
|
/**
|
|
31348
31656
|
* Removes a item from the aggregation {@link #getItems items}.
|
|
31349
31657
|
*
|
|
@@ -31354,7 +31662,7 @@ declare module "sap/m/IconTabBar" {
|
|
|
31354
31662
|
* The item to remove or its index or id
|
|
31355
31663
|
*/
|
|
31356
31664
|
vItem: int | string | IconTab
|
|
31357
|
-
): IconTab;
|
|
31665
|
+
): IconTab | null;
|
|
31358
31666
|
/**
|
|
31359
31667
|
* @SINCE 1.26
|
|
31360
31668
|
*
|
|
@@ -31720,7 +32028,8 @@ declare module "sap/m/IconTabBar" {
|
|
|
31720
32028
|
*
|
|
31721
32029
|
* Specifies whether tab reordering is enabled. Relevant only for desktop devices. The {@link sap.m.IconTabSeparator
|
|
31722
32030
|
* sap.m.IconTabSeparator} cannot be dragged and dropped Items can be moved around {@link sap.m.IconTabSeparator
|
|
31723
|
-
* sap.m.IconTabSeparator}
|
|
32031
|
+
* sap.m.IconTabSeparator} Reordering is enabled via keyboard using `Ctrl` + arrow keys (Windows) and `Control`
|
|
32032
|
+
* + arrow keys (Mac OS)
|
|
31724
32033
|
*/
|
|
31725
32034
|
enableTabReordering?: boolean | PropertyBindingInfo | `{${string}}`;
|
|
31726
32035
|
|
|
@@ -32125,7 +32434,7 @@ declare module "sap/m/IconTabFilter" {
|
|
|
32125
32434
|
* The content to remove or its index or id
|
|
32126
32435
|
*/
|
|
32127
32436
|
vContent: int | string | Control
|
|
32128
|
-
): Control;
|
|
32437
|
+
): Control | null;
|
|
32129
32438
|
/**
|
|
32130
32439
|
* @SINCE 1.77
|
|
32131
32440
|
*
|
|
@@ -32138,7 +32447,7 @@ declare module "sap/m/IconTabFilter" {
|
|
|
32138
32447
|
* The item to remove or its index or id
|
|
32139
32448
|
*/
|
|
32140
32449
|
vItem: int | string | IconTab
|
|
32141
|
-
): IconTab;
|
|
32450
|
+
): IconTab | null;
|
|
32142
32451
|
/**
|
|
32143
32452
|
* Renders this item in the IconTabHeader.
|
|
32144
32453
|
*/
|
|
@@ -32616,7 +32925,8 @@ declare module "sap/m/IconTabHeader" {
|
|
|
32616
32925
|
*
|
|
32617
32926
|
* Specifies whether tab reordering is enabled. Relevant only for desktop devices. The {@link sap.m.IconTabSeparator
|
|
32618
32927
|
* sap.m.IconTabSeparator} cannot be dragged and dropped Items can be moved around {@link sap.m.IconTabSeparator
|
|
32619
|
-
* sap.m.IconTabSeparator}
|
|
32928
|
+
* sap.m.IconTabSeparator} Reordering is enabled via keyboard using `Ctrl` + arrow keys (Windows) and `Control`
|
|
32929
|
+
* + arrow keys (Mac OS)
|
|
32620
32930
|
*
|
|
32621
32931
|
* Default value is `false`.
|
|
32622
32932
|
*
|
|
@@ -32787,7 +33097,7 @@ declare module "sap/m/IconTabHeader" {
|
|
|
32787
33097
|
* The item to remove or its index or id
|
|
32788
33098
|
*/
|
|
32789
33099
|
vItem: int | string | IconTab
|
|
32790
|
-
): IconTab;
|
|
33100
|
+
): IconTab | null;
|
|
32791
33101
|
/**
|
|
32792
33102
|
* @SINCE 1.80
|
|
32793
33103
|
*
|
|
@@ -32837,7 +33147,8 @@ declare module "sap/m/IconTabHeader" {
|
|
|
32837
33147
|
*
|
|
32838
33148
|
* Specifies whether tab reordering is enabled. Relevant only for desktop devices. The {@link sap.m.IconTabSeparator
|
|
32839
33149
|
* sap.m.IconTabSeparator} cannot be dragged and dropped Items can be moved around {@link sap.m.IconTabSeparator
|
|
32840
|
-
* sap.m.IconTabSeparator}
|
|
33150
|
+
* sap.m.IconTabSeparator} Reordering is enabled via keyboard using `Ctrl` + arrow keys (Windows) and `Control`
|
|
33151
|
+
* + arrow keys (Mac OS)
|
|
32841
33152
|
*
|
|
32842
33153
|
* When called with a value of `null` or `undefined`, the default value of the property will be restored.
|
|
32843
33154
|
*
|
|
@@ -33074,7 +33385,8 @@ declare module "sap/m/IconTabHeader" {
|
|
|
33074
33385
|
*
|
|
33075
33386
|
* Specifies whether tab reordering is enabled. Relevant only for desktop devices. The {@link sap.m.IconTabSeparator
|
|
33076
33387
|
* sap.m.IconTabSeparator} cannot be dragged and dropped Items can be moved around {@link sap.m.IconTabSeparator
|
|
33077
|
-
* sap.m.IconTabSeparator}
|
|
33388
|
+
* sap.m.IconTabSeparator} Reordering is enabled via keyboard using `Ctrl` + arrow keys (Windows) and `Control`
|
|
33389
|
+
* + arrow keys (Mac OS)
|
|
33078
33390
|
*/
|
|
33079
33391
|
enableTabReordering?: boolean | PropertyBindingInfo | `{${string}}`;
|
|
33080
33392
|
|
|
@@ -33546,6 +33858,19 @@ declare module "sap/m/IllustratedMessage" {
|
|
|
33546
33858
|
* @returns Value of property `enableFormattedText`
|
|
33547
33859
|
*/
|
|
33548
33860
|
getEnableFormattedText(): boolean;
|
|
33861
|
+
/**
|
|
33862
|
+
* @SINCE 1.104
|
|
33863
|
+
*
|
|
33864
|
+
* Gets current value of property {@link #getEnableVerticalResponsiveness enableVerticalResponsiveness}.
|
|
33865
|
+
*
|
|
33866
|
+
* Defines whether the `IllustratedMessage` would resize itself according to it's height if `illustrationSize`
|
|
33867
|
+
* property is set to `IllustratedMessageSize.Auto`.
|
|
33868
|
+
*
|
|
33869
|
+
* Default value is `false`.
|
|
33870
|
+
*
|
|
33871
|
+
* @returns Value of property `enableVerticalResponsiveness`
|
|
33872
|
+
*/
|
|
33873
|
+
getEnableVerticalResponsiveness(): boolean;
|
|
33549
33874
|
/**
|
|
33550
33875
|
* @SINCE 1.98
|
|
33551
33876
|
*
|
|
@@ -33643,7 +33968,7 @@ declare module "sap/m/IllustratedMessage" {
|
|
|
33643
33968
|
* The additionalContent to remove or its index or id
|
|
33644
33969
|
*/
|
|
33645
33970
|
vAdditionalContent: int | string | Button
|
|
33646
|
-
): Button;
|
|
33971
|
+
): Button | null;
|
|
33647
33972
|
/**
|
|
33648
33973
|
* @SINCE 1.98
|
|
33649
33974
|
*
|
|
@@ -33698,6 +34023,26 @@ declare module "sap/m/IllustratedMessage" {
|
|
|
33698
34023
|
*/
|
|
33699
34024
|
bEnableFormattedText?: boolean
|
|
33700
34025
|
): this;
|
|
34026
|
+
/**
|
|
34027
|
+
* @SINCE 1.104
|
|
34028
|
+
*
|
|
34029
|
+
* Sets a new value for property {@link #getEnableVerticalResponsiveness enableVerticalResponsiveness}.
|
|
34030
|
+
*
|
|
34031
|
+
* Defines whether the `IllustratedMessage` would resize itself according to it's height if `illustrationSize`
|
|
34032
|
+
* property is set to `IllustratedMessageSize.Auto`.
|
|
34033
|
+
*
|
|
34034
|
+
* When called with a value of `null` or `undefined`, the default value of the property will be restored.
|
|
34035
|
+
*
|
|
34036
|
+
* Default value is `false`.
|
|
34037
|
+
*
|
|
34038
|
+
* @returns Reference to `this` in order to allow method chaining
|
|
34039
|
+
*/
|
|
34040
|
+
setEnableVerticalResponsiveness(
|
|
34041
|
+
/**
|
|
34042
|
+
* New value for property `enableVerticalResponsiveness`
|
|
34043
|
+
*/
|
|
34044
|
+
bEnableVerticalResponsiveness?: boolean
|
|
34045
|
+
): this;
|
|
33701
34046
|
/**
|
|
33702
34047
|
* @SINCE 1.98
|
|
33703
34048
|
*
|
|
@@ -33767,6 +34112,17 @@ declare module "sap/m/IllustratedMessage" {
|
|
|
33767
34112
|
*/
|
|
33768
34113
|
enableFormattedText?: boolean | PropertyBindingInfo | `{${string}}`;
|
|
33769
34114
|
|
|
34115
|
+
/**
|
|
34116
|
+
* @SINCE 1.104
|
|
34117
|
+
*
|
|
34118
|
+
* Defines whether the `IllustratedMessage` would resize itself according to it's height if `illustrationSize`
|
|
34119
|
+
* property is set to `IllustratedMessageSize.Auto`.
|
|
34120
|
+
*/
|
|
34121
|
+
enableVerticalResponsiveness?:
|
|
34122
|
+
| boolean
|
|
34123
|
+
| PropertyBindingInfo
|
|
34124
|
+
| `{${string}}`;
|
|
34125
|
+
|
|
33770
34126
|
/**
|
|
33771
34127
|
* @SINCE 1.98
|
|
33772
34128
|
*
|
|
@@ -37214,7 +37570,7 @@ declare module "sap/m/Input" {
|
|
|
37214
37570
|
* The suggestionColumn to remove or its index or id
|
|
37215
37571
|
*/
|
|
37216
37572
|
vSuggestionColumn: int | string | Column
|
|
37217
|
-
): Column;
|
|
37573
|
+
): Column | null;
|
|
37218
37574
|
/**
|
|
37219
37575
|
* Removes suggestion item.
|
|
37220
37576
|
*
|
|
@@ -37238,7 +37594,7 @@ declare module "sap/m/Input" {
|
|
|
37238
37594
|
* The suggestionRow to remove or its index or id
|
|
37239
37595
|
*/
|
|
37240
37596
|
vSuggestionRow: int | string | ColumnListItem | GroupHeaderListItem
|
|
37241
|
-
): ColumnListItem | GroupHeaderListItem;
|
|
37597
|
+
): ColumnListItem | GroupHeaderListItem | null;
|
|
37242
37598
|
/**
|
|
37243
37599
|
* @SINCE 1.61
|
|
37244
37600
|
*
|
|
@@ -39729,7 +40085,7 @@ declare module "sap/m/InputListItem" {
|
|
|
39729
40085
|
* The content to remove or its index or id
|
|
39730
40086
|
*/
|
|
39731
40087
|
vContent: int | string | Control
|
|
39732
|
-
): Control;
|
|
40088
|
+
): Control | null;
|
|
39733
40089
|
/**
|
|
39734
40090
|
* Sets a new value for property {@link #getLabel label}.
|
|
39735
40091
|
*
|
|
@@ -39932,7 +40288,7 @@ declare module "sap/m/InstanceManager" {
|
|
|
39932
40288
|
* as long as it has a close method.
|
|
39933
40289
|
*/
|
|
39934
40290
|
oDialog: Control
|
|
39935
|
-
):
|
|
40291
|
+
): this;
|
|
39936
40292
|
/**
|
|
39937
40293
|
* Adds an instance to the given category. If the instance is already added to the same category, it won't
|
|
39938
40294
|
* be added again.
|
|
@@ -39948,7 +40304,7 @@ declare module "sap/m/InstanceManager" {
|
|
|
39948
40304
|
* The instance that will be added to the given category.
|
|
39949
40305
|
*/
|
|
39950
40306
|
oInstance: object
|
|
39951
|
-
):
|
|
40307
|
+
): this;
|
|
39952
40308
|
/**
|
|
39953
40309
|
* Adds a control to predefined lightbox category in instance manager.
|
|
39954
40310
|
*
|
|
@@ -39960,7 +40316,7 @@ declare module "sap/m/InstanceManager" {
|
|
|
39960
40316
|
* as long as it has a close method.
|
|
39961
40317
|
*/
|
|
39962
40318
|
oLightBox: LightBox
|
|
39963
|
-
):
|
|
40319
|
+
): this;
|
|
39964
40320
|
/**
|
|
39965
40321
|
* Adds a control to predefined popover category in instance manager.
|
|
39966
40322
|
*
|
|
@@ -39972,25 +40328,25 @@ declare module "sap/m/InstanceManager" {
|
|
|
39972
40328
|
* also be added as long as it has a close method.
|
|
39973
40329
|
*/
|
|
39974
40330
|
oPopover: Control
|
|
39975
|
-
):
|
|
40331
|
+
): this;
|
|
39976
40332
|
/**
|
|
39977
40333
|
* Closes all of the open dialogs.
|
|
39978
40334
|
*
|
|
39979
40335
|
* @returns Enable method chaining.
|
|
39980
40336
|
*/
|
|
39981
|
-
closeAllDialogs(fnCallback: Function):
|
|
40337
|
+
closeAllDialogs(fnCallback: Function): this;
|
|
39982
40338
|
/**
|
|
39983
40339
|
* Closes all open lightboxes.
|
|
39984
40340
|
*
|
|
39985
40341
|
* @returns Enable method chaining.
|
|
39986
40342
|
*/
|
|
39987
|
-
closeAllLightBoxes():
|
|
40343
|
+
closeAllLightBoxes(): this;
|
|
39988
40344
|
/**
|
|
39989
40345
|
* Closes all open popovers.
|
|
39990
40346
|
*
|
|
39991
40347
|
* @returns Enable method chaining.
|
|
39992
40348
|
*/
|
|
39993
|
-
closeAllPopovers():
|
|
40349
|
+
closeAllPopovers(): this;
|
|
39994
40350
|
/**
|
|
39995
40351
|
* Returns an array of managed instances in the given category.
|
|
39996
40352
|
*
|
|
@@ -40001,7 +40357,7 @@ declare module "sap/m/InstanceManager" {
|
|
|
40001
40357
|
* The category's id.
|
|
40002
40358
|
*/
|
|
40003
40359
|
sCategoryId: string
|
|
40004
|
-
): object;
|
|
40360
|
+
): object[];
|
|
40005
40361
|
/**
|
|
40006
40362
|
* Gets all of the open dialogs. If there's no dialog open, an empty array is returned.
|
|
40007
40363
|
*
|
|
@@ -40118,7 +40474,7 @@ declare module "sap/m/InstanceManager" {
|
|
|
40118
40474
|
/**
|
|
40119
40475
|
* Removes control from predefined dialog category in instance manager.
|
|
40120
40476
|
*
|
|
40121
|
-
* @returns The removed popover or null
|
|
40477
|
+
* @returns The removed popover or `null`. If the popover isn't managed, this method returns `null` instead
|
|
40122
40478
|
* of the removed popover.
|
|
40123
40479
|
*/
|
|
40124
40480
|
removeDialogInstance(
|
|
@@ -40130,7 +40486,7 @@ declare module "sap/m/InstanceManager" {
|
|
|
40130
40486
|
/**
|
|
40131
40487
|
* Removes a managed instance from the given category.
|
|
40132
40488
|
*
|
|
40133
|
-
* @returns The removed instance or null
|
|
40489
|
+
* @returns The removed instance or `null`. If the instance isn't managed, this method returns `null` instead
|
|
40134
40490
|
* of the instance object.
|
|
40135
40491
|
*/
|
|
40136
40492
|
removeInstance(
|
|
@@ -40142,11 +40498,11 @@ declare module "sap/m/InstanceManager" {
|
|
|
40142
40498
|
* The instance that will be removed from the given category.
|
|
40143
40499
|
*/
|
|
40144
40500
|
oInstance: object
|
|
40145
|
-
): object;
|
|
40501
|
+
): object | null;
|
|
40146
40502
|
/**
|
|
40147
40503
|
* Removes control from predefined lightbox category in instance manager.
|
|
40148
40504
|
*
|
|
40149
|
-
* @returns The removed popover or null
|
|
40505
|
+
* @returns The removed popover or `null`. If the LightBox isn't managed, this method returns `null` instead
|
|
40150
40506
|
* of the removed LightBox.
|
|
40151
40507
|
*/
|
|
40152
40508
|
removeLightBoxInstance(
|
|
@@ -40158,7 +40514,7 @@ declare module "sap/m/InstanceManager" {
|
|
|
40158
40514
|
/**
|
|
40159
40515
|
* Removes control from predefined popover category in instance manager.
|
|
40160
40516
|
*
|
|
40161
|
-
* @returns The removed popover or null
|
|
40517
|
+
* @returns The removed popover or `null`. If the popover isn't managed, this method returns `null` instead
|
|
40162
40518
|
* of the removed popover.
|
|
40163
40519
|
*/
|
|
40164
40520
|
removePopoverInstance(
|
|
@@ -40166,7 +40522,7 @@ declare module "sap/m/InstanceManager" {
|
|
|
40166
40522
|
* to be removed from instance manager.
|
|
40167
40523
|
*/
|
|
40168
40524
|
oPopover: Control
|
|
40169
|
-
): Control;
|
|
40525
|
+
): Control | null;
|
|
40170
40526
|
}
|
|
40171
40527
|
const InstanceManager: InstanceManager;
|
|
40172
40528
|
export default InstanceManager;
|
|
@@ -40995,7 +41351,7 @@ declare module "sap/m/LightBox" {
|
|
|
40995
41351
|
* The imageContent to remove or its index or id
|
|
40996
41352
|
*/
|
|
40997
41353
|
vImageContent: int | string | LightBoxItem
|
|
40998
|
-
): LightBoxItem;
|
|
41354
|
+
): LightBoxItem | null;
|
|
40999
41355
|
/**
|
|
41000
41356
|
* Unbinds aggregation {@link #getImageContent imageContent} from model data.
|
|
41001
41357
|
*
|
|
@@ -41219,7 +41575,7 @@ declare module "sap/m/Link" {
|
|
|
41219
41575
|
|
|
41220
41576
|
import Event from "sap/ui/base/Event";
|
|
41221
41577
|
|
|
41222
|
-
import { EmptyIndicatorMode } from "sap/m/library";
|
|
41578
|
+
import { LinkAccessibleRole, EmptyIndicatorMode } from "sap/m/library";
|
|
41223
41579
|
|
|
41224
41580
|
import ElementMetadata from "sap/ui/core/ElementMetadata";
|
|
41225
41581
|
|
|
@@ -41436,6 +41792,22 @@ declare module "sap/m/Link" {
|
|
|
41436
41792
|
* @returns The `sap.m.Link` accessibility information
|
|
41437
41793
|
*/
|
|
41438
41794
|
getAccessibilityInfo(): object;
|
|
41795
|
+
/**
|
|
41796
|
+
* @SINCE 1.104.0
|
|
41797
|
+
*
|
|
41798
|
+
* Gets current value of property {@link #getAccessibleRole accessibleRole}.
|
|
41799
|
+
*
|
|
41800
|
+
* Describes the accessibility role of the link:
|
|
41801
|
+
* - `LinkAccessibleRole.Default` - a navagation is expected to the location given in `href` property
|
|
41802
|
+
*
|
|
41803
|
+
* - `LinkAccessibleRole.Button` - there will be `role` attribute with value "Button" rendered. In this
|
|
41804
|
+
* scenario the `href` property value shouldn't be set as navigation isn't expected to occur.
|
|
41805
|
+
*
|
|
41806
|
+
* Default value is `Default`.
|
|
41807
|
+
*
|
|
41808
|
+
* @returns Value of property `accessibleRole`
|
|
41809
|
+
*/
|
|
41810
|
+
getAccessibleRole(): LinkAccessibleRole | keyof typeof LinkAccessibleRole;
|
|
41439
41811
|
/**
|
|
41440
41812
|
* Returns array of IDs of the elements which are the current targets of the association {@link #getAriaDescribedBy
|
|
41441
41813
|
* ariaDescribedBy}.
|
|
@@ -41506,8 +41878,9 @@ declare module "sap/m/Link" {
|
|
|
41506
41878
|
/**
|
|
41507
41879
|
* Gets current value of property {@link #getHref href}.
|
|
41508
41880
|
*
|
|
41509
|
-
* Defines the link target URI. Supports standard hyperlink behavior.
|
|
41510
|
-
*
|
|
41881
|
+
* Defines the link target URI. Supports standard hyperlink behavior. **Note:** Don't set `href` property
|
|
41882
|
+
* if an action should be triggered by the link. Instead set `accessibleRole` property to `LinkAccessibleRole.Button`
|
|
41883
|
+
* and register a `press` event handler.
|
|
41511
41884
|
*
|
|
41512
41885
|
* @returns Value of property `href`
|
|
41513
41886
|
*/
|
|
@@ -41656,6 +42029,29 @@ declare module "sap/m/Link" {
|
|
|
41656
42029
|
*/
|
|
41657
42030
|
vAriaLabelledBy: int | ID | Control
|
|
41658
42031
|
): ID;
|
|
42032
|
+
/**
|
|
42033
|
+
* @SINCE 1.104.0
|
|
42034
|
+
*
|
|
42035
|
+
* Sets a new value for property {@link #getAccessibleRole accessibleRole}.
|
|
42036
|
+
*
|
|
42037
|
+
* Describes the accessibility role of the link:
|
|
42038
|
+
* - `LinkAccessibleRole.Default` - a navagation is expected to the location given in `href` property
|
|
42039
|
+
*
|
|
42040
|
+
* - `LinkAccessibleRole.Button` - there will be `role` attribute with value "Button" rendered. In this
|
|
42041
|
+
* scenario the `href` property value shouldn't be set as navigation isn't expected to occur.
|
|
42042
|
+
*
|
|
42043
|
+
* When called with a value of `null` or `undefined`, the default value of the property will be restored.
|
|
42044
|
+
*
|
|
42045
|
+
* Default value is `Default`.
|
|
42046
|
+
*
|
|
42047
|
+
* @returns Reference to `this` in order to allow method chaining
|
|
42048
|
+
*/
|
|
42049
|
+
setAccessibleRole(
|
|
42050
|
+
/**
|
|
42051
|
+
* New value for property `accessibleRole`
|
|
42052
|
+
*/
|
|
42053
|
+
sAccessibleRole?: LinkAccessibleRole | keyof typeof LinkAccessibleRole
|
|
42054
|
+
): this;
|
|
41659
42055
|
/**
|
|
41660
42056
|
* @SINCE 1.86.0
|
|
41661
42057
|
*
|
|
@@ -41742,8 +42138,9 @@ declare module "sap/m/Link" {
|
|
|
41742
42138
|
/**
|
|
41743
42139
|
* Sets a new value for property {@link #getHref href}.
|
|
41744
42140
|
*
|
|
41745
|
-
* Defines the link target URI. Supports standard hyperlink behavior.
|
|
41746
|
-
*
|
|
42141
|
+
* Defines the link target URI. Supports standard hyperlink behavior. **Note:** Don't set `href` property
|
|
42142
|
+
* if an action should be triggered by the link. Instead set `accessibleRole` property to `LinkAccessibleRole.Button`
|
|
42143
|
+
* and register a `press` event handler.
|
|
41747
42144
|
*
|
|
41748
42145
|
* When called with a value of `null` or `undefined`, the default value of the property will be restored.
|
|
41749
42146
|
*
|
|
@@ -41967,8 +42364,9 @@ declare module "sap/m/Link" {
|
|
|
41967
42364
|
width?: CSSSize | PropertyBindingInfo | `{${string}}`;
|
|
41968
42365
|
|
|
41969
42366
|
/**
|
|
41970
|
-
* Defines the link target URI. Supports standard hyperlink behavior.
|
|
41971
|
-
*
|
|
42367
|
+
* Defines the link target URI. Supports standard hyperlink behavior. **Note:** Don't set `href` property
|
|
42368
|
+
* if an action should be triggered by the link. Instead set `accessibleRole` property to `LinkAccessibleRole.Button`
|
|
42369
|
+
* and register a `press` event handler.
|
|
41972
42370
|
*/
|
|
41973
42371
|
href?: URI | PropertyBindingInfo | `{${string}}`;
|
|
41974
42372
|
|
|
@@ -42045,6 +42443,20 @@ declare module "sap/m/Link" {
|
|
|
42045
42443
|
| PropertyBindingInfo
|
|
42046
42444
|
| `{${string}}`;
|
|
42047
42445
|
|
|
42446
|
+
/**
|
|
42447
|
+
* @SINCE 1.104.0
|
|
42448
|
+
*
|
|
42449
|
+
* Describes the accessibility role of the link:
|
|
42450
|
+
* - `LinkAccessibleRole.Default` - a navagation is expected to the location given in `href` property
|
|
42451
|
+
*
|
|
42452
|
+
* - `LinkAccessibleRole.Button` - there will be `role` attribute with value "Button" rendered. In this
|
|
42453
|
+
* scenario the `href` property value shouldn't be set as navigation isn't expected to occur.
|
|
42454
|
+
*/
|
|
42455
|
+
accessibleRole?:
|
|
42456
|
+
| (LinkAccessibleRole | keyof typeof LinkAccessibleRole)
|
|
42457
|
+
| PropertyBindingInfo
|
|
42458
|
+
| `{${string}}`;
|
|
42459
|
+
|
|
42048
42460
|
/**
|
|
42049
42461
|
* @SINCE 1.89
|
|
42050
42462
|
*
|
|
@@ -43799,7 +44211,7 @@ declare module "sap/m/ListBase" {
|
|
|
43799
44211
|
* The item to remove or its index or id
|
|
43800
44212
|
*/
|
|
43801
44213
|
vItem: int | string | ListItemBase
|
|
43802
|
-
): ListItemBase;
|
|
44214
|
+
): ListItemBase | null;
|
|
43803
44215
|
/**
|
|
43804
44216
|
* Removes visible selections of the current selection mode.
|
|
43805
44217
|
*/
|
|
@@ -45570,6 +45982,8 @@ declare module "sap/m/MaskInput" {
|
|
|
45570
45982
|
|
|
45571
45983
|
import MaskInputRule from "sap/m/MaskInputRule";
|
|
45572
45984
|
|
|
45985
|
+
import Event from "sap/ui/base/Event";
|
|
45986
|
+
|
|
45573
45987
|
import ElementMetadata from "sap/ui/core/ElementMetadata";
|
|
45574
45988
|
|
|
45575
45989
|
import {
|
|
@@ -45669,12 +46083,108 @@ declare module "sap/m/MaskInput" {
|
|
|
45669
46083
|
*/
|
|
45670
46084
|
oRule: MaskInputRule
|
|
45671
46085
|
): this;
|
|
46086
|
+
/**
|
|
46087
|
+
* @SINCE 1.104.0
|
|
46088
|
+
*
|
|
46089
|
+
* Attaches event handler `fnFunction` to the {@link #event:liveChange liveChange} event of this `sap.m.MaskInput`.
|
|
46090
|
+
*
|
|
46091
|
+
* When called, the context of the event handler (its `this`) will be bound to `oListener` if specified,
|
|
46092
|
+
* otherwise it will be bound to this `sap.m.MaskInput` itself.
|
|
46093
|
+
*
|
|
46094
|
+
* Fired when the value of the `MaskInput` is changed by user interaction - each keystroke, delete, paste,
|
|
46095
|
+
* etc.
|
|
46096
|
+
*
|
|
46097
|
+
* **Note:** Browsing autocomplete suggestions doesn't fire the event.
|
|
46098
|
+
*
|
|
46099
|
+
* @returns Reference to `this` in order to allow method chaining
|
|
46100
|
+
*/
|
|
46101
|
+
attachLiveChange(
|
|
46102
|
+
/**
|
|
46103
|
+
* An application-specific payload object that will be passed to the event handler along with the event
|
|
46104
|
+
* object when firing the event
|
|
46105
|
+
*/
|
|
46106
|
+
oData: object,
|
|
46107
|
+
/**
|
|
46108
|
+
* The function to be called when the event occurs
|
|
46109
|
+
*/
|
|
46110
|
+
fnFunction: (p1: Event) => void,
|
|
46111
|
+
/**
|
|
46112
|
+
* Context object to call the event handler with. Defaults to this `sap.m.MaskInput` itself
|
|
46113
|
+
*/
|
|
46114
|
+
oListener?: object
|
|
46115
|
+
): this;
|
|
46116
|
+
/**
|
|
46117
|
+
* @SINCE 1.104.0
|
|
46118
|
+
*
|
|
46119
|
+
* Attaches event handler `fnFunction` to the {@link #event:liveChange liveChange} event of this `sap.m.MaskInput`.
|
|
46120
|
+
*
|
|
46121
|
+
* When called, the context of the event handler (its `this`) will be bound to `oListener` if specified,
|
|
46122
|
+
* otherwise it will be bound to this `sap.m.MaskInput` itself.
|
|
46123
|
+
*
|
|
46124
|
+
* Fired when the value of the `MaskInput` is changed by user interaction - each keystroke, delete, paste,
|
|
46125
|
+
* etc.
|
|
46126
|
+
*
|
|
46127
|
+
* **Note:** Browsing autocomplete suggestions doesn't fire the event.
|
|
46128
|
+
*
|
|
46129
|
+
* @returns Reference to `this` in order to allow method chaining
|
|
46130
|
+
*/
|
|
46131
|
+
attachLiveChange(
|
|
46132
|
+
/**
|
|
46133
|
+
* The function to be called when the event occurs
|
|
46134
|
+
*/
|
|
46135
|
+
fnFunction: (p1: Event) => void,
|
|
46136
|
+
/**
|
|
46137
|
+
* Context object to call the event handler with. Defaults to this `sap.m.MaskInput` itself
|
|
46138
|
+
*/
|
|
46139
|
+
oListener?: object
|
|
46140
|
+
): this;
|
|
45672
46141
|
/**
|
|
45673
46142
|
* Destroys all the rules in the aggregation {@link #getRules rules}.
|
|
45674
46143
|
*
|
|
45675
46144
|
* @returns Reference to `this` in order to allow method chaining
|
|
45676
46145
|
*/
|
|
45677
46146
|
destroyRules(): this;
|
|
46147
|
+
/**
|
|
46148
|
+
* @SINCE 1.104.0
|
|
46149
|
+
*
|
|
46150
|
+
* Detaches event handler `fnFunction` from the {@link #event:liveChange liveChange} event of this `sap.m.MaskInput`.
|
|
46151
|
+
*
|
|
46152
|
+
* The passed function and listener object must match the ones used for event registration.
|
|
46153
|
+
*
|
|
46154
|
+
* @returns Reference to `this` in order to allow method chaining
|
|
46155
|
+
*/
|
|
46156
|
+
detachLiveChange(
|
|
46157
|
+
/**
|
|
46158
|
+
* The function to be called, when the event occurs
|
|
46159
|
+
*/
|
|
46160
|
+
fnFunction: (p1: Event) => void,
|
|
46161
|
+
/**
|
|
46162
|
+
* Context object on which the given function had to be called
|
|
46163
|
+
*/
|
|
46164
|
+
oListener?: object
|
|
46165
|
+
): this;
|
|
46166
|
+
/**
|
|
46167
|
+
* @SINCE 1.104.0
|
|
46168
|
+
*
|
|
46169
|
+
* Fires event {@link #event:liveChange liveChange} to attached listeners.
|
|
46170
|
+
*
|
|
46171
|
+
* @returns Reference to `this` in order to allow method chaining
|
|
46172
|
+
*/
|
|
46173
|
+
fireLiveChange(
|
|
46174
|
+
/**
|
|
46175
|
+
* Parameters to pass along with the event
|
|
46176
|
+
*/
|
|
46177
|
+
mParameters?: {
|
|
46178
|
+
/**
|
|
46179
|
+
* The current value of the input, after a live change event.
|
|
46180
|
+
*/
|
|
46181
|
+
value?: string;
|
|
46182
|
+
/**
|
|
46183
|
+
* The previous value of the input, before the last user interaction.
|
|
46184
|
+
*/
|
|
46185
|
+
previousValue?: string;
|
|
46186
|
+
}
|
|
46187
|
+
): this;
|
|
45678
46188
|
/**
|
|
45679
46189
|
* Gets current value of property {@link #getMask mask}.
|
|
45680
46190
|
*
|
|
@@ -45766,7 +46276,7 @@ declare module "sap/m/MaskInput" {
|
|
|
45766
46276
|
* The rule to remove or its index or id
|
|
45767
46277
|
*/
|
|
45768
46278
|
vRule: int | string | MaskInputRule
|
|
45769
|
-
): MaskInputRule;
|
|
46279
|
+
): MaskInputRule | null;
|
|
45770
46280
|
/**
|
|
45771
46281
|
* Sets a new value for property {@link #getMask mask}.
|
|
45772
46282
|
*
|
|
@@ -45862,6 +46372,16 @@ declare module "sap/m/MaskInput" {
|
|
|
45862
46372
|
| MaskInputRule
|
|
45863
46373
|
| AggregationBindingInfo
|
|
45864
46374
|
| `{${string}}`;
|
|
46375
|
+
|
|
46376
|
+
/**
|
|
46377
|
+
* @SINCE 1.104.0
|
|
46378
|
+
*
|
|
46379
|
+
* Fired when the value of the `MaskInput` is changed by user interaction - each keystroke, delete, paste,
|
|
46380
|
+
* etc.
|
|
46381
|
+
*
|
|
46382
|
+
* **Note:** Browsing autocomplete suggestions doesn't fire the event.
|
|
46383
|
+
*/
|
|
46384
|
+
liveChange?: (oEvent: Event) => void;
|
|
45865
46385
|
}
|
|
45866
46386
|
}
|
|
45867
46387
|
|
|
@@ -46389,7 +46909,7 @@ declare module "sap/m/Menu" {
|
|
|
46389
46909
|
* The item to remove or its index or id
|
|
46390
46910
|
*/
|
|
46391
46911
|
vItem: int | string | MenuItem
|
|
46392
|
-
): MenuItem;
|
|
46912
|
+
): MenuItem | null;
|
|
46393
46913
|
/**
|
|
46394
46914
|
* Sets the title of the `Menu`.
|
|
46395
46915
|
*
|
|
@@ -47675,7 +48195,7 @@ declare module "sap/m/MenuItem" {
|
|
|
47675
48195
|
* The item to remove or its index or id
|
|
47676
48196
|
*/
|
|
47677
48197
|
vItem: int | string | MenuItem
|
|
47678
|
-
): MenuItem;
|
|
48198
|
+
): MenuItem | null;
|
|
47679
48199
|
/**
|
|
47680
48200
|
* Sets a new value for property {@link #getIcon icon}.
|
|
47681
48201
|
*
|
|
@@ -47802,17 +48322,17 @@ declare module "sap/m/MessageBox" {
|
|
|
47802
48322
|
* Example:
|
|
47803
48323
|
* ```javascript
|
|
47804
48324
|
*
|
|
47805
|
-
*
|
|
47806
|
-
*
|
|
47807
|
-
*
|
|
47808
|
-
*
|
|
47809
|
-
*
|
|
47810
|
-
*
|
|
47811
|
-
*
|
|
47812
|
-
*
|
|
47813
|
-
*
|
|
47814
|
-
*
|
|
47815
|
-
*
|
|
48325
|
+
* sap.ui.define(["sap/m/MessageBox"], function (MessageBox) {
|
|
48326
|
+
* MessageBox.show(
|
|
48327
|
+
* "This message should appear in the message box.", {
|
|
48328
|
+
* icon: MessageBox.Icon.INFORMATION,
|
|
48329
|
+
* title: "My message box title",
|
|
48330
|
+
* actions: [MessageBox.Action.YES, MessageBox.Action.NO],
|
|
48331
|
+
* emphasizedAction: MessageBox.Action.YES,
|
|
48332
|
+
* onClose: function (oAction) { / * do something * / }
|
|
48333
|
+
* }
|
|
48334
|
+
* );
|
|
48335
|
+
* });
|
|
47816
48336
|
* ```
|
|
47817
48337
|
*
|
|
47818
48338
|
*
|
|
@@ -47922,11 +48442,15 @@ declare module "sap/m/MessageBox" {
|
|
|
47922
48442
|
*/
|
|
47923
48443
|
horizontalScrolling?: boolean;
|
|
47924
48444
|
/**
|
|
47925
|
-
* Added since version 1.28.0. If 'details' is set
|
|
47926
|
-
* the
|
|
47927
|
-
*
|
|
48445
|
+
* Added since version 1.28.0. If 'details' is set, a link to view details is added. When the user clicks
|
|
48446
|
+
* the link, the text area containing 'details' information is displayed. The initial visibility is not
|
|
48447
|
+
* configurable and the details are hidden by default.
|
|
48448
|
+
* If object is given, it will be serialized using `JSON.stringify`.
|
|
48449
|
+
* Since version 1.103, a callback function can be used. It should return a promise, that resolves with
|
|
48450
|
+
* a `string` value or a JSON object, which will be stringified, or rejects - in this case a default error
|
|
48451
|
+
* message will be displayed.
|
|
47928
48452
|
*/
|
|
47929
|
-
details?: string;
|
|
48453
|
+
details?: string | object | (() => Promise<string | object>);
|
|
47930
48454
|
/**
|
|
47931
48455
|
* Added since version 1.72.0. Whether the MessageBox will be closed automatically when a routing navigation
|
|
47932
48456
|
* occurs.
|
|
@@ -48036,11 +48560,15 @@ declare module "sap/m/MessageBox" {
|
|
|
48036
48560
|
*/
|
|
48037
48561
|
horizontalScrolling?: boolean;
|
|
48038
48562
|
/**
|
|
48039
|
-
* Added since version 1.28.0. If 'details' is set
|
|
48040
|
-
* the
|
|
48041
|
-
*
|
|
48563
|
+
* Added since version 1.28.0. If 'details' is set, a link to view details is added. When the user clicks
|
|
48564
|
+
* the link, the text area containing 'details' information is displayed. The initial visibility is not
|
|
48565
|
+
* configurable and the details are hidden by default.
|
|
48566
|
+
* If object is given, it will be serialized using `JSON.stringify`.
|
|
48567
|
+
* Since version 1.103, a callback function can be used. It should return a promise, that resolves with
|
|
48568
|
+
* a `string` value or a JSON object, which will be stringified, or rejects - in this case a default error
|
|
48569
|
+
* message will be displayed.
|
|
48042
48570
|
*/
|
|
48043
|
-
details?: string;
|
|
48571
|
+
details?: string | object | (() => Promise<string | object>);
|
|
48044
48572
|
/**
|
|
48045
48573
|
* Added since version 1.72.0. Whether the MessageBox will be closed automatically when a routing navigation
|
|
48046
48574
|
* occurs.
|
|
@@ -48145,11 +48673,15 @@ declare module "sap/m/MessageBox" {
|
|
|
48145
48673
|
*/
|
|
48146
48674
|
horizontalScrolling?: boolean;
|
|
48147
48675
|
/**
|
|
48148
|
-
* Added since version 1.28.0. If 'details' is set
|
|
48149
|
-
* the
|
|
48150
|
-
*
|
|
48676
|
+
* Added since version 1.28.0. If 'details' is set, a link to view details is added. When the user clicks
|
|
48677
|
+
* the link, the text area containing 'details' information is displayed. The initial visibility is not
|
|
48678
|
+
* configurable and the details are hidden by default.
|
|
48679
|
+
* If object is given, it will be serialized using `JSON.stringify`.
|
|
48680
|
+
* Since version 1.103, a callback function can be used. It should return a promise, that resolves with
|
|
48681
|
+
* a `string` value or a JSON object, which will be stringified, or rejects - in this case a default error
|
|
48682
|
+
* message will be displayed.
|
|
48151
48683
|
*/
|
|
48152
|
-
details?: string;
|
|
48684
|
+
details?: string | object | (() => Promise<string | object>);
|
|
48153
48685
|
/**
|
|
48154
48686
|
* Added since version 1.72.0. Whether the MessageBox will be closed automatically when a routing navigation
|
|
48155
48687
|
* occurs.
|
|
@@ -48178,7 +48710,7 @@ declare module "sap/m/MessageBox" {
|
|
|
48178
48710
|
* ```
|
|
48179
48711
|
*
|
|
48180
48712
|
*
|
|
48181
|
-
* The callback is called with the following signature
|
|
48713
|
+
* The callback is called with the following signature
|
|
48182
48714
|
* ```javascript
|
|
48183
48715
|
*
|
|
48184
48716
|
* function (oAction)
|
|
@@ -48252,11 +48784,15 @@ declare module "sap/m/MessageBox" {
|
|
|
48252
48784
|
*/
|
|
48253
48785
|
horizontalScrolling?: boolean;
|
|
48254
48786
|
/**
|
|
48255
|
-
* Added since version 1.28.0. If 'details' is set
|
|
48256
|
-
* the
|
|
48257
|
-
*
|
|
48787
|
+
* Added since version 1.28.0. If 'details' is set, a link to view details is added. When the user clicks
|
|
48788
|
+
* the link, the text area containing 'details' information is displayed. The initial visibility is not
|
|
48789
|
+
* configurable and the details are hidden by default.
|
|
48790
|
+
* If object is given, it will be serialized using `JSON.stringify`.
|
|
48791
|
+
* Since version 1.103, a callback function can be used. It should return a promise, that resolves with
|
|
48792
|
+
* a `string` value or a JSON object, which will be stringified, or rejects - in this case a default error
|
|
48793
|
+
* message will be displayed.
|
|
48258
48794
|
*/
|
|
48259
|
-
details?: string;
|
|
48795
|
+
details?: string | object | (() => Promise<string | object>);
|
|
48260
48796
|
/**
|
|
48261
48797
|
* Added since version 1.72.0. Whether the MessageBox will be closed automatically when a routing navigation
|
|
48262
48798
|
* occurs.
|
|
@@ -48369,11 +48905,15 @@ declare module "sap/m/MessageBox" {
|
|
|
48369
48905
|
*/
|
|
48370
48906
|
horizontalScrolling?: boolean;
|
|
48371
48907
|
/**
|
|
48372
|
-
* Added since version 1.28.0. If 'details' is set
|
|
48373
|
-
* the
|
|
48374
|
-
*
|
|
48908
|
+
* Added since version 1.28.0. If 'details' is set, a link to view details is added. When the user clicks
|
|
48909
|
+
* the link, the text area containing 'details' information is displayed. The initial visibility is not
|
|
48910
|
+
* configurable and the details are hidden by default.
|
|
48911
|
+
* If object is given, it will be serialized using `JSON.stringify`.
|
|
48912
|
+
* Since version 1.103, a callback function can be used. It should return a promise, that resolves with
|
|
48913
|
+
* a `string` value or a JSON object, which will be stringified, or rejects - in this case a default error
|
|
48914
|
+
* message will be displayed.
|
|
48375
48915
|
*/
|
|
48376
|
-
details?: string;
|
|
48916
|
+
details?: string | object | (() => Promise<string | object>);
|
|
48377
48917
|
/**
|
|
48378
48918
|
* The width of the MessageBox
|
|
48379
48919
|
*/
|
|
@@ -48407,8 +48947,6 @@ declare module "sap/m/MessageBox" {
|
|
|
48407
48947
|
*
|
|
48408
48948
|
*
|
|
48409
48949
|
* The callback is called with the following signature
|
|
48410
|
-
*
|
|
48411
|
-
*
|
|
48412
48950
|
* ```javascript
|
|
48413
48951
|
*
|
|
48414
48952
|
* function(oAction)
|
|
@@ -48482,11 +49020,15 @@ declare module "sap/m/MessageBox" {
|
|
|
48482
49020
|
*/
|
|
48483
49021
|
horizontalScrolling?: boolean;
|
|
48484
49022
|
/**
|
|
48485
|
-
* Added since version 1.28.0. If 'details' is set
|
|
48486
|
-
* the
|
|
48487
|
-
*
|
|
49023
|
+
* Added since version 1.28.0. If 'details' is set, a link to view details is added. When the user clicks
|
|
49024
|
+
* the link, the text area containing 'details' information is displayed. The initial visibility is not
|
|
49025
|
+
* configurable and the details are hidden by default.
|
|
49026
|
+
* If object is given, it will be serialized using `JSON.stringify`.
|
|
49027
|
+
* Since version 1.103, a callback function can be used. It should return a promise, that resolves with
|
|
49028
|
+
* a `string` value or a JSON object, which will be stringified, or rejects - in this case a default error
|
|
49029
|
+
* message will be displayed.
|
|
48488
49030
|
*/
|
|
48489
|
-
details?: string;
|
|
49031
|
+
details?: string | object | (() => Promise<string | object>);
|
|
48490
49032
|
/**
|
|
48491
49033
|
* Added since version 1.72.0. Whether the MessageBox will be closed automatically when a routing navigation
|
|
48492
49034
|
* occurs.
|
|
@@ -48515,7 +49057,7 @@ declare module "sap/m/MessageBox" {
|
|
|
48515
49057
|
* ```
|
|
48516
49058
|
*
|
|
48517
49059
|
*
|
|
48518
|
-
* The callback is called with the following signature
|
|
49060
|
+
* The callback is called with the following signature
|
|
48519
49061
|
* ```javascript
|
|
48520
49062
|
*
|
|
48521
49063
|
* function (oAction)
|
|
@@ -48589,11 +49131,15 @@ declare module "sap/m/MessageBox" {
|
|
|
48589
49131
|
*/
|
|
48590
49132
|
horizontalScrolling?: boolean;
|
|
48591
49133
|
/**
|
|
48592
|
-
* Added since version 1.28.0. If 'details' is set
|
|
48593
|
-
* the
|
|
48594
|
-
*
|
|
49134
|
+
* Added since version 1.28.0. If 'details' is set, a link to view details is added. When the user clicks
|
|
49135
|
+
* the link, the text area containing 'details' information is displayed. The initial visibility is not
|
|
49136
|
+
* configurable and the details are hidden by default.
|
|
49137
|
+
* If object is given, it will be serialized using `JSON.stringify`.
|
|
49138
|
+
* Since version 1.103, a callback function can be used. It should return a promise, that resolves with
|
|
49139
|
+
* a `string` value or a JSON object, which will be stringified, or rejects - in this case a default error
|
|
49140
|
+
* message will be displayed.
|
|
48595
49141
|
*/
|
|
48596
|
-
details?: string;
|
|
49142
|
+
details?: string | object | (() => Promise<string | object>);
|
|
48597
49143
|
/**
|
|
48598
49144
|
* Added since version 1.72.0. Whether the MessageBox will be closed automatically when a routing navigation
|
|
48599
49145
|
* occurs.
|
|
@@ -49551,7 +50097,7 @@ declare module "sap/m/MessagePage" {
|
|
|
49551
50097
|
* The button to remove or its index or id
|
|
49552
50098
|
*/
|
|
49553
50099
|
vButton: int | string | Button
|
|
49554
|
-
): Button;
|
|
50100
|
+
): Button | null;
|
|
49555
50101
|
/**
|
|
49556
50102
|
* Sets the aggregated {@link #getCustomDescription customDescription}.
|
|
49557
50103
|
*
|
|
@@ -50886,7 +51432,7 @@ declare module "sap/m/MessagePopover" {
|
|
|
50886
51432
|
* The item to remove or its index or id
|
|
50887
51433
|
*/
|
|
50888
51434
|
vItem: int | string | MessageItem | MessagePopoverItem
|
|
50889
|
-
): MessageItem | MessagePopoverItem;
|
|
51435
|
+
): MessageItem | MessagePopoverItem | null;
|
|
50890
51436
|
/**
|
|
50891
51437
|
* Sets a new value for property {@link #getAsyncDescriptionHandler asyncDescriptionHandler}.
|
|
50892
51438
|
*
|
|
@@ -52498,7 +53044,7 @@ declare module "sap/m/MessageView" {
|
|
|
52498
53044
|
* The item to remove or its index or id
|
|
52499
53045
|
*/
|
|
52500
53046
|
vItem: int | string | MessageItem
|
|
52501
|
-
): MessageItem;
|
|
53047
|
+
): MessageItem | null;
|
|
52502
53048
|
/**
|
|
52503
53049
|
* Sets a new value for property {@link #getAsyncDescriptionHandler asyncDescriptionHandler}.
|
|
52504
53050
|
*
|
|
@@ -53077,16 +53623,16 @@ declare module "sap/m/MultiComboBox" {
|
|
|
53077
53623
|
*/
|
|
53078
53624
|
removeAllSelectedItems(): ID[];
|
|
53079
53625
|
/**
|
|
53080
|
-
* Removes
|
|
53626
|
+
* Removes a selected item from the association named `selectedItems`.
|
|
53081
53627
|
*
|
|
53082
|
-
* @returns The removed
|
|
53628
|
+
* @returns The removed item or `null`
|
|
53083
53629
|
*/
|
|
53084
53630
|
removeSelectedItem(
|
|
53085
53631
|
/**
|
|
53086
|
-
* The item to be removed
|
|
53632
|
+
* The item to be removed or its ID
|
|
53087
53633
|
*/
|
|
53088
|
-
oItem: Item | ID
|
|
53089
|
-
):
|
|
53634
|
+
oItem: Item | ID
|
|
53635
|
+
): Item | null;
|
|
53090
53636
|
/**
|
|
53091
53637
|
* Removes selected items. Only items with valid keys are removed.
|
|
53092
53638
|
*
|
|
@@ -53777,7 +54323,7 @@ declare module "sap/m/MultiInput" {
|
|
|
53777
54323
|
* The token to remove or its index or id
|
|
53778
54324
|
*/
|
|
53779
54325
|
vToken: int | string | Token
|
|
53780
|
-
): Token;
|
|
54326
|
+
): Token | null;
|
|
53781
54327
|
/**
|
|
53782
54328
|
* Function removes a validation callback.
|
|
53783
54329
|
*/
|
|
@@ -54504,16 +55050,16 @@ declare module "sap/m/NavContainer" {
|
|
|
54504
55050
|
*/
|
|
54505
55051
|
getInitialPage(): ID;
|
|
54506
55052
|
/**
|
|
54507
|
-
* Returns the control with the given ID from the
|
|
55053
|
+
* Returns the control with the given ID from the `pages` aggregation (if available).
|
|
54508
55054
|
*
|
|
54509
|
-
* @returns The control with the given ID or null if it doesn
|
|
55055
|
+
* @returns The control with the given ID or `null` if it doesn't exist
|
|
54510
55056
|
*/
|
|
54511
55057
|
getPage(
|
|
54512
55058
|
/**
|
|
54513
55059
|
* The ID of the aggregated control to find
|
|
54514
55060
|
*/
|
|
54515
55061
|
pageId: string
|
|
54516
|
-
): Control;
|
|
55062
|
+
): Control | null;
|
|
54517
55063
|
/**
|
|
54518
55064
|
* Gets content of aggregation {@link #getPages pages}.
|
|
54519
55065
|
*
|
|
@@ -54649,7 +55195,7 @@ declare module "sap/m/NavContainer" {
|
|
|
54649
55195
|
/**
|
|
54650
55196
|
* Removes a page.
|
|
54651
55197
|
*
|
|
54652
|
-
* @returns the removed page or null
|
|
55198
|
+
* @returns the removed page or `null`
|
|
54653
55199
|
*/
|
|
54654
55200
|
removePage(
|
|
54655
55201
|
/**
|
|
@@ -54657,7 +55203,7 @@ declare module "sap/m/NavContainer" {
|
|
|
54657
55203
|
* a negative value or a value greater or equal than the current size of the aggregation, nothing is removed.
|
|
54658
55204
|
*/
|
|
54659
55205
|
vPage: int | string | Control
|
|
54660
|
-
): Control;
|
|
55206
|
+
): Control | null;
|
|
54661
55207
|
/**
|
|
54662
55208
|
* @SINCE 1.30
|
|
54663
55209
|
*
|
|
@@ -55602,7 +56148,7 @@ declare module "sap/m/NotificationListBase" {
|
|
|
55602
56148
|
* The button to remove or its index or id
|
|
55603
56149
|
*/
|
|
55604
56150
|
vButton: int | string | Button
|
|
55605
|
-
): Button;
|
|
56151
|
+
): Button | null;
|
|
55606
56152
|
/**
|
|
55607
56153
|
* Sets a new value for property {@link #getAuthorName authorName}.
|
|
55608
56154
|
*
|
|
@@ -56113,7 +56659,7 @@ declare module "sap/m/NotificationListGroup" {
|
|
|
56113
56659
|
* The item to remove or its index or id
|
|
56114
56660
|
*/
|
|
56115
56661
|
vItem: int | string | NotificationListItem
|
|
56116
|
-
): NotificationListItem;
|
|
56662
|
+
): NotificationListItem | null;
|
|
56117
56663
|
/**
|
|
56118
56664
|
* @deprecated (since 1.73)
|
|
56119
56665
|
*
|
|
@@ -58857,7 +59403,7 @@ declare module "sap/m/ObjectHeader" {
|
|
|
58857
59403
|
* The additionalNumber to remove or its index or id
|
|
58858
59404
|
*/
|
|
58859
59405
|
vAdditionalNumber: int | string | ObjectNumber
|
|
58860
|
-
): ObjectNumber;
|
|
59406
|
+
): ObjectNumber | null;
|
|
58861
59407
|
/**
|
|
58862
59408
|
* @SINCE 1.38.0
|
|
58863
59409
|
*
|
|
@@ -58938,7 +59484,7 @@ declare module "sap/m/ObjectHeader" {
|
|
|
58938
59484
|
* The attribute to remove or its index or id
|
|
58939
59485
|
*/
|
|
58940
59486
|
vAttribute: int | string | ObjectAttribute
|
|
58941
|
-
): ObjectAttribute;
|
|
59487
|
+
): ObjectAttribute | null;
|
|
58942
59488
|
/**
|
|
58943
59489
|
* Removes a marker from the aggregation {@link #getMarkers markers}.
|
|
58944
59490
|
*
|
|
@@ -58949,7 +59495,7 @@ declare module "sap/m/ObjectHeader" {
|
|
|
58949
59495
|
* The marker to remove or its index or id
|
|
58950
59496
|
*/
|
|
58951
59497
|
vMarker: int | string | ObjectMarker
|
|
58952
|
-
): ObjectMarker;
|
|
59498
|
+
): ObjectMarker | null;
|
|
58953
59499
|
/**
|
|
58954
59500
|
* @SINCE 1.16.0
|
|
58955
59501
|
*
|
|
@@ -58962,7 +59508,7 @@ declare module "sap/m/ObjectHeader" {
|
|
|
58962
59508
|
* The status to remove or its index or id
|
|
58963
59509
|
*/
|
|
58964
59510
|
vStatus: int | string | Control
|
|
58965
|
-
): Control;
|
|
59511
|
+
): Control | null;
|
|
58966
59512
|
/**
|
|
58967
59513
|
* Sets a new value for property {@link #getBackgroundDesign backgroundDesign}.
|
|
58968
59514
|
*
|
|
@@ -60852,7 +61398,7 @@ declare module "sap/m/ObjectListItem" {
|
|
|
60852
61398
|
* The attribute to remove or its index or id
|
|
60853
61399
|
*/
|
|
60854
61400
|
vAttribute: int | string | ObjectAttribute
|
|
60855
|
-
): ObjectAttribute;
|
|
61401
|
+
): ObjectAttribute | null;
|
|
60856
61402
|
/**
|
|
60857
61403
|
* Removes a marker from the aggregation {@link #getMarkers markers}.
|
|
60858
61404
|
*
|
|
@@ -60863,7 +61409,7 @@ declare module "sap/m/ObjectListItem" {
|
|
|
60863
61409
|
* The marker to remove or its index or id
|
|
60864
61410
|
*/
|
|
60865
61411
|
vMarker: int | string | ObjectMarker
|
|
60866
|
-
): ObjectMarker;
|
|
61412
|
+
): ObjectMarker | null;
|
|
60867
61413
|
/**
|
|
60868
61414
|
* Sets a new value for property {@link #getActiveIcon activeIcon}.
|
|
60869
61415
|
*
|
|
@@ -62873,10 +63419,12 @@ declare module "sap/m/OverflowToolbar" {
|
|
|
62873
63419
|
* Overflow Behavior: By default, only the following controls can move to the overflow area:
|
|
62874
63420
|
*
|
|
62875
63421
|
*
|
|
63422
|
+
* - {@link sap.m.Breadcrumbs}
|
|
62876
63423
|
* - {@link sap.m.Button}
|
|
62877
63424
|
* - {@link sap.m.CheckBox}
|
|
62878
63425
|
* - {@link sap.m.ComboBox}
|
|
62879
63426
|
* - {@link sap.m.DatePicker}
|
|
63427
|
+
* - {@link sap.m.DateRangeSelection}
|
|
62880
63428
|
* - {@link sap.m.DateTimeInput}
|
|
62881
63429
|
* - {@link sap.m.DateTimePicker}
|
|
62882
63430
|
* - {@link sap.m.GenericTag}
|
|
@@ -62899,10 +63447,10 @@ declare module "sap/m/OverflowToolbar" {
|
|
|
62899
63447
|
*
|
|
62900
63448
|
* **Note:** The `OverflowToolbar` is an adaptive container that checks the available width and hides the
|
|
62901
63449
|
* part of its content that doesn't fit. It is intended that simple controls, such as {@link sap.m.Button}
|
|
62902
|
-
* and {@link sap.m.Label} are used as content. Embedding other adaptive container controls
|
|
62903
|
-
* sap.m.Breadcrumbs}, results in competition for the available space - both controls calculate
|
|
62904
|
-
* space based on the other one's size and both change their width at the same time, leading
|
|
62905
|
-
* distributed space.
|
|
63450
|
+
* and {@link sap.m.Label} are used as content. Embedding other adaptive container controls (with the exception
|
|
63451
|
+
* of {@link sap.m.Breadcrumbs}), results in competition for the available space - both controls calculate
|
|
63452
|
+
* the available space based on the other one's size and both change their width at the same time, leading
|
|
63453
|
+
* to incorrectly distributed space.
|
|
62906
63454
|
*
|
|
62907
63455
|
* Responsive behavior:
|
|
62908
63456
|
*
|
|
@@ -63466,6 +64014,554 @@ declare module "sap/m/OverflowToolbarToggleButton" {
|
|
|
63466
64014
|
extends $ToggleButtonSettings {}
|
|
63467
64015
|
}
|
|
63468
64016
|
|
|
64017
|
+
declare module "sap/m/p13n/BasePanel" {
|
|
64018
|
+
import { default as Control, $ControlSettings } from "sap/ui/core/Control";
|
|
64019
|
+
|
|
64020
|
+
import { p13n } from "sap/m/library";
|
|
64021
|
+
|
|
64022
|
+
import Event from "sap/ui/base/Event";
|
|
64023
|
+
|
|
64024
|
+
import ElementMetadata from "sap/ui/core/ElementMetadata";
|
|
64025
|
+
|
|
64026
|
+
import MessageStrip from "sap/m/MessageStrip";
|
|
64027
|
+
|
|
64028
|
+
import { PropertyBindingInfo } from "sap/ui/base/ManagedObject";
|
|
64029
|
+
|
|
64030
|
+
/**
|
|
64031
|
+
* @SINCE 1.96
|
|
64032
|
+
* @EXPERIMENTAL (since 1.96)
|
|
64033
|
+
*
|
|
64034
|
+
* This control serves as base class for personalization implementations. This faceless class serves as
|
|
64035
|
+
* a way to implement control-specific personalization panels.
|
|
64036
|
+
*/
|
|
64037
|
+
export default class BasePanel extends Control implements p13n.IContent {
|
|
64038
|
+
__implements__sap_m_p13n_IContent: boolean;
|
|
64039
|
+
/**
|
|
64040
|
+
* Constructor for a new `BasePanel`.
|
|
64041
|
+
*
|
|
64042
|
+
* Accepts an object literal `mSettings` that defines initial property values, aggregated and associated
|
|
64043
|
+
* objects as well as event handlers. See {@link sap.ui.base.ManagedObject#constructor} for a general description
|
|
64044
|
+
* of the syntax of the settings object.
|
|
64045
|
+
*/
|
|
64046
|
+
constructor(
|
|
64047
|
+
/**
|
|
64048
|
+
* Initial settings for the new control
|
|
64049
|
+
*/
|
|
64050
|
+
mSettings?: $BasePanelSettings
|
|
64051
|
+
);
|
|
64052
|
+
/**
|
|
64053
|
+
* Constructor for a new `BasePanel`.
|
|
64054
|
+
*
|
|
64055
|
+
* Accepts an object literal `mSettings` that defines initial property values, aggregated and associated
|
|
64056
|
+
* objects as well as event handlers. See {@link sap.ui.base.ManagedObject#constructor} for a general description
|
|
64057
|
+
* of the syntax of the settings object.
|
|
64058
|
+
*/
|
|
64059
|
+
constructor(
|
|
64060
|
+
/**
|
|
64061
|
+
* ID for the new control, generated automatically if no ID is given
|
|
64062
|
+
*/
|
|
64063
|
+
sId?: string,
|
|
64064
|
+
/**
|
|
64065
|
+
* Initial settings for the new control
|
|
64066
|
+
*/
|
|
64067
|
+
mSettings?: $BasePanelSettings
|
|
64068
|
+
);
|
|
64069
|
+
|
|
64070
|
+
/**
|
|
64071
|
+
* Creates a new subclass of class sap.m.p13n.BasePanel with name `sClassName` and enriches it with the
|
|
64072
|
+
* information contained in `oClassInfo`.
|
|
64073
|
+
*
|
|
64074
|
+
* `oClassInfo` might contain the same kind of information as described in {@link sap.ui.core.Control.extend}.
|
|
64075
|
+
*
|
|
64076
|
+
* @returns Created class / constructor function
|
|
64077
|
+
*/
|
|
64078
|
+
static extend<T extends Record<string, unknown>>(
|
|
64079
|
+
/**
|
|
64080
|
+
* Name of the class being created
|
|
64081
|
+
*/
|
|
64082
|
+
sClassName: string,
|
|
64083
|
+
/**
|
|
64084
|
+
* Object literal with information about the class
|
|
64085
|
+
*/
|
|
64086
|
+
oClassInfo?: sap.ClassInfo<T, BasePanel>,
|
|
64087
|
+
/**
|
|
64088
|
+
* Constructor function for the metadata object; if not given, it defaults to the metadata implementation
|
|
64089
|
+
* used by this class
|
|
64090
|
+
*/
|
|
64091
|
+
FNMetaImpl?: Function
|
|
64092
|
+
): Function;
|
|
64093
|
+
/**
|
|
64094
|
+
* Returns a metadata object for class sap.m.p13n.BasePanel.
|
|
64095
|
+
*
|
|
64096
|
+
* @returns Metadata object describing this class
|
|
64097
|
+
*/
|
|
64098
|
+
static getMetadata(): ElementMetadata;
|
|
64099
|
+
/**
|
|
64100
|
+
* Attaches event handler `fnFunction` to the {@link #event:change change} event of this `sap.m.p13n.BasePanel`.
|
|
64101
|
+
*
|
|
64102
|
+
* When called, the context of the event handler (its `this`) will be bound to `oListener` if specified,
|
|
64103
|
+
* otherwise it will be bound to this `sap.m.p13n.BasePanel` itself.
|
|
64104
|
+
*
|
|
64105
|
+
* This event is fired if any change has been made within the `BasePanel` control.
|
|
64106
|
+
*
|
|
64107
|
+
* @returns Reference to `this` in order to allow method chaining
|
|
64108
|
+
*/
|
|
64109
|
+
attachChange(
|
|
64110
|
+
/**
|
|
64111
|
+
* An application-specific payload object that will be passed to the event handler along with the event
|
|
64112
|
+
* object when firing the event
|
|
64113
|
+
*/
|
|
64114
|
+
oData: object,
|
|
64115
|
+
/**
|
|
64116
|
+
* The function to be called when the event occurs
|
|
64117
|
+
*/
|
|
64118
|
+
fnFunction: (p1: Event) => void,
|
|
64119
|
+
/**
|
|
64120
|
+
* Context object to call the event handler with. Defaults to this `sap.m.p13n.BasePanel` itself
|
|
64121
|
+
*/
|
|
64122
|
+
oListener?: object
|
|
64123
|
+
): this;
|
|
64124
|
+
/**
|
|
64125
|
+
* Attaches event handler `fnFunction` to the {@link #event:change change} event of this `sap.m.p13n.BasePanel`.
|
|
64126
|
+
*
|
|
64127
|
+
* When called, the context of the event handler (its `this`) will be bound to `oListener` if specified,
|
|
64128
|
+
* otherwise it will be bound to this `sap.m.p13n.BasePanel` itself.
|
|
64129
|
+
*
|
|
64130
|
+
* This event is fired if any change has been made within the `BasePanel` control.
|
|
64131
|
+
*
|
|
64132
|
+
* @returns Reference to `this` in order to allow method chaining
|
|
64133
|
+
*/
|
|
64134
|
+
attachChange(
|
|
64135
|
+
/**
|
|
64136
|
+
* The function to be called when the event occurs
|
|
64137
|
+
*/
|
|
64138
|
+
fnFunction: (p1: Event) => void,
|
|
64139
|
+
/**
|
|
64140
|
+
* Context object to call the event handler with. Defaults to this `sap.m.p13n.BasePanel` itself
|
|
64141
|
+
*/
|
|
64142
|
+
oListener?: object
|
|
64143
|
+
): this;
|
|
64144
|
+
/**
|
|
64145
|
+
* Destroys the messageStrip in the aggregation {@link #getMessageStrip messageStrip}.
|
|
64146
|
+
*
|
|
64147
|
+
* @returns Reference to `this` in order to allow method chaining
|
|
64148
|
+
*/
|
|
64149
|
+
destroyMessageStrip(): this;
|
|
64150
|
+
/**
|
|
64151
|
+
* Detaches event handler `fnFunction` from the {@link #event:change change} event of this `sap.m.p13n.BasePanel`.
|
|
64152
|
+
*
|
|
64153
|
+
* The passed function and listener object must match the ones used for event registration.
|
|
64154
|
+
*
|
|
64155
|
+
* @returns Reference to `this` in order to allow method chaining
|
|
64156
|
+
*/
|
|
64157
|
+
detachChange(
|
|
64158
|
+
/**
|
|
64159
|
+
* The function to be called, when the event occurs
|
|
64160
|
+
*/
|
|
64161
|
+
fnFunction: (p1: Event) => void,
|
|
64162
|
+
/**
|
|
64163
|
+
* Context object on which the given function had to be called
|
|
64164
|
+
*/
|
|
64165
|
+
oListener?: object
|
|
64166
|
+
): this;
|
|
64167
|
+
/**
|
|
64168
|
+
* Fires event {@link #event:change change} to attached listeners.
|
|
64169
|
+
*
|
|
64170
|
+
* @returns Reference to `this` in order to allow method chaining
|
|
64171
|
+
*/
|
|
64172
|
+
fireChange(
|
|
64173
|
+
/**
|
|
64174
|
+
* Parameters to pass along with the event
|
|
64175
|
+
*/
|
|
64176
|
+
mParameters?: object
|
|
64177
|
+
): this;
|
|
64178
|
+
/**
|
|
64179
|
+
* Gets current value of property {@link #getEnableReorder enableReorder}.
|
|
64180
|
+
*
|
|
64181
|
+
* Determines whether the reordering of personalization items is enabled.
|
|
64182
|
+
*
|
|
64183
|
+
* Default value is `true`.
|
|
64184
|
+
*
|
|
64185
|
+
* @returns Value of property `enableReorder`
|
|
64186
|
+
*/
|
|
64187
|
+
getEnableReorder(): boolean;
|
|
64188
|
+
/**
|
|
64189
|
+
* Getter for the `messageStrip` aggregation.
|
|
64190
|
+
*
|
|
64191
|
+
* @returns The BasePanel instance
|
|
64192
|
+
*/
|
|
64193
|
+
getMessageStrip(): BasePanel;
|
|
64194
|
+
/**
|
|
64195
|
+
* Returns the personalization state that is currently displayed by the `BasePanel`.
|
|
64196
|
+
*
|
|
64197
|
+
* @returns An array containing the personalization state that is currently displayed by the `BasePanel`
|
|
64198
|
+
*/
|
|
64199
|
+
getP13nData(
|
|
64200
|
+
/**
|
|
64201
|
+
* Determines whether only the present items is included
|
|
64202
|
+
*/
|
|
64203
|
+
bOnlyActive: boolean
|
|
64204
|
+
): Item[];
|
|
64205
|
+
/**
|
|
64206
|
+
* Gets current value of property {@link #getTitle title}.
|
|
64207
|
+
*
|
|
64208
|
+
* A short text describing the panel. **Note:** This text will only be displayed if the panel is being used
|
|
64209
|
+
* in a `sap.m.p13n.Popup`.
|
|
64210
|
+
*
|
|
64211
|
+
* @returns Value of property `title`
|
|
64212
|
+
*/
|
|
64213
|
+
getTitle(): string;
|
|
64214
|
+
/**
|
|
64215
|
+
* The `enableReorder` property determines whether additional move buttons are shown when hovering over
|
|
64216
|
+
* the inner list. In addition, drag and drop will be enabled for the inner list control.
|
|
64217
|
+
*
|
|
64218
|
+
* @returns The BasePanel instance
|
|
64219
|
+
*/
|
|
64220
|
+
setEnableReorder(
|
|
64221
|
+
/**
|
|
64222
|
+
* Determines whether reordering is enabled
|
|
64223
|
+
*/
|
|
64224
|
+
bEnableReorder: boolean
|
|
64225
|
+
): BasePanel;
|
|
64226
|
+
/**
|
|
64227
|
+
* Displays a `sap.m.MessageStrip` instance in the content area of the `BasePanel`.
|
|
64228
|
+
*
|
|
64229
|
+
* @returns The `BasePanel` instance
|
|
64230
|
+
*/
|
|
64231
|
+
setMessageStrip(
|
|
64232
|
+
/**
|
|
64233
|
+
* Instance of a sap.m.MessageStrip
|
|
64234
|
+
*/
|
|
64235
|
+
oStrip: MessageStrip
|
|
64236
|
+
): BasePanel;
|
|
64237
|
+
/**
|
|
64238
|
+
* Sets the personalization state of the panel instance.
|
|
64239
|
+
*
|
|
64240
|
+
* @returns The BasePanel instance
|
|
64241
|
+
*/
|
|
64242
|
+
setP13nData(
|
|
64243
|
+
/**
|
|
64244
|
+
* An array containing the personalization state that is represented by the `BasePanel`.
|
|
64245
|
+
*/
|
|
64246
|
+
aP13nData: Item[]
|
|
64247
|
+
): this;
|
|
64248
|
+
/**
|
|
64249
|
+
* Sets a new value for property {@link #getTitle title}.
|
|
64250
|
+
*
|
|
64251
|
+
* A short text describing the panel. **Note:** This text will only be displayed if the panel is being used
|
|
64252
|
+
* in a `sap.m.p13n.Popup`.
|
|
64253
|
+
*
|
|
64254
|
+
* When called with a value of `null` or `undefined`, the default value of the property will be restored.
|
|
64255
|
+
*
|
|
64256
|
+
* @returns Reference to `this` in order to allow method chaining
|
|
64257
|
+
*/
|
|
64258
|
+
setTitle(
|
|
64259
|
+
/**
|
|
64260
|
+
* New value for property `title`
|
|
64261
|
+
*/
|
|
64262
|
+
sTitle: string
|
|
64263
|
+
): this;
|
|
64264
|
+
}
|
|
64265
|
+
/**
|
|
64266
|
+
* P13n `Item` object type.
|
|
64267
|
+
*/
|
|
64268
|
+
export type Item = {
|
|
64269
|
+
/**
|
|
64270
|
+
* The unique key of the item
|
|
64271
|
+
*/
|
|
64272
|
+
name: string;
|
|
64273
|
+
/**
|
|
64274
|
+
* The label describing the personalization item
|
|
64275
|
+
*/
|
|
64276
|
+
label: string;
|
|
64277
|
+
/**
|
|
64278
|
+
* Defines the selection state of the personalization item
|
|
64279
|
+
*/
|
|
64280
|
+
visible: boolean;
|
|
64281
|
+
};
|
|
64282
|
+
|
|
64283
|
+
export interface $BasePanelSettings extends $ControlSettings {
|
|
64284
|
+
/**
|
|
64285
|
+
* A short text describing the panel. **Note:** This text will only be displayed if the panel is being used
|
|
64286
|
+
* in a `sap.m.p13n.Popup`.
|
|
64287
|
+
*/
|
|
64288
|
+
title?: string | PropertyBindingInfo;
|
|
64289
|
+
|
|
64290
|
+
/**
|
|
64291
|
+
* Determines whether the reordering of personalization items is enabled.
|
|
64292
|
+
*/
|
|
64293
|
+
enableReorder?: boolean | PropertyBindingInfo | `{${string}}`;
|
|
64294
|
+
|
|
64295
|
+
/**
|
|
64296
|
+
* Defines an optional message strip to be displayed in the content area.
|
|
64297
|
+
*/
|
|
64298
|
+
messageStrip?: MessageStrip;
|
|
64299
|
+
|
|
64300
|
+
/**
|
|
64301
|
+
* This event is fired if any change has been made within the `BasePanel` control.
|
|
64302
|
+
*/
|
|
64303
|
+
change?: (oEvent: Event) => void;
|
|
64304
|
+
}
|
|
64305
|
+
}
|
|
64306
|
+
|
|
64307
|
+
declare module "sap/m/p13n/Engine" {
|
|
64308
|
+
import Metadata from "sap/ui/base/Metadata";
|
|
64309
|
+
|
|
64310
|
+
import Control from "sap/ui/core/Control";
|
|
64311
|
+
|
|
64312
|
+
/**
|
|
64313
|
+
* @SINCE 1.104
|
|
64314
|
+
* @EXPERIMENTAL (since 1.104)
|
|
64315
|
+
*
|
|
64316
|
+
* The `Engine` offers personalization capabilites by registering a control instance for modification such
|
|
64317
|
+
* as:
|
|
64318
|
+
*
|
|
64319
|
+
*
|
|
64320
|
+
* - `sap.m.p13n.Popup` initialization
|
|
64321
|
+
* - Storing personalization states by chosing the desired persistence layer
|
|
64322
|
+
* - State appliance considering the persistence layer
|
|
64323
|
+
*
|
|
64324
|
+
* The Engine should be used whenever personalization should be enabled by considering a certain persistence
|
|
64325
|
+
* layer. Available controller implementations for the registration process are:
|
|
64326
|
+
*
|
|
64327
|
+
*
|
|
64328
|
+
* - {@link sap.m.p13n.SelectionController SelectionController}: can be used to define a list of selectable
|
|
64329
|
+
* entries
|
|
64330
|
+
* - {@link sap.m.p13n.SortController SortController}: can be used to define a list of sortable properties
|
|
64331
|
+
*
|
|
64332
|
+
* - {@link sap.m.p13n.GroupController GroupController}: can be used to define a list of groupable properties
|
|
64333
|
+
*
|
|
64334
|
+
*
|
|
64335
|
+
* The following persistence layers can be chosen for personalization services:
|
|
64336
|
+
*
|
|
64337
|
+
*
|
|
64338
|
+
* - {@link sap.m.p13n.modification.FlexModificationHandler FlexModificationHandler}: Can be used in combination
|
|
64339
|
+
* with `sap.ui.fl.variants.VariantManagement` to persist state in variant using `sap.ui.fl` capabilites.
|
|
64340
|
+
*
|
|
64341
|
+
* - {@link sap.m.p13n.modification.LocalStorageModificationHandler LocalStorageModificationHandler}:
|
|
64342
|
+
* can be used to store personalization state in the local storage
|
|
64343
|
+
* - {@link sap.m.p13n.modification.ModificationHandler ModificationHandler}: will be used by default
|
|
64344
|
+
* - this handler will not persist state.
|
|
64345
|
+
*/
|
|
64346
|
+
interface Engine {
|
|
64347
|
+
/**
|
|
64348
|
+
* Creates a new subclass of class sap.m.p13n.Engine with name `sClassName` and enriches it with the information
|
|
64349
|
+
* contained in `oClassInfo`.
|
|
64350
|
+
*
|
|
64351
|
+
* `oClassInfo` might contain the same kind of information as described in {@link sap.m.p13n.AdaptationProvider.extend}.
|
|
64352
|
+
*
|
|
64353
|
+
* @returns Created class / constructor function
|
|
64354
|
+
*/
|
|
64355
|
+
extend(
|
|
64356
|
+
/**
|
|
64357
|
+
* Name of the class being created
|
|
64358
|
+
*/
|
|
64359
|
+
sClassName: string,
|
|
64360
|
+
/**
|
|
64361
|
+
* Object literal with information about the class
|
|
64362
|
+
*/
|
|
64363
|
+
oClassInfo?: object,
|
|
64364
|
+
/**
|
|
64365
|
+
* Constructor function for the metadata object; if not given, it defaults to the metadata implementation
|
|
64366
|
+
* used by this class
|
|
64367
|
+
*/
|
|
64368
|
+
FNMetaImpl?: Function
|
|
64369
|
+
): Function;
|
|
64370
|
+
/**
|
|
64371
|
+
* Returns a metadata object for class sap.m.p13n.Engine.
|
|
64372
|
+
*
|
|
64373
|
+
* @returns Metadata object describing this class
|
|
64374
|
+
*/
|
|
64375
|
+
getMetadata(): Metadata;
|
|
64376
|
+
/**
|
|
64377
|
+
* @EXPERIMENTAL (since 1.104)
|
|
64378
|
+
*
|
|
64379
|
+
* Apply a State on a control by passing an object that contains the registered controller key and an object
|
|
64380
|
+
* matching the innter subcontroller housekeeping.
|
|
64381
|
+
*
|
|
64382
|
+
* @returns A Promise resolving after the state has been applied
|
|
64383
|
+
*/
|
|
64384
|
+
applyState(
|
|
64385
|
+
/**
|
|
64386
|
+
* The registered control instance
|
|
64387
|
+
*/
|
|
64388
|
+
oControl: /* was: sap.m.Control */ any,
|
|
64389
|
+
/**
|
|
64390
|
+
* The state object
|
|
64391
|
+
*/
|
|
64392
|
+
oState: object,
|
|
64393
|
+
/**
|
|
64394
|
+
* Defines whether the state should be an additional delta on the current control state
|
|
64395
|
+
*/
|
|
64396
|
+
bApplyAbsolute: boolean
|
|
64397
|
+
): Promise<any>;
|
|
64398
|
+
/**
|
|
64399
|
+
* @EXPERIMENTAL (since 1.104)
|
|
64400
|
+
*
|
|
64401
|
+
* Attaches an event handler to the `StateHandlerRegistry` class. The event handler may be fired every time
|
|
64402
|
+
* a user triggers a personalization change for a control instance during runtime.
|
|
64403
|
+
*
|
|
64404
|
+
* @returns Returns `this` to allow method chaining
|
|
64405
|
+
*/
|
|
64406
|
+
attachStateChange(
|
|
64407
|
+
/**
|
|
64408
|
+
* The handler function to call when the event occurs
|
|
64409
|
+
*/
|
|
64410
|
+
fnStateEventHandler: Function
|
|
64411
|
+
): this;
|
|
64412
|
+
/**
|
|
64413
|
+
* @EXPERIMENTAL (since 1.104)
|
|
64414
|
+
*
|
|
64415
|
+
* Deregister a registered control. By deregistering a control the control will be removed from the `Engine`
|
|
64416
|
+
* registry and all instance specific sub modules such as the registered controllers are going to be destroyed.
|
|
64417
|
+
*/
|
|
64418
|
+
deregister(
|
|
64419
|
+
/**
|
|
64420
|
+
* The registered control instance
|
|
64421
|
+
*/
|
|
64422
|
+
oControl: /* was: sap.m.Control */ any
|
|
64423
|
+
): void;
|
|
64424
|
+
/**
|
|
64425
|
+
* @EXPERIMENTAL (since 1.104)
|
|
64426
|
+
*
|
|
64427
|
+
* Removes a previously attached state change event handler from the `StateHandlerRegistry` class. The passed
|
|
64428
|
+
* parameters must match those used for registration with {@link Engine#attachStateChange} beforehand.
|
|
64429
|
+
*
|
|
64430
|
+
* @returns Returns `this` to allow method chaining
|
|
64431
|
+
*/
|
|
64432
|
+
detachStateChange(
|
|
64433
|
+
/**
|
|
64434
|
+
* The handler function to detach from the event
|
|
64435
|
+
*/
|
|
64436
|
+
fnStateEventHandler: Function
|
|
64437
|
+
): this;
|
|
64438
|
+
/**
|
|
64439
|
+
* @EXPERIMENTAL (since 1.104)
|
|
64440
|
+
*
|
|
64441
|
+
* This method should only be called once per instance to register provided classes of `sap.m.p13n.Controller`
|
|
64442
|
+
* for the control instance.
|
|
64443
|
+
*/
|
|
64444
|
+
register(
|
|
64445
|
+
/**
|
|
64446
|
+
* The control insance to be registered for adaptation
|
|
64447
|
+
*/
|
|
64448
|
+
oControl: /* was: sap.m.Control */ any,
|
|
64449
|
+
/**
|
|
64450
|
+
* The config object providing key value pairs of keys and `sap.m.p13n.*Controller` classes.
|
|
64451
|
+
*/
|
|
64452
|
+
oConfig: Object
|
|
64453
|
+
): void;
|
|
64454
|
+
/**
|
|
64455
|
+
* @EXPERIMENTAL (since 1.104)
|
|
64456
|
+
*
|
|
64457
|
+
* This method can be used to trigger a reset on the provided control instance.
|
|
64458
|
+
*
|
|
64459
|
+
* @returns A Promise resolving once the reset is completed.
|
|
64460
|
+
*/
|
|
64461
|
+
reset(
|
|
64462
|
+
/**
|
|
64463
|
+
* The according control instance.
|
|
64464
|
+
*/
|
|
64465
|
+
oControl: /* was: sap.m.Control */ any,
|
|
64466
|
+
/**
|
|
64467
|
+
* The key for the affected config.
|
|
64468
|
+
*/
|
|
64469
|
+
aKeys: string
|
|
64470
|
+
): Promise<any>;
|
|
64471
|
+
/**
|
|
64472
|
+
* Retrieves the externalized state for a given control instance, after all necessary changes have been
|
|
64473
|
+
* applied (e.g. modification handler appliance). After the returned Promise has been resolved, the returned
|
|
64474
|
+
* State is in sync with the according state object of the control.
|
|
64475
|
+
*
|
|
64476
|
+
* @returns a Promise resolving in the current control state.
|
|
64477
|
+
*/
|
|
64478
|
+
retrieveState(
|
|
64479
|
+
/**
|
|
64480
|
+
* The control instance implementing IxState to retrieve the externalized state
|
|
64481
|
+
*/
|
|
64482
|
+
oControl: object
|
|
64483
|
+
): Promise<any>;
|
|
64484
|
+
/**
|
|
64485
|
+
* @EXPERIMENTAL (since 1.104)
|
|
64486
|
+
*
|
|
64487
|
+
* Opens the personalization dialog.
|
|
64488
|
+
*
|
|
64489
|
+
* @returns Promise resolving in the `sap.m.p13n.Popup` instance.
|
|
64490
|
+
*/
|
|
64491
|
+
show(
|
|
64492
|
+
/**
|
|
64493
|
+
* The control instance to be personalized
|
|
64494
|
+
*/
|
|
64495
|
+
oControl: Control,
|
|
64496
|
+
/**
|
|
64497
|
+
* The affected panels that should be added to the `sap.m.p13n.Popup`
|
|
64498
|
+
*/
|
|
64499
|
+
vPanelKeys: string | string[],
|
|
64500
|
+
/**
|
|
64501
|
+
* The settings object for the personalization
|
|
64502
|
+
*/
|
|
64503
|
+
mSettings: {
|
|
64504
|
+
/**
|
|
64505
|
+
* The title for the `sap.m.p13n.Popup` control
|
|
64506
|
+
*/
|
|
64507
|
+
title?: string;
|
|
64508
|
+
/**
|
|
64509
|
+
* The source control to be used by the `sap.m.p13n.Popup` control (only necessary in case the mode is set
|
|
64510
|
+
* to `ResponsivePopover`)
|
|
64511
|
+
*/
|
|
64512
|
+
source?: object;
|
|
64513
|
+
/**
|
|
64514
|
+
* The mode to be used by the `sap.m.p13n.Popup` control
|
|
64515
|
+
*/
|
|
64516
|
+
mode?: object;
|
|
64517
|
+
/**
|
|
64518
|
+
* Height configuration for the related popup container
|
|
64519
|
+
*/
|
|
64520
|
+
contentHeight?: object;
|
|
64521
|
+
/**
|
|
64522
|
+
* Width configuration for the related popup container
|
|
64523
|
+
*/
|
|
64524
|
+
contentWidth?: object;
|
|
64525
|
+
}
|
|
64526
|
+
): Promise<any>;
|
|
64527
|
+
}
|
|
64528
|
+
const Engine: Engine;
|
|
64529
|
+
export default Engine;
|
|
64530
|
+
}
|
|
64531
|
+
|
|
64532
|
+
declare module "sap/m/p13n/GroupController" {
|
|
64533
|
+
import BaseObject from "sap/ui/base/Object";
|
|
64534
|
+
|
|
64535
|
+
import Control from "sap/ui/core/Control";
|
|
64536
|
+
|
|
64537
|
+
/**
|
|
64538
|
+
* @SINCE 1.104
|
|
64539
|
+
* @EXPERIMENTAL
|
|
64540
|
+
*
|
|
64541
|
+
* The `GroupController` serves as base class to create sort specific personalization implementations.
|
|
64542
|
+
*/
|
|
64543
|
+
export default class GroupController extends BaseObject {
|
|
64544
|
+
/**
|
|
64545
|
+
* Constructor for a new `GroupController`.
|
|
64546
|
+
*/
|
|
64547
|
+
constructor(
|
|
64548
|
+
/**
|
|
64549
|
+
* ID for the new control, generated automatically if no ID is given
|
|
64550
|
+
*/
|
|
64551
|
+
sId?: string,
|
|
64552
|
+
/**
|
|
64553
|
+
* Initial settings for the new control
|
|
64554
|
+
*/
|
|
64555
|
+
mSettings?: {
|
|
64556
|
+
/**
|
|
64557
|
+
* The control instance to be personalized by this controller
|
|
64558
|
+
*/
|
|
64559
|
+
control: Control;
|
|
64560
|
+
}
|
|
64561
|
+
);
|
|
64562
|
+
}
|
|
64563
|
+
}
|
|
64564
|
+
|
|
63469
64565
|
declare module "sap/m/p13n/GroupPanel" {
|
|
63470
64566
|
import ElementMetadata from "sap/ui/core/ElementMetadata";
|
|
63471
64567
|
|
|
@@ -63490,8 +64586,7 @@ declare module "sap/m/p13n/GroupPanel" {
|
|
|
63490
64586
|
};
|
|
63491
64587
|
|
|
63492
64588
|
/**
|
|
63493
|
-
* @
|
|
63494
|
-
* @EXPERIMENTAL (since 1.96)
|
|
64589
|
+
* @EXPERIMENTAL (since 1.104)
|
|
63495
64590
|
*
|
|
63496
64591
|
* This control can be used to customize personalization content for grouping for an associated control
|
|
63497
64592
|
* instance.
|
|
@@ -63579,6 +64674,17 @@ declare module "sap/m/p13n/GroupPanel" {
|
|
|
63579
64674
|
* @returns Value of property `enableShowField`
|
|
63580
64675
|
*/
|
|
63581
64676
|
getEnableShowField(): boolean;
|
|
64677
|
+
/**
|
|
64678
|
+
* Gets current value of property {@link #getTitle title}.
|
|
64679
|
+
*
|
|
64680
|
+
* A short text describing the panel. **Note:** This text will only be displayed if the panel is being used
|
|
64681
|
+
* in a `sap.m.p13n.Popup`.
|
|
64682
|
+
*
|
|
64683
|
+
* Default value is `...see text or source`.
|
|
64684
|
+
*
|
|
64685
|
+
* @returns Value of property `title`
|
|
64686
|
+
*/
|
|
64687
|
+
getTitle(): string;
|
|
63582
64688
|
/**
|
|
63583
64689
|
* Sets a new value for property {@link #getEnableShowField enableShowField}.
|
|
63584
64690
|
*
|
|
@@ -63596,10 +64702,34 @@ declare module "sap/m/p13n/GroupPanel" {
|
|
|
63596
64702
|
*/
|
|
63597
64703
|
bEnableShowField?: boolean
|
|
63598
64704
|
): this;
|
|
64705
|
+
/**
|
|
64706
|
+
* Sets a new value for property {@link #getTitle title}.
|
|
64707
|
+
*
|
|
64708
|
+
* A short text describing the panel. **Note:** This text will only be displayed if the panel is being used
|
|
64709
|
+
* in a `sap.m.p13n.Popup`.
|
|
64710
|
+
*
|
|
64711
|
+
* When called with a value of `null` or `undefined`, the default value of the property will be restored.
|
|
64712
|
+
*
|
|
64713
|
+
* Default value is `...see text or source`.
|
|
64714
|
+
*
|
|
64715
|
+
* @returns Reference to `this` in order to allow method chaining
|
|
64716
|
+
*/
|
|
64717
|
+
setTitle(
|
|
64718
|
+
/**
|
|
64719
|
+
* New value for property `title`
|
|
64720
|
+
*/
|
|
64721
|
+
sTitle?: string
|
|
64722
|
+
): this;
|
|
63599
64723
|
}
|
|
63600
64724
|
|
|
63601
64725
|
export interface $GroupPanelSettings
|
|
63602
64726
|
extends /* was: sap.m.p13n.$QueryPanelSettings */ Object {
|
|
64727
|
+
/**
|
|
64728
|
+
* A short text describing the panel. **Note:** This text will only be displayed if the panel is being used
|
|
64729
|
+
* in a `sap.m.p13n.Popup`.
|
|
64730
|
+
*/
|
|
64731
|
+
title?: string | PropertyBindingInfo;
|
|
64732
|
+
|
|
63603
64733
|
/**
|
|
63604
64734
|
* Toggles an additional checkbox in the group panel to define whether items are made visible.
|
|
63605
64735
|
*/
|
|
@@ -63607,24 +64737,40 @@ declare module "sap/m/p13n/GroupPanel" {
|
|
|
63607
64737
|
}
|
|
63608
64738
|
}
|
|
63609
64739
|
|
|
63610
|
-
declare module "sap/m/p13n/
|
|
64740
|
+
declare module "sap/m/p13n/modification/FlexModificationHandler" {
|
|
63611
64741
|
/**
|
|
63612
|
-
*
|
|
64742
|
+
* @EXPERIMENTAL (since 1.104)
|
|
64743
|
+
*
|
|
64744
|
+
* This class offers `sap.ui.fl` capabilities. It should be used as the persistence layer in the {@link
|
|
64745
|
+
* sap.m.p13n.Engine#register Engine#register}process.
|
|
63613
64746
|
*/
|
|
63614
|
-
export
|
|
63615
|
-
|
|
63616
|
-
|
|
63617
|
-
|
|
63618
|
-
|
|
63619
|
-
|
|
63620
|
-
|
|
63621
|
-
|
|
63622
|
-
|
|
63623
|
-
|
|
63624
|
-
|
|
63625
|
-
|
|
63626
|
-
|
|
63627
|
-
|
|
64747
|
+
export default class FlexModificationHandler {
|
|
64748
|
+
constructor();
|
|
64749
|
+
}
|
|
64750
|
+
}
|
|
64751
|
+
|
|
64752
|
+
declare module "sap/m/p13n/modification/LocalStorageModificationHandler" {
|
|
64753
|
+
/**
|
|
64754
|
+
* @EXPERIMENTAL (since 1.104)
|
|
64755
|
+
*
|
|
64756
|
+
* This class offers `localStorage` capabilities. It should be used as the persistence layer in the {@link
|
|
64757
|
+
* sap.m.p13n.Engine#register Engine#register} process.
|
|
64758
|
+
*/
|
|
64759
|
+
export default class LocalStorageModificationHandler {
|
|
64760
|
+
constructor();
|
|
64761
|
+
}
|
|
64762
|
+
}
|
|
64763
|
+
|
|
64764
|
+
declare module "sap/m/p13n/modification/ModificationHandler" {
|
|
64765
|
+
/**
|
|
64766
|
+
* @EXPERIMENTAL (since 1.104)
|
|
64767
|
+
*
|
|
64768
|
+
* This class offers modification capabilities without persistence. It should be used as the persistence
|
|
64769
|
+
* layer in the {@link sap.m.p13n.Engine#register Engine#register} process.
|
|
64770
|
+
*/
|
|
64771
|
+
export default class ModificationHandler {
|
|
64772
|
+
constructor();
|
|
64773
|
+
}
|
|
63628
64774
|
}
|
|
63629
64775
|
|
|
63630
64776
|
declare module "sap/m/p13n/Popup" {
|
|
@@ -63632,12 +64778,12 @@ declare module "sap/m/p13n/Popup" {
|
|
|
63632
64778
|
|
|
63633
64779
|
import Button from "sap/m/Button";
|
|
63634
64780
|
|
|
64781
|
+
import { p13n, P13nPopupMode } from "sap/m/library";
|
|
64782
|
+
|
|
63635
64783
|
import Event from "sap/ui/base/Event";
|
|
63636
64784
|
|
|
63637
64785
|
import ElementMetadata from "sap/ui/core/ElementMetadata";
|
|
63638
64786
|
|
|
63639
|
-
import { P13nPopupMode } from "sap/m/library";
|
|
63640
|
-
|
|
63641
64787
|
import { CSSSize } from "sap/ui/core/library";
|
|
63642
64788
|
|
|
63643
64789
|
import {
|
|
@@ -63732,7 +64878,11 @@ declare module "sap/m/p13n/Popup" {
|
|
|
63732
64878
|
/**
|
|
63733
64879
|
* The panel instance
|
|
63734
64880
|
*/
|
|
63735
|
-
oPanel:
|
|
64881
|
+
oPanel: p13n.IContent,
|
|
64882
|
+
/**
|
|
64883
|
+
* Optional key to be used for the panel registration instead of using the id
|
|
64884
|
+
*/
|
|
64885
|
+
sKey?: string
|
|
63736
64886
|
): Popup;
|
|
63737
64887
|
/**
|
|
63738
64888
|
* Attaches event handler `fnFunction` to the {@link #event:close close} event of this `sap.m.p13n.Popup`.
|
|
@@ -63840,7 +64990,7 @@ declare module "sap/m/p13n/Popup" {
|
|
|
63840
64990
|
*
|
|
63841
64991
|
* @returns An array of panel instances
|
|
63842
64992
|
*/
|
|
63843
|
-
getPanels():
|
|
64993
|
+
getPanels(): p13n.IContent[];
|
|
63844
64994
|
/**
|
|
63845
64995
|
* Gets current value of property {@link #getReset reset}.
|
|
63846
64996
|
*
|
|
@@ -63889,7 +65039,7 @@ declare module "sap/m/p13n/Popup" {
|
|
|
63889
65039
|
/**
|
|
63890
65040
|
* The panel whose index is looked for
|
|
63891
65041
|
*/
|
|
63892
|
-
oPanel:
|
|
65042
|
+
oPanel: p13n.IContent
|
|
63893
65043
|
): int;
|
|
63894
65044
|
/**
|
|
63895
65045
|
* Inserts a additionalButton into the aggregation {@link #getAdditionalButtons additionalButtons}.
|
|
@@ -63917,7 +65067,7 @@ declare module "sap/m/p13n/Popup" {
|
|
|
63917
65067
|
/**
|
|
63918
65068
|
* The panel to insert; if empty, nothing is inserted
|
|
63919
65069
|
*/
|
|
63920
|
-
oPanel:
|
|
65070
|
+
oPanel: p13n.IContent,
|
|
63921
65071
|
/**
|
|
63922
65072
|
* The `0`-based index the panel should be inserted at; for a negative value of `iIndex`, the panel is inserted
|
|
63923
65073
|
* at position 0; for a value greater than the current size of the aggregation, the panel is inserted at
|
|
@@ -63963,7 +65113,7 @@ declare module "sap/m/p13n/Popup" {
|
|
|
63963
65113
|
* The additionalButton to remove or its index or id
|
|
63964
65114
|
*/
|
|
63965
65115
|
vAdditionalButton: int | string | Button
|
|
63966
|
-
): Button;
|
|
65116
|
+
): Button | null;
|
|
63967
65117
|
/**
|
|
63968
65118
|
* Removes all the controls from the aggregation {@link #getAdditionalButtons additionalButtons}.
|
|
63969
65119
|
*
|
|
@@ -63972,14 +65122,6 @@ declare module "sap/m/p13n/Popup" {
|
|
|
63972
65122
|
* @returns An array of the removed elements (might be empty)
|
|
63973
65123
|
*/
|
|
63974
65124
|
removeAllAdditionalButtons(): Button[];
|
|
63975
|
-
/**
|
|
63976
|
-
* Removes all the controls from the aggregation {@link #getPanels panels}.
|
|
63977
|
-
*
|
|
63978
|
-
* Additionally, it unregisters them from the hosting UIArea.
|
|
63979
|
-
*
|
|
63980
|
-
* @returns An array of the removed elements (might be empty)
|
|
63981
|
-
*/
|
|
63982
|
-
removeAllPanels(): /* was: sap.m.p13n.IContent */ any[];
|
|
63983
65125
|
/**
|
|
63984
65126
|
* Removes a panel instance.
|
|
63985
65127
|
*
|
|
@@ -63989,7 +65131,7 @@ declare module "sap/m/p13n/Popup" {
|
|
|
63989
65131
|
/**
|
|
63990
65132
|
* The panel instance
|
|
63991
65133
|
*/
|
|
63992
|
-
oPanel:
|
|
65134
|
+
oPanel: p13n.IContent
|
|
63993
65135
|
): Popup;
|
|
63994
65136
|
/**
|
|
63995
65137
|
* Sets the desired popup mode, see also {@link sap.m.P13nPopupMode}.
|
|
@@ -64002,22 +65144,6 @@ declare module "sap/m/p13n/Popup" {
|
|
|
64002
65144
|
*/
|
|
64003
65145
|
sMode: P13nPopupMode | keyof typeof P13nPopupMode
|
|
64004
65146
|
): Popup;
|
|
64005
|
-
/**
|
|
64006
|
-
* Sets a new value for property {@link #getReset reset}.
|
|
64007
|
-
*
|
|
64008
|
-
* A callback that will be executed once a reset has been triggered. **Note:** The Reset button will only
|
|
64009
|
-
* be shown in case this callback is provided.
|
|
64010
|
-
*
|
|
64011
|
-
* When called with a value of `null` or `undefined`, the default value of the property will be restored.
|
|
64012
|
-
*
|
|
64013
|
-
* @returns Reference to `this` in order to allow method chaining
|
|
64014
|
-
*/
|
|
64015
|
-
setReset(
|
|
64016
|
-
/**
|
|
64017
|
-
* New value for property `reset`
|
|
64018
|
-
*/
|
|
64019
|
-
fnReset: Function
|
|
64020
|
-
): this;
|
|
64021
65147
|
/**
|
|
64022
65148
|
* Sets a new value for property {@link #getTitle title}.
|
|
64023
65149
|
*
|
|
@@ -64080,9 +65206,9 @@ declare module "sap/m/p13n/Popup" {
|
|
|
64080
65206
|
/**
|
|
64081
65207
|
* The panels that are displayed by the `sap.m.p13n.Popup`.
|
|
64082
65208
|
*/
|
|
64083
|
-
panels?:
|
|
64084
|
-
|
|
|
64085
|
-
|
|
|
65209
|
+
panels?:
|
|
65210
|
+
| p13n.IContent[]
|
|
65211
|
+
| p13n.IContent
|
|
64086
65212
|
| AggregationBindingInfo
|
|
64087
65213
|
| `{${string}}`;
|
|
64088
65214
|
|
|
@@ -64102,10 +65228,82 @@ declare module "sap/m/p13n/Popup" {
|
|
|
64102
65228
|
}
|
|
64103
65229
|
}
|
|
64104
65230
|
|
|
65231
|
+
declare module "sap/m/p13n/SelectionController" {
|
|
65232
|
+
import BaseObject from "sap/ui/base/Object";
|
|
65233
|
+
|
|
65234
|
+
import Control from "sap/ui/core/Control";
|
|
65235
|
+
|
|
65236
|
+
import Metadata from "sap/ui/base/Metadata";
|
|
65237
|
+
|
|
65238
|
+
/**
|
|
65239
|
+
* @EXPERIMENTAL (since 1.104)
|
|
65240
|
+
*
|
|
65241
|
+
* The `SelectionController` serves as base class to create control specific personalization implementations.
|
|
65242
|
+
*/
|
|
65243
|
+
export default class SelectionController extends BaseObject {
|
|
65244
|
+
/**
|
|
65245
|
+
* Constructor for a new `SelectionController`.
|
|
65246
|
+
*/
|
|
65247
|
+
constructor(
|
|
65248
|
+
/**
|
|
65249
|
+
* ID for the new control, generated automatically if no ID is given
|
|
65250
|
+
*/
|
|
65251
|
+
sId?: string,
|
|
65252
|
+
/**
|
|
65253
|
+
* Initial settings for the new control
|
|
65254
|
+
*/
|
|
65255
|
+
mSettings?: {
|
|
65256
|
+
/**
|
|
65257
|
+
* The control instance to be personalized by this controller
|
|
65258
|
+
*/
|
|
65259
|
+
control: Control;
|
|
65260
|
+
/**
|
|
65261
|
+
* The name of the personalized aggregation
|
|
65262
|
+
*/
|
|
65263
|
+
targetAggregation: string;
|
|
65264
|
+
}
|
|
65265
|
+
);
|
|
65266
|
+
|
|
65267
|
+
/**
|
|
65268
|
+
* Creates a new subclass of class sap.m.p13n.SelectionController with name `sClassName` and enriches it
|
|
65269
|
+
* with the information contained in `oClassInfo`.
|
|
65270
|
+
*
|
|
65271
|
+
* `oClassInfo` might contain the same kind of information as described in {@link sap.ui.base.Object.extend}.
|
|
65272
|
+
*
|
|
65273
|
+
* @returns Created class / constructor function
|
|
65274
|
+
*/
|
|
65275
|
+
static extend<T extends Record<string, unknown>>(
|
|
65276
|
+
/**
|
|
65277
|
+
* Name of the class being created
|
|
65278
|
+
*/
|
|
65279
|
+
sClassName: string,
|
|
65280
|
+
/**
|
|
65281
|
+
* Object literal with information about the class
|
|
65282
|
+
*/
|
|
65283
|
+
oClassInfo?: sap.ClassInfo<T, SelectionController>,
|
|
65284
|
+
/**
|
|
65285
|
+
* Constructor function for the metadata object; if not given, it defaults to the metadata implementation
|
|
65286
|
+
* used by this class
|
|
65287
|
+
*/
|
|
65288
|
+
FNMetaImpl?: Function
|
|
65289
|
+
): Function;
|
|
65290
|
+
/**
|
|
65291
|
+
* Returns a metadata object for class sap.m.p13n.SelectionController.
|
|
65292
|
+
*
|
|
65293
|
+
* @returns Metadata object describing this class
|
|
65294
|
+
*/
|
|
65295
|
+
static getMetadata(): Metadata;
|
|
65296
|
+
}
|
|
65297
|
+
}
|
|
65298
|
+
|
|
64105
65299
|
declare module "sap/m/p13n/SelectionPanel" {
|
|
64106
|
-
import
|
|
65300
|
+
import {
|
|
65301
|
+
default as BasePanel,
|
|
65302
|
+
Item,
|
|
65303
|
+
$BasePanelSettings,
|
|
65304
|
+
} from "sap/m/p13n/BasePanel";
|
|
64107
65305
|
|
|
64108
|
-
import
|
|
65306
|
+
import ElementMetadata from "sap/ui/core/ElementMetadata";
|
|
64109
65307
|
|
|
64110
65308
|
import { PropertyBindingInfo } from "sap/ui/base/ManagedObject";
|
|
64111
65309
|
|
|
@@ -64116,8 +65314,7 @@ declare module "sap/m/p13n/SelectionPanel" {
|
|
|
64116
65314
|
* This control can be used to customize personalization content for adding/removing items for an associated
|
|
64117
65315
|
* control instance.
|
|
64118
65316
|
*/
|
|
64119
|
-
export default class SelectionPanel
|
|
64120
|
-
/* was: sap.m.p13n.BasePanel */ extends Object {
|
|
65317
|
+
export default class SelectionPanel extends BasePanel {
|
|
64121
65318
|
/**
|
|
64122
65319
|
* Constructor for a new `SelectionPanel`.
|
|
64123
65320
|
*
|
|
@@ -64221,13 +65418,24 @@ declare module "sap/m/p13n/SelectionPanel" {
|
|
|
64221
65418
|
/**
|
|
64222
65419
|
* Gets current value of property {@link #getShowHeader showHeader}.
|
|
64223
65420
|
*
|
|
64224
|
-
* Shows an additional header with a search field and the Show Selected button.
|
|
65421
|
+
* /** Shows an additional header with a search field and the Show Selected button.
|
|
64225
65422
|
*
|
|
64226
65423
|
* Default value is `false`.
|
|
64227
65424
|
*
|
|
64228
65425
|
* @returns Value of property `showHeader`
|
|
64229
65426
|
*/
|
|
64230
65427
|
getShowHeader(): boolean;
|
|
65428
|
+
/**
|
|
65429
|
+
* Gets current value of property {@link #getTitle title}.
|
|
65430
|
+
*
|
|
65431
|
+
* A short text describing the panel. **Note:** This text will only be displayed if the panel is being used
|
|
65432
|
+
* in a `sap.m.p13n.Popup`.
|
|
65433
|
+
*
|
|
65434
|
+
* Default value is `...see text or source`.
|
|
65435
|
+
*
|
|
65436
|
+
* @returns Value of property `title`
|
|
65437
|
+
*/
|
|
65438
|
+
getTitle(): string;
|
|
64231
65439
|
/**
|
|
64232
65440
|
* Sets a new value for property {@link #getActiveColumn activeColumn}.
|
|
64233
65441
|
*
|
|
@@ -64298,17 +65506,19 @@ declare module "sap/m/p13n/SelectionPanel" {
|
|
|
64298
65506
|
): this;
|
|
64299
65507
|
/**
|
|
64300
65508
|
* Sets the personalization state of the panel instance.
|
|
65509
|
+
*
|
|
65510
|
+
* @returns The `SelectionPanel` instance
|
|
64301
65511
|
*/
|
|
64302
65512
|
setP13nData(
|
|
64303
65513
|
/**
|
|
64304
65514
|
* An array containing the personalization state that is represented by the `SelectionPanel`.
|
|
64305
65515
|
*/
|
|
64306
65516
|
aP13nData: Item[]
|
|
64307
|
-
):
|
|
65517
|
+
): this;
|
|
64308
65518
|
/**
|
|
64309
65519
|
* Sets a new value for property {@link #getShowHeader showHeader}.
|
|
64310
65520
|
*
|
|
64311
|
-
* Shows an additional header with a search field and the Show Selected button.
|
|
65521
|
+
* /** Shows an additional header with a search field and the Show Selected button.
|
|
64312
65522
|
*
|
|
64313
65523
|
* When called with a value of `null` or `undefined`, the default value of the property will be restored.
|
|
64314
65524
|
*
|
|
@@ -64322,12 +65532,35 @@ declare module "sap/m/p13n/SelectionPanel" {
|
|
|
64322
65532
|
*/
|
|
64323
65533
|
bShowHeader?: boolean
|
|
64324
65534
|
): this;
|
|
65535
|
+
/**
|
|
65536
|
+
* Sets a new value for property {@link #getTitle title}.
|
|
65537
|
+
*
|
|
65538
|
+
* A short text describing the panel. **Note:** This text will only be displayed if the panel is being used
|
|
65539
|
+
* in a `sap.m.p13n.Popup`.
|
|
65540
|
+
*
|
|
65541
|
+
* When called with a value of `null` or `undefined`, the default value of the property will be restored.
|
|
65542
|
+
*
|
|
65543
|
+
* Default value is `...see text or source`.
|
|
65544
|
+
*
|
|
65545
|
+
* @returns Reference to `this` in order to allow method chaining
|
|
65546
|
+
*/
|
|
65547
|
+
setTitle(
|
|
65548
|
+
/**
|
|
65549
|
+
* New value for property `title`
|
|
65550
|
+
*/
|
|
65551
|
+
sTitle?: string
|
|
65552
|
+
): this;
|
|
64325
65553
|
}
|
|
64326
65554
|
|
|
64327
|
-
export interface $SelectionPanelSettings
|
|
64328
|
-
extends /* was: sap.m.p13n.$BasePanelSettings */ Object {
|
|
65555
|
+
export interface $SelectionPanelSettings extends $BasePanelSettings {
|
|
64329
65556
|
/**
|
|
64330
|
-
*
|
|
65557
|
+
* A short text describing the panel. **Note:** This text will only be displayed if the panel is being used
|
|
65558
|
+
* in a `sap.m.p13n.Popup`.
|
|
65559
|
+
*/
|
|
65560
|
+
title?: string | PropertyBindingInfo;
|
|
65561
|
+
|
|
65562
|
+
/**
|
|
65563
|
+
* /** Shows an additional header with a search field and the Show Selected button.
|
|
64331
65564
|
*/
|
|
64332
65565
|
showHeader?: boolean | PropertyBindingInfo | `{${string}}`;
|
|
64333
65566
|
|
|
@@ -64355,9 +65588,75 @@ declare module "sap/m/p13n/SelectionPanel" {
|
|
|
64355
65588
|
}
|
|
64356
65589
|
}
|
|
64357
65590
|
|
|
65591
|
+
declare module "sap/m/p13n/SortController" {
|
|
65592
|
+
import BaseObject from "sap/ui/base/Object";
|
|
65593
|
+
|
|
65594
|
+
import Control from "sap/ui/core/Control";
|
|
65595
|
+
|
|
65596
|
+
import Metadata from "sap/ui/base/Metadata";
|
|
65597
|
+
|
|
65598
|
+
/**
|
|
65599
|
+
* @EXPERIMENTAL (since 1.104)
|
|
65600
|
+
*
|
|
65601
|
+
* The `SortController` serves as base class to create sort specific personalization implementations.
|
|
65602
|
+
*/
|
|
65603
|
+
export default class SortController extends BaseObject {
|
|
65604
|
+
/**
|
|
65605
|
+
* Constructor for a new `SortController`.
|
|
65606
|
+
*/
|
|
65607
|
+
constructor(
|
|
65608
|
+
/**
|
|
65609
|
+
* ID for the new control, generated automatically if no ID is given
|
|
65610
|
+
*/
|
|
65611
|
+
sId?: string,
|
|
65612
|
+
/**
|
|
65613
|
+
* Initial settings for the new control
|
|
65614
|
+
*/
|
|
65615
|
+
mSettings?: {
|
|
65616
|
+
/**
|
|
65617
|
+
* The control instance to be personalized by this controller
|
|
65618
|
+
*/
|
|
65619
|
+
control: Control;
|
|
65620
|
+
}
|
|
65621
|
+
);
|
|
65622
|
+
|
|
65623
|
+
/**
|
|
65624
|
+
* Creates a new subclass of class sap.m.p13n.SortController with name `sClassName` and enriches it with
|
|
65625
|
+
* the information contained in `oClassInfo`.
|
|
65626
|
+
*
|
|
65627
|
+
* `oClassInfo` might contain the same kind of information as described in {@link sap.ui.base.Object.extend}.
|
|
65628
|
+
*
|
|
65629
|
+
* @returns Created class / constructor function
|
|
65630
|
+
*/
|
|
65631
|
+
static extend<T extends Record<string, unknown>>(
|
|
65632
|
+
/**
|
|
65633
|
+
* Name of the class being created
|
|
65634
|
+
*/
|
|
65635
|
+
sClassName: string,
|
|
65636
|
+
/**
|
|
65637
|
+
* Object literal with information about the class
|
|
65638
|
+
*/
|
|
65639
|
+
oClassInfo?: sap.ClassInfo<T, SortController>,
|
|
65640
|
+
/**
|
|
65641
|
+
* Constructor function for the metadata object; if not given, it defaults to the metadata implementation
|
|
65642
|
+
* used by this class
|
|
65643
|
+
*/
|
|
65644
|
+
FNMetaImpl?: Function
|
|
65645
|
+
): Function;
|
|
65646
|
+
/**
|
|
65647
|
+
* Returns a metadata object for class sap.m.p13n.SortController.
|
|
65648
|
+
*
|
|
65649
|
+
* @returns Metadata object describing this class
|
|
65650
|
+
*/
|
|
65651
|
+
static getMetadata(): Metadata;
|
|
65652
|
+
}
|
|
65653
|
+
}
|
|
65654
|
+
|
|
64358
65655
|
declare module "sap/m/p13n/SortPanel" {
|
|
64359
65656
|
import ElementMetadata from "sap/ui/core/ElementMetadata";
|
|
64360
65657
|
|
|
65658
|
+
import { PropertyBindingInfo } from "sap/ui/base/ManagedObject";
|
|
65659
|
+
|
|
64361
65660
|
/**
|
|
64362
65661
|
* P13n `SortItem` object type.
|
|
64363
65662
|
*/
|
|
@@ -64394,9 +65693,6 @@ declare module "sap/m/p13n/SortPanel" {
|
|
|
64394
65693
|
* Accepts an object literal `mSettings` that defines initial property values, aggregated and associated
|
|
64395
65694
|
* objects as well as event handlers. See {@link sap.ui.base.ManagedObject#constructor} for a general description
|
|
64396
65695
|
* of the syntax of the settings object.
|
|
64397
|
-
*
|
|
64398
|
-
* This class does not have its own settings, but all settings applicable to the base type {@link sap.m.p13n.QueryPanel#constructor
|
|
64399
|
-
* sap.m.p13n.QueryPanel} can be used.
|
|
64400
65696
|
*/
|
|
64401
65697
|
constructor(
|
|
64402
65698
|
/**
|
|
@@ -64410,9 +65706,6 @@ declare module "sap/m/p13n/SortPanel" {
|
|
|
64410
65706
|
* Accepts an object literal `mSettings` that defines initial property values, aggregated and associated
|
|
64411
65707
|
* objects as well as event handlers. See {@link sap.ui.base.ManagedObject#constructor} for a general description
|
|
64412
65708
|
* of the syntax of the settings object.
|
|
64413
|
-
*
|
|
64414
|
-
* This class does not have its own settings, but all settings applicable to the base type {@link sap.m.p13n.QueryPanel#constructor
|
|
64415
|
-
* sap.m.p13n.QueryPanel} can be used.
|
|
64416
65709
|
*/
|
|
64417
65710
|
constructor(
|
|
64418
65711
|
/**
|
|
@@ -64465,10 +65758,45 @@ declare module "sap/m/p13n/SortPanel" {
|
|
|
64465
65758
|
*/
|
|
64466
65759
|
aP13nData: SortItem
|
|
64467
65760
|
): SortPanel;
|
|
65761
|
+
/**
|
|
65762
|
+
* Gets current value of property {@link #getTitle title}.
|
|
65763
|
+
*
|
|
65764
|
+
* A short text describing the panel. **Note:** This text will only be displayed if the panel is being used
|
|
65765
|
+
* in a `sap.m.p13n.Popup`.
|
|
65766
|
+
*
|
|
65767
|
+
* Default value is `...see text or source`.
|
|
65768
|
+
*
|
|
65769
|
+
* @returns Value of property `title`
|
|
65770
|
+
*/
|
|
65771
|
+
getTitle(): string;
|
|
65772
|
+
/**
|
|
65773
|
+
* Sets a new value for property {@link #getTitle title}.
|
|
65774
|
+
*
|
|
65775
|
+
* A short text describing the panel. **Note:** This text will only be displayed if the panel is being used
|
|
65776
|
+
* in a `sap.m.p13n.Popup`.
|
|
65777
|
+
*
|
|
65778
|
+
* When called with a value of `null` or `undefined`, the default value of the property will be restored.
|
|
65779
|
+
*
|
|
65780
|
+
* Default value is `...see text or source`.
|
|
65781
|
+
*
|
|
65782
|
+
* @returns Reference to `this` in order to allow method chaining
|
|
65783
|
+
*/
|
|
65784
|
+
setTitle(
|
|
65785
|
+
/**
|
|
65786
|
+
* New value for property `title`
|
|
65787
|
+
*/
|
|
65788
|
+
sTitle?: string
|
|
65789
|
+
): this;
|
|
64468
65790
|
}
|
|
64469
65791
|
|
|
64470
65792
|
export interface $SortPanelSettings
|
|
64471
|
-
extends /* was: sap.m.p13n.$QueryPanelSettings */ Object {
|
|
65793
|
+
extends /* was: sap.m.p13n.$QueryPanelSettings */ Object {
|
|
65794
|
+
/**
|
|
65795
|
+
* A short text describing the panel. **Note:** This text will only be displayed if the panel is being used
|
|
65796
|
+
* in a `sap.m.p13n.Popup`.
|
|
65797
|
+
*/
|
|
65798
|
+
title?: string | PropertyBindingInfo;
|
|
65799
|
+
}
|
|
64472
65800
|
}
|
|
64473
65801
|
|
|
64474
65802
|
declare module "sap/m/P13nColumnsItem" {
|
|
@@ -65228,7 +66556,7 @@ declare module "sap/m/P13nColumnsPanel" {
|
|
|
65228
66556
|
* The columnsItem to remove or its index or id
|
|
65229
66557
|
*/
|
|
65230
66558
|
vColumnsItem: int | string | P13nColumnsItem
|
|
65231
|
-
): P13nColumnsItem;
|
|
66559
|
+
): P13nColumnsItem | null;
|
|
65232
66560
|
/**
|
|
65233
66561
|
* @SINCE 1.26.7
|
|
65234
66562
|
*
|
|
@@ -66437,7 +67765,7 @@ declare module "sap/m/P13nDialog" {
|
|
|
66437
67765
|
* The panel to remove or its index or id
|
|
66438
67766
|
*/
|
|
66439
67767
|
vPanel: int | string | P13nPanel
|
|
66440
|
-
): P13nPanel;
|
|
67768
|
+
): P13nPanel | null;
|
|
66441
67769
|
/**
|
|
66442
67770
|
* Sets a new value for property {@link #getInitialVisiblePanelType initialVisiblePanelType}.
|
|
66443
67771
|
*
|
|
@@ -67178,7 +68506,7 @@ declare module "sap/m/P13nDimMeasurePanel" {
|
|
|
67178
68506
|
* The availableChartType to remove or its index or id
|
|
67179
68507
|
*/
|
|
67180
68508
|
vAvailableChartType: int | string | Item
|
|
67181
|
-
): Item;
|
|
68509
|
+
): Item | null;
|
|
67182
68510
|
/**
|
|
67183
68511
|
* Removes a dimMeasureItem from the aggregation {@link #getDimMeasureItems dimMeasureItems}.
|
|
67184
68512
|
*
|
|
@@ -67189,7 +68517,7 @@ declare module "sap/m/P13nDimMeasurePanel" {
|
|
|
67189
68517
|
* The dimMeasureItem to remove or its index or id
|
|
67190
68518
|
*/
|
|
67191
68519
|
vDimMeasureItem: int | string | P13nDimMeasureItem
|
|
67192
|
-
): P13nDimMeasureItem;
|
|
68520
|
+
): P13nDimMeasureItem | null;
|
|
67193
68521
|
/**
|
|
67194
68522
|
* Sets a new value for property {@link #getChartTypeKey chartTypeKey}.
|
|
67195
68523
|
*
|
|
@@ -68062,7 +69390,7 @@ declare module "sap/m/P13nFilterPanel" {
|
|
|
68062
69390
|
* The filterItem to remove or its index or id
|
|
68063
69391
|
*/
|
|
68064
69392
|
vFilterItem: int | string | P13nFilterItem
|
|
68065
|
-
): P13nFilterItem;
|
|
69393
|
+
): P13nFilterItem | null;
|
|
68066
69394
|
/**
|
|
68067
69395
|
* @SINCE 1.28
|
|
68068
69396
|
*
|
|
@@ -68878,7 +70206,7 @@ declare module "sap/m/P13nGroupPanel" {
|
|
|
68878
70206
|
* The groupItem to remove or its index or id
|
|
68879
70207
|
*/
|
|
68880
70208
|
vGroupItem: int | string | P13nGroupItem
|
|
68881
|
-
): P13nGroupItem;
|
|
70209
|
+
): P13nGroupItem | null;
|
|
68882
70210
|
/**
|
|
68883
70211
|
* @SINCE 1.28
|
|
68884
70212
|
*
|
|
@@ -69725,6 +71053,8 @@ declare module "sap/m/P13nItem" {
|
|
|
69725
71053
|
declare module "sap/m/P13nPanel" {
|
|
69726
71054
|
import { default as Control, $ControlSettings } from "sap/ui/core/Control";
|
|
69727
71055
|
|
|
71056
|
+
import { p13n } from "sap/m/library";
|
|
71057
|
+
|
|
69728
71058
|
import P13nItem from "sap/m/P13nItem";
|
|
69729
71059
|
|
|
69730
71060
|
import Event from "sap/ui/base/Event";
|
|
@@ -69741,7 +71071,8 @@ declare module "sap/m/P13nPanel" {
|
|
|
69741
71071
|
*
|
|
69742
71072
|
* An abstract base type for `panels` aggregation in `P13nDialog` control.
|
|
69743
71073
|
*/
|
|
69744
|
-
export default class P13nPanel extends Control {
|
|
71074
|
+
export default class P13nPanel extends Control implements p13n.IContent {
|
|
71075
|
+
__implements__sap_m_p13n_IContent: boolean;
|
|
69745
71076
|
/**
|
|
69746
71077
|
* Constructor for a new P13nPanel.
|
|
69747
71078
|
*
|
|
@@ -70069,7 +71400,7 @@ declare module "sap/m/P13nPanel" {
|
|
|
70069
71400
|
* The item to remove or its index or id
|
|
70070
71401
|
*/
|
|
70071
71402
|
vItem: int | string | P13nItem
|
|
70072
|
-
): P13nItem;
|
|
71403
|
+
): P13nItem | null;
|
|
70073
71404
|
/**
|
|
70074
71405
|
* Sets a new value for property {@link #getChangeNotifier changeNotifier}.
|
|
70075
71406
|
*
|
|
@@ -70791,7 +72122,7 @@ declare module "sap/m/P13nSortPanel" {
|
|
|
70791
72122
|
* The sortItem to remove or its index or id
|
|
70792
72123
|
*/
|
|
70793
72124
|
vSortItem: int | string | P13nSortItem
|
|
70794
|
-
): P13nSortItem;
|
|
72125
|
+
): P13nSortItem | null;
|
|
70795
72126
|
/**
|
|
70796
72127
|
* @SINCE 1.28
|
|
70797
72128
|
*
|
|
@@ -71538,7 +72869,7 @@ declare module "sap/m/Page" {
|
|
|
71538
72869
|
* The content to remove or its index or id
|
|
71539
72870
|
*/
|
|
71540
72871
|
vContent: int | string | Control
|
|
71541
|
-
): Control;
|
|
72872
|
+
): Control | null;
|
|
71542
72873
|
/**
|
|
71543
72874
|
* Removes a headerContent from the aggregation {@link #getHeaderContent headerContent}.
|
|
71544
72875
|
*
|
|
@@ -71549,7 +72880,7 @@ declare module "sap/m/Page" {
|
|
|
71549
72880
|
* The headerContent to remove or its index or id
|
|
71550
72881
|
*/
|
|
71551
72882
|
vHeaderContent: int | string | Control
|
|
71552
|
-
): Control;
|
|
72883
|
+
): Control | null;
|
|
71553
72884
|
/**
|
|
71554
72885
|
* Scrolls to the given position. Only available if enableScrolling is set to "true".
|
|
71555
72886
|
*
|
|
@@ -73324,7 +74655,7 @@ declare module "sap/m/Panel" {
|
|
|
73324
74655
|
* The content to remove or its index or id
|
|
73325
74656
|
*/
|
|
73326
74657
|
vContent: int | string | Control
|
|
73327
|
-
): Control;
|
|
74658
|
+
): Control | null;
|
|
73328
74659
|
/**
|
|
73329
74660
|
* @SINCE 1.46
|
|
73330
74661
|
*
|
|
@@ -74122,7 +75453,7 @@ declare module "sap/m/PDFViewer" {
|
|
|
74122
75453
|
* The popupButton to remove or its index or id
|
|
74123
75454
|
*/
|
|
74124
75455
|
vPopupButton: int | string | Button
|
|
74125
|
-
): Button;
|
|
75456
|
+
): Button | null;
|
|
74126
75457
|
/**
|
|
74127
75458
|
* Sets a new value for property {@link #getDisplayType displayType}.
|
|
74128
75459
|
*
|
|
@@ -75708,7 +77039,7 @@ declare module "sap/m/PlanningCalendar" {
|
|
|
75708
77039
|
* The row to remove or its index or id
|
|
75709
77040
|
*/
|
|
75710
77041
|
vRow: int | string | PlanningCalendarRow
|
|
75711
|
-
): PlanningCalendarRow;
|
|
77042
|
+
): PlanningCalendarRow | null;
|
|
75712
77043
|
/**
|
|
75713
77044
|
* Removes a specialDate from the aggregation {@link #getSpecialDates specialDates}.
|
|
75714
77045
|
*
|
|
@@ -75719,7 +77050,7 @@ declare module "sap/m/PlanningCalendar" {
|
|
|
75719
77050
|
* The specialDate to remove or its index or id
|
|
75720
77051
|
*/
|
|
75721
77052
|
vSpecialDate: int | string | DateTypeRange
|
|
75722
|
-
): DateTypeRange;
|
|
77053
|
+
): DateTypeRange | null;
|
|
75723
77054
|
/**
|
|
75724
77055
|
* Removes a toolbarContent from the aggregation {@link #getToolbarContent toolbarContent}.
|
|
75725
77056
|
*
|
|
@@ -75730,7 +77061,7 @@ declare module "sap/m/PlanningCalendar" {
|
|
|
75730
77061
|
* The toolbarContent to remove or its index or id
|
|
75731
77062
|
*/
|
|
75732
77063
|
vToolbarContent: int | string | Control
|
|
75733
|
-
): Control;
|
|
77064
|
+
): Control | null;
|
|
75734
77065
|
/**
|
|
75735
77066
|
* Removes a view from the aggregation {@link #getViews views}.
|
|
75736
77067
|
*
|
|
@@ -75741,7 +77072,7 @@ declare module "sap/m/PlanningCalendar" {
|
|
|
75741
77072
|
* The view to remove or its index or id
|
|
75742
77073
|
*/
|
|
75743
77074
|
vView: int | string | PlanningCalendarView
|
|
75744
|
-
): PlanningCalendarView;
|
|
77075
|
+
): PlanningCalendarView | null;
|
|
75745
77076
|
/**
|
|
75746
77077
|
* Selects or deselects all `PlanningCalendarRows`.
|
|
75747
77078
|
*
|
|
@@ -76706,7 +78037,7 @@ declare module "sap/m/PlanningCalendarLegend" {
|
|
|
76706
78037
|
* The appointmentItem to remove or its index or id
|
|
76707
78038
|
*/
|
|
76708
78039
|
vAppointmentItem: int | string | CalendarLegendItem
|
|
76709
|
-
): CalendarLegendItem;
|
|
78040
|
+
): CalendarLegendItem | null;
|
|
76710
78041
|
/**
|
|
76711
78042
|
* Sets a new value for property {@link #getAppointmentItemsHeader appointmentItemsHeader}.
|
|
76712
78043
|
*
|
|
@@ -77739,7 +79070,7 @@ declare module "sap/m/PlanningCalendarRow" {
|
|
|
77739
79070
|
* The appointment to remove or its index or id
|
|
77740
79071
|
*/
|
|
77741
79072
|
vAppointment: int | string | CalendarAppointment
|
|
77742
|
-
): CalendarAppointment;
|
|
79073
|
+
): CalendarAppointment | null;
|
|
77743
79074
|
/**
|
|
77744
79075
|
* @SINCE 1.67
|
|
77745
79076
|
* @EXPERIMENTAL (since 1.67)
|
|
@@ -77753,7 +79084,7 @@ declare module "sap/m/PlanningCalendarRow" {
|
|
|
77753
79084
|
* The headerContent to remove or its index or id
|
|
77754
79085
|
*/
|
|
77755
79086
|
vHeaderContent: int | string | Control
|
|
77756
|
-
): Control;
|
|
79087
|
+
): Control | null;
|
|
77757
79088
|
/**
|
|
77758
79089
|
* Removes a intervalHeader from the aggregation {@link #getIntervalHeaders intervalHeaders}.
|
|
77759
79090
|
*
|
|
@@ -77764,7 +79095,7 @@ declare module "sap/m/PlanningCalendarRow" {
|
|
|
77764
79095
|
* The intervalHeader to remove or its index or id
|
|
77765
79096
|
*/
|
|
77766
79097
|
vIntervalHeader: int | string | CalendarAppointment
|
|
77767
|
-
): CalendarAppointment;
|
|
79098
|
+
): CalendarAppointment | null;
|
|
77768
79099
|
/**
|
|
77769
79100
|
* @SINCE 1.56
|
|
77770
79101
|
*
|
|
@@ -77777,7 +79108,7 @@ declare module "sap/m/PlanningCalendarRow" {
|
|
|
77777
79108
|
* The specialDate to remove or its index or id
|
|
77778
79109
|
*/
|
|
77779
79110
|
vSpecialDate: int | string | DateTypeRange
|
|
77780
|
-
): DateTypeRange;
|
|
79111
|
+
): DateTypeRange | null;
|
|
77781
79112
|
/**
|
|
77782
79113
|
* @SINCE 1.56
|
|
77783
79114
|
*
|
|
@@ -79123,6 +80454,57 @@ declare module "sap/m/plugins/DataStateIndicator" {
|
|
|
79123
80454
|
*/
|
|
79124
80455
|
oListener?: object
|
|
79125
80456
|
): this;
|
|
80457
|
+
/**
|
|
80458
|
+
* @SINCE 1.103
|
|
80459
|
+
*
|
|
80460
|
+
* Attaches event handler `fnFunction` to the {@link #event:close close} event of this `sap.m.plugins.DataStateIndicator`.
|
|
80461
|
+
*
|
|
80462
|
+
* When called, the context of the event handler (its `this`) will be bound to `oListener` if specified,
|
|
80463
|
+
* otherwise it will be bound to this `sap.m.plugins.DataStateIndicator` itself.
|
|
80464
|
+
*
|
|
80465
|
+
* This event is fired when the user presses the `Close` button of the `MessageStrip` control which is managed
|
|
80466
|
+
* by this plugin.
|
|
80467
|
+
*
|
|
80468
|
+
* @returns Reference to `this` in order to allow method chaining
|
|
80469
|
+
*/
|
|
80470
|
+
attachClose(
|
|
80471
|
+
/**
|
|
80472
|
+
* An application-specific payload object that will be passed to the event handler along with the event
|
|
80473
|
+
* object when firing the event
|
|
80474
|
+
*/
|
|
80475
|
+
oData: object,
|
|
80476
|
+
/**
|
|
80477
|
+
* The function to be called when the event occurs
|
|
80478
|
+
*/
|
|
80479
|
+
fnFunction: (p1: Event) => void,
|
|
80480
|
+
/**
|
|
80481
|
+
* Context object to call the event handler with. Defaults to this `sap.m.plugins.DataStateIndicator` itself
|
|
80482
|
+
*/
|
|
80483
|
+
oListener?: object
|
|
80484
|
+
): this;
|
|
80485
|
+
/**
|
|
80486
|
+
* @SINCE 1.103
|
|
80487
|
+
*
|
|
80488
|
+
* Attaches event handler `fnFunction` to the {@link #event:close close} event of this `sap.m.plugins.DataStateIndicator`.
|
|
80489
|
+
*
|
|
80490
|
+
* When called, the context of the event handler (its `this`) will be bound to `oListener` if specified,
|
|
80491
|
+
* otherwise it will be bound to this `sap.m.plugins.DataStateIndicator` itself.
|
|
80492
|
+
*
|
|
80493
|
+
* This event is fired when the user presses the `Close` button of the `MessageStrip` control which is managed
|
|
80494
|
+
* by this plugin.
|
|
80495
|
+
*
|
|
80496
|
+
* @returns Reference to `this` in order to allow method chaining
|
|
80497
|
+
*/
|
|
80498
|
+
attachClose(
|
|
80499
|
+
/**
|
|
80500
|
+
* The function to be called when the event occurs
|
|
80501
|
+
*/
|
|
80502
|
+
fnFunction: (p1: Event) => void,
|
|
80503
|
+
/**
|
|
80504
|
+
* Context object to call the event handler with. Defaults to this `sap.m.plugins.DataStateIndicator` itself
|
|
80505
|
+
*/
|
|
80506
|
+
oListener?: object
|
|
80507
|
+
): this;
|
|
79126
80508
|
/**
|
|
79127
80509
|
* Attaches event handler `fnFunction` to the {@link #event:dataStateChange dataStateChange} event of this
|
|
79128
80510
|
* `sap.m.plugins.DataStateIndicator`.
|
|
@@ -79208,6 +80590,25 @@ declare module "sap/m/plugins/DataStateIndicator" {
|
|
|
79208
80590
|
*/
|
|
79209
80591
|
oListener?: object
|
|
79210
80592
|
): this;
|
|
80593
|
+
/**
|
|
80594
|
+
* @SINCE 1.103
|
|
80595
|
+
*
|
|
80596
|
+
* Detaches event handler `fnFunction` from the {@link #event:close close} event of this `sap.m.plugins.DataStateIndicator`.
|
|
80597
|
+
*
|
|
80598
|
+
* The passed function and listener object must match the ones used for event registration.
|
|
80599
|
+
*
|
|
80600
|
+
* @returns Reference to `this` in order to allow method chaining
|
|
80601
|
+
*/
|
|
80602
|
+
detachClose(
|
|
80603
|
+
/**
|
|
80604
|
+
* The function to be called, when the event occurs
|
|
80605
|
+
*/
|
|
80606
|
+
fnFunction: (p1: Event) => void,
|
|
80607
|
+
/**
|
|
80608
|
+
* Context object on which the given function had to be called
|
|
80609
|
+
*/
|
|
80610
|
+
oListener?: object
|
|
80611
|
+
): this;
|
|
79211
80612
|
/**
|
|
79212
80613
|
* Detaches event handler `fnFunction` from the {@link #event:dataStateChange dataStateChange} event of
|
|
79213
80614
|
* this `sap.m.plugins.DataStateIndicator`.
|
|
@@ -79263,6 +80664,19 @@ declare module "sap/m/plugins/DataStateIndicator" {
|
|
|
79263
80664
|
*/
|
|
79264
80665
|
mParameters?: object
|
|
79265
80666
|
): boolean;
|
|
80667
|
+
/**
|
|
80668
|
+
* @SINCE 1.103
|
|
80669
|
+
*
|
|
80670
|
+
* Fires event {@link #event:close close} to attached listeners.
|
|
80671
|
+
*
|
|
80672
|
+
* @returns Reference to `this` in order to allow method chaining
|
|
80673
|
+
*/
|
|
80674
|
+
fireClose(
|
|
80675
|
+
/**
|
|
80676
|
+
* Parameters to pass along with the event
|
|
80677
|
+
*/
|
|
80678
|
+
mParameters?: object
|
|
80679
|
+
): this;
|
|
79266
80680
|
/**
|
|
79267
80681
|
* Fires event {@link #event:dataStateChange dataStateChange} to attached listeners.
|
|
79268
80682
|
*
|
|
@@ -79423,6 +80837,14 @@ declare module "sap/m/plugins/DataStateIndicator" {
|
|
|
79423
80837
|
* is set to `true`.
|
|
79424
80838
|
*/
|
|
79425
80839
|
clearFilter?: (oEvent: Event) => void;
|
|
80840
|
+
|
|
80841
|
+
/**
|
|
80842
|
+
* @SINCE 1.103
|
|
80843
|
+
*
|
|
80844
|
+
* This event is fired when the user presses the `Close` button of the `MessageStrip` control which is managed
|
|
80845
|
+
* by this plugin.
|
|
80846
|
+
*/
|
|
80847
|
+
close?: (oEvent: Event) => void;
|
|
79426
80848
|
}
|
|
79427
80849
|
}
|
|
79428
80850
|
|
|
@@ -80568,7 +81990,7 @@ declare module "sap/m/Popover" {
|
|
|
80568
81990
|
* The content to remove or its index or id
|
|
80569
81991
|
*/
|
|
80570
81992
|
vContent: int | string | Control
|
|
80571
|
-
): Control;
|
|
81993
|
+
): Control | null;
|
|
80572
81994
|
/**
|
|
80573
81995
|
* @SINCE 1.15.1
|
|
80574
81996
|
*
|
|
@@ -83048,7 +84470,7 @@ declare module "sap/m/QuickViewBase" {
|
|
|
83048
84470
|
* The page to remove or its index or id
|
|
83049
84471
|
*/
|
|
83050
84472
|
vPage: int | string | QuickViewPage
|
|
83051
|
-
): QuickViewPage;
|
|
84473
|
+
): QuickViewPage | null;
|
|
83052
84474
|
/**
|
|
83053
84475
|
* Unbinds aggregation {@link #getPages pages} from model data.
|
|
83054
84476
|
*
|
|
@@ -83379,7 +84801,7 @@ declare module "sap/m/QuickViewGroup" {
|
|
|
83379
84801
|
* The element to remove or its index or id
|
|
83380
84802
|
*/
|
|
83381
84803
|
vElement: int | string | QuickViewGroupElement
|
|
83382
|
-
): QuickViewGroupElement;
|
|
84804
|
+
): QuickViewGroupElement | null;
|
|
83383
84805
|
/**
|
|
83384
84806
|
* Sets a new value for property {@link #getHeading heading}.
|
|
83385
84807
|
*
|
|
@@ -84084,7 +85506,7 @@ declare module "sap/m/QuickViewPage" {
|
|
|
84084
85506
|
* The group to remove or its index or id
|
|
84085
85507
|
*/
|
|
84086
85508
|
vGroup: int | string | QuickViewGroup
|
|
84087
|
-
): QuickViewGroup;
|
|
85509
|
+
): QuickViewGroup | null;
|
|
84088
85510
|
/**
|
|
84089
85511
|
* @SINCE 1.92
|
|
84090
85512
|
*
|
|
@@ -85439,9 +86861,9 @@ declare module "sap/m/RadioButtonGroup" {
|
|
|
85439
86861
|
/**
|
|
85440
86862
|
* Removes all radio buttons.
|
|
85441
86863
|
*
|
|
85442
|
-
* @returns Array of removed buttons
|
|
86864
|
+
* @returns Array of removed buttons.
|
|
85443
86865
|
*/
|
|
85444
|
-
removeAllButtons():
|
|
86866
|
+
removeAllButtons(): RadioButton[];
|
|
85445
86867
|
/**
|
|
85446
86868
|
* Removes an ariaDescribedBy from the association named {@link #getAriaDescribedBy ariaDescribedBy}.
|
|
85447
86869
|
*
|
|
@@ -87363,7 +88785,7 @@ declare module "sap/m/ResponsivePopover" {
|
|
|
87363
88785
|
* The content to remove or its index or id
|
|
87364
88786
|
*/
|
|
87365
88787
|
vContent: int | string | Control
|
|
87366
|
-
): Control;
|
|
88788
|
+
): Control | null;
|
|
87367
88789
|
/**
|
|
87368
88790
|
* Setter for beginButton aggregation
|
|
87369
88791
|
*
|
|
@@ -89057,7 +90479,7 @@ declare module "sap/m/ScrollContainer" {
|
|
|
89057
90479
|
* The content to remove or its index or id
|
|
89058
90480
|
*/
|
|
89059
90481
|
vContent: int | string | Control
|
|
89060
|
-
): Control;
|
|
90482
|
+
): Control | null;
|
|
89061
90483
|
/**
|
|
89062
90484
|
* Scrolls to the given position. When called while the control is not rendered (yet), the scrolling position
|
|
89063
90485
|
* is still applied, but there is no animation.
|
|
@@ -90020,7 +91442,7 @@ declare module "sap/m/SearchField" {
|
|
|
90020
91442
|
* The suggestionItem to remove or its index or id
|
|
90021
91443
|
*/
|
|
90022
91444
|
vSuggestionItem: int | string | SuggestionItem
|
|
90023
|
-
): SuggestionItem;
|
|
91445
|
+
): SuggestionItem | null;
|
|
90024
91446
|
/**
|
|
90025
91447
|
* Sets a new value for property {@link #getEnabled enabled}.
|
|
90026
91448
|
*
|
|
@@ -91031,7 +92453,7 @@ declare module "sap/m/SegmentedButton" {
|
|
|
91031
92453
|
* The button to remove or its index or id
|
|
91032
92454
|
*/
|
|
91033
92455
|
vButton: int | string | Button
|
|
91034
|
-
): Button;
|
|
92456
|
+
): Button | null;
|
|
91035
92457
|
/**
|
|
91036
92458
|
* Removes an item from `items` aggregation.
|
|
91037
92459
|
*/
|
|
@@ -91870,7 +93292,6 @@ declare module "sap/m/Select" {
|
|
|
91870
93292
|
getAutoAdjustWidth(): boolean;
|
|
91871
93293
|
/**
|
|
91872
93294
|
* @SINCE 1.86
|
|
91873
|
-
* @EXPERIMENTAL (since 1.86)
|
|
91874
93295
|
*
|
|
91875
93296
|
* Gets current value of property {@link #getColumnRatio columnRatio}.
|
|
91876
93297
|
*
|
|
@@ -91931,7 +93352,7 @@ declare module "sap/m/Select" {
|
|
|
91931
93352
|
*
|
|
91932
93353
|
* Gets the first item from the aggregation named `items`.
|
|
91933
93354
|
*
|
|
91934
|
-
* @returns The first item, or null if there are no items.
|
|
93355
|
+
* @returns The first item, or `null` if there are no items.
|
|
91935
93356
|
*/
|
|
91936
93357
|
getFirstItem(): Item | null;
|
|
91937
93358
|
/**
|
|
@@ -91979,7 +93400,7 @@ declare module "sap/m/Select" {
|
|
|
91979
93400
|
*
|
|
91980
93401
|
* Gets the item from the aggregation named `items` at the given 0-based index.
|
|
91981
93402
|
*
|
|
91982
|
-
* @returns Item at the given index, or null if none.
|
|
93403
|
+
* @returns Item at the given index, or `null` if none.
|
|
91983
93404
|
*/
|
|
91984
93405
|
getItemAt(
|
|
91985
93406
|
/**
|
|
@@ -92015,7 +93436,7 @@ declare module "sap/m/Select" {
|
|
|
92015
93436
|
*
|
|
92016
93437
|
* Gets the last item from the aggregation named `items`.
|
|
92017
93438
|
*
|
|
92018
|
-
* @returns The last item, or null if there are no items.
|
|
93439
|
+
* @returns The last item, or `null` if there are no items.
|
|
92019
93440
|
*/
|
|
92020
93441
|
getLastItem(): Item | null;
|
|
92021
93442
|
/**
|
|
@@ -92294,14 +93715,14 @@ declare module "sap/m/Select" {
|
|
|
92294
93715
|
/**
|
|
92295
93716
|
* Removes an item from the aggregation named `items`.
|
|
92296
93717
|
*
|
|
92297
|
-
* @returns The removed item or null
|
|
93718
|
+
* @returns The removed item or `null`.
|
|
92298
93719
|
*/
|
|
92299
93720
|
removeItem(
|
|
92300
93721
|
/**
|
|
92301
93722
|
* The item to be removed or its index or ID.
|
|
92302
93723
|
*/
|
|
92303
93724
|
vItem: int | string | Item
|
|
92304
|
-
): Item;
|
|
93725
|
+
): Item | null;
|
|
92305
93726
|
/**
|
|
92306
93727
|
* @SINCE 1.16
|
|
92307
93728
|
*
|
|
@@ -92323,7 +93744,6 @@ declare module "sap/m/Select" {
|
|
|
92323
93744
|
): this;
|
|
92324
93745
|
/**
|
|
92325
93746
|
* @SINCE 1.86
|
|
92326
|
-
* @EXPERIMENTAL (since 1.86)
|
|
92327
93747
|
*
|
|
92328
93748
|
* Sets a new value for property {@link #getColumnRatio columnRatio}.
|
|
92329
93749
|
*
|
|
@@ -92879,7 +94299,6 @@ declare module "sap/m/Select" {
|
|
|
92879
94299
|
|
|
92880
94300
|
/**
|
|
92881
94301
|
* @SINCE 1.86
|
|
92882
|
-
* @EXPERIMENTAL (since 1.86)
|
|
92883
94302
|
*
|
|
92884
94303
|
* Determines the ratio between the first and the second column when secondary values are displayed.
|
|
92885
94304
|
*
|
|
@@ -93487,9 +94906,9 @@ declare module "sap/m/SelectDialog" {
|
|
|
93487
94906
|
/**
|
|
93488
94907
|
* Forward method to the inner dialog: getDomRef
|
|
93489
94908
|
*
|
|
93490
|
-
* @returns The Element's DOM Element sub DOM Element or null
|
|
94909
|
+
* @returns The Element's DOM Element, sub DOM Element or `null`
|
|
93491
94910
|
*/
|
|
93492
|
-
getDomRef(): Element;
|
|
94911
|
+
getDomRef(): Element | null;
|
|
93493
94912
|
/**
|
|
93494
94913
|
* @SINCE 1.70
|
|
93495
94914
|
*
|
|
@@ -93700,7 +95119,7 @@ declare module "sap/m/SelectDialog" {
|
|
|
93700
95119
|
* The item to remove or its index or id
|
|
93701
95120
|
*/
|
|
93702
95121
|
vItem: int | string | ListItemBase
|
|
93703
|
-
): ListItemBase;
|
|
95122
|
+
): ListItemBase | null;
|
|
93704
95123
|
/**
|
|
93705
95124
|
* Forward method to the inner dialog: removeStyleClass
|
|
93706
95125
|
*
|
|
@@ -95123,7 +96542,7 @@ declare module "sap/m/SelectionDetails" {
|
|
|
95123
96542
|
* The action to remove or its index or id
|
|
95124
96543
|
*/
|
|
95125
96544
|
vAction: int | string | Item
|
|
95126
|
-
): Item;
|
|
96545
|
+
): Item | null;
|
|
95127
96546
|
/**
|
|
95128
96547
|
* Removes a actionGroup from the aggregation {@link #getActionGroups actionGroups}.
|
|
95129
96548
|
*
|
|
@@ -95134,7 +96553,7 @@ declare module "sap/m/SelectionDetails" {
|
|
|
95134
96553
|
* The actionGroup to remove or its index or id
|
|
95135
96554
|
*/
|
|
95136
96555
|
vActionGroup: int | string | Item
|
|
95137
|
-
): Item;
|
|
96556
|
+
): Item | null;
|
|
95138
96557
|
/**
|
|
95139
96558
|
* Removes all the controls from the aggregation {@link #getActionGroups actionGroups}.
|
|
95140
96559
|
*
|
|
@@ -95169,7 +96588,7 @@ declare module "sap/m/SelectionDetails" {
|
|
|
95169
96588
|
* The item to remove or its index or id
|
|
95170
96589
|
*/
|
|
95171
96590
|
vItem: int | string | SelectionDetailsItem
|
|
95172
|
-
): SelectionDetailsItem;
|
|
96591
|
+
): SelectionDetailsItem | null;
|
|
95173
96592
|
/**
|
|
95174
96593
|
* Sets the popover to modal or non-modal based on the given parameter. This only takes effect on desktop
|
|
95175
96594
|
* or tablet. Please see the documentation {@link sap.m.ResponsivePopover#modal}.
|
|
@@ -95575,7 +96994,7 @@ declare module "sap/m/SelectionDetailsFacade" {
|
|
|
95575
96994
|
* The action to remove or its index or id
|
|
95576
96995
|
*/
|
|
95577
96996
|
vAction: int | string | Item
|
|
95578
|
-
): Item;
|
|
96997
|
+
): Item | null;
|
|
95579
96998
|
/**
|
|
95580
96999
|
* Removes a actionGroup from the aggregation {@link #getActionGroups actionGroups}.
|
|
95581
97000
|
*
|
|
@@ -95586,7 +97005,7 @@ declare module "sap/m/SelectionDetailsFacade" {
|
|
|
95586
97005
|
* The actionGroup to remove or its index or id
|
|
95587
97006
|
*/
|
|
95588
97007
|
vActionGroup: int | string | Item
|
|
95589
|
-
): Item;
|
|
97008
|
+
): Item | null;
|
|
95590
97009
|
/**
|
|
95591
97010
|
* Removes all the controls from the aggregation {@link #getActionGroups actionGroups}.
|
|
95592
97011
|
*
|
|
@@ -95846,7 +97265,7 @@ declare module "sap/m/SelectionDetailsItem" {
|
|
|
95846
97265
|
* The action to remove or its index or id
|
|
95847
97266
|
*/
|
|
95848
97267
|
vAction: int | string | Item
|
|
95849
|
-
): Item;
|
|
97268
|
+
): Item | null;
|
|
95850
97269
|
/**
|
|
95851
97270
|
* Removes all the controls from the aggregation {@link #getActions actions}.
|
|
95852
97271
|
*
|
|
@@ -95873,7 +97292,7 @@ declare module "sap/m/SelectionDetailsItem" {
|
|
|
95873
97292
|
* The line to remove or its index or id
|
|
95874
97293
|
*/
|
|
95875
97294
|
vLine: int | string | SelectionDetailsItemLine
|
|
95876
|
-
): SelectionDetailsItemLine;
|
|
97295
|
+
): SelectionDetailsItemLine | null;
|
|
95877
97296
|
/**
|
|
95878
97297
|
* Sets a new value for property {@link #getEnableNav enableNav}.
|
|
95879
97298
|
*
|
|
@@ -96495,7 +97914,7 @@ declare module "sap/m/SelectList" {
|
|
|
96495
97914
|
/**
|
|
96496
97915
|
* Gets the first item from the aggregation named `items`.
|
|
96497
97916
|
*
|
|
96498
|
-
* @returns The first item, or null if there are no items.
|
|
97917
|
+
* @returns The first item, or `null` if there are no items.
|
|
96499
97918
|
*/
|
|
96500
97919
|
getFirstItem(): Item | null;
|
|
96501
97920
|
/**
|
|
@@ -96513,7 +97932,7 @@ declare module "sap/m/SelectList" {
|
|
|
96513
97932
|
/**
|
|
96514
97933
|
* Gets the item from the aggregation named `items` at the given 0-based index.
|
|
96515
97934
|
*
|
|
96516
|
-
* @returns Item at the given index, or null if none.
|
|
97935
|
+
* @returns Item at the given index, or `null` if none.
|
|
96517
97936
|
*/
|
|
96518
97937
|
getItemAt(
|
|
96519
97938
|
/**
|
|
@@ -96526,7 +97945,7 @@ declare module "sap/m/SelectList" {
|
|
|
96526
97945
|
*
|
|
96527
97946
|
* **Note: ** If duplicate keys exists, the first item matching the key is returned.
|
|
96528
97947
|
*
|
|
96529
|
-
* @returns The matched item or null
|
|
97948
|
+
* @returns The matched item or `null`
|
|
96530
97949
|
*/
|
|
96531
97950
|
getItemByKey(
|
|
96532
97951
|
/**
|
|
@@ -96560,7 +97979,7 @@ declare module "sap/m/SelectList" {
|
|
|
96560
97979
|
/**
|
|
96561
97980
|
* Gets the enabled items from the aggregation named `items`.
|
|
96562
97981
|
*
|
|
96563
|
-
* @returns The last item, or null if there are no items.
|
|
97982
|
+
* @returns The last item, or `null` if there are no items.
|
|
96564
97983
|
*/
|
|
96565
97984
|
getLastItem(): Item | null;
|
|
96566
97985
|
/**
|
|
@@ -96684,14 +98103,14 @@ declare module "sap/m/SelectList" {
|
|
|
96684
98103
|
/**
|
|
96685
98104
|
* Removes an item from the aggregation named `items`.
|
|
96686
98105
|
*
|
|
96687
|
-
* @returns The removed item or null
|
|
98106
|
+
* @returns The removed item or `null`.
|
|
96688
98107
|
*/
|
|
96689
98108
|
removeItem(
|
|
96690
98109
|
/**
|
|
96691
98110
|
* The item to remove or its index or id.
|
|
96692
98111
|
*/
|
|
96693
98112
|
vItem: int | string | Item
|
|
96694
|
-
): Item;
|
|
98113
|
+
): Item | null;
|
|
96695
98114
|
/**
|
|
96696
98115
|
* Sets a new value for property {@link #getEnabled enabled}.
|
|
96697
98116
|
*
|
|
@@ -101645,7 +103064,7 @@ declare module "sap/m/semantic/SemanticPage" {
|
|
|
101645
103064
|
* The content to remove or its index or id
|
|
101646
103065
|
*/
|
|
101647
103066
|
vContent: int | string | Control
|
|
101648
|
-
): Control;
|
|
103067
|
+
): Control | null;
|
|
101649
103068
|
/**
|
|
101650
103069
|
* Removes a customFooterContent from the aggregation {@link #getCustomFooterContent customFooterContent}.
|
|
101651
103070
|
*
|
|
@@ -101656,7 +103075,7 @@ declare module "sap/m/semantic/SemanticPage" {
|
|
|
101656
103075
|
* The customFooterContent to remove or its index or id
|
|
101657
103076
|
*/
|
|
101658
103077
|
vCustomFooterContent: int | string | Button
|
|
101659
|
-
): Button;
|
|
103078
|
+
): Button | null;
|
|
101660
103079
|
/**
|
|
101661
103080
|
* Removes a customHeaderContent from the aggregation {@link #getCustomHeaderContent customHeaderContent}.
|
|
101662
103081
|
*
|
|
@@ -101667,7 +103086,7 @@ declare module "sap/m/semantic/SemanticPage" {
|
|
|
101667
103086
|
* The customHeaderContent to remove or its index or id
|
|
101668
103087
|
*/
|
|
101669
103088
|
vCustomHeaderContent: int | string | Button
|
|
101670
|
-
): Button;
|
|
103089
|
+
): Button | null;
|
|
101671
103090
|
/**
|
|
101672
103091
|
* @SINCE 1.52
|
|
101673
103092
|
*
|
|
@@ -102233,7 +103652,7 @@ declare module "sap/m/semantic/SemanticSelect" {
|
|
|
102233
103652
|
* The item to remove or its index or id
|
|
102234
103653
|
*/
|
|
102235
103654
|
vItem: int | string | Item
|
|
102236
|
-
): Item;
|
|
103655
|
+
): Item | null;
|
|
102237
103656
|
/**
|
|
102238
103657
|
* Sets a new value for property {@link #getEnabled enabled}.
|
|
102239
103658
|
*
|
|
@@ -102842,7 +104261,7 @@ declare module "sap/m/semantic/ShareMenuPage" {
|
|
|
102842
104261
|
* The customShareMenuContent to remove or its index or id
|
|
102843
104262
|
*/
|
|
102844
104263
|
vCustomShareMenuContent: int | string | Button
|
|
102845
|
-
): Button;
|
|
104264
|
+
): Button | null;
|
|
102846
104265
|
}
|
|
102847
104266
|
|
|
102848
104267
|
export interface $ShareMenuPageSettings extends $SemanticPageSettings {
|
|
@@ -105031,7 +106450,7 @@ declare module "sap/m/SinglePlanningCalendar" {
|
|
|
105031
106450
|
* The action to remove or its index or id
|
|
105032
106451
|
*/
|
|
105033
106452
|
vAction: int | string | Control
|
|
105034
|
-
): Control;
|
|
106453
|
+
): Control | null;
|
|
105035
106454
|
/**
|
|
105036
106455
|
* Removes all the controls from the aggregation {@link #getActions actions}.
|
|
105037
106456
|
*
|
|
@@ -105076,7 +106495,7 @@ declare module "sap/m/SinglePlanningCalendar" {
|
|
|
105076
106495
|
* The appointment to remove or its index or id
|
|
105077
106496
|
*/
|
|
105078
106497
|
vAppointment: int | string | CalendarAppointment
|
|
105079
|
-
): CalendarAppointment;
|
|
106498
|
+
): CalendarAppointment | null;
|
|
105080
106499
|
/**
|
|
105081
106500
|
* @SINCE 1.66
|
|
105082
106501
|
*
|
|
@@ -105089,7 +106508,7 @@ declare module "sap/m/SinglePlanningCalendar" {
|
|
|
105089
106508
|
* The specialDate to remove or its index or id
|
|
105090
106509
|
*/
|
|
105091
106510
|
vSpecialDate: int | string | DateTypeRange
|
|
105092
|
-
): DateTypeRange;
|
|
106511
|
+
): DateTypeRange | null;
|
|
105093
106512
|
/**
|
|
105094
106513
|
* Removes a view from the aggregation {@link #getViews views}.
|
|
105095
106514
|
*
|
|
@@ -105100,7 +106519,7 @@ declare module "sap/m/SinglePlanningCalendar" {
|
|
|
105100
106519
|
* The view to remove or its index or id
|
|
105101
106520
|
*/
|
|
105102
106521
|
vView: int | string | SinglePlanningCalendarView
|
|
105103
|
-
): SinglePlanningCalendarView;
|
|
106522
|
+
): SinglePlanningCalendarView | null;
|
|
105104
106523
|
/**
|
|
105105
106524
|
* @SINCE 1.65
|
|
105106
106525
|
*
|
|
@@ -106764,7 +108183,7 @@ declare module "sap/m/Slider" {
|
|
|
106764
108183
|
* The customTooltip to remove or its index or id
|
|
106765
108184
|
*/
|
|
106766
108185
|
vCustomTooltip: int | string | SliderTooltipBase
|
|
106767
|
-
): SliderTooltipBase;
|
|
108186
|
+
): SliderTooltipBase | null;
|
|
106768
108187
|
/**
|
|
106769
108188
|
* Sets a new value for property {@link #getEnabled enabled}.
|
|
106770
108189
|
*
|
|
@@ -107580,7 +108999,7 @@ declare module "sap/m/SlideTile" {
|
|
|
107580
108999
|
* The tile to remove or its index or id
|
|
107581
109000
|
*/
|
|
107582
109001
|
vTile: int | string | GenericTile
|
|
107583
|
-
): GenericTile;
|
|
109002
|
+
): GenericTile | null;
|
|
107584
109003
|
/**
|
|
107585
109004
|
* Sets a new value for property {@link #getDisplayTime displayTime}.
|
|
107586
109005
|
*
|
|
@@ -109604,7 +111023,7 @@ declare module "sap/m/SplitContainer" {
|
|
|
109604
111023
|
* The detailPage to remove or its index or id
|
|
109605
111024
|
*/
|
|
109606
111025
|
vDetailPage: int | string | Control
|
|
109607
|
-
): Control;
|
|
111026
|
+
): Control | null;
|
|
109608
111027
|
/**
|
|
109609
111028
|
* Removes a masterPage from the aggregation {@link #getMasterPages masterPages}.
|
|
109610
111029
|
*
|
|
@@ -109615,7 +111034,7 @@ declare module "sap/m/SplitContainer" {
|
|
|
109615
111034
|
* The masterPage to remove or its index or id
|
|
109616
111035
|
*/
|
|
109617
111036
|
vMasterPage: int | string | Control
|
|
109618
|
-
): Control;
|
|
111037
|
+
): Control | null;
|
|
109619
111038
|
/**
|
|
109620
111039
|
* @SINCE 1.11.2
|
|
109621
111040
|
*
|
|
@@ -113550,14 +114969,14 @@ declare module "sap/m/TabContainer" {
|
|
|
113550
114969
|
/**
|
|
113551
114970
|
* Removes an item from the aggregation named `items`.
|
|
113552
114971
|
*
|
|
113553
|
-
* @returns The removed item or null
|
|
114972
|
+
* @returns The removed item or `null`
|
|
113554
114973
|
*/
|
|
113555
114974
|
removeItem(
|
|
113556
114975
|
/**
|
|
113557
114976
|
* The item to remove or its index or ID
|
|
113558
114977
|
*/
|
|
113559
114978
|
vItem: int | string | TabContainerItem
|
|
113560
|
-
): TabContainerItem;
|
|
114979
|
+
): TabContainerItem | null;
|
|
113561
114980
|
/**
|
|
113562
114981
|
* @SINCE 1.71
|
|
113563
114982
|
*
|
|
@@ -113966,7 +115385,7 @@ declare module "sap/m/TabContainerItem" {
|
|
|
113966
115385
|
* The content to remove or its index or id
|
|
113967
115386
|
*/
|
|
113968
115387
|
vContent: int | string | Control
|
|
113969
|
-
): Control;
|
|
115388
|
+
): Control | null;
|
|
113970
115389
|
/**
|
|
113971
115390
|
* @EXPERIMENTAL (since 1.63)
|
|
113972
115391
|
*
|
|
@@ -114798,7 +116217,7 @@ declare module "sap/m/Table" {
|
|
|
114798
116217
|
* The column to remove or its index or id
|
|
114799
116218
|
*/
|
|
114800
116219
|
vColumn: int | string | Column
|
|
114801
|
-
): Column;
|
|
116220
|
+
): Column | null;
|
|
114802
116221
|
/**
|
|
114803
116222
|
* @SINCE 1.52
|
|
114804
116223
|
*
|
|
@@ -116893,9 +118312,9 @@ declare module "sap/m/TableSelectDialog" {
|
|
|
116893
118312
|
/**
|
|
116894
118313
|
* Transfers method to the inner dialog: getDomRef
|
|
116895
118314
|
*
|
|
116896
|
-
* @returns The Element's DOM Element sub DOM Element or null
|
|
118315
|
+
* @returns The Element's DOM Element, sub DOM Element or `null`
|
|
116897
118316
|
*/
|
|
116898
|
-
getDomRef(): Element;
|
|
118317
|
+
getDomRef(): Element | null;
|
|
116899
118318
|
/**
|
|
116900
118319
|
* @SINCE 1.71
|
|
116901
118320
|
*
|
|
@@ -117145,7 +118564,7 @@ declare module "sap/m/TableSelectDialog" {
|
|
|
117145
118564
|
* The column to remove or its index or id
|
|
117146
118565
|
*/
|
|
117147
118566
|
vColumn: int | string | Column
|
|
117148
|
-
): Column;
|
|
118567
|
+
): Column | null;
|
|
117149
118568
|
/**
|
|
117150
118569
|
* Removes a item from the aggregation {@link #getItems items}.
|
|
117151
118570
|
*
|
|
@@ -117156,7 +118575,7 @@ declare module "sap/m/TableSelectDialog" {
|
|
|
117156
118575
|
* The item to remove or its index or id
|
|
117157
118576
|
*/
|
|
117158
118577
|
vItem: int | string | ColumnListItem
|
|
117159
|
-
): ColumnListItem;
|
|
118578
|
+
): ColumnListItem | null;
|
|
117160
118579
|
/**
|
|
117161
118580
|
* Transfers method to the inner dialog: removeStyleClass
|
|
117162
118581
|
*
|
|
@@ -117757,7 +119176,7 @@ declare module "sap/m/Text" {
|
|
|
117757
119176
|
* Clamps the wrapping text according to max lines and returns the found ellipsis position. Parameters can
|
|
117758
119177
|
* be used for better performance.
|
|
117759
119178
|
*
|
|
117760
|
-
* @returns Returns found ellipsis position or undefined
|
|
119179
|
+
* @returns Returns found ellipsis position or `undefined`.
|
|
117761
119180
|
*/
|
|
117762
119181
|
clampText(
|
|
117763
119182
|
/**
|
|
@@ -119367,7 +120786,7 @@ declare module "sap/m/TileContainer" {
|
|
|
119367
120786
|
* The tile to remove or its index or id
|
|
119368
120787
|
*/
|
|
119369
120788
|
vTile: int | string | Tile
|
|
119370
|
-
): Tile;
|
|
120789
|
+
): Tile | null;
|
|
119371
120790
|
/**
|
|
119372
120791
|
* Scrolls to the page where the given Tile or tile index is included. Optionally this can be done animated
|
|
119373
120792
|
* or not. With IE9 the scroll is never animated.
|
|
@@ -119663,6 +121082,8 @@ declare module "sap/m/TileContent" {
|
|
|
119663
121082
|
*/
|
|
119664
121083
|
getPriority(): Priority | keyof typeof Priority;
|
|
119665
121084
|
/**
|
|
121085
|
+
* @EXPERIMENTAL (since 1.103)
|
|
121086
|
+
*
|
|
119666
121087
|
* Gets current value of property {@link #getPriorityText priorityText}.
|
|
119667
121088
|
*
|
|
119668
121089
|
* Sets the Text inside the Priority badge in Generic Tile ActionMode.
|
|
@@ -119803,6 +121224,8 @@ declare module "sap/m/TileContent" {
|
|
|
119803
121224
|
sPriority?: Priority | keyof typeof Priority
|
|
119804
121225
|
): this;
|
|
119805
121226
|
/**
|
|
121227
|
+
* @EXPERIMENTAL (since 1.103)
|
|
121228
|
+
*
|
|
119806
121229
|
* Sets a new value for property {@link #getPriorityText priorityText}.
|
|
119807
121230
|
*
|
|
119808
121231
|
* Sets the Text inside the Priority badge in Generic Tile ActionMode.
|
|
@@ -119958,6 +121381,8 @@ declare module "sap/m/TileContent" {
|
|
|
119958
121381
|
| `{${string}}`;
|
|
119959
121382
|
|
|
119960
121383
|
/**
|
|
121384
|
+
* @EXPERIMENTAL (since 1.103)
|
|
121385
|
+
*
|
|
119961
121386
|
* Sets the Text inside the Priority badge in Generic Tile ActionMode.
|
|
119962
121387
|
*/
|
|
119963
121388
|
priorityText?: string | PropertyBindingInfo;
|
|
@@ -120237,6 +121662,61 @@ declare module "sap/m/TimePicker" {
|
|
|
120237
121662
|
*/
|
|
120238
121663
|
oListener?: object
|
|
120239
121664
|
): this;
|
|
121665
|
+
/**
|
|
121666
|
+
* @SINCE 1.104.0
|
|
121667
|
+
*
|
|
121668
|
+
* Attaches event handler `fnFunction` to the {@link #event:liveChange liveChange} event of this `sap.m.TimePicker`.
|
|
121669
|
+
*
|
|
121670
|
+
* When called, the context of the event handler (its `this`) will be bound to `oListener` if specified,
|
|
121671
|
+
* otherwise it will be bound to this `sap.m.TimePicker` itself.
|
|
121672
|
+
*
|
|
121673
|
+
* Fired when the value of the `TimePicker` is changed by user interaction - each keystroke, delete, paste,
|
|
121674
|
+
* etc.
|
|
121675
|
+
*
|
|
121676
|
+
* **Note:** Browsing autocomplete suggestions doesn't fire the event.
|
|
121677
|
+
*
|
|
121678
|
+
* @returns Reference to `this` in order to allow method chaining
|
|
121679
|
+
*/
|
|
121680
|
+
attachLiveChange(
|
|
121681
|
+
/**
|
|
121682
|
+
* An application-specific payload object that will be passed to the event handler along with the event
|
|
121683
|
+
* object when firing the event
|
|
121684
|
+
*/
|
|
121685
|
+
oData: object,
|
|
121686
|
+
/**
|
|
121687
|
+
* The function to be called when the event occurs
|
|
121688
|
+
*/
|
|
121689
|
+
fnFunction: (p1: Event) => void,
|
|
121690
|
+
/**
|
|
121691
|
+
* Context object to call the event handler with. Defaults to this `sap.m.TimePicker` itself
|
|
121692
|
+
*/
|
|
121693
|
+
oListener?: object
|
|
121694
|
+
): this;
|
|
121695
|
+
/**
|
|
121696
|
+
* @SINCE 1.104.0
|
|
121697
|
+
*
|
|
121698
|
+
* Attaches event handler `fnFunction` to the {@link #event:liveChange liveChange} event of this `sap.m.TimePicker`.
|
|
121699
|
+
*
|
|
121700
|
+
* When called, the context of the event handler (its `this`) will be bound to `oListener` if specified,
|
|
121701
|
+
* otherwise it will be bound to this `sap.m.TimePicker` itself.
|
|
121702
|
+
*
|
|
121703
|
+
* Fired when the value of the `TimePicker` is changed by user interaction - each keystroke, delete, paste,
|
|
121704
|
+
* etc.
|
|
121705
|
+
*
|
|
121706
|
+
* **Note:** Browsing autocomplete suggestions doesn't fire the event.
|
|
121707
|
+
*
|
|
121708
|
+
* @returns Reference to `this` in order to allow method chaining
|
|
121709
|
+
*/
|
|
121710
|
+
attachLiveChange(
|
|
121711
|
+
/**
|
|
121712
|
+
* The function to be called when the event occurs
|
|
121713
|
+
*/
|
|
121714
|
+
fnFunction: (p1: Event) => void,
|
|
121715
|
+
/**
|
|
121716
|
+
* Context object to call the event handler with. Defaults to this `sap.m.TimePicker` itself
|
|
121717
|
+
*/
|
|
121718
|
+
oListener?: object
|
|
121719
|
+
): this;
|
|
120240
121720
|
/**
|
|
120241
121721
|
* Destroys all the rules in the aggregation {@link #getRules rules}.
|
|
120242
121722
|
*
|
|
@@ -120283,6 +121763,25 @@ declare module "sap/m/TimePicker" {
|
|
|
120283
121763
|
*/
|
|
120284
121764
|
oListener?: object
|
|
120285
121765
|
): this;
|
|
121766
|
+
/**
|
|
121767
|
+
* @SINCE 1.104.0
|
|
121768
|
+
*
|
|
121769
|
+
* Detaches event handler `fnFunction` from the {@link #event:liveChange liveChange} event of this `sap.m.TimePicker`.
|
|
121770
|
+
*
|
|
121771
|
+
* The passed function and listener object must match the ones used for event registration.
|
|
121772
|
+
*
|
|
121773
|
+
* @returns Reference to `this` in order to allow method chaining
|
|
121774
|
+
*/
|
|
121775
|
+
detachLiveChange(
|
|
121776
|
+
/**
|
|
121777
|
+
* The function to be called, when the event occurs
|
|
121778
|
+
*/
|
|
121779
|
+
fnFunction: (p1: Event) => void,
|
|
121780
|
+
/**
|
|
121781
|
+
* Context object on which the given function had to be called
|
|
121782
|
+
*/
|
|
121783
|
+
oListener?: object
|
|
121784
|
+
): this;
|
|
120286
121785
|
/**
|
|
120287
121786
|
* @SINCE 1.102.0
|
|
120288
121787
|
*
|
|
@@ -120337,6 +121836,28 @@ declare module "sap/m/TimePicker" {
|
|
|
120337
121836
|
*/
|
|
120338
121837
|
oParams?: object
|
|
120339
121838
|
): void;
|
|
121839
|
+
/**
|
|
121840
|
+
* @SINCE 1.104.0
|
|
121841
|
+
*
|
|
121842
|
+
* Fires event {@link #event:liveChange liveChange} to attached listeners.
|
|
121843
|
+
*
|
|
121844
|
+
* @returns Reference to `this` in order to allow method chaining
|
|
121845
|
+
*/
|
|
121846
|
+
fireLiveChange(
|
|
121847
|
+
/**
|
|
121848
|
+
* Parameters to pass along with the event
|
|
121849
|
+
*/
|
|
121850
|
+
mParameters?: {
|
|
121851
|
+
/**
|
|
121852
|
+
* The current value of the input, after a live change event.
|
|
121853
|
+
*/
|
|
121854
|
+
value?: string;
|
|
121855
|
+
/**
|
|
121856
|
+
* The previous value of the input, before the last user interaction.
|
|
121857
|
+
*/
|
|
121858
|
+
previousValue?: string;
|
|
121859
|
+
}
|
|
121860
|
+
): this;
|
|
120340
121861
|
/**
|
|
120341
121862
|
* See:
|
|
120342
121863
|
* sap.ui.core.Control#getAccessibilityInfo
|
|
@@ -120598,7 +122119,7 @@ declare module "sap/m/TimePicker" {
|
|
|
120598
122119
|
* The rule to remove or its index or id
|
|
120599
122120
|
*/
|
|
120600
122121
|
vRule: int | string | MaskInputRule
|
|
120601
|
-
): MaskInputRule;
|
|
122122
|
+
): MaskInputRule | null;
|
|
120602
122123
|
/**
|
|
120603
122124
|
* Sets the value of the date.
|
|
120604
122125
|
*
|
|
@@ -120899,6 +122420,16 @@ declare module "sap/m/TimePicker" {
|
|
|
120899
122420
|
* Fired when `value help` dialog closes.
|
|
120900
122421
|
*/
|
|
120901
122422
|
afterValueHelpClose?: (oEvent: Event) => void;
|
|
122423
|
+
|
|
122424
|
+
/**
|
|
122425
|
+
* @SINCE 1.104.0
|
|
122426
|
+
*
|
|
122427
|
+
* Fired when the value of the `TimePicker` is changed by user interaction - each keystroke, delete, paste,
|
|
122428
|
+
* etc.
|
|
122429
|
+
*
|
|
122430
|
+
* **Note:** Browsing autocomplete suggestions doesn't fire the event.
|
|
122431
|
+
*/
|
|
122432
|
+
liveChange?: (oEvent: Event) => void;
|
|
120902
122433
|
}
|
|
120903
122434
|
}
|
|
120904
122435
|
|
|
@@ -123638,7 +125169,7 @@ declare module "sap/m/Tokenizer" {
|
|
|
123638
125169
|
* The token to remove or its index or id
|
|
123639
125170
|
*/
|
|
123640
125171
|
vToken: int | string | Token
|
|
123641
|
-
): Token;
|
|
125172
|
+
): Token | null;
|
|
123642
125173
|
/**
|
|
123643
125174
|
* @deprecated (since 1.81) - replaced by {@link MultiInput.prototype.addValidator}
|
|
123644
125175
|
*
|
|
@@ -124256,7 +125787,7 @@ declare module "sap/m/Toolbar" {
|
|
|
124256
125787
|
* The content to remove or its index or id
|
|
124257
125788
|
*/
|
|
124258
125789
|
vContent: int | string | Control
|
|
124259
|
-
): Control;
|
|
125790
|
+
): Control | null;
|
|
124260
125791
|
/**
|
|
124261
125792
|
* Sets a new value for property {@link #getActive active}.
|
|
124262
125793
|
*
|
|
@@ -124591,7 +126122,9 @@ declare module "sap/m/ToolbarLayoutData" {
|
|
|
124591
126122
|
* Determines whether the control, when in a toolbar, is shrinkable or not. For controls with fixed width
|
|
124592
126123
|
* (100px, 5rem, etc...) this property is ignored.
|
|
124593
126124
|
*
|
|
124594
|
-
*
|
|
126125
|
+
* **Notes:**
|
|
126126
|
+
* - Nested layout controls should not be shrinkable.
|
|
126127
|
+
* - This property has no effect on `sap.m.Breadcrumbs` as it is shrinkable by default.
|
|
124595
126128
|
*
|
|
124596
126129
|
* Default value is `false`.
|
|
124597
126130
|
*
|
|
@@ -124634,7 +126167,9 @@ declare module "sap/m/ToolbarLayoutData" {
|
|
|
124634
126167
|
* Determines whether the control, when in a toolbar, is shrinkable or not. For controls with fixed width
|
|
124635
126168
|
* (100px, 5rem, etc...) this property is ignored.
|
|
124636
126169
|
*
|
|
124637
|
-
*
|
|
126170
|
+
* **Notes:**
|
|
126171
|
+
* - Nested layout controls should not be shrinkable.
|
|
126172
|
+
* - This property has no effect on `sap.m.Breadcrumbs` as it is shrinkable by default.
|
|
124638
126173
|
*
|
|
124639
126174
|
* When called with a value of `null` or `undefined`, the default value of the property will be restored.
|
|
124640
126175
|
*
|
|
@@ -124655,7 +126190,9 @@ declare module "sap/m/ToolbarLayoutData" {
|
|
|
124655
126190
|
* Determines whether the control, when in a toolbar, is shrinkable or not. For controls with fixed width
|
|
124656
126191
|
* (100px, 5rem, etc...) this property is ignored.
|
|
124657
126192
|
*
|
|
124658
|
-
*
|
|
126193
|
+
* **Notes:**
|
|
126194
|
+
* - Nested layout controls should not be shrinkable.
|
|
126195
|
+
* - This property has no effect on `sap.m.Breadcrumbs` as it is shrinkable by default.
|
|
124659
126196
|
*/
|
|
124660
126197
|
shrinkable?: boolean | PropertyBindingInfo | `{${string}}`;
|
|
124661
126198
|
|
|
@@ -127726,6 +129263,22 @@ declare module "sap/m/upload/UploadSet" {
|
|
|
127726
129263
|
* @returns Instance of the default `sap.ui.unified.FileUploader`.
|
|
127727
129264
|
*/
|
|
127728
129265
|
getDefaultFileUploader(): FileUploader;
|
|
129266
|
+
/**
|
|
129267
|
+
* Gets current value of property {@link #getDragDropDescription dragDropDescription}.
|
|
129268
|
+
*
|
|
129269
|
+
* Defines custom text for the 'No data' description label.
|
|
129270
|
+
*
|
|
129271
|
+
* @returns Value of property `dragDropDescription`
|
|
129272
|
+
*/
|
|
129273
|
+
getDragDropDescription(): string;
|
|
129274
|
+
/**
|
|
129275
|
+
* Gets current value of property {@link #getDragDropText dragDropText}.
|
|
129276
|
+
*
|
|
129277
|
+
* Defines custom text for the 'No data' text label.
|
|
129278
|
+
*
|
|
129279
|
+
* @returns Value of property `dragDropText`
|
|
129280
|
+
*/
|
|
129281
|
+
getDragDropText(): string;
|
|
127729
129282
|
/**
|
|
127730
129283
|
* Gets current value of property {@link #getFileTypes fileTypes}.
|
|
127731
129284
|
*
|
|
@@ -127872,7 +129425,7 @@ declare module "sap/m/upload/UploadSet" {
|
|
|
127872
129425
|
*
|
|
127873
129426
|
* Retrieves the currently selected UploadSetItem.
|
|
127874
129427
|
*
|
|
127875
|
-
* @returns The currently selected item or null
|
|
129428
|
+
* @returns The currently selected item or `null`
|
|
127876
129429
|
*/
|
|
127877
129430
|
getSelectedItem(): UploadSetItem | null;
|
|
127878
129431
|
/**
|
|
@@ -128033,6 +129586,8 @@ declare module "sap/m/upload/UploadSet" {
|
|
|
128033
129586
|
iIndex: int
|
|
128034
129587
|
): this;
|
|
128035
129588
|
/**
|
|
129589
|
+
* @SINCE 1.103.0
|
|
129590
|
+
*
|
|
128036
129591
|
* Opens the FileUploader dialog. When an UploadSetItem is provided, this method can be used to update a
|
|
128037
129592
|
* file with a new version.
|
|
128038
129593
|
*
|
|
@@ -128088,7 +129643,7 @@ declare module "sap/m/upload/UploadSet" {
|
|
|
128088
129643
|
* The headerField to remove or its index or id
|
|
128089
129644
|
*/
|
|
128090
129645
|
vHeaderField: int | string | Item
|
|
128091
|
-
): Item;
|
|
129646
|
+
): Item | null;
|
|
128092
129647
|
/**
|
|
128093
129648
|
* Removes a incompleteItem from the aggregation {@link #getIncompleteItems incompleteItems}.
|
|
128094
129649
|
*
|
|
@@ -128099,7 +129654,7 @@ declare module "sap/m/upload/UploadSet" {
|
|
|
128099
129654
|
* The incompleteItem to remove or its index or id
|
|
128100
129655
|
*/
|
|
128101
129656
|
vIncompleteItem: int | string | UploadSetItem
|
|
128102
|
-
): UploadSetItem;
|
|
129657
|
+
): UploadSetItem | null;
|
|
128103
129658
|
/**
|
|
128104
129659
|
* Removes a item from the aggregation {@link #getItems items}.
|
|
128105
129660
|
*
|
|
@@ -128110,7 +129665,7 @@ declare module "sap/m/upload/UploadSet" {
|
|
|
128110
129665
|
* The item to remove or its index or id
|
|
128111
129666
|
*/
|
|
128112
129667
|
vItem: int | string | UploadSetItem
|
|
128113
|
-
): UploadSetItem;
|
|
129668
|
+
): UploadSetItem | null;
|
|
128114
129669
|
/**
|
|
128115
129670
|
* @SINCE 1.100.0
|
|
128116
129671
|
*
|
|
@@ -128119,6 +129674,36 @@ declare module "sap/m/upload/UploadSet" {
|
|
|
128119
129674
|
* @returns this to allow method chaining
|
|
128120
129675
|
*/
|
|
128121
129676
|
selectAll(): this;
|
|
129677
|
+
/**
|
|
129678
|
+
* Sets a new value for property {@link #getDragDropDescription dragDropDescription}.
|
|
129679
|
+
*
|
|
129680
|
+
* Defines custom text for the 'No data' description label.
|
|
129681
|
+
*
|
|
129682
|
+
* When called with a value of `null` or `undefined`, the default value of the property will be restored.
|
|
129683
|
+
*
|
|
129684
|
+
* @returns Reference to `this` in order to allow method chaining
|
|
129685
|
+
*/
|
|
129686
|
+
setDragDropDescription(
|
|
129687
|
+
/**
|
|
129688
|
+
* New value for property `dragDropDescription`
|
|
129689
|
+
*/
|
|
129690
|
+
sDragDropDescription?: string
|
|
129691
|
+
): this;
|
|
129692
|
+
/**
|
|
129693
|
+
* Sets a new value for property {@link #getDragDropText dragDropText}.
|
|
129694
|
+
*
|
|
129695
|
+
* Defines custom text for the 'No data' text label.
|
|
129696
|
+
*
|
|
129697
|
+
* When called with a value of `null` or `undefined`, the default value of the property will be restored.
|
|
129698
|
+
*
|
|
129699
|
+
* @returns Reference to `this` in order to allow method chaining
|
|
129700
|
+
*/
|
|
129701
|
+
setDragDropText(
|
|
129702
|
+
/**
|
|
129703
|
+
* New value for property `dragDropText`
|
|
129704
|
+
*/
|
|
129705
|
+
sDragDropText?: string
|
|
129706
|
+
): this;
|
|
128122
129707
|
/**
|
|
128123
129708
|
* Sets a new value for property {@link #getFileTypes fileTypes}.
|
|
128124
129709
|
*
|
|
@@ -128509,6 +130094,16 @@ declare module "sap/m/upload/UploadSet" {
|
|
|
128509
130094
|
*/
|
|
128510
130095
|
noDataDescription?: string | PropertyBindingInfo;
|
|
128511
130096
|
|
|
130097
|
+
/**
|
|
130098
|
+
* Defines custom text for the 'No data' text label.
|
|
130099
|
+
*/
|
|
130100
|
+
dragDropText?: string | PropertyBindingInfo;
|
|
130101
|
+
|
|
130102
|
+
/**
|
|
130103
|
+
* Defines custom text for the 'No data' description label.
|
|
130104
|
+
*/
|
|
130105
|
+
dragDropDescription?: string | PropertyBindingInfo;
|
|
130106
|
+
|
|
128512
130107
|
/**
|
|
128513
130108
|
* Defines whether the upload process should be triggered as soon as the file is added.
|
|
128514
130109
|
* If set to `false`, no upload is triggered when a file is added.
|
|
@@ -129067,6 +130662,14 @@ declare module "sap/m/upload/UploadSetItem" {
|
|
|
129067
130662
|
* Attributes of the item.
|
|
129068
130663
|
*/
|
|
129069
130664
|
getAttributes(): ObjectAttribute[];
|
|
130665
|
+
/**
|
|
130666
|
+
* @SINCE 1.104.0
|
|
130667
|
+
*
|
|
130668
|
+
* Returns edit state of the item.
|
|
130669
|
+
*
|
|
130670
|
+
* @returns edit state of uploadSetItem
|
|
130671
|
+
*/
|
|
130672
|
+
getEditState(): boolean;
|
|
129070
130673
|
/**
|
|
129071
130674
|
* Gets current value of property {@link #getEnabledEdit enabledEdit}.
|
|
129072
130675
|
*
|
|
@@ -129376,7 +130979,7 @@ declare module "sap/m/upload/UploadSetItem" {
|
|
|
129376
130979
|
* The attribute to remove or its index or id
|
|
129377
130980
|
*/
|
|
129378
130981
|
vAttribute: int | string | ObjectAttribute
|
|
129379
|
-
): ObjectAttribute;
|
|
130982
|
+
): ObjectAttribute | null;
|
|
129380
130983
|
/**
|
|
129381
130984
|
* @SINCE 1.90
|
|
129382
130985
|
*
|
|
@@ -129389,7 +130992,7 @@ declare module "sap/m/upload/UploadSetItem" {
|
|
|
129389
130992
|
* The headerField to remove or its index or id
|
|
129390
130993
|
*/
|
|
129391
130994
|
vHeaderField: int | string | Item
|
|
129392
|
-
): Item;
|
|
130995
|
+
): Item | null;
|
|
129393
130996
|
/**
|
|
129394
130997
|
* Removes a marker from the aggregation {@link #getMarkers markers}.
|
|
129395
130998
|
*
|
|
@@ -129400,7 +131003,7 @@ declare module "sap/m/upload/UploadSetItem" {
|
|
|
129400
131003
|
* The marker to remove or its index or id
|
|
129401
131004
|
*/
|
|
129402
131005
|
vMarker: int | string | ObjectMarker
|
|
129403
|
-
): ObjectMarker;
|
|
131006
|
+
): ObjectMarker | null;
|
|
129404
131007
|
/**
|
|
129405
131008
|
* Removes a status from the aggregation {@link #getStatuses statuses}.
|
|
129406
131009
|
*
|
|
@@ -129411,7 +131014,7 @@ declare module "sap/m/upload/UploadSetItem" {
|
|
|
129411
131014
|
* The status to remove or its index or id
|
|
129412
131015
|
*/
|
|
129413
131016
|
vStatus: int | string | ObjectStatus
|
|
129414
|
-
): ObjectStatus;
|
|
131017
|
+
): ObjectStatus | null;
|
|
129415
131018
|
/**
|
|
129416
131019
|
* Sets a new value for property {@link #getEnabledEdit enabledEdit}.
|
|
129417
131020
|
*
|
|
@@ -129723,6 +131326,8 @@ declare module "sap/m/upload/UploadSetToolbarPlaceholder" {
|
|
|
129723
131326
|
import ElementMetadata from "sap/ui/core/ElementMetadata";
|
|
129724
131327
|
|
|
129725
131328
|
/**
|
|
131329
|
+
* @SINCE 1.103.0
|
|
131330
|
+
*
|
|
129726
131331
|
* Used to create a customizable toolbar for the UploadSet. A FileUploader instance is required in the toolbar
|
|
129727
131332
|
* and it is placed by the application.
|
|
129728
131333
|
*/
|
|
@@ -131074,7 +132679,7 @@ declare module "sap/m/UploadCollection" {
|
|
|
131074
132679
|
*
|
|
131075
132680
|
* Retrieves the currently selected UploadCollectionItem.
|
|
131076
132681
|
*
|
|
131077
|
-
* @returns The currently selected item or null
|
|
132682
|
+
* @returns The currently selected item or `null`
|
|
131078
132683
|
*/
|
|
131079
132684
|
getSelectedItem(): UploadCollectionItem | null;
|
|
131080
132685
|
/**
|
|
@@ -131287,7 +132892,7 @@ declare module "sap/m/UploadCollection" {
|
|
|
131287
132892
|
* The headerParameter to remove or its index or id
|
|
131288
132893
|
*/
|
|
131289
132894
|
vHeaderParameter: int | string | UploadCollectionParameter
|
|
131290
|
-
): UploadCollectionParameter;
|
|
132895
|
+
): UploadCollectionParameter | null;
|
|
131291
132896
|
/**
|
|
131292
132897
|
* Removes a item from the aggregation {@link #getItems items}.
|
|
131293
132898
|
*
|
|
@@ -131298,7 +132903,7 @@ declare module "sap/m/UploadCollection" {
|
|
|
131298
132903
|
* The item to remove or its index or id
|
|
131299
132904
|
*/
|
|
131300
132905
|
vItem: int | string | UploadCollectionItem
|
|
131301
|
-
): UploadCollectionItem;
|
|
132906
|
+
): UploadCollectionItem | null;
|
|
131302
132907
|
/**
|
|
131303
132908
|
* Removes a parameter from the aggregation {@link #getParameters parameters}.
|
|
131304
132909
|
*
|
|
@@ -131309,7 +132914,7 @@ declare module "sap/m/UploadCollection" {
|
|
|
131309
132914
|
* The parameter to remove or its index or id
|
|
131310
132915
|
*/
|
|
131311
132916
|
vParameter: int | string | UploadCollectionParameter
|
|
131312
|
-
): UploadCollectionParameter;
|
|
132917
|
+
): UploadCollectionParameter | null;
|
|
131313
132918
|
/**
|
|
131314
132919
|
* @SINCE 1.34.0
|
|
131315
132920
|
*
|
|
@@ -132609,7 +134214,7 @@ declare module "sap/m/UploadCollectionItem" {
|
|
|
132609
134214
|
* The attribute to remove or its index or id
|
|
132610
134215
|
*/
|
|
132611
134216
|
vAttribute: int | string | ObjectAttribute
|
|
132612
|
-
): ObjectAttribute;
|
|
134217
|
+
): ObjectAttribute | null;
|
|
132613
134218
|
/**
|
|
132614
134219
|
* @SINCE 1.40.0
|
|
132615
134220
|
*
|
|
@@ -132622,7 +134227,7 @@ declare module "sap/m/UploadCollectionItem" {
|
|
|
132622
134227
|
* The marker to remove or its index or id
|
|
132623
134228
|
*/
|
|
132624
134229
|
vMarker: int | string | ObjectMarker
|
|
132625
|
-
): ObjectMarker;
|
|
134230
|
+
): ObjectMarker | null;
|
|
132626
134231
|
/**
|
|
132627
134232
|
* @SINCE 1.30.0
|
|
132628
134233
|
*
|
|
@@ -132635,7 +134240,7 @@ declare module "sap/m/UploadCollectionItem" {
|
|
|
132635
134240
|
* The status to remove or its index or id
|
|
132636
134241
|
*/
|
|
132637
134242
|
vStatus: int | string | ObjectStatus
|
|
132638
|
-
): ObjectStatus;
|
|
134243
|
+
): ObjectStatus | null;
|
|
132639
134244
|
/**
|
|
132640
134245
|
* @SINCE 1.30.0
|
|
132641
134246
|
*
|
|
@@ -133299,6 +134904,518 @@ declare module "sap/m/UploadCollectionToolbarPlaceholder" {
|
|
|
133299
134904
|
extends $ControlSettings {}
|
|
133300
134905
|
}
|
|
133301
134906
|
|
|
134907
|
+
declare module "sap/m/VariantItem" {
|
|
134908
|
+
import { default as Item, $ItemSettings } from "sap/ui/core/Item";
|
|
134909
|
+
|
|
134910
|
+
import ElementMetadata from "sap/ui/core/ElementMetadata";
|
|
134911
|
+
|
|
134912
|
+
import { PropertyBindingInfo } from "sap/ui/base/ManagedObject";
|
|
134913
|
+
|
|
134914
|
+
/**
|
|
134915
|
+
* The VariantItem class describes a variant item.
|
|
134916
|
+
*/
|
|
134917
|
+
export default class VariantItem extends Item {
|
|
134918
|
+
/**
|
|
134919
|
+
* Constructor for a new sap.m.VariantItem.
|
|
134920
|
+
*
|
|
134921
|
+
* Accepts an object literal `mSettings` that defines initial property values, aggregated and associated
|
|
134922
|
+
* objects as well as event handlers. See {@link sap.ui.base.ManagedObject#constructor} for a general description
|
|
134923
|
+
* of the syntax of the settings object.
|
|
134924
|
+
*/
|
|
134925
|
+
constructor(
|
|
134926
|
+
/**
|
|
134927
|
+
* Initial settings for the new control
|
|
134928
|
+
*/
|
|
134929
|
+
mSettings?: $VariantItemSettings
|
|
134930
|
+
);
|
|
134931
|
+
/**
|
|
134932
|
+
* Constructor for a new sap.m.VariantItem.
|
|
134933
|
+
*
|
|
134934
|
+
* Accepts an object literal `mSettings` that defines initial property values, aggregated and associated
|
|
134935
|
+
* objects as well as event handlers. See {@link sap.ui.base.ManagedObject#constructor} for a general description
|
|
134936
|
+
* of the syntax of the settings object.
|
|
134937
|
+
*/
|
|
134938
|
+
constructor(
|
|
134939
|
+
/**
|
|
134940
|
+
* ID for the new control, generated automatically if no ID is given
|
|
134941
|
+
*/
|
|
134942
|
+
sId?: string,
|
|
134943
|
+
/**
|
|
134944
|
+
* Initial settings for the new control
|
|
134945
|
+
*/
|
|
134946
|
+
mSettings?: $VariantItemSettings
|
|
134947
|
+
);
|
|
134948
|
+
|
|
134949
|
+
/**
|
|
134950
|
+
* Creates a new subclass of class sap.m.VariantItem with name `sClassName` and enriches it with the information
|
|
134951
|
+
* contained in `oClassInfo`.
|
|
134952
|
+
*
|
|
134953
|
+
* `oClassInfo` might contain the same kind of information as described in {@link sap.ui.core.Item.extend}.
|
|
134954
|
+
*
|
|
134955
|
+
* @returns Created class / constructor function
|
|
134956
|
+
*/
|
|
134957
|
+
static extend<T extends Record<string, unknown>>(
|
|
134958
|
+
/**
|
|
134959
|
+
* Name of the class being created
|
|
134960
|
+
*/
|
|
134961
|
+
sClassName: string,
|
|
134962
|
+
/**
|
|
134963
|
+
* Object literal with information about the class
|
|
134964
|
+
*/
|
|
134965
|
+
oClassInfo?: sap.ClassInfo<T, VariantItem>,
|
|
134966
|
+
/**
|
|
134967
|
+
* Constructor function for the metadata object; if not given, it defaults to the metadata implementation
|
|
134968
|
+
* used by this class
|
|
134969
|
+
*/
|
|
134970
|
+
FNMetaImpl?: Function
|
|
134971
|
+
): Function;
|
|
134972
|
+
/**
|
|
134973
|
+
* Returns a metadata object for class sap.m.VariantItem.
|
|
134974
|
+
*
|
|
134975
|
+
* @returns Metadata object describing this class
|
|
134976
|
+
*/
|
|
134977
|
+
static getMetadata(): ElementMetadata;
|
|
134978
|
+
/**
|
|
134979
|
+
* Gets current value of property {@link #getAuthor author}.
|
|
134980
|
+
*
|
|
134981
|
+
* Contains the author information of the item.
|
|
134982
|
+
*
|
|
134983
|
+
* @returns Value of property `author`
|
|
134984
|
+
*/
|
|
134985
|
+
getAuthor(): string;
|
|
134986
|
+
/**
|
|
134987
|
+
* Gets current value of property {@link #getChangeable changeable}.
|
|
134988
|
+
*
|
|
134989
|
+
* Indicates if the item is changeable.
|
|
134990
|
+
*
|
|
134991
|
+
* Default value is `false`.
|
|
134992
|
+
*
|
|
134993
|
+
* @returns Value of property `changeable`
|
|
134994
|
+
*/
|
|
134995
|
+
getChangeable(): boolean;
|
|
134996
|
+
/**
|
|
134997
|
+
* Gets current value of property {@link #getContexts contexts}.
|
|
134998
|
+
*
|
|
134999
|
+
* Contains the contexts information of the item.
|
|
135000
|
+
*
|
|
135001
|
+
* Default value is `{}`.
|
|
135002
|
+
*
|
|
135003
|
+
* @returns Value of property `contexts`
|
|
135004
|
+
*/
|
|
135005
|
+
getContexts(): object;
|
|
135006
|
+
/**
|
|
135007
|
+
* Gets current value of property {@link #getExecuteOnSelect executeOnSelect}.
|
|
135008
|
+
*
|
|
135009
|
+
* Indicates if the item is marked as apply automatically.
|
|
135010
|
+
*
|
|
135011
|
+
* Default value is `false`.
|
|
135012
|
+
*
|
|
135013
|
+
* @returns Value of property `executeOnSelect`
|
|
135014
|
+
*/
|
|
135015
|
+
getExecuteOnSelect(): boolean;
|
|
135016
|
+
/**
|
|
135017
|
+
* Gets current value of property {@link #getFavorite favorite}.
|
|
135018
|
+
*
|
|
135019
|
+
* Indicates if the item is marked as favorite.
|
|
135020
|
+
*
|
|
135021
|
+
* Default value is `true`.
|
|
135022
|
+
*
|
|
135023
|
+
* @returns Value of property `favorite`
|
|
135024
|
+
*/
|
|
135025
|
+
getFavorite(): boolean;
|
|
135026
|
+
/**
|
|
135027
|
+
* Gets current value of property {@link #getOriginalContexts originalContexts}.
|
|
135028
|
+
*
|
|
135029
|
+
* Contains the initial value of the property `contexts`. Is used for cancel operations.
|
|
135030
|
+
*
|
|
135031
|
+
* Default value is `{}`.
|
|
135032
|
+
*
|
|
135033
|
+
* @returns Value of property `originalContexts`
|
|
135034
|
+
*/
|
|
135035
|
+
getOriginalContexts(): object;
|
|
135036
|
+
/**
|
|
135037
|
+
* Gets current value of property {@link #getOriginalExecuteOnSelect originalExecuteOnSelect}.
|
|
135038
|
+
*
|
|
135039
|
+
* Contains the initial value of the property `executeOnSelect`. Is used for cancel operations.
|
|
135040
|
+
*
|
|
135041
|
+
* Default value is `false`.
|
|
135042
|
+
*
|
|
135043
|
+
* @returns Value of property `originalExecuteOnSelect`
|
|
135044
|
+
*/
|
|
135045
|
+
getOriginalExecuteOnSelect(): boolean;
|
|
135046
|
+
/**
|
|
135047
|
+
* Gets current value of property {@link #getOriginalFavorite originalFavorite}.
|
|
135048
|
+
*
|
|
135049
|
+
* Contains the initial value of the property `favorite`. Is used for cancel operations.
|
|
135050
|
+
*
|
|
135051
|
+
* Default value is `true`.
|
|
135052
|
+
*
|
|
135053
|
+
* @returns Value of property `originalFavorite`
|
|
135054
|
+
*/
|
|
135055
|
+
getOriginalFavorite(): boolean;
|
|
135056
|
+
/**
|
|
135057
|
+
* Gets current value of property {@link #getOriginalTitle originalTitle}.
|
|
135058
|
+
*
|
|
135059
|
+
* Contains the initial value of the property `title`. Is used for cancel operations.
|
|
135060
|
+
*
|
|
135061
|
+
* @returns Value of property `originalTitle`
|
|
135062
|
+
*/
|
|
135063
|
+
getOriginalTitle(): string;
|
|
135064
|
+
/**
|
|
135065
|
+
* Gets current value of property {@link #getRemove remove}.
|
|
135066
|
+
*
|
|
135067
|
+
* Indicates if the item is removable.
|
|
135068
|
+
*
|
|
135069
|
+
* Default value is `false`.
|
|
135070
|
+
*
|
|
135071
|
+
* @returns Value of property `remove`
|
|
135072
|
+
*/
|
|
135073
|
+
getRemove(): boolean;
|
|
135074
|
+
/**
|
|
135075
|
+
* Gets current value of property {@link #getRename rename}.
|
|
135076
|
+
*
|
|
135077
|
+
* Indicates if the item is renamable.
|
|
135078
|
+
*
|
|
135079
|
+
* Default value is `true`.
|
|
135080
|
+
*
|
|
135081
|
+
* @returns Value of property `rename`
|
|
135082
|
+
*/
|
|
135083
|
+
getRename(): boolean;
|
|
135084
|
+
/**
|
|
135085
|
+
* Gets current value of property {@link #getSharing sharing}.
|
|
135086
|
+
*
|
|
135087
|
+
* Contains the information is the item is public or private.
|
|
135088
|
+
*
|
|
135089
|
+
* Default value is `"private"`.
|
|
135090
|
+
*
|
|
135091
|
+
* @returns Value of property `sharing`
|
|
135092
|
+
*/
|
|
135093
|
+
getSharing(): string;
|
|
135094
|
+
/**
|
|
135095
|
+
* Gets current value of property {@link #getTitle title}.
|
|
135096
|
+
*
|
|
135097
|
+
* Contains the title if the item.
|
|
135098
|
+
*
|
|
135099
|
+
* @returns Value of property `title`
|
|
135100
|
+
*/
|
|
135101
|
+
getTitle(): string;
|
|
135102
|
+
/**
|
|
135103
|
+
* Gets current value of property {@link #getVisible visible}.
|
|
135104
|
+
*
|
|
135105
|
+
* Indicates if the item is visible.
|
|
135106
|
+
*
|
|
135107
|
+
* Default value is `true`.
|
|
135108
|
+
*
|
|
135109
|
+
* @returns Value of property `visible`
|
|
135110
|
+
*/
|
|
135111
|
+
getVisible(): boolean;
|
|
135112
|
+
/**
|
|
135113
|
+
* Sets a new value for property {@link #getAuthor author}.
|
|
135114
|
+
*
|
|
135115
|
+
* Contains the author information of the item.
|
|
135116
|
+
*
|
|
135117
|
+
* When called with a value of `null` or `undefined`, the default value of the property will be restored.
|
|
135118
|
+
*
|
|
135119
|
+
* @returns Reference to `this` in order to allow method chaining
|
|
135120
|
+
*/
|
|
135121
|
+
setAuthor(
|
|
135122
|
+
/**
|
|
135123
|
+
* New value for property `author`
|
|
135124
|
+
*/
|
|
135125
|
+
sAuthor?: string
|
|
135126
|
+
): this;
|
|
135127
|
+
/**
|
|
135128
|
+
* Sets a new value for property {@link #getChangeable changeable}.
|
|
135129
|
+
*
|
|
135130
|
+
* Indicates if the item is changeable.
|
|
135131
|
+
*
|
|
135132
|
+
* When called with a value of `null` or `undefined`, the default value of the property will be restored.
|
|
135133
|
+
*
|
|
135134
|
+
* Default value is `false`.
|
|
135135
|
+
*
|
|
135136
|
+
* @returns Reference to `this` in order to allow method chaining
|
|
135137
|
+
*/
|
|
135138
|
+
setChangeable(
|
|
135139
|
+
/**
|
|
135140
|
+
* New value for property `changeable`
|
|
135141
|
+
*/
|
|
135142
|
+
bChangeable?: boolean
|
|
135143
|
+
): this;
|
|
135144
|
+
/**
|
|
135145
|
+
* Sets a new value for property {@link #getContexts contexts}.
|
|
135146
|
+
*
|
|
135147
|
+
* Contains the contexts information of the item.
|
|
135148
|
+
*
|
|
135149
|
+
* When called with a value of `null` or `undefined`, the default value of the property will be restored.
|
|
135150
|
+
*
|
|
135151
|
+
* Default value is `{}`.
|
|
135152
|
+
*
|
|
135153
|
+
* @returns Reference to `this` in order to allow method chaining
|
|
135154
|
+
*/
|
|
135155
|
+
setContexts(
|
|
135156
|
+
/**
|
|
135157
|
+
* New value for property `contexts`
|
|
135158
|
+
*/
|
|
135159
|
+
oContexts?: object
|
|
135160
|
+
): this;
|
|
135161
|
+
/**
|
|
135162
|
+
* Sets a new value for property {@link #getExecuteOnSelect executeOnSelect}.
|
|
135163
|
+
*
|
|
135164
|
+
* Indicates if the item is marked as apply automatically.
|
|
135165
|
+
*
|
|
135166
|
+
* When called with a value of `null` or `undefined`, the default value of the property will be restored.
|
|
135167
|
+
*
|
|
135168
|
+
* Default value is `false`.
|
|
135169
|
+
*
|
|
135170
|
+
* @returns Reference to `this` in order to allow method chaining
|
|
135171
|
+
*/
|
|
135172
|
+
setExecuteOnSelect(
|
|
135173
|
+
/**
|
|
135174
|
+
* New value for property `executeOnSelect`
|
|
135175
|
+
*/
|
|
135176
|
+
bExecuteOnSelect?: boolean
|
|
135177
|
+
): this;
|
|
135178
|
+
/**
|
|
135179
|
+
* Sets a new value for property {@link #getFavorite favorite}.
|
|
135180
|
+
*
|
|
135181
|
+
* Indicates if the item is marked as favorite.
|
|
135182
|
+
*
|
|
135183
|
+
* When called with a value of `null` or `undefined`, the default value of the property will be restored.
|
|
135184
|
+
*
|
|
135185
|
+
* Default value is `true`.
|
|
135186
|
+
*
|
|
135187
|
+
* @returns Reference to `this` in order to allow method chaining
|
|
135188
|
+
*/
|
|
135189
|
+
setFavorite(
|
|
135190
|
+
/**
|
|
135191
|
+
* New value for property `favorite`
|
|
135192
|
+
*/
|
|
135193
|
+
bFavorite?: boolean
|
|
135194
|
+
): this;
|
|
135195
|
+
/**
|
|
135196
|
+
* Sets a new value for property {@link #getOriginalContexts originalContexts}.
|
|
135197
|
+
*
|
|
135198
|
+
* Contains the initial value of the property `contexts`. Is used for cancel operations.
|
|
135199
|
+
*
|
|
135200
|
+
* When called with a value of `null` or `undefined`, the default value of the property will be restored.
|
|
135201
|
+
*
|
|
135202
|
+
* Default value is `{}`.
|
|
135203
|
+
*
|
|
135204
|
+
* @returns Reference to `this` in order to allow method chaining
|
|
135205
|
+
*/
|
|
135206
|
+
setOriginalContexts(
|
|
135207
|
+
/**
|
|
135208
|
+
* New value for property `originalContexts`
|
|
135209
|
+
*/
|
|
135210
|
+
oOriginalContexts?: object
|
|
135211
|
+
): this;
|
|
135212
|
+
/**
|
|
135213
|
+
* Sets a new value for property {@link #getOriginalExecuteOnSelect originalExecuteOnSelect}.
|
|
135214
|
+
*
|
|
135215
|
+
* Contains the initial value of the property `executeOnSelect`. Is used for cancel operations.
|
|
135216
|
+
*
|
|
135217
|
+
* When called with a value of `null` or `undefined`, the default value of the property will be restored.
|
|
135218
|
+
*
|
|
135219
|
+
* Default value is `false`.
|
|
135220
|
+
*
|
|
135221
|
+
* @returns Reference to `this` in order to allow method chaining
|
|
135222
|
+
*/
|
|
135223
|
+
setOriginalExecuteOnSelect(
|
|
135224
|
+
/**
|
|
135225
|
+
* New value for property `originalExecuteOnSelect`
|
|
135226
|
+
*/
|
|
135227
|
+
bOriginalExecuteOnSelect?: boolean
|
|
135228
|
+
): this;
|
|
135229
|
+
/**
|
|
135230
|
+
* Sets a new value for property {@link #getOriginalFavorite originalFavorite}.
|
|
135231
|
+
*
|
|
135232
|
+
* Contains the initial value of the property `favorite`. Is used for cancel operations.
|
|
135233
|
+
*
|
|
135234
|
+
* When called with a value of `null` or `undefined`, the default value of the property will be restored.
|
|
135235
|
+
*
|
|
135236
|
+
* Default value is `true`.
|
|
135237
|
+
*
|
|
135238
|
+
* @returns Reference to `this` in order to allow method chaining
|
|
135239
|
+
*/
|
|
135240
|
+
setOriginalFavorite(
|
|
135241
|
+
/**
|
|
135242
|
+
* New value for property `originalFavorite`
|
|
135243
|
+
*/
|
|
135244
|
+
bOriginalFavorite?: boolean
|
|
135245
|
+
): this;
|
|
135246
|
+
/**
|
|
135247
|
+
* Sets a new value for property {@link #getOriginalTitle originalTitle}.
|
|
135248
|
+
*
|
|
135249
|
+
* Contains the initial value of the property `title`. Is used for cancel operations.
|
|
135250
|
+
*
|
|
135251
|
+
* When called with a value of `null` or `undefined`, the default value of the property will be restored.
|
|
135252
|
+
*
|
|
135253
|
+
* @returns Reference to `this` in order to allow method chaining
|
|
135254
|
+
*/
|
|
135255
|
+
setOriginalTitle(
|
|
135256
|
+
/**
|
|
135257
|
+
* New value for property `originalTitle`
|
|
135258
|
+
*/
|
|
135259
|
+
sOriginalTitle?: string
|
|
135260
|
+
): this;
|
|
135261
|
+
/**
|
|
135262
|
+
* Sets a new value for property {@link #getRemove remove}.
|
|
135263
|
+
*
|
|
135264
|
+
* Indicates if the item is removable.
|
|
135265
|
+
*
|
|
135266
|
+
* When called with a value of `null` or `undefined`, the default value of the property will be restored.
|
|
135267
|
+
*
|
|
135268
|
+
* Default value is `false`.
|
|
135269
|
+
*
|
|
135270
|
+
* @returns Reference to `this` in order to allow method chaining
|
|
135271
|
+
*/
|
|
135272
|
+
setRemove(
|
|
135273
|
+
/**
|
|
135274
|
+
* New value for property `remove`
|
|
135275
|
+
*/
|
|
135276
|
+
bRemove?: boolean
|
|
135277
|
+
): this;
|
|
135278
|
+
/**
|
|
135279
|
+
* Sets a new value for property {@link #getRename rename}.
|
|
135280
|
+
*
|
|
135281
|
+
* Indicates if the item is renamable.
|
|
135282
|
+
*
|
|
135283
|
+
* When called with a value of `null` or `undefined`, the default value of the property will be restored.
|
|
135284
|
+
*
|
|
135285
|
+
* Default value is `true`.
|
|
135286
|
+
*
|
|
135287
|
+
* @returns Reference to `this` in order to allow method chaining
|
|
135288
|
+
*/
|
|
135289
|
+
setRename(
|
|
135290
|
+
/**
|
|
135291
|
+
* New value for property `rename`
|
|
135292
|
+
*/
|
|
135293
|
+
bRename?: boolean
|
|
135294
|
+
): this;
|
|
135295
|
+
/**
|
|
135296
|
+
* Sets a new value for property {@link #getSharing sharing}.
|
|
135297
|
+
*
|
|
135298
|
+
* Contains the information is the item is public or private.
|
|
135299
|
+
*
|
|
135300
|
+
* When called with a value of `null` or `undefined`, the default value of the property will be restored.
|
|
135301
|
+
*
|
|
135302
|
+
* Default value is `"private"`.
|
|
135303
|
+
*
|
|
135304
|
+
* @returns Reference to `this` in order to allow method chaining
|
|
135305
|
+
*/
|
|
135306
|
+
setSharing(
|
|
135307
|
+
/**
|
|
135308
|
+
* New value for property `sharing`
|
|
135309
|
+
*/
|
|
135310
|
+
sSharing?: string
|
|
135311
|
+
): this;
|
|
135312
|
+
/**
|
|
135313
|
+
* Sets a new value for property {@link #getTitle title}.
|
|
135314
|
+
*
|
|
135315
|
+
* Contains the title if the item.
|
|
135316
|
+
*
|
|
135317
|
+
* When called with a value of `null` or `undefined`, the default value of the property will be restored.
|
|
135318
|
+
*
|
|
135319
|
+
* @returns Reference to `this` in order to allow method chaining
|
|
135320
|
+
*/
|
|
135321
|
+
setTitle(
|
|
135322
|
+
/**
|
|
135323
|
+
* New value for property `title`
|
|
135324
|
+
*/
|
|
135325
|
+
sTitle?: string
|
|
135326
|
+
): this;
|
|
135327
|
+
/**
|
|
135328
|
+
* Sets a new value for property {@link #getVisible visible}.
|
|
135329
|
+
*
|
|
135330
|
+
* Indicates if the item is visible.
|
|
135331
|
+
*
|
|
135332
|
+
* When called with a value of `null` or `undefined`, the default value of the property will be restored.
|
|
135333
|
+
*
|
|
135334
|
+
* Default value is `true`.
|
|
135335
|
+
*
|
|
135336
|
+
* @returns Reference to `this` in order to allow method chaining
|
|
135337
|
+
*/
|
|
135338
|
+
setVisible(
|
|
135339
|
+
/**
|
|
135340
|
+
* New value for property `visible`
|
|
135341
|
+
*/
|
|
135342
|
+
bVisible?: boolean
|
|
135343
|
+
): this;
|
|
135344
|
+
}
|
|
135345
|
+
|
|
135346
|
+
export interface $VariantItemSettings extends $ItemSettings {
|
|
135347
|
+
/**
|
|
135348
|
+
* Contains the information is the item is public or private.
|
|
135349
|
+
*/
|
|
135350
|
+
sharing?: string | PropertyBindingInfo;
|
|
135351
|
+
|
|
135352
|
+
/**
|
|
135353
|
+
* Indicates if the item is removable.
|
|
135354
|
+
*/
|
|
135355
|
+
remove?: boolean | PropertyBindingInfo | `{${string}}`;
|
|
135356
|
+
|
|
135357
|
+
/**
|
|
135358
|
+
* Indicates if the item is marked as favorite.
|
|
135359
|
+
*/
|
|
135360
|
+
favorite?: boolean | PropertyBindingInfo | `{${string}}`;
|
|
135361
|
+
|
|
135362
|
+
/**
|
|
135363
|
+
* Contains the initial value of the property `favorite`. Is used for cancel operations.
|
|
135364
|
+
*/
|
|
135365
|
+
originalFavorite?: boolean | PropertyBindingInfo | `{${string}}`;
|
|
135366
|
+
|
|
135367
|
+
/**
|
|
135368
|
+
* Indicates if the item is marked as apply automatically.
|
|
135369
|
+
*/
|
|
135370
|
+
executeOnSelect?: boolean | PropertyBindingInfo | `{${string}}`;
|
|
135371
|
+
|
|
135372
|
+
/**
|
|
135373
|
+
* Contains the initial value of the property `executeOnSelect`. Is used for cancel operations.
|
|
135374
|
+
*/
|
|
135375
|
+
originalExecuteOnSelect?: boolean | PropertyBindingInfo | `{${string}}`;
|
|
135376
|
+
|
|
135377
|
+
/**
|
|
135378
|
+
* Indicates if the item is renamable.
|
|
135379
|
+
*/
|
|
135380
|
+
rename?: boolean | PropertyBindingInfo | `{${string}}`;
|
|
135381
|
+
|
|
135382
|
+
/**
|
|
135383
|
+
* Contains the title if the item.
|
|
135384
|
+
*/
|
|
135385
|
+
title?: string | PropertyBindingInfo;
|
|
135386
|
+
|
|
135387
|
+
/**
|
|
135388
|
+
* Contains the initial value of the property `title`. Is used for cancel operations.
|
|
135389
|
+
*/
|
|
135390
|
+
originalTitle?: string | PropertyBindingInfo;
|
|
135391
|
+
|
|
135392
|
+
/**
|
|
135393
|
+
* Indicates if the item is visible.
|
|
135394
|
+
*/
|
|
135395
|
+
visible?: boolean | PropertyBindingInfo | `{${string}}`;
|
|
135396
|
+
|
|
135397
|
+
/**
|
|
135398
|
+
* Indicates if the item is changeable.
|
|
135399
|
+
*/
|
|
135400
|
+
changeable?: boolean | PropertyBindingInfo | `{${string}}`;
|
|
135401
|
+
|
|
135402
|
+
/**
|
|
135403
|
+
* Contains the author information of the item.
|
|
135404
|
+
*/
|
|
135405
|
+
author?: string | PropertyBindingInfo;
|
|
135406
|
+
|
|
135407
|
+
/**
|
|
135408
|
+
* Contains the contexts information of the item.
|
|
135409
|
+
*/
|
|
135410
|
+
contexts?: object | PropertyBindingInfo | `{${string}}`;
|
|
135411
|
+
|
|
135412
|
+
/**
|
|
135413
|
+
* Contains the initial value of the property `contexts`. Is used for cancel operations.
|
|
135414
|
+
*/
|
|
135415
|
+
originalContexts?: object | PropertyBindingInfo | `{${string}}`;
|
|
135416
|
+
}
|
|
135417
|
+
}
|
|
135418
|
+
|
|
133302
135419
|
declare module "sap/m/VBox" {
|
|
133303
135420
|
import { default as FlexBox, $FlexBoxSettings } from "sap/m/FlexBox";
|
|
133304
135421
|
|
|
@@ -133723,7 +135840,7 @@ declare module "sap/m/ViewSettingsCustomTab" {
|
|
|
133723
135840
|
* The content to remove or its index or id
|
|
133724
135841
|
*/
|
|
133725
135842
|
vContent: int | string | Control
|
|
133726
|
-
): Control;
|
|
135843
|
+
): Control | null;
|
|
133727
135844
|
/**
|
|
133728
135845
|
* Sets a new value for property {@link #getIcon icon}.
|
|
133729
135846
|
*
|
|
@@ -134539,9 +136656,9 @@ declare module "sap/m/ViewSettingsDialog" {
|
|
|
134539
136656
|
/**
|
|
134540
136657
|
* Forward method to the inner dialog method: getDomRef.
|
|
134541
136658
|
*
|
|
134542
|
-
* @returns The Element's DOM Element sub DOM Element or null
|
|
136659
|
+
* @returns The Element's DOM Element, sub DOM Element or `null`
|
|
134543
136660
|
*/
|
|
134544
|
-
getDomRef(): Element;
|
|
136661
|
+
getDomRef(): Element | null;
|
|
134545
136662
|
/**
|
|
134546
136663
|
* @SINCE 1.16
|
|
134547
136664
|
*
|
|
@@ -134928,12 +137045,12 @@ declare module "sap/m/ViewSettingsDialog" {
|
|
|
134928
137045
|
* The customTab to remove or its index or id
|
|
134929
137046
|
*/
|
|
134930
137047
|
vCustomTab: int | string | ViewSettingsCustomTab
|
|
134931
|
-
): ViewSettingsCustomTab;
|
|
137048
|
+
): ViewSettingsCustomTab | null;
|
|
134932
137049
|
/**
|
|
134933
137050
|
* Removes a filter Item and resets the remembered page if it was the filter detail page of the removed
|
|
134934
137051
|
* filter.
|
|
134935
137052
|
*
|
|
134936
|
-
* @returns The removed item or null
|
|
137053
|
+
* @returns The removed item or `null`
|
|
134937
137054
|
*/
|
|
134938
137055
|
removeFilterItem(
|
|
134939
137056
|
/**
|
|
@@ -134953,7 +137070,7 @@ declare module "sap/m/ViewSettingsDialog" {
|
|
|
134953
137070
|
* The groupItem to remove or its index or id
|
|
134954
137071
|
*/
|
|
134955
137072
|
vGroupItem: int | string | ViewSettingsItem
|
|
134956
|
-
): ViewSettingsItem;
|
|
137073
|
+
): ViewSettingsItem | null;
|
|
134957
137074
|
/**
|
|
134958
137075
|
* @SINCE 1.16
|
|
134959
137076
|
*
|
|
@@ -134966,7 +137083,7 @@ declare module "sap/m/ViewSettingsDialog" {
|
|
|
134966
137083
|
* The presetFilterItem to remove or its index or id
|
|
134967
137084
|
*/
|
|
134968
137085
|
vPresetFilterItem: int | string | ViewSettingsItem
|
|
134969
|
-
): ViewSettingsItem;
|
|
137086
|
+
): ViewSettingsItem | null;
|
|
134970
137087
|
/**
|
|
134971
137088
|
* @SINCE 1.16
|
|
134972
137089
|
*
|
|
@@ -134979,7 +137096,7 @@ declare module "sap/m/ViewSettingsDialog" {
|
|
|
134979
137096
|
* The sortItem to remove or its index or id
|
|
134980
137097
|
*/
|
|
134981
137098
|
vSortItem: int | string | ViewSettingsItem
|
|
134982
|
-
): ViewSettingsItem;
|
|
137099
|
+
): ViewSettingsItem | null;
|
|
134983
137100
|
/**
|
|
134984
137101
|
* Forward method to the inner dialog method: removeStyleClass.
|
|
134985
137102
|
*
|
|
@@ -135637,7 +137754,7 @@ declare module "sap/m/ViewSettingsFilterItem" {
|
|
|
135637
137754
|
* The item to remove or its index or id
|
|
135638
137755
|
*/
|
|
135639
137756
|
vItem: int | string | ViewSettingsItem
|
|
135640
|
-
): ViewSettingsItem;
|
|
137757
|
+
): ViewSettingsItem | null;
|
|
135641
137758
|
/**
|
|
135642
137759
|
* Sets a new value for property {@link #getMultiSelect multiSelect}.
|
|
135643
137760
|
*
|
|
@@ -136313,7 +138430,7 @@ declare module "sap/m/WheelSlider" {
|
|
|
136313
138430
|
* The item to remove or its index or id
|
|
136314
138431
|
*/
|
|
136315
138432
|
vItem: int | string | Item
|
|
136316
|
-
): Item;
|
|
138433
|
+
): Item | null;
|
|
136317
138434
|
/**
|
|
136318
138435
|
* Sets a new value for property {@link #getIsCyclic isCyclic}.
|
|
136319
138436
|
*
|
|
@@ -136598,7 +138715,7 @@ declare module "sap/m/WheelSliderContainer" {
|
|
|
136598
138715
|
* The slider to remove or its index or id
|
|
136599
138716
|
*/
|
|
136600
138717
|
vSlider: int | string | WheelSlider
|
|
136601
|
-
): WheelSlider;
|
|
138718
|
+
): WheelSlider | null;
|
|
136602
138719
|
/**
|
|
136603
138720
|
* Sets a new value for property {@link #getHeight height}.
|
|
136604
138721
|
*
|
|
@@ -137841,7 +139958,7 @@ declare module "sap/m/WizardStep" {
|
|
|
137841
139958
|
* The content to remove or its index or id
|
|
137842
139959
|
*/
|
|
137843
139960
|
vContent: int | string | Control
|
|
137844
|
-
): Control;
|
|
139961
|
+
): Control | null;
|
|
137845
139962
|
/**
|
|
137846
139963
|
* @SINCE 1.32
|
|
137847
139964
|
*
|
|
@@ -138075,7 +140192,7 @@ declare namespace sap {
|
|
|
138075
140192
|
*
|
|
138076
140193
|
* Search given control's parents and try to find iScroll.
|
|
138077
140194
|
*
|
|
138078
|
-
* @returns iScroll reference or undefined if cannot find
|
|
140195
|
+
* @returns iScroll reference or `undefined` if cannot find
|
|
138079
140196
|
*/
|
|
138080
140197
|
function getIScroll(
|
|
138081
140198
|
/**
|
|
@@ -138107,7 +140224,7 @@ declare namespace sap {
|
|
|
138107
140224
|
*
|
|
138108
140225
|
* Search given control's parents and try to find a ScrollDelegate.
|
|
138109
140226
|
*
|
|
138110
|
-
* @returns ScrollDelegate or undefined if it cannot be found
|
|
140227
|
+
* @returns ScrollDelegate or `undefined` if it cannot be found
|
|
138111
140228
|
*/
|
|
138112
140229
|
function getScrollDelegate(
|
|
138113
140230
|
/**
|
|
@@ -138270,7 +140387,8 @@ declare namespace sap {
|
|
|
138270
140387
|
/**
|
|
138271
140388
|
* Converts the given percentage value to an absolute number based on the given base size.
|
|
138272
140389
|
*
|
|
138273
|
-
* @returns The calculated size string with "px" as unit or null when the format of given parameter is
|
|
140390
|
+
* @returns The calculated size string with "px" as unit or `null` when the format of given parameter is
|
|
140391
|
+
* wrong.
|
|
138274
140392
|
*/
|
|
138275
140393
|
function calcPercentageSize(
|
|
138276
140394
|
/**
|
|
@@ -138281,7 +140399,7 @@ declare namespace sap {
|
|
|
138281
140399
|
* A float number which the calculation is based on.
|
|
138282
140400
|
*/
|
|
138283
140401
|
fBaseSize: float
|
|
138284
|
-
):
|
|
140402
|
+
): string | null;
|
|
138285
140403
|
}
|
|
138286
140404
|
/**
|
|
138287
140405
|
* Touch helper.
|
|
@@ -138320,35 +140438,6 @@ declare namespace sap {
|
|
|
138320
140438
|
): object | undefined;
|
|
138321
140439
|
}
|
|
138322
140440
|
|
|
138323
|
-
/**
|
|
138324
|
-
* Helper Class for implementing the IBar interface. Should be created once per IBar instance.
|
|
138325
|
-
*/
|
|
138326
|
-
class IBarInPageEnabler {
|
|
138327
|
-
constructor();
|
|
138328
|
-
|
|
138329
|
-
/**
|
|
138330
|
-
* Adds the sapMBarChildClass to a control.
|
|
138331
|
-
*/
|
|
138332
|
-
static addChildClassTo(
|
|
138333
|
-
/**
|
|
138334
|
-
* The sap.ui.core.Control to which the sapMBarChildClass will be added
|
|
138335
|
-
*/
|
|
138336
|
-
oControl: import("sap/ui/core/Control").default
|
|
138337
|
-
): void;
|
|
138338
|
-
/**
|
|
138339
|
-
* Renders the tooltip for the given control
|
|
138340
|
-
*/
|
|
138341
|
-
static renderTooltip(
|
|
138342
|
-
/**
|
|
138343
|
-
* the RenderManager that can be used for writing to the render output buffer.
|
|
138344
|
-
*/
|
|
138345
|
-
oRM: import("sap/ui/core/RenderManager").default,
|
|
138346
|
-
/**
|
|
138347
|
-
* an object representation of the control that should be rendered.
|
|
138348
|
-
*/
|
|
138349
|
-
oControl: import("sap/ui/core/Control").default
|
|
138350
|
-
): void;
|
|
138351
|
-
}
|
|
138352
140441
|
/**
|
|
138353
140442
|
* @SINCE 1.48.0
|
|
138354
140443
|
*
|
|
@@ -138391,7 +140480,7 @@ declare namespace sap {
|
|
|
138391
140480
|
* The action to remove or its index or id
|
|
138392
140481
|
*/
|
|
138393
140482
|
vAction: int | string | import("sap/ui/core/Item").default
|
|
138394
|
-
): import("sap/ui/core/Item").default;
|
|
140483
|
+
): import("sap/ui/core/Item").default | null;
|
|
138395
140484
|
/**
|
|
138396
140485
|
* Sets a new value for property {@link #getEnableNav enableNav}.
|
|
138397
140486
|
*
|
|
@@ -138669,14 +140758,30 @@ declare namespace sap {
|
|
|
138669
140758
|
|
|
138670
140759
|
"sap/m/p13n/Container": undefined;
|
|
138671
140760
|
|
|
140761
|
+
"sap/m/p13n/Engine": undefined;
|
|
140762
|
+
|
|
140763
|
+
"sap/m/p13n/GroupController": undefined;
|
|
140764
|
+
|
|
138672
140765
|
"sap/m/p13n/GroupPanel": undefined;
|
|
138673
140766
|
|
|
140767
|
+
"sap/m/p13n/modification/FlexModificationHandler": undefined;
|
|
140768
|
+
|
|
140769
|
+
"sap/m/p13n/modification/LocalStorageModificationHandler": undefined;
|
|
140770
|
+
|
|
140771
|
+
"sap/m/p13n/modification/ModificationHandler": undefined;
|
|
140772
|
+
|
|
140773
|
+
"sap/m/p13n/modules/AdaptationProvider": undefined;
|
|
140774
|
+
|
|
138674
140775
|
"sap/m/p13n/Popup": undefined;
|
|
138675
140776
|
|
|
138676
140777
|
"sap/m/p13n/QueryPanel": undefined;
|
|
138677
140778
|
|
|
140779
|
+
"sap/m/p13n/SelectionController": undefined;
|
|
140780
|
+
|
|
138678
140781
|
"sap/m/p13n/SelectionPanel": undefined;
|
|
138679
140782
|
|
|
140783
|
+
"sap/m/p13n/SortController": undefined;
|
|
140784
|
+
|
|
138680
140785
|
"sap/m/p13n/SortPanel": undefined;
|
|
138681
140786
|
|
|
138682
140787
|
"sap/m/P13nColumnsItem": undefined;
|
|
@@ -138971,6 +141076,8 @@ declare namespace sap {
|
|
|
138971
141076
|
|
|
138972
141077
|
"sap/m/UploadCollectionToolbarPlaceholder": undefined;
|
|
138973
141078
|
|
|
141079
|
+
"sap/m/VariantItem": undefined;
|
|
141080
|
+
|
|
138974
141081
|
"sap/m/VariantManagement": undefined;
|
|
138975
141082
|
|
|
138976
141083
|
"sap/m/VBox": undefined;
|