@openui5/types 1.120.10 → 1.121.1
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 +124 -45
- package/types/sap.m.d.ts +2103 -312
- package/types/sap.tnt.d.ts +628 -113
- package/types/sap.ui.codeeditor.d.ts +10 -6
- package/types/sap.ui.commons.d.ts +92 -8
- package/types/sap.ui.core.d.ts +500 -186
- package/types/sap.ui.dt.d.ts +1 -1
- package/types/sap.ui.fl.d.ts +91 -68
- package/types/sap.ui.integration.d.ts +51 -4
- package/types/sap.ui.layout.d.ts +214 -27
- package/types/sap.ui.mdc.d.ts +1544 -811
- package/types/sap.ui.rta.d.ts +1 -1
- package/types/sap.ui.suite.d.ts +3 -1
- package/types/sap.ui.support.d.ts +28 -4
- package/types/sap.ui.table.d.ts +57 -7
- package/types/sap.ui.testrecorder.d.ts +1 -1
- package/types/sap.ui.unified.d.ts +157 -54
- package/types/sap.ui.ux3.d.ts +30 -12
- package/types/sap.ui.webc.common.d.ts +1 -1
- package/types/sap.ui.webc.fiori.d.ts +49 -1
- package/types/sap.ui.webc.main.d.ts +144 -9
- package/types/sap.uxap.d.ts +52 -5
package/types/sap.ui.rta.d.ts
CHANGED
package/types/sap.ui.suite.d.ts
CHANGED
|
@@ -1,8 +1,10 @@
|
|
|
1
|
-
// For Library Version: 1.
|
|
1
|
+
// For Library Version: 1.121.1
|
|
2
2
|
|
|
3
3
|
declare module "sap/ui/suite/library" {
|
|
4
4
|
/**
|
|
5
5
|
* Defined color values for the Task Circle Control
|
|
6
|
+
*
|
|
7
|
+
* This enum is part of the 'sap/ui/suite/library' module export and must be accessed by the property 'TaskCircleColor'.
|
|
6
8
|
*/
|
|
7
9
|
export enum TaskCircleColor {
|
|
8
10
|
/**
|
|
@@ -1,9 +1,12 @@
|
|
|
1
|
-
// For Library Version: 1.
|
|
1
|
+
// For Library Version: 1.121.1
|
|
2
2
|
|
|
3
3
|
declare module "sap/ui/support/library" {
|
|
4
4
|
/**
|
|
5
5
|
* Defines the Audiences.
|
|
6
6
|
*
|
|
7
|
+
* This enum is part of the 'sap/ui/support/library' module export and must be accessed by the property
|
|
8
|
+
* 'Audiences'.
|
|
9
|
+
*
|
|
7
10
|
* @since 1.50
|
|
8
11
|
*/
|
|
9
12
|
export enum Audiences {
|
|
@@ -23,6 +26,9 @@ declare module "sap/ui/support/library" {
|
|
|
23
26
|
/**
|
|
24
27
|
* Issue Categories.
|
|
25
28
|
*
|
|
29
|
+
* This enum is part of the 'sap/ui/support/library' module export and must be accessed by the property
|
|
30
|
+
* 'Categories'.
|
|
31
|
+
*
|
|
26
32
|
* @since 1.50
|
|
27
33
|
*/
|
|
28
34
|
export enum Categories {
|
|
@@ -82,6 +88,9 @@ declare module "sap/ui/support/library" {
|
|
|
82
88
|
/**
|
|
83
89
|
* Analysis history formats.
|
|
84
90
|
*
|
|
91
|
+
* This enum is part of the 'sap/ui/support/library' module export and must be accessed by the property
|
|
92
|
+
* 'HistoryFormats'.
|
|
93
|
+
*
|
|
85
94
|
* @since 1.58
|
|
86
95
|
*/
|
|
87
96
|
export enum HistoryFormats {
|
|
@@ -122,6 +131,9 @@ declare module "sap/ui/support/library" {
|
|
|
122
131
|
/**
|
|
123
132
|
* Defines severity types.
|
|
124
133
|
*
|
|
134
|
+
* This enum is part of the 'sap/ui/support/library' module export and must be accessed by the property
|
|
135
|
+
* 'Severity'.
|
|
136
|
+
*
|
|
125
137
|
* @since 1.50
|
|
126
138
|
*/
|
|
127
139
|
export enum Severity {
|
|
@@ -141,6 +153,9 @@ declare module "sap/ui/support/library" {
|
|
|
141
153
|
/**
|
|
142
154
|
* Contains the available system presets.
|
|
143
155
|
*
|
|
156
|
+
* This enum is part of the 'sap/ui/support/library' module export and must be accessed by the property
|
|
157
|
+
* 'SystemPresets'.
|
|
158
|
+
*
|
|
144
159
|
* @since 1.60
|
|
145
160
|
*/
|
|
146
161
|
export enum SystemPresets {
|
|
@@ -211,7 +226,10 @@ declare module "sap/ui/support/supportRules/ExecutionScope" {
|
|
|
211
226
|
* @since 1.48
|
|
212
227
|
*/
|
|
213
228
|
export default class ExecutionScope {
|
|
214
|
-
|
|
229
|
+
/**
|
|
230
|
+
* @ui5-protected Do not call from applications (only from related classes in the framework)
|
|
231
|
+
*/
|
|
232
|
+
protected constructor();
|
|
215
233
|
|
|
216
234
|
/**
|
|
217
235
|
*
|
|
@@ -402,7 +420,10 @@ declare namespace sap {
|
|
|
402
420
|
* Usage: The CoreFacade is passed as second argument to all rule check functions.
|
|
403
421
|
*/
|
|
404
422
|
class CoreFacade {
|
|
405
|
-
|
|
423
|
+
/**
|
|
424
|
+
* @ui5-protected Do not call from applications (only from related classes in the framework)
|
|
425
|
+
*/
|
|
426
|
+
protected constructor();
|
|
406
427
|
|
|
407
428
|
/**
|
|
408
429
|
* Gets the Components from the Core object.
|
|
@@ -427,7 +448,10 @@ declare namespace sap {
|
|
|
427
448
|
* Usage: The IssueManagerFacade is passed as first argument to all rule check functions.
|
|
428
449
|
*/
|
|
429
450
|
class IssueManagerFacade {
|
|
430
|
-
|
|
451
|
+
/**
|
|
452
|
+
* @ui5-protected Do not call from applications (only from related classes in the framework)
|
|
453
|
+
*/
|
|
454
|
+
protected constructor();
|
|
431
455
|
|
|
432
456
|
/**
|
|
433
457
|
* Adds issue
|
package/types/sap.ui.table.d.ts
CHANGED
|
@@ -1,10 +1,12 @@
|
|
|
1
|
-
// For Library Version: 1.
|
|
1
|
+
// For Library Version: 1.121.1
|
|
2
2
|
|
|
3
3
|
declare module "sap/ui/table/library" {
|
|
4
4
|
import TreeAutoExpandMode1 from "sap/ui/model/TreeAutoExpandMode";
|
|
5
5
|
|
|
6
6
|
/**
|
|
7
7
|
* Details about the group event to distinguish between different actions associated with grouping
|
|
8
|
+
*
|
|
9
|
+
* This enum is part of the 'sap/ui/table/library' module export and must be accessed by the property 'GroupEventType'.
|
|
8
10
|
*/
|
|
9
11
|
export enum GroupEventType {
|
|
10
12
|
/**
|
|
@@ -39,6 +41,8 @@ declare module "sap/ui/table/library" {
|
|
|
39
41
|
/**
|
|
40
42
|
* Navigation mode of the table
|
|
41
43
|
*
|
|
44
|
+
* This enum is part of the 'sap/ui/table/library' module export and must be accessed by the property 'NavigationMode'.
|
|
45
|
+
*
|
|
42
46
|
* @deprecated (since 1.38)
|
|
43
47
|
*/
|
|
44
48
|
export enum NavigationMode {
|
|
@@ -59,6 +63,8 @@ declare module "sap/ui/table/library" {
|
|
|
59
63
|
/**
|
|
60
64
|
* Enumeration of the `ResetAllMode` that can be used in a `TablePersoController`.
|
|
61
65
|
*
|
|
66
|
+
* This enum is part of the 'sap/ui/table/library' module export and must be accessed by the property 'ResetAllMode'.
|
|
67
|
+
*
|
|
62
68
|
* @deprecated (since 1.115)
|
|
63
69
|
*/
|
|
64
70
|
export enum ResetAllMode {
|
|
@@ -77,6 +83,8 @@ declare module "sap/ui/table/library" {
|
|
|
77
83
|
}
|
|
78
84
|
/**
|
|
79
85
|
* Row Action types.
|
|
86
|
+
*
|
|
87
|
+
* This enum is part of the 'sap/ui/table/library' module export and must be accessed by the property 'RowActionType'.
|
|
80
88
|
*/
|
|
81
89
|
export enum RowActionType {
|
|
82
90
|
/**
|
|
@@ -94,6 +102,8 @@ declare module "sap/ui/table/library" {
|
|
|
94
102
|
}
|
|
95
103
|
/**
|
|
96
104
|
* Selection behavior of the table
|
|
105
|
+
*
|
|
106
|
+
* This enum is part of the 'sap/ui/table/library' module export and must be accessed by the property 'SelectionBehavior'.
|
|
97
107
|
*/
|
|
98
108
|
export enum SelectionBehavior {
|
|
99
109
|
/**
|
|
@@ -111,6 +121,8 @@ declare module "sap/ui/table/library" {
|
|
|
111
121
|
}
|
|
112
122
|
/**
|
|
113
123
|
* Selection mode of the table
|
|
124
|
+
*
|
|
125
|
+
* This enum is part of the 'sap/ui/table/library' module export and must be accessed by the property 'SelectionMode'.
|
|
114
126
|
*/
|
|
115
127
|
export enum SelectionMode {
|
|
116
128
|
/**
|
|
@@ -137,6 +149,8 @@ declare module "sap/ui/table/library" {
|
|
|
137
149
|
*
|
|
138
150
|
* Contains IDs of shared DOM references, which should be accessible to inheriting controls via getDomRef()
|
|
139
151
|
* function.
|
|
152
|
+
*
|
|
153
|
+
* This enum is part of the 'sap/ui/table/library' module export and must be accessed by the property 'SharedDomRef'.
|
|
140
154
|
*/
|
|
141
155
|
export enum SharedDomRef {
|
|
142
156
|
/**
|
|
@@ -151,6 +165,8 @@ declare module "sap/ui/table/library" {
|
|
|
151
165
|
/**
|
|
152
166
|
* Sort order of a column
|
|
153
167
|
*
|
|
168
|
+
* This enum is part of the 'sap/ui/table/library' module export and must be accessed by the property 'SortOrder'.
|
|
169
|
+
*
|
|
154
170
|
* @deprecated (since 1.120) - replaced with `sap.ui.core.SortOrder`
|
|
155
171
|
*/
|
|
156
172
|
export enum SortOrder {
|
|
@@ -175,6 +191,8 @@ declare module "sap/ui/table/library" {
|
|
|
175
191
|
/**
|
|
176
192
|
* VisibleRowCountMode of the table
|
|
177
193
|
*
|
|
194
|
+
* This enum is part of the 'sap/ui/table/library' module export and must be accessed by the property 'VisibleRowCountMode'.
|
|
195
|
+
*
|
|
178
196
|
* @deprecated (since 1.119)
|
|
179
197
|
*/
|
|
180
198
|
export enum VisibleRowCountMode {
|
|
@@ -1796,7 +1814,7 @@ declare module "sap/ui/table/Column" {
|
|
|
1796
1814
|
*
|
|
1797
1815
|
* @since 1.110
|
|
1798
1816
|
*/
|
|
1799
|
-
getHeaderMenu(): ID;
|
|
1817
|
+
getHeaderMenu(): ID | null;
|
|
1800
1818
|
/**
|
|
1801
1819
|
* Gets current value of property {@link #getHeaderSpan headerSpan}.
|
|
1802
1820
|
*
|
|
@@ -5665,6 +5683,9 @@ declare module "sap/ui/table/Table" {
|
|
|
5665
5683
|
* Adds the given selection interval to the selection. In case of a single selection, only `iIndexTo` is
|
|
5666
5684
|
* added to the selection.
|
|
5667
5685
|
*
|
|
5686
|
+
* **Note:** The built-in selection API has limited functionality, especially when it is combined with paging
|
|
5687
|
+
* (e.g. OData). Therefore, it is recommended to use a selection plugin instead.
|
|
5688
|
+
*
|
|
5668
5689
|
*
|
|
5669
5690
|
* @returns Reference to `this` in order to allow method chaining
|
|
5670
5691
|
*/
|
|
@@ -5685,7 +5706,8 @@ declare module "sap/ui/table/Table" {
|
|
|
5685
5706
|
* When called, the context of the event handler (its `this`) will be bound to `oListener` if specified,
|
|
5686
5707
|
* otherwise it will be bound to this `sap.ui.table.Table` itself.
|
|
5687
5708
|
*
|
|
5688
|
-
* Fired when the
|
|
5709
|
+
* Fired when the {@link sap.ui.table.Table#setContextMenu context menu} is opened. When the context menu
|
|
5710
|
+
* is opened, the binding context of the row is set to the context menu.
|
|
5689
5711
|
*
|
|
5690
5712
|
* @since 1.54
|
|
5691
5713
|
*
|
|
@@ -5713,7 +5735,8 @@ declare module "sap/ui/table/Table" {
|
|
|
5713
5735
|
* When called, the context of the event handler (its `this`) will be bound to `oListener` if specified,
|
|
5714
5736
|
* otherwise it will be bound to this `sap.ui.table.Table` itself.
|
|
5715
5737
|
*
|
|
5716
|
-
* Fired when the
|
|
5738
|
+
* Fired when the {@link sap.ui.table.Table#setContextMenu context menu} is opened. When the context menu
|
|
5739
|
+
* is opened, the binding context of the row is set to the context menu.
|
|
5717
5740
|
*
|
|
5718
5741
|
* @since 1.54
|
|
5719
5742
|
*
|
|
@@ -6600,6 +6623,9 @@ declare module "sap/ui/table/Table" {
|
|
|
6600
6623
|
/**
|
|
6601
6624
|
* Removes complete selection.
|
|
6602
6625
|
*
|
|
6626
|
+
* **Note:** The built-in selection API has limited functionality, especially when it is combined with paging
|
|
6627
|
+
* (e.g. OData). Therefore, it is recommended to use a selection plugin instead.
|
|
6628
|
+
*
|
|
6603
6629
|
*
|
|
6604
6630
|
* @returns Reference to `this` in order to allow method chaining
|
|
6605
6631
|
*/
|
|
@@ -7651,7 +7677,7 @@ declare module "sap/ui/table/Table" {
|
|
|
7651
7677
|
* @deprecated (since 1.110)
|
|
7652
7678
|
* @experimental (since 1.28) - This feature has a limited functionality.
|
|
7653
7679
|
*/
|
|
7654
|
-
getGroupBy(): ID;
|
|
7680
|
+
getGroupBy(): ID | null;
|
|
7655
7681
|
/**
|
|
7656
7682
|
* Gets current value of property {@link #getMinAutoRowCount minAutoRowCount}.
|
|
7657
7683
|
*
|
|
@@ -7793,6 +7819,9 @@ declare module "sap/ui/table/Table" {
|
|
|
7793
7819
|
/**
|
|
7794
7820
|
* Zero-based indices of selected items, wrapped in an array. An empty array means "no selection".
|
|
7795
7821
|
*
|
|
7822
|
+
* **Note:** The built-in selection API has limited functionality, especially when it is combined with paging
|
|
7823
|
+
* (e.g. OData). Therefore, it is recommended to use a selection plugin instead.
|
|
7824
|
+
*
|
|
7796
7825
|
*
|
|
7797
7826
|
* @returns Selected indices
|
|
7798
7827
|
*/
|
|
@@ -8094,6 +8123,9 @@ declare module "sap/ui/table/Table" {
|
|
|
8094
8123
|
/**
|
|
8095
8124
|
* Checks whether an index is selected.
|
|
8096
8125
|
*
|
|
8126
|
+
* **Note:** The built-in selection API has limited functionality, especially when it is combined with paging
|
|
8127
|
+
* (e.g. OData). Therefore, it is recommended to use a selection plugin instead.
|
|
8128
|
+
*
|
|
8097
8129
|
*
|
|
8098
8130
|
* @returns Whether the index is selected
|
|
8099
8131
|
*/
|
|
@@ -8214,6 +8246,9 @@ declare module "sap/ui/table/Table" {
|
|
|
8214
8246
|
* Removes the given selection interval from the selection. In case of single selection, only `iIndexTo`
|
|
8215
8247
|
* is removed from the selection.
|
|
8216
8248
|
*
|
|
8249
|
+
* **Note:** The built-in selection API has limited functionality, especially when it is combined with paging
|
|
8250
|
+
* (e.g. OData). Therefore, it is recommended to use a selection plugin instead.
|
|
8251
|
+
*
|
|
8217
8252
|
*
|
|
8218
8253
|
* @returns Reference to `this` in order to allow method chaining
|
|
8219
8254
|
*/
|
|
@@ -8232,6 +8267,9 @@ declare module "sap/ui/table/Table" {
|
|
|
8232
8267
|
* are considered to be selected might not be available at the client yet. Calling getContextByIndex might
|
|
8233
8268
|
* not return a result but trigger a roundtrip to request this single entity.
|
|
8234
8269
|
*
|
|
8270
|
+
* **Note:** The built-in selection API has limited functionality, especially when it is combined with paging
|
|
8271
|
+
* (e.g. OData). Therefore, it is recommended to use a selection plugin instead.
|
|
8272
|
+
*
|
|
8235
8273
|
*
|
|
8236
8274
|
* @returns Reference to `this` in order to allow method chaining
|
|
8237
8275
|
*/
|
|
@@ -8734,6 +8772,9 @@ declare module "sap/ui/table/Table" {
|
|
|
8734
8772
|
/**
|
|
8735
8773
|
* Sets the selected index. The previous selection is removed.
|
|
8736
8774
|
*
|
|
8775
|
+
* **Note:** The built-in selection API has limited functionality, especially when it is combined with paging
|
|
8776
|
+
* (e.g. OData). Therefore, it is recommended to use a selection plugin instead.
|
|
8777
|
+
*
|
|
8737
8778
|
*
|
|
8738
8779
|
* @returns Reference to `this` in order to allow method chaining
|
|
8739
8780
|
*/
|
|
@@ -8767,6 +8808,9 @@ declare module "sap/ui/table/Table" {
|
|
|
8767
8808
|
/**
|
|
8768
8809
|
* Sets the given selection interval as selection. In case of a single selection, only `iIndexTo` is selected.
|
|
8769
8810
|
*
|
|
8811
|
+
* **Note:** The built-in selection API has limited functionality, especially when it is combined with paging
|
|
8812
|
+
* (e.g. OData). Therefore, it is recommended to use a selection plugin instead.
|
|
8813
|
+
*
|
|
8770
8814
|
*
|
|
8771
8815
|
* @returns Reference to `this` in order to allow method chaining
|
|
8772
8816
|
*/
|
|
@@ -8783,6 +8827,9 @@ declare module "sap/ui/table/Table" {
|
|
|
8783
8827
|
/**
|
|
8784
8828
|
* Sets the selection mode. The current selection is lost.
|
|
8785
8829
|
*
|
|
8830
|
+
* **Note:** The built-in selection API has limited functionality, especially when it is combined with paging
|
|
8831
|
+
* (e.g. OData). Therefore, it is recommended to use a selection plugin instead.
|
|
8832
|
+
*
|
|
8786
8833
|
*
|
|
8787
8834
|
* @returns Reference to `this` in order to allow method chaining
|
|
8788
8835
|
*/
|
|
@@ -9513,7 +9560,8 @@ declare module "sap/ui/table/Table" {
|
|
|
9513
9560
|
cellContextmenu?: (oEvent: Table$CellContextmenuEvent) => void;
|
|
9514
9561
|
|
|
9515
9562
|
/**
|
|
9516
|
-
* Fired when the
|
|
9563
|
+
* Fired when the {@link sap.ui.table.Table#setContextMenu context menu} is opened. When the context menu
|
|
9564
|
+
* is opened, the binding context of the row is set to the context menu.
|
|
9517
9565
|
*
|
|
9518
9566
|
* @since 1.54
|
|
9519
9567
|
*/
|
|
@@ -10030,7 +10078,7 @@ declare module "sap/ui/table/TablePersoController" {
|
|
|
10030
10078
|
/**
|
|
10031
10079
|
* ID of the element which is the current target of the association {@link #getTable table}, or `null`.
|
|
10032
10080
|
*/
|
|
10033
|
-
getTable(): ID;
|
|
10081
|
+
getTable(): ID | null;
|
|
10034
10082
|
/**
|
|
10035
10083
|
* Opens the personalization dialog for the Table to modify the visibility and the order of the columns.
|
|
10036
10084
|
*
|
|
@@ -10985,6 +11033,8 @@ declare namespace sap {
|
|
|
10985
11033
|
|
|
10986
11034
|
"sap/ui/table/plugins/SelectionPlugin": undefined;
|
|
10987
11035
|
|
|
11036
|
+
"sap/ui/table/plugins/V4Aggregation": undefined;
|
|
11037
|
+
|
|
10988
11038
|
"sap/ui/table/Row": undefined;
|
|
10989
11039
|
|
|
10990
11040
|
"sap/ui/table/RowAction": undefined;
|