@openui5/ts-types 1.139.0 → 1.141.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 +102 -10
- package/types/sap.m.d.ts +457 -25
- package/types/sap.tnt.d.ts +5 -1
- package/types/sap.ui.codeeditor.d.ts +1 -1
- package/types/sap.ui.commons.d.ts +1 -1
- package/types/sap.ui.core.d.ts +280 -162
- package/types/sap.ui.dt.d.ts +1 -1
- package/types/sap.ui.fl.d.ts +3 -9
- package/types/sap.ui.integration.d.ts +13 -13
- package/types/sap.ui.layout.d.ts +5102 -5062
- package/types/sap.ui.mdc.d.ts +65 -25
- package/types/sap.ui.rta.d.ts +1 -1
- package/types/sap.ui.suite.d.ts +1 -1
- package/types/sap.ui.support.d.ts +1 -1
- package/types/sap.ui.table.d.ts +575 -4
- package/types/sap.ui.testrecorder.d.ts +1 -1
- package/types/sap.ui.unified.d.ts +53 -1
- package/types/sap.ui.ux3.d.ts +1 -1
- package/types/sap.ui.webc.common.d.ts +1 -1
- package/types/sap.ui.webc.fiori.d.ts +1 -1
- package/types/sap.ui.webc.main.d.ts +1 -1
- package/types/sap.uxap.d.ts +1 -1
package/types/sap.m.d.ts
CHANGED
|
@@ -1,4 +1,94 @@
|
|
|
1
|
-
// For Library Version: 1.
|
|
1
|
+
// For Library Version: 1.141.0
|
|
2
|
+
|
|
3
|
+
declare module "sap/m/p13n/Engine" {
|
|
4
|
+
/**
|
|
5
|
+
* The personalization state change event.
|
|
6
|
+
*
|
|
7
|
+
* @since 1.140.0
|
|
8
|
+
*/
|
|
9
|
+
export type Engine$StateChangeEvent = {
|
|
10
|
+
/**
|
|
11
|
+
* Control for which the state change event was fired.
|
|
12
|
+
*/
|
|
13
|
+
control?: sap.ui.core.Control;
|
|
14
|
+
/**
|
|
15
|
+
* Changed (delta) state of the control. The keys of the object refer to the controller keys used in the
|
|
16
|
+
* `Engine` registration. The values can be an array of any of the following types:
|
|
17
|
+
* - {@link module:sap/m/p13n/Engine$StateChangeEventSelectionState StateChangeEventSelectionState}
|
|
18
|
+
* - {@link module:sap/m/p13n/Engine$StateChangeEventSortState StateChangeEventSortState}
|
|
19
|
+
* - {@link module:sap/m/p13n/Engine$StateChangeEventGroupState StateChangeEventGroupState}
|
|
20
|
+
* - {@link module:sap/m/p13n/Engine$StateChangeEventFilterState StateChangeEventFilterState}
|
|
21
|
+
* - Custom controller state definitions
|
|
22
|
+
*/
|
|
23
|
+
state?: Record<
|
|
24
|
+
string,
|
|
25
|
+
| Engine$StateChangeEventSelectionState[]
|
|
26
|
+
| Engine$StateChangeEventSortState[]
|
|
27
|
+
| Engine$StateChangeEventGroupState[]
|
|
28
|
+
| Engine$StateChangeEventFilterState[]
|
|
29
|
+
| any[]
|
|
30
|
+
>;
|
|
31
|
+
};
|
|
32
|
+
|
|
33
|
+
/**
|
|
34
|
+
* The state for changes of the `FilterController`. The keys of the object are the filter keys used in the
|
|
35
|
+
* `Engine` registration. The values are arrays of {@link sap.ui.mdc.condition.ConditionObject ConditionObject}.
|
|
36
|
+
*
|
|
37
|
+
* @since 1.140.0
|
|
38
|
+
*/
|
|
39
|
+
export type Engine$StateChangeEventFilterState = Record<
|
|
40
|
+
string,
|
|
41
|
+
sap.m.p13n.FilterStateItem[]
|
|
42
|
+
>;
|
|
43
|
+
|
|
44
|
+
/**
|
|
45
|
+
* The state for changes of the `GroupController`.
|
|
46
|
+
*
|
|
47
|
+
* @since 1.140.0
|
|
48
|
+
*/
|
|
49
|
+
export type Engine$StateChangeEventGroupState = {
|
|
50
|
+
/**
|
|
51
|
+
* The key of the affected group order
|
|
52
|
+
*/
|
|
53
|
+
key: string;
|
|
54
|
+
/**
|
|
55
|
+
* The position of the group order
|
|
56
|
+
*/
|
|
57
|
+
index: number;
|
|
58
|
+
};
|
|
59
|
+
|
|
60
|
+
/**
|
|
61
|
+
* The state for changes of the `SelectionController`.
|
|
62
|
+
*
|
|
63
|
+
* @since 1.140.0
|
|
64
|
+
*/
|
|
65
|
+
export type Engine$StateChangeEventSelectionState = {
|
|
66
|
+
/**
|
|
67
|
+
* The key of the item affected
|
|
68
|
+
*/
|
|
69
|
+
key: string;
|
|
70
|
+
};
|
|
71
|
+
|
|
72
|
+
/**
|
|
73
|
+
* The state for changes of the `SortController`.
|
|
74
|
+
*
|
|
75
|
+
* @since 1.140.0
|
|
76
|
+
*/
|
|
77
|
+
export type Engine$StateChangeEventSortState = {
|
|
78
|
+
/**
|
|
79
|
+
* The key of the affected sort order
|
|
80
|
+
*/
|
|
81
|
+
key: string;
|
|
82
|
+
/**
|
|
83
|
+
* The position of the sort order
|
|
84
|
+
*/
|
|
85
|
+
index: number;
|
|
86
|
+
/**
|
|
87
|
+
* Indicates whether the sort order is descending
|
|
88
|
+
*/
|
|
89
|
+
descending: boolean;
|
|
90
|
+
};
|
|
91
|
+
}
|
|
2
92
|
|
|
3
93
|
declare namespace sap {
|
|
4
94
|
/**
|
|
@@ -745,7 +835,9 @@ declare namespace sap {
|
|
|
745
835
|
/**
|
|
746
836
|
* The handler function to call when the event occurs
|
|
747
837
|
*/
|
|
748
|
-
fnStateEventHandler: (
|
|
838
|
+
fnStateEventHandler: (
|
|
839
|
+
p1: import("sap/m/p13n/Engine").Engine$StateChangeEvent
|
|
840
|
+
) => void,
|
|
749
841
|
/**
|
|
750
842
|
* The context object to call the event handler with (value of `this` in the event handler function).
|
|
751
843
|
*/
|
|
@@ -2868,6 +2960,9 @@ declare namespace sap {
|
|
|
2868
2960
|
*
|
|
2869
2961
|
* This can be useful for maintaining the original structure of the data when it is pasted into a new location
|
|
2870
2962
|
* (e.g. spreadsheets).
|
|
2963
|
+
*
|
|
2964
|
+
* **Note:** Sparse copying must not be enabled in combination with `sap.ui.table.plugins.ODataV4MultiSelection`
|
|
2965
|
+
* or the `sap.ui.mdc.Table` with the `sap.ui.mdc.odata.v4.TableDelegate`.
|
|
2871
2966
|
*/
|
|
2872
2967
|
copySparse?:
|
|
2873
2968
|
| boolean
|
|
@@ -4492,6 +4587,9 @@ declare namespace sap {
|
|
|
4492
4587
|
* This can be useful for maintaining the original structure of the data when it is pasted into a new location
|
|
4493
4588
|
* (e.g. spreadsheets).
|
|
4494
4589
|
*
|
|
4590
|
+
* **Note:** Sparse copying must not be enabled in combination with `sap.ui.table.plugins.ODataV4MultiSelection`
|
|
4591
|
+
* or the `sap.ui.mdc.Table` with the `sap.ui.mdc.odata.v4.TableDelegate`.
|
|
4592
|
+
*
|
|
4495
4593
|
* Default value is `false`.
|
|
4496
4594
|
*
|
|
4497
4595
|
*
|
|
@@ -4604,6 +4702,9 @@ declare namespace sap {
|
|
|
4604
4702
|
* This can be useful for maintaining the original structure of the data when it is pasted into a new location
|
|
4605
4703
|
* (e.g. spreadsheets).
|
|
4606
4704
|
*
|
|
4705
|
+
* **Note:** Sparse copying must not be enabled in combination with `sap.ui.table.plugins.ODataV4MultiSelection`
|
|
4706
|
+
* or the `sap.ui.mdc.Table` with the `sap.ui.mdc.odata.v4.TableDelegate`.
|
|
4707
|
+
*
|
|
4607
4708
|
* When called with a value of `null` or `undefined`, the default value of the property will be restored.
|
|
4608
4709
|
*
|
|
4609
4710
|
* Default value is `false`.
|
|
@@ -7436,15 +7537,26 @@ declare namespace sap {
|
|
|
7436
7537
|
): this;
|
|
7437
7538
|
}
|
|
7438
7539
|
/**
|
|
7439
|
-
*
|
|
7440
|
-
*
|
|
7540
|
+
* The `sap.m.routing.Router` is a specialized extension of `{@link sap.ui.core.routing.Router}`, designed
|
|
7541
|
+
* specifically for the following containers in the `sap.m` library: `sap.m.App`, `sap.m.SplitApp`, or `sap.m.NavContainer`.
|
|
7542
|
+
*
|
|
7543
|
+
* It provides additional target and route configuration options that are optimized for the containers,
|
|
7544
|
+
* including support for animated transitions and navigation hierarchy levels.
|
|
7545
|
+
*
|
|
7546
|
+
* Compared to `{@link sap.ui.core.routing.Router}`, it adds support for additional Target properties:
|
|
7547
|
+
*
|
|
7548
|
+
* - `level`: Defines the hierarchical level of the target view for proper history and back navigation
|
|
7549
|
+
* handling
|
|
7550
|
+
* - `transition`: Specifies the type of transition animation between views (e.g., `slide`, `fade`)
|
|
7551
|
+
* - `transitionParameters`: Custom parameters for transitions
|
|
7552
|
+
*
|
|
7553
|
+
* For constructor parameters, see `{@link sap.ui.core.routing.Router#constructor}`.
|
|
7441
7554
|
*
|
|
7442
7555
|
* @since 1.28.1
|
|
7443
7556
|
*/
|
|
7444
7557
|
class Router extends sap.ui.core.routing.Router {
|
|
7445
7558
|
/**
|
|
7446
|
-
* Constructor for a new `sap.m.routing.Router`.
|
|
7447
|
-
* arguments.
|
|
7559
|
+
* Constructor for a new `sap.m.routing.Router`.
|
|
7448
7560
|
*/
|
|
7449
7561
|
constructor(
|
|
7450
7562
|
/**
|
|
@@ -33369,12 +33481,12 @@ declare namespace sap {
|
|
|
33369
33481
|
* for the `selected` property of the item is not used. It also needs to be turned off if the binding context
|
|
33370
33482
|
* of the item does not always point to the same entry in the model, for example, if the order of the data
|
|
33371
33483
|
* in the `JSONModel` is changed. **Note:** This feature leverages the built-in selection mechanism of the
|
|
33372
|
-
* corresponding binding context
|
|
33484
|
+
* corresponding binding context if the OData V4 model is used. Therefore, all binding-relevant limitations
|
|
33373
33485
|
* apply in this context as well. For more details, see the {@link sap.ui.model.odata.v4.Context#setSelected setSelected},
|
|
33374
33486
|
* the {@link sap.ui.model.odata.v4.ODataModel#bindList bindList}, and the {@link sap.ui.model.odata.v4.ODataMetaModel#requestValueListInfo requestValueListInfo }
|
|
33375
|
-
* API documentation. Do not enable this feature
|
|
33376
|
-
*
|
|
33377
|
-
*
|
|
33487
|
+
* API documentation. Do not enable this feature if `$$sharedRequest` or `$$clearSelectionOnFilter` is active.
|
|
33488
|
+
* **Note:** If this property is set to `false`, a possible binding context update of items (for example,
|
|
33489
|
+
* filtering or sorting the list binding) would clear the selection of the items.
|
|
33378
33490
|
*
|
|
33379
33491
|
* @since 1.16.6
|
|
33380
33492
|
*/
|
|
@@ -33599,6 +33711,20 @@ declare namespace sap {
|
|
|
33599
33711
|
itemActionPress?: (oEvent: ListBase$ItemActionPressEvent) => void;
|
|
33600
33712
|
}
|
|
33601
33713
|
|
|
33714
|
+
/**
|
|
33715
|
+
* Describes the settings that can be provided to the ListItemAction constructor.
|
|
33716
|
+
*/
|
|
33717
|
+
interface $ListItemActionSettings
|
|
33718
|
+
extends sap.m.$ListItemActionBaseSettings {
|
|
33719
|
+
/**
|
|
33720
|
+
* Defines the type of the action.
|
|
33721
|
+
*/
|
|
33722
|
+
type?:
|
|
33723
|
+
| sap.m.ListItemActionType
|
|
33724
|
+
| sap.ui.base.ManagedObject.PropertyBindingInfo
|
|
33725
|
+
| `{${string}}`;
|
|
33726
|
+
}
|
|
33727
|
+
|
|
33602
33728
|
/**
|
|
33603
33729
|
* Describes the settings that can be provided to the ListItemActionBase constructor.
|
|
33604
33730
|
*/
|
|
@@ -34641,6 +34767,13 @@ declare namespace sap {
|
|
|
34641
34767
|
* @since 1.58
|
|
34642
34768
|
*/
|
|
34643
34769
|
activeTitlePress?: (oEvent: MessageView$ActiveTitlePressEvent) => void;
|
|
34770
|
+
|
|
34771
|
+
/**
|
|
34772
|
+
* Event fired when the close button in custom header is clicked.
|
|
34773
|
+
*
|
|
34774
|
+
* @ui5-protected DO NOT USE IN APPLICATIONS (only for related classes in the framework)
|
|
34775
|
+
*/
|
|
34776
|
+
onClose?: (oEvent: sap.ui.base.Event) => void;
|
|
34644
34777
|
}
|
|
34645
34778
|
|
|
34646
34779
|
/**
|
|
@@ -38016,6 +38149,12 @@ declare namespace sap {
|
|
|
38016
38149
|
* configuration of the Mozilla Firefox browser may not allow checking the loaded content. This may also
|
|
38017
38150
|
* happen when the source PDF file is stored in a different domain. If you want no error message to be displayed
|
|
38018
38151
|
* when this event is fired, call the preventDefault() method inside the event handler.
|
|
38152
|
+
*
|
|
38153
|
+
* Modern browsers implement strict policies for validating external resources loaded within an iframe.
|
|
38154
|
+
* PDFViewer cannot determine whether the resource inside the iframe is a valid PDF by itself. As the validation
|
|
38155
|
+
* cannot be performed the sourceValidationFailed event cannot be triggered.
|
|
38156
|
+
*
|
|
38157
|
+
* @deprecated As of version 1.141.0. with no replacement.
|
|
38019
38158
|
*/
|
|
38020
38159
|
sourceValidationFailed?: (oEvent: sap.ui.base.Event) => void;
|
|
38021
38160
|
}
|
|
@@ -39123,6 +39262,7 @@ declare namespace sap {
|
|
|
39123
39262
|
/**
|
|
39124
39263
|
* Any control that needed to be displayed in the header area. When this is set, the showHeader property
|
|
39125
39264
|
* is ignored, and only this customHeader is shown on the top of popover.
|
|
39265
|
+
* **Note:** To improve accessibility, titles with heading level `H1` should be used inside the custom header.
|
|
39126
39266
|
*/
|
|
39127
39267
|
customHeader?: sap.ui.core.Control;
|
|
39128
39268
|
|
|
@@ -40842,6 +40982,16 @@ declare namespace sap {
|
|
|
40842
40982
|
| sap.ui.base.ManagedObject.PropertyBindingInfo
|
|
40843
40983
|
| `{${string}}`;
|
|
40844
40984
|
|
|
40985
|
+
/**
|
|
40986
|
+
* Defines the separator type for the two columns layout when Select is in read-only mode.
|
|
40987
|
+
*
|
|
40988
|
+
* @since 1.140
|
|
40989
|
+
*/
|
|
40990
|
+
twoColumnSeparator?:
|
|
40991
|
+
| sap.m.SelectTwoColumnSeparator
|
|
40992
|
+
| sap.ui.base.ManagedObject.PropertyBindingInfo
|
|
40993
|
+
| `{${string}}`;
|
|
40994
|
+
|
|
40845
40995
|
/**
|
|
40846
40996
|
* Defines the items contained within this control.
|
|
40847
40997
|
*
|
|
@@ -47298,6 +47448,11 @@ declare namespace sap {
|
|
|
47298
47448
|
*/
|
|
47299
47449
|
interface MessageView$LongtextLoadedEventParameters {}
|
|
47300
47450
|
|
|
47451
|
+
/**
|
|
47452
|
+
* Parameters of the MessageView#onClose event.
|
|
47453
|
+
*/
|
|
47454
|
+
interface MessageView$OnCloseEventParameters {}
|
|
47455
|
+
|
|
47301
47456
|
/**
|
|
47302
47457
|
* Parameters of the MessageView#urlValidated event.
|
|
47303
47458
|
*/
|
|
@@ -47874,6 +48029,8 @@ declare namespace sap {
|
|
|
47874
48029
|
|
|
47875
48030
|
/**
|
|
47876
48031
|
* Parameters of the PDFViewer#sourceValidationFailed event.
|
|
48032
|
+
*
|
|
48033
|
+
* @deprecated As of version 1.141.0. with no replacement.
|
|
47877
48034
|
*/
|
|
47878
48035
|
interface PDFViewer$SourceValidationFailedEventParameters {}
|
|
47879
48036
|
|
|
@@ -89465,12 +89622,12 @@ declare namespace sap {
|
|
|
89465
89622
|
* for the `selected` property of the item is not used. It also needs to be turned off if the binding context
|
|
89466
89623
|
* of the item does not always point to the same entry in the model, for example, if the order of the data
|
|
89467
89624
|
* in the `JSONModel` is changed. **Note:** This feature leverages the built-in selection mechanism of the
|
|
89468
|
-
* corresponding binding context
|
|
89625
|
+
* corresponding binding context if the OData V4 model is used. Therefore, all binding-relevant limitations
|
|
89469
89626
|
* apply in this context as well. For more details, see the {@link sap.ui.model.odata.v4.Context#setSelected setSelected},
|
|
89470
89627
|
* the {@link sap.ui.model.odata.v4.ODataModel#bindList bindList}, and the {@link sap.ui.model.odata.v4.ODataMetaModel#requestValueListInfo requestValueListInfo }
|
|
89471
|
-
* API documentation. Do not enable this feature
|
|
89472
|
-
*
|
|
89473
|
-
*
|
|
89628
|
+
* API documentation. Do not enable this feature if `$$sharedRequest` or `$$clearSelectionOnFilter` is active.
|
|
89629
|
+
* **Note:** If this property is set to `false`, a possible binding context update of items (for example,
|
|
89630
|
+
* filtering or sorting the list binding) would clear the selection of the items.
|
|
89474
89631
|
*
|
|
89475
89632
|
* Default value is `true`.
|
|
89476
89633
|
*
|
|
@@ -90166,12 +90323,12 @@ declare namespace sap {
|
|
|
90166
90323
|
* for the `selected` property of the item is not used. It also needs to be turned off if the binding context
|
|
90167
90324
|
* of the item does not always point to the same entry in the model, for example, if the order of the data
|
|
90168
90325
|
* in the `JSONModel` is changed. **Note:** This feature leverages the built-in selection mechanism of the
|
|
90169
|
-
* corresponding binding context
|
|
90326
|
+
* corresponding binding context if the OData V4 model is used. Therefore, all binding-relevant limitations
|
|
90170
90327
|
* apply in this context as well. For more details, see the {@link sap.ui.model.odata.v4.Context#setSelected setSelected},
|
|
90171
90328
|
* the {@link sap.ui.model.odata.v4.ODataModel#bindList bindList}, and the {@link sap.ui.model.odata.v4.ODataMetaModel#requestValueListInfo requestValueListInfo }
|
|
90172
|
-
* API documentation. Do not enable this feature
|
|
90173
|
-
*
|
|
90174
|
-
*
|
|
90329
|
+
* API documentation. Do not enable this feature if `$$sharedRequest` or `$$clearSelectionOnFilter` is active.
|
|
90330
|
+
* **Note:** If this property is set to `false`, a possible binding context update of items (for example,
|
|
90331
|
+
* filtering or sorting the list binding) would clear the selection of the items.
|
|
90175
90332
|
*
|
|
90176
90333
|
* When called with a value of `null` or `undefined`, the default value of the property will be restored.
|
|
90177
90334
|
*
|
|
@@ -90378,9 +90535,20 @@ declare namespace sap {
|
|
|
90378
90535
|
*
|
|
90379
90536
|
* @since 1.137
|
|
90380
90537
|
*/
|
|
90381
|
-
class ListItemAction
|
|
90382
|
-
|
|
90383
|
-
|
|
90538
|
+
class ListItemAction extends sap.m.ListItemActionBase {
|
|
90539
|
+
/**
|
|
90540
|
+
* Constructor for a new action for list items.
|
|
90541
|
+
*
|
|
90542
|
+
* Accepts an object literal `mSettings` that defines initial property values, aggregated and associated
|
|
90543
|
+
* objects as well as event handlers. See {@link sap.ui.base.ManagedObject#constructor} for a general description
|
|
90544
|
+
* of the syntax of the settings object.
|
|
90545
|
+
*/
|
|
90546
|
+
constructor(
|
|
90547
|
+
/**
|
|
90548
|
+
* Initial settings for the new control
|
|
90549
|
+
*/
|
|
90550
|
+
mSettings?: sap.m.$ListItemActionSettings
|
|
90551
|
+
);
|
|
90384
90552
|
/**
|
|
90385
90553
|
* Constructor for a new action for list items.
|
|
90386
90554
|
*
|
|
@@ -90396,14 +90564,14 @@ declare namespace sap {
|
|
|
90396
90564
|
/**
|
|
90397
90565
|
* Initial settings for the new control
|
|
90398
90566
|
*/
|
|
90399
|
-
mSettings?:
|
|
90567
|
+
mSettings?: sap.m.$ListItemActionSettings
|
|
90400
90568
|
);
|
|
90401
90569
|
|
|
90402
90570
|
/**
|
|
90403
90571
|
* Creates a new subclass of class sap.m.ListItemAction with name `sClassName` and enriches it with the
|
|
90404
90572
|
* information contained in `oClassInfo`.
|
|
90405
90573
|
*
|
|
90406
|
-
* `oClassInfo` might contain the same kind of information as described in {@link sap.
|
|
90574
|
+
* `oClassInfo` might contain the same kind of information as described in {@link sap.m.ListItemActionBase.extend}.
|
|
90407
90575
|
*
|
|
90408
90576
|
*
|
|
90409
90577
|
* @returns Created class / constructor function
|
|
@@ -90429,7 +90597,7 @@ declare namespace sap {
|
|
|
90429
90597
|
*
|
|
90430
90598
|
* @returns Metadata object describing this class
|
|
90431
90599
|
*/
|
|
90432
|
-
static getMetadata(): sap.ui.
|
|
90600
|
+
static getMetadata(): sap.ui.core.ElementMetadata;
|
|
90433
90601
|
/**
|
|
90434
90602
|
* Gets current value of property {@link #getType type}.
|
|
90435
90603
|
*
|
|
@@ -96772,6 +96940,12 @@ declare namespace sap {
|
|
|
96772
96940
|
*/
|
|
96773
96941
|
mSettings?: sap.m.$MessageViewSettings
|
|
96774
96942
|
);
|
|
96943
|
+
/**
|
|
96944
|
+
* Defines whether the custom header of details page will be shown.
|
|
96945
|
+
*
|
|
96946
|
+
* @ui5-protected DO NOT USE IN APPLICATIONS (only for related classes in the framework)
|
|
96947
|
+
*/
|
|
96948
|
+
_bShowCustomHeader: boolean;
|
|
96775
96949
|
|
|
96776
96950
|
/**
|
|
96777
96951
|
* Creates a new subclass of class sap.m.MessageView with name `sClassName` and enriches it with the information
|
|
@@ -97079,6 +97253,55 @@ declare namespace sap {
|
|
|
97079
97253
|
*/
|
|
97080
97254
|
oListener?: object
|
|
97081
97255
|
): this;
|
|
97256
|
+
/**
|
|
97257
|
+
* Attaches event handler `fnFunction` to the {@link #event:onClose onClose} event of this `sap.m.MessageView`.
|
|
97258
|
+
*
|
|
97259
|
+
* When called, the context of the event handler (its `this`) will be bound to `oListener` if specified,
|
|
97260
|
+
* otherwise it will be bound to this `sap.m.MessageView` itself.
|
|
97261
|
+
*
|
|
97262
|
+
* Event fired when the close button in custom header is clicked.
|
|
97263
|
+
*
|
|
97264
|
+
* @ui5-protected Do not call from applications (only from related classes in the framework)
|
|
97265
|
+
*
|
|
97266
|
+
* @returns Reference to `this` in order to allow method chaining
|
|
97267
|
+
*/
|
|
97268
|
+
attachOnClose(
|
|
97269
|
+
/**
|
|
97270
|
+
* An application-specific payload object that will be passed to the event handler along with the event
|
|
97271
|
+
* object when firing the event
|
|
97272
|
+
*/
|
|
97273
|
+
oData: object,
|
|
97274
|
+
/**
|
|
97275
|
+
* The function to be called when the event occurs
|
|
97276
|
+
*/
|
|
97277
|
+
fnFunction: (p1: sap.ui.base.Event) => void,
|
|
97278
|
+
/**
|
|
97279
|
+
* Context object to call the event handler with. Defaults to this `sap.m.MessageView` itself
|
|
97280
|
+
*/
|
|
97281
|
+
oListener?: object
|
|
97282
|
+
): this;
|
|
97283
|
+
/**
|
|
97284
|
+
* Attaches event handler `fnFunction` to the {@link #event:onClose onClose} event of this `sap.m.MessageView`.
|
|
97285
|
+
*
|
|
97286
|
+
* When called, the context of the event handler (its `this`) will be bound to `oListener` if specified,
|
|
97287
|
+
* otherwise it will be bound to this `sap.m.MessageView` itself.
|
|
97288
|
+
*
|
|
97289
|
+
* Event fired when the close button in custom header is clicked.
|
|
97290
|
+
*
|
|
97291
|
+
* @ui5-protected Do not call from applications (only from related classes in the framework)
|
|
97292
|
+
*
|
|
97293
|
+
* @returns Reference to `this` in order to allow method chaining
|
|
97294
|
+
*/
|
|
97295
|
+
attachOnClose(
|
|
97296
|
+
/**
|
|
97297
|
+
* The function to be called when the event occurs
|
|
97298
|
+
*/
|
|
97299
|
+
fnFunction: (p1: sap.ui.base.Event) => void,
|
|
97300
|
+
/**
|
|
97301
|
+
* Context object to call the event handler with. Defaults to this `sap.m.MessageView` itself
|
|
97302
|
+
*/
|
|
97303
|
+
oListener?: object
|
|
97304
|
+
): this;
|
|
97082
97305
|
/**
|
|
97083
97306
|
* Attaches event handler `fnFunction` to the {@link #event:urlValidated urlValidated} event of this `sap.m.MessageView`.
|
|
97084
97307
|
*
|
|
@@ -97234,6 +97457,25 @@ declare namespace sap {
|
|
|
97234
97457
|
*/
|
|
97235
97458
|
oListener?: object
|
|
97236
97459
|
): this;
|
|
97460
|
+
/**
|
|
97461
|
+
* Detaches event handler `fnFunction` from the {@link #event:onClose onClose} event of this `sap.m.MessageView`.
|
|
97462
|
+
*
|
|
97463
|
+
* The passed function and listener object must match the ones used for event registration.
|
|
97464
|
+
*
|
|
97465
|
+
* @ui5-protected Do not call from applications (only from related classes in the framework)
|
|
97466
|
+
*
|
|
97467
|
+
* @returns Reference to `this` in order to allow method chaining
|
|
97468
|
+
*/
|
|
97469
|
+
detachOnClose(
|
|
97470
|
+
/**
|
|
97471
|
+
* The function to be called, when the event occurs
|
|
97472
|
+
*/
|
|
97473
|
+
fnFunction: (p1: sap.ui.base.Event) => void,
|
|
97474
|
+
/**
|
|
97475
|
+
* Context object on which the given function had to be called
|
|
97476
|
+
*/
|
|
97477
|
+
oListener?: object
|
|
97478
|
+
): this;
|
|
97237
97479
|
/**
|
|
97238
97480
|
* Detaches event handler `fnFunction` from the {@link #event:urlValidated urlValidated} event of this `sap.m.MessageView`.
|
|
97239
97481
|
*
|
|
@@ -97319,6 +97561,19 @@ declare namespace sap {
|
|
|
97319
97561
|
*/
|
|
97320
97562
|
mParameters?: object
|
|
97321
97563
|
): this;
|
|
97564
|
+
/**
|
|
97565
|
+
* Fires event {@link #event:onClose onClose} to attached listeners.
|
|
97566
|
+
*
|
|
97567
|
+
* @ui5-protected Do not call from applications (only from related classes in the framework)
|
|
97568
|
+
*
|
|
97569
|
+
* @returns Reference to `this` in order to allow method chaining
|
|
97570
|
+
*/
|
|
97571
|
+
fireOnClose(
|
|
97572
|
+
/**
|
|
97573
|
+
* Parameters to pass along with the event
|
|
97574
|
+
*/
|
|
97575
|
+
mParameters?: object
|
|
97576
|
+
): this;
|
|
97322
97577
|
/**
|
|
97323
97578
|
* Fires event {@link #event:urlValidated urlValidated} to attached listeners.
|
|
97324
97579
|
*
|
|
@@ -97352,6 +97607,15 @@ declare namespace sap {
|
|
|
97352
97607
|
* @returns Value of property `asyncURLHandler`
|
|
97353
97608
|
*/
|
|
97354
97609
|
getAsyncURLHandler(): Function;
|
|
97610
|
+
/**
|
|
97611
|
+
* Returns the close button used in the header of the MessageView. The button is only visible on non-phone
|
|
97612
|
+
* devices and triggers the `onClose` event when pressed.
|
|
97613
|
+
*
|
|
97614
|
+
* @ui5-protected Do not call from applications (only from related classes in the framework)
|
|
97615
|
+
*
|
|
97616
|
+
* @returns The close button instance.
|
|
97617
|
+
*/
|
|
97618
|
+
getCloseBtn(): sap.m.Button;
|
|
97355
97619
|
/**
|
|
97356
97620
|
* Gets current value of property {@link #getGroupItems groupItems}.
|
|
97357
97621
|
*
|
|
@@ -97418,6 +97682,17 @@ declare namespace sap {
|
|
|
97418
97682
|
*/
|
|
97419
97683
|
iIndex: int
|
|
97420
97684
|
): this;
|
|
97685
|
+
/**
|
|
97686
|
+
* Inserts a title into the given title container of the MessageView's header.
|
|
97687
|
+
*
|
|
97688
|
+
* @ui5-protected Do not call from applications (only from related classes in the framework)
|
|
97689
|
+
*/
|
|
97690
|
+
insertTitle(
|
|
97691
|
+
/**
|
|
97692
|
+
* The parent control where the title should be inserted.
|
|
97693
|
+
*/
|
|
97694
|
+
oTitleParent: sap.ui.core.Control
|
|
97695
|
+
): void;
|
|
97421
97696
|
/**
|
|
97422
97697
|
* Navigates back to the list page
|
|
97423
97698
|
*/
|
|
@@ -97525,6 +97800,13 @@ declare namespace sap {
|
|
|
97525
97800
|
*/
|
|
97526
97801
|
bShowDetailsPageHeader?: boolean
|
|
97527
97802
|
): this;
|
|
97803
|
+
/**
|
|
97804
|
+
* Sets up the header for the MessageView's ListPage based on the current configuration. If `showCustomHeader`
|
|
97805
|
+
* is enabled, a custom header and a sub-header are applied. Otherwise, a standard list header is used.
|
|
97806
|
+
*
|
|
97807
|
+
* @ui5-protected Do not call from applications (only from related classes in the framework)
|
|
97808
|
+
*/
|
|
97809
|
+
setupCustomHeader(): void;
|
|
97528
97810
|
}
|
|
97529
97811
|
/**
|
|
97530
97812
|
* The MultiComboBox control provides a list box with items and a text field allowing the user to either
|
|
@@ -115962,6 +116244,11 @@ declare namespace sap {
|
|
|
115962
116244
|
* happen when the source PDF file is stored in a different domain. If you want no error message to be displayed
|
|
115963
116245
|
* when this event is fired, call the preventDefault() method inside the event handler.
|
|
115964
116246
|
*
|
|
116247
|
+
* Modern browsers implement strict policies for validating external resources loaded within an iframe.
|
|
116248
|
+
* PDFViewer cannot determine whether the resource inside the iframe is a valid PDF by itself. As the validation
|
|
116249
|
+
* cannot be performed the sourceValidationFailed event cannot be triggered.
|
|
116250
|
+
*
|
|
116251
|
+
* @deprecated As of version 1.141.0. with no replacement.
|
|
115965
116252
|
*
|
|
115966
116253
|
* @returns Reference to `this` in order to allow method chaining
|
|
115967
116254
|
*/
|
|
@@ -115992,6 +116279,11 @@ declare namespace sap {
|
|
|
115992
116279
|
* happen when the source PDF file is stored in a different domain. If you want no error message to be displayed
|
|
115993
116280
|
* when this event is fired, call the preventDefault() method inside the event handler.
|
|
115994
116281
|
*
|
|
116282
|
+
* Modern browsers implement strict policies for validating external resources loaded within an iframe.
|
|
116283
|
+
* PDFViewer cannot determine whether the resource inside the iframe is a valid PDF by itself. As the validation
|
|
116284
|
+
* cannot be performed the sourceValidationFailed event cannot be triggered.
|
|
116285
|
+
*
|
|
116286
|
+
* @deprecated As of version 1.141.0. with no replacement.
|
|
115995
116287
|
*
|
|
115996
116288
|
* @returns Reference to `this` in order to allow method chaining
|
|
115997
116289
|
*/
|
|
@@ -116061,6 +116353,7 @@ declare namespace sap {
|
|
|
116061
116353
|
*
|
|
116062
116354
|
* The passed function and listener object must match the ones used for event registration.
|
|
116063
116355
|
*
|
|
116356
|
+
* @deprecated As of version 1.141.0. with no replacement.
|
|
116064
116357
|
*
|
|
116065
116358
|
* @returns Reference to `this` in order to allow method chaining
|
|
116066
116359
|
*/
|
|
@@ -116107,6 +116400,7 @@ declare namespace sap {
|
|
|
116107
116400
|
/**
|
|
116108
116401
|
* Fires event {@link #event:sourceValidationFailed sourceValidationFailed} to attached listeners.
|
|
116109
116402
|
*
|
|
116403
|
+
* @deprecated As of version 1.141.0. with no replacement.
|
|
116110
116404
|
* @ui5-protected Do not call from applications (only from related classes in the framework)
|
|
116111
116405
|
*
|
|
116112
116406
|
* @returns Reference to `this` in order to allow method chaining
|
|
@@ -121206,6 +121500,7 @@ declare namespace sap {
|
|
|
121206
121500
|
*
|
|
121207
121501
|
* Any control that needed to be displayed in the header area. When this is set, the showHeader property
|
|
121208
121502
|
* is ignored, and only this customHeader is shown on the top of popover.
|
|
121503
|
+
* **Note:** To improve accessibility, titles with heading level `H1` should be used inside the custom header.
|
|
121209
121504
|
*/
|
|
121210
121505
|
getCustomHeader(): sap.ui.core.Control;
|
|
121211
121506
|
/**
|
|
@@ -131036,6 +131331,18 @@ declare namespace sap {
|
|
|
131036
131331
|
* @returns Value of property `textDirection`
|
|
131037
131332
|
*/
|
|
131038
131333
|
getTextDirection(): sap.ui.core.TextDirection;
|
|
131334
|
+
/**
|
|
131335
|
+
* Gets current value of property {@link #getTwoColumnSeparator twoColumnSeparator}.
|
|
131336
|
+
*
|
|
131337
|
+
* Defines the separator type for the two columns layout when Select is in read-only mode.
|
|
131338
|
+
*
|
|
131339
|
+
* Default value is `Dash`.
|
|
131340
|
+
*
|
|
131341
|
+
* @since 1.140
|
|
131342
|
+
*
|
|
131343
|
+
* @returns Value of property `twoColumnSeparator`
|
|
131344
|
+
*/
|
|
131345
|
+
getTwoColumnSeparator(): sap.m.SelectTwoColumnSeparator;
|
|
131039
131346
|
/**
|
|
131040
131347
|
* Gets current value of property {@link #getType type}.
|
|
131041
131348
|
*
|
|
@@ -131524,6 +131831,25 @@ declare namespace sap {
|
|
|
131524
131831
|
*/
|
|
131525
131832
|
sTextDirection?: sap.ui.core.TextDirection
|
|
131526
131833
|
): this;
|
|
131834
|
+
/**
|
|
131835
|
+
* Sets a new value for property {@link #getTwoColumnSeparator twoColumnSeparator}.
|
|
131836
|
+
*
|
|
131837
|
+
* Defines the separator type for the two columns layout when Select is in read-only mode.
|
|
131838
|
+
*
|
|
131839
|
+
* When called with a value of `null` or `undefined`, the default value of the property will be restored.
|
|
131840
|
+
*
|
|
131841
|
+
* Default value is `Dash`.
|
|
131842
|
+
*
|
|
131843
|
+
* @since 1.140
|
|
131844
|
+
*
|
|
131845
|
+
* @returns Reference to `this` in order to allow method chaining
|
|
131846
|
+
*/
|
|
131847
|
+
setTwoColumnSeparator(
|
|
131848
|
+
/**
|
|
131849
|
+
* New value for property `twoColumnSeparator`
|
|
131850
|
+
*/
|
|
131851
|
+
sTwoColumnSeparator?: sap.m.SelectTwoColumnSeparator
|
|
131852
|
+
): this;
|
|
131527
131853
|
/**
|
|
131528
131854
|
* Sets a new value for property {@link #getType type}.
|
|
131529
131855
|
*
|
|
@@ -145268,6 +145594,18 @@ declare namespace sap {
|
|
|
145268
145594
|
*/
|
|
145269
145595
|
bSuppressInvalidation: boolean
|
|
145270
145596
|
): this;
|
|
145597
|
+
/**
|
|
145598
|
+
* Property setter for the icon
|
|
145599
|
+
*
|
|
145600
|
+
*
|
|
145601
|
+
* @returns `this` to allow method chaining
|
|
145602
|
+
*/
|
|
145603
|
+
setTooltip(
|
|
145604
|
+
/**
|
|
145605
|
+
* new value of the tooltip aggregation
|
|
145606
|
+
*/
|
|
145607
|
+
sTooltip: string | sap.ui.core.TooltipBase
|
|
145608
|
+
): this;
|
|
145271
145609
|
}
|
|
145272
145610
|
/**
|
|
145273
145611
|
* The `sap.m.Table` control provides a set of sophisticated and easy-to-use functions for responsive table
|
|
@@ -151782,7 +152120,8 @@ declare namespace sap {
|
|
|
151782
152120
|
setSupport2400(bSupport2400: boolean): this;
|
|
151783
152121
|
}
|
|
151784
152122
|
/**
|
|
151785
|
-
* A picker clocks container control used inside the {@link sap.m.TimePicker}.
|
|
152123
|
+
* A picker clocks container control used inside the {@link sap.m.TimePicker}. If you use the control standalone,
|
|
152124
|
+
* please call the {@link #prepareForOpen} method before opening or displaying it.
|
|
151786
152125
|
*
|
|
151787
152126
|
* @since 1.90
|
|
151788
152127
|
*/
|
|
@@ -160073,6 +160412,8 @@ declare namespace sap {
|
|
|
160073
160412
|
): this;
|
|
160074
160413
|
/**
|
|
160075
160414
|
* Enables the programmatic selection of a variant.
|
|
160415
|
+
*
|
|
160416
|
+
* @since 1.121
|
|
160076
160417
|
*/
|
|
160077
160418
|
setCurrentVariantKey(
|
|
160078
160419
|
/**
|
|
@@ -164660,6 +165001,66 @@ declare namespace sap {
|
|
|
164660
165001
|
* Accent 9
|
|
164661
165002
|
*/
|
|
164662
165003
|
Accent9 = "Accent9",
|
|
165004
|
+
/**
|
|
165005
|
+
* Indication 1
|
|
165006
|
+
*
|
|
165007
|
+
* @since 1.140.0
|
|
165008
|
+
*/
|
|
165009
|
+
Indication1 = "Indication1",
|
|
165010
|
+
/**
|
|
165011
|
+
* Indication 10
|
|
165012
|
+
*
|
|
165013
|
+
* @since 1.140.0
|
|
165014
|
+
*/
|
|
165015
|
+
Indication10 = "Indication10",
|
|
165016
|
+
/**
|
|
165017
|
+
* Indication 2
|
|
165018
|
+
*
|
|
165019
|
+
* @since 1.140.0
|
|
165020
|
+
*/
|
|
165021
|
+
Indication2 = "Indication2",
|
|
165022
|
+
/**
|
|
165023
|
+
* Indication 3
|
|
165024
|
+
*
|
|
165025
|
+
* @since 1.140.0
|
|
165026
|
+
*/
|
|
165027
|
+
Indication3 = "Indication3",
|
|
165028
|
+
/**
|
|
165029
|
+
* Indication 4
|
|
165030
|
+
*
|
|
165031
|
+
* @since 1.140.0
|
|
165032
|
+
*/
|
|
165033
|
+
Indication4 = "Indication4",
|
|
165034
|
+
/**
|
|
165035
|
+
* Indication 5
|
|
165036
|
+
*
|
|
165037
|
+
* @since 1.140.0
|
|
165038
|
+
*/
|
|
165039
|
+
Indication5 = "Indication5",
|
|
165040
|
+
/**
|
|
165041
|
+
* Indication 6
|
|
165042
|
+
*
|
|
165043
|
+
* @since 1.140.0
|
|
165044
|
+
*/
|
|
165045
|
+
Indication6 = "Indication6",
|
|
165046
|
+
/**
|
|
165047
|
+
* Indication 7
|
|
165048
|
+
*
|
|
165049
|
+
* @since 1.140.0
|
|
165050
|
+
*/
|
|
165051
|
+
Indication7 = "Indication7",
|
|
165052
|
+
/**
|
|
165053
|
+
* Indication 8
|
|
165054
|
+
*
|
|
165055
|
+
* @since 1.140.0
|
|
165056
|
+
*/
|
|
165057
|
+
Indication8 = "Indication8",
|
|
165058
|
+
/**
|
|
165059
|
+
* Indication 9
|
|
165060
|
+
*
|
|
165061
|
+
* @since 1.140.0
|
|
165062
|
+
*/
|
|
165063
|
+
Indication9 = "Indication9",
|
|
164663
165064
|
}
|
|
164664
165065
|
/**
|
|
164665
165066
|
* Possible background color options for the {@link sap.m.Avatar} control.
|
|
@@ -167525,6 +167926,27 @@ declare namespace sap {
|
|
|
167525
167926
|
*/
|
|
167526
167927
|
None = "None",
|
|
167527
167928
|
}
|
|
167929
|
+
/**
|
|
167930
|
+
* Enumeration for different separators for two columns layout when Select is in read-only mode.
|
|
167931
|
+
*
|
|
167932
|
+
* This enum is part of the 'sap/m/library' module export and must be accessed by the property 'SelectTwoColumnSeparator'.
|
|
167933
|
+
*
|
|
167934
|
+
* @since 1.140
|
|
167935
|
+
*/
|
|
167936
|
+
enum SelectTwoColumnSeparator {
|
|
167937
|
+
/**
|
|
167938
|
+
* Will show bullet(·) as separator on two columns layout when Select is in read-only mode.
|
|
167939
|
+
*/
|
|
167940
|
+
Bullet = "Bullet",
|
|
167941
|
+
/**
|
|
167942
|
+
* Will show N-dash(–) as separator on two columns layout when Select is in read-only mode.
|
|
167943
|
+
*/
|
|
167944
|
+
Dash = "Dash",
|
|
167945
|
+
/**
|
|
167946
|
+
* Will show vertical line(|) as separator on two columns layout when Select is in read-only mode.
|
|
167947
|
+
*/
|
|
167948
|
+
VerticalLine = "VerticalLine",
|
|
167949
|
+
}
|
|
167528
167950
|
/**
|
|
167529
167951
|
* Enumeration for different Select types.
|
|
167530
167952
|
*
|
|
@@ -169596,6 +170018,14 @@ declare namespace sap {
|
|
|
169596
170018
|
MessageView
|
|
169597
170019
|
>;
|
|
169598
170020
|
|
|
170021
|
+
/**
|
|
170022
|
+
* Event object of the MessageView#onClose event.
|
|
170023
|
+
*/
|
|
170024
|
+
type MessageView$OnCloseEvent = sap.ui.base.Event<
|
|
170025
|
+
MessageView$OnCloseEventParameters,
|
|
170026
|
+
MessageView
|
|
170027
|
+
>;
|
|
170028
|
+
|
|
169599
170029
|
/**
|
|
169600
170030
|
* Event object of the MessageView#urlValidated event.
|
|
169601
170031
|
*/
|
|
@@ -169982,6 +170412,8 @@ declare namespace sap {
|
|
|
169982
170412
|
|
|
169983
170413
|
/**
|
|
169984
170414
|
* Event object of the PDFViewer#sourceValidationFailed event.
|
|
170415
|
+
*
|
|
170416
|
+
* @deprecated As of version 1.141.0. with no replacement.
|
|
169985
170417
|
*/
|
|
169986
170418
|
type PDFViewer$SourceValidationFailedEvent = sap.ui.base.Event<
|
|
169987
170419
|
PDFViewer$SourceValidationFailedEventParameters,
|