@sapui5/ts-types 1.116.0 → 1.117.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/index.d.ts +1 -0
- package/types/sap.apf.d.ts +1 -1
- package/types/sap.ca.ui.d.ts +144 -57
- package/types/sap.chart.d.ts +29 -8
- package/types/sap.collaboration.d.ts +5 -2
- package/types/sap.esh.search.ui.d.ts +9 -3
- package/types/sap.f.d.ts +160 -63
- package/types/sap.fe.core.d.ts +21 -35
- package/types/sap.fe.macros.d.ts +148 -16
- package/types/sap.fe.placeholder.d.ts +1 -1
- package/types/sap.fe.plugins.optimisticBatch.d.ts +3 -0
- package/types/sap.fe.test.d.ts +1 -1
- package/types/sap.fe.tools.d.ts +1 -1
- package/types/sap.feedback.ui.d.ts +1 -1
- package/types/sap.gantt.d.ts +344 -1208
- package/types/sap.insights.d.ts +251 -11
- package/types/sap.landvisz.d.ts +64 -25
- package/types/sap.m.d.ts +2259 -806
- package/types/sap.makit.d.ts +22 -7
- package/types/sap.me.d.ts +40 -16
- package/types/sap.ndc.d.ts +20 -15
- package/types/sap.ovp.d.ts +24 -111
- package/types/sap.rules.ui.d.ts +17 -5
- package/types/sap.sac.df.d.ts +87 -1
- package/types/sap.suite.ui.commons.d.ts +531 -182
- package/types/sap.suite.ui.generic.template.d.ts +5 -2
- package/types/sap.suite.ui.microchart.d.ts +85 -34
- package/types/sap.tnt.d.ts +13 -4
- package/types/sap.ui.codeeditor.d.ts +9 -3
- package/types/sap.ui.commons.d.ts +297 -116
- package/types/sap.ui.comp.d.ts +631 -256
- package/types/sap.ui.core.d.ts +976 -286
- package/types/sap.ui.dt.d.ts +1 -1
- package/types/sap.ui.export.d.ts +193 -3
- package/types/sap.ui.fl.d.ts +25 -10
- package/types/sap.ui.generic.app.d.ts +1 -1
- package/types/sap.ui.generic.template.d.ts +1 -1
- package/types/sap.ui.integration.d.ts +90 -23
- package/types/sap.ui.layout.d.ts +93 -30
- package/types/sap.ui.mdc.d.ts +6507 -6291
- package/types/sap.ui.richtexteditor.d.ts +17 -5
- package/types/sap.ui.rta.d.ts +1 -1
- package/types/sap.ui.suite.d.ts +9 -3
- package/types/sap.ui.support.d.ts +1 -1
- package/types/sap.ui.table.d.ts +149 -43
- package/types/sap.ui.testrecorder.d.ts +1 -1
- package/types/sap.ui.unified.d.ts +265 -103
- package/types/sap.ui.ux3.d.ts +300 -120
- package/types/sap.ui.vbm.d.ts +288 -120
- package/types/sap.ui.vk.d.ts +685 -271
- package/types/sap.ui.vtm.d.ts +177 -72
- package/types/sap.ui.webc.common.d.ts +1 -1
- package/types/sap.ui.webc.fiori.d.ts +170 -68
- package/types/sap.ui.webc.main.d.ts +495 -198
- package/types/sap.uiext.inbox.d.ts +64 -25
- package/types/sap.ushell.d.ts +658 -47
- package/types/sap.ushell_abap.d.ts +1 -1
- package/types/sap.uxap.d.ts +51 -21
- package/types/sap.viz.d.ts +675 -267
- package/types/sap.webanalytics.core.d.ts +1 -1
- package/types/sap.zen.commons.d.ts +1 -1
- package/types/sap.zen.crosstab.d.ts +1 -1
- package/types/sap.zen.dsh.d.ts +35 -14
package/types/sap.m.d.ts
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
// For Library Version: 1.
|
|
1
|
+
// For Library Version: 1.117.0
|
|
2
2
|
|
|
3
3
|
declare namespace sap {
|
|
4
4
|
/**
|
|
@@ -124,118 +124,10 @@ declare namespace sap {
|
|
|
124
124
|
value: any
|
|
125
125
|
): boolean;
|
|
126
126
|
/**
|
|
127
|
-
*
|
|
127
|
+
* The `sap.m.p13n` namespace offers generic personalization capabilites. Personalization currently supports,
|
|
128
|
+
* for example, defining the order of columns in a table and their visibility, sorting, and grouping. To
|
|
129
|
+
* enable this, the personalization engine can be used.
|
|
128
130
|
*/
|
|
129
|
-
namespace touch {
|
|
130
|
-
/**
|
|
131
|
-
* Given a list of touches, count the number of touches related with the given element.
|
|
132
|
-
*
|
|
133
|
-
* @returns The number of touches related with the given element.
|
|
134
|
-
*/
|
|
135
|
-
function countContained(
|
|
136
|
-
/**
|
|
137
|
-
* The list of touch objects to search.
|
|
138
|
-
*/
|
|
139
|
-
oTouchList: TouchList,
|
|
140
|
-
/**
|
|
141
|
-
* A jQuery element or an element reference or an element id.
|
|
142
|
-
*/
|
|
143
|
-
vElement: jQuery | Element | string
|
|
144
|
-
): number;
|
|
145
|
-
/**
|
|
146
|
-
* Given a list of touch objects, find the touch that matches the given one.
|
|
147
|
-
*
|
|
148
|
-
* @returns The touch matching if any.
|
|
149
|
-
*/
|
|
150
|
-
function find(
|
|
151
|
-
/**
|
|
152
|
-
* The list of touch objects to search.
|
|
153
|
-
*/
|
|
154
|
-
oTouchList: TouchList,
|
|
155
|
-
/**
|
|
156
|
-
* A touch object to find or a Touch.identifier that uniquely identifies the current finger in the touch
|
|
157
|
-
* session.
|
|
158
|
-
*/
|
|
159
|
-
oTouch: Touch | number
|
|
160
|
-
): object | undefined;
|
|
161
|
-
}
|
|
162
|
-
|
|
163
|
-
namespace MessageBox {
|
|
164
|
-
/**
|
|
165
|
-
* Enumeration of supported actions in a MessageBox.
|
|
166
|
-
*
|
|
167
|
-
* Each action is represented as a button in the message box. The values of this enumeration are used for
|
|
168
|
-
* both, specifying the set of allowed actions as well as reporting back the user choice.
|
|
169
|
-
*/
|
|
170
|
-
enum Action {
|
|
171
|
-
/**
|
|
172
|
-
* Adds an "Abort" button to the message box.
|
|
173
|
-
*/
|
|
174
|
-
ABORT = "ABORT",
|
|
175
|
-
/**
|
|
176
|
-
* Adds a "Cancel" button to the message box.
|
|
177
|
-
*/
|
|
178
|
-
CANCEL = "CANCEL",
|
|
179
|
-
/**
|
|
180
|
-
* Adds a "Close" button to the message box.
|
|
181
|
-
*/
|
|
182
|
-
CLOSE = "CLOSE",
|
|
183
|
-
/**
|
|
184
|
-
* Adds a "Delete" button to the message box.
|
|
185
|
-
*/
|
|
186
|
-
DELETE = "DELETE",
|
|
187
|
-
/**
|
|
188
|
-
* Adds an "Ignore" button to the message box.
|
|
189
|
-
*/
|
|
190
|
-
IGNORE = "IGNORE",
|
|
191
|
-
/**
|
|
192
|
-
* Adds a "No" button to the message box.
|
|
193
|
-
*/
|
|
194
|
-
NO = "NO",
|
|
195
|
-
/**
|
|
196
|
-
* Adds an "OK" button to the message box.
|
|
197
|
-
*/
|
|
198
|
-
OK = "OK",
|
|
199
|
-
/**
|
|
200
|
-
* Adds a "Retry" button to the message box.
|
|
201
|
-
*/
|
|
202
|
-
RETRY = "RETRY",
|
|
203
|
-
/**
|
|
204
|
-
* Adds a "Yes" button to the message box.
|
|
205
|
-
*/
|
|
206
|
-
YES = "YES",
|
|
207
|
-
}
|
|
208
|
-
/**
|
|
209
|
-
* Enumeration of the pre-defined icons that can be used in a MessageBox.
|
|
210
|
-
*/
|
|
211
|
-
enum Icon {
|
|
212
|
-
/**
|
|
213
|
-
* Shows the error icon in the message box.
|
|
214
|
-
*/
|
|
215
|
-
ERROR = "undefined",
|
|
216
|
-
/**
|
|
217
|
-
* Shows the information icon in the message box.
|
|
218
|
-
*/
|
|
219
|
-
INFORMATION = "undefined",
|
|
220
|
-
/**
|
|
221
|
-
* Shows no icon in the message box.
|
|
222
|
-
*/
|
|
223
|
-
NONE = "undefined",
|
|
224
|
-
/**
|
|
225
|
-
* Shows the question icon in the message box.
|
|
226
|
-
*/
|
|
227
|
-
QUESTION = "undefined",
|
|
228
|
-
/**
|
|
229
|
-
* Shows the success icon in the message box.
|
|
230
|
-
*/
|
|
231
|
-
SUCCESS = "undefined",
|
|
232
|
-
/**
|
|
233
|
-
* Shows the warning icon in the message box.
|
|
234
|
-
*/
|
|
235
|
-
WARNING = "undefined",
|
|
236
|
-
}
|
|
237
|
-
}
|
|
238
|
-
|
|
239
131
|
namespace p13n {
|
|
240
132
|
/**
|
|
241
133
|
* @since 1.97
|
|
@@ -669,30 +561,31 @@ declare namespace sap {
|
|
|
669
561
|
}
|
|
670
562
|
/**
|
|
671
563
|
* @since 1.104
|
|
564
|
+
*
|
|
565
|
+
* The `Engine` entity offers personalization capabilities by registering a control instance for modification,
|
|
566
|
+
* such as:
|
|
567
|
+
*
|
|
568
|
+
*
|
|
569
|
+
* - `sap.m.p13n.Popup` initialization
|
|
570
|
+
* - Storing personalization states by choosing the desired persistence layer
|
|
571
|
+
* - State appliance considering the persistence layer
|
|
572
|
+
*
|
|
573
|
+
* The Engine must be used whenever personalization should be enabled by taking a certain persistence layer
|
|
574
|
+
* into account. Available controller implementations for the registration process are:
|
|
575
|
+
*
|
|
576
|
+
*
|
|
577
|
+
* - {@link sap.m.p13n.SelectionController SelectionController}: Used to define a list of selectable entries
|
|
578
|
+
*
|
|
579
|
+
* - {@link sap.m.p13n.SortController SortController}: Used to define a list of sortable properties
|
|
580
|
+
* - {@link sap.m.p13n.GroupController GroupController}: Used to define a list of groupable properties
|
|
581
|
+
*
|
|
582
|
+
*
|
|
583
|
+
* Can be used in combination with `sap.ui.fl.variants.VariantManagement` to persist a state in variants
|
|
584
|
+
* using `sap.ui.fl` capabilities.
|
|
672
585
|
*/
|
|
673
586
|
class Engine
|
|
674
587
|
/* was: sap.m.p13n.modules.AdaptationProvider */ extends Object {
|
|
675
588
|
/**
|
|
676
|
-
* The `Engine` entity offers personalization capabilities by registering a control instance for modification,
|
|
677
|
-
* such as:
|
|
678
|
-
*
|
|
679
|
-
*
|
|
680
|
-
* - `sap.m.p13n.Popup` initialization
|
|
681
|
-
* - Storing personalization states by choosing the desired persistence layer
|
|
682
|
-
* - State appliance considering the persistence layer
|
|
683
|
-
*
|
|
684
|
-
* The Engine must be used whenever personalization should be enabled by taking a certain persistence layer
|
|
685
|
-
* into account. Available controller implementations for the registration process are:
|
|
686
|
-
*
|
|
687
|
-
*
|
|
688
|
-
* - {@link sap.m.p13n.SelectionController SelectionController}: Used to define a list of selectable entries
|
|
689
|
-
*
|
|
690
|
-
* - {@link sap.m.p13n.SortController SortController}: Used to define a list of sortable properties
|
|
691
|
-
* - {@link sap.m.p13n.GroupController GroupController}: Used to define a list of groupable properties
|
|
692
|
-
*
|
|
693
|
-
*
|
|
694
|
-
* Can be used in combination with `sap.ui.fl.variants.VariantManagement` to persist a state in variants
|
|
695
|
-
* using `sap.ui.fl` capabilities.
|
|
696
589
|
* See:
|
|
697
590
|
* {@link https://ui5.sap.com/#/topic/75c08fdebf784575947927e052712bab Personalization}
|
|
698
591
|
*/
|
|
@@ -1020,12 +913,11 @@ declare namespace sap {
|
|
|
1020
913
|
sTitle?: string
|
|
1021
914
|
): this;
|
|
1022
915
|
}
|
|
1023
|
-
|
|
916
|
+
/**
|
|
917
|
+
* The `MetadataHelper` entity offers utility functionality for providing service metadata during the `Engine#register`
|
|
918
|
+
* process.
|
|
919
|
+
*/
|
|
1024
920
|
class MetadataHelper extends sap.ui.base.Object {
|
|
1025
|
-
/**
|
|
1026
|
-
* The `MetadataHelper` entity offers utility functionality for providing service metadata during the `Engine#register`
|
|
1027
|
-
* process.
|
|
1028
|
-
*/
|
|
1029
921
|
constructor();
|
|
1030
922
|
|
|
1031
923
|
/**
|
|
@@ -2003,9 +1895,127 @@ declare namespace sap {
|
|
|
2003
1895
|
controller: Record<string, Object[]>;
|
|
2004
1896
|
};
|
|
2005
1897
|
|
|
2006
|
-
type BasePanel$ChangeEvent = sap.ui.base.Event<
|
|
1898
|
+
type BasePanel$ChangeEvent = sap.ui.base.Event<
|
|
1899
|
+
BasePanel$ChangeEventParameters,
|
|
1900
|
+
BasePanel
|
|
1901
|
+
>;
|
|
1902
|
+
|
|
1903
|
+
type Popup$CloseEvent = sap.ui.base.Event<
|
|
1904
|
+
Popup$CloseEventParameters,
|
|
1905
|
+
Popup
|
|
1906
|
+
>;
|
|
1907
|
+
}
|
|
1908
|
+
/**
|
|
1909
|
+
* Touch helper.
|
|
1910
|
+
*/
|
|
1911
|
+
namespace touch {
|
|
1912
|
+
/**
|
|
1913
|
+
* Given a list of touches, count the number of touches related with the given element.
|
|
1914
|
+
*
|
|
1915
|
+
* @returns The number of touches related with the given element.
|
|
1916
|
+
*/
|
|
1917
|
+
function countContained(
|
|
1918
|
+
/**
|
|
1919
|
+
* The list of touch objects to search.
|
|
1920
|
+
*/
|
|
1921
|
+
oTouchList: TouchList,
|
|
1922
|
+
/**
|
|
1923
|
+
* A jQuery element or an element reference or an element id.
|
|
1924
|
+
*/
|
|
1925
|
+
vElement: jQuery | Element | string
|
|
1926
|
+
): number;
|
|
1927
|
+
/**
|
|
1928
|
+
* Given a list of touch objects, find the touch that matches the given one.
|
|
1929
|
+
*
|
|
1930
|
+
* @returns The touch matching if any.
|
|
1931
|
+
*/
|
|
1932
|
+
function find(
|
|
1933
|
+
/**
|
|
1934
|
+
* The list of touch objects to search.
|
|
1935
|
+
*/
|
|
1936
|
+
oTouchList: TouchList,
|
|
1937
|
+
/**
|
|
1938
|
+
* A touch object to find or a Touch.identifier that uniquely identifies the current finger in the touch
|
|
1939
|
+
* session.
|
|
1940
|
+
*/
|
|
1941
|
+
oTouch: Touch | number
|
|
1942
|
+
): object | undefined;
|
|
1943
|
+
}
|
|
2007
1944
|
|
|
2008
|
-
|
|
1945
|
+
namespace MessageBox {
|
|
1946
|
+
/**
|
|
1947
|
+
* Enumeration of supported actions in a MessageBox.
|
|
1948
|
+
*
|
|
1949
|
+
* Each action is represented as a button in the message box. The values of this enumeration are used for
|
|
1950
|
+
* both, specifying the set of allowed actions as well as reporting back the user choice.
|
|
1951
|
+
*/
|
|
1952
|
+
enum Action {
|
|
1953
|
+
/**
|
|
1954
|
+
* Adds an "Abort" button to the message box.
|
|
1955
|
+
*/
|
|
1956
|
+
ABORT = "ABORT",
|
|
1957
|
+
/**
|
|
1958
|
+
* Adds a "Cancel" button to the message box.
|
|
1959
|
+
*/
|
|
1960
|
+
CANCEL = "CANCEL",
|
|
1961
|
+
/**
|
|
1962
|
+
* Adds a "Close" button to the message box.
|
|
1963
|
+
*/
|
|
1964
|
+
CLOSE = "CLOSE",
|
|
1965
|
+
/**
|
|
1966
|
+
* Adds a "Delete" button to the message box.
|
|
1967
|
+
*/
|
|
1968
|
+
DELETE = "DELETE",
|
|
1969
|
+
/**
|
|
1970
|
+
* Adds an "Ignore" button to the message box.
|
|
1971
|
+
*/
|
|
1972
|
+
IGNORE = "IGNORE",
|
|
1973
|
+
/**
|
|
1974
|
+
* Adds a "No" button to the message box.
|
|
1975
|
+
*/
|
|
1976
|
+
NO = "NO",
|
|
1977
|
+
/**
|
|
1978
|
+
* Adds an "OK" button to the message box.
|
|
1979
|
+
*/
|
|
1980
|
+
OK = "OK",
|
|
1981
|
+
/**
|
|
1982
|
+
* Adds a "Retry" button to the message box.
|
|
1983
|
+
*/
|
|
1984
|
+
RETRY = "RETRY",
|
|
1985
|
+
/**
|
|
1986
|
+
* Adds a "Yes" button to the message box.
|
|
1987
|
+
*/
|
|
1988
|
+
YES = "YES",
|
|
1989
|
+
}
|
|
1990
|
+
/**
|
|
1991
|
+
* Enumeration of the pre-defined icons that can be used in a MessageBox.
|
|
1992
|
+
*/
|
|
1993
|
+
enum Icon {
|
|
1994
|
+
/**
|
|
1995
|
+
* Shows the error icon in the message box.
|
|
1996
|
+
*/
|
|
1997
|
+
ERROR = "undefined",
|
|
1998
|
+
/**
|
|
1999
|
+
* Shows the information icon in the message box.
|
|
2000
|
+
*/
|
|
2001
|
+
INFORMATION = "undefined",
|
|
2002
|
+
/**
|
|
2003
|
+
* Shows no icon in the message box.
|
|
2004
|
+
*/
|
|
2005
|
+
NONE = "undefined",
|
|
2006
|
+
/**
|
|
2007
|
+
* Shows the question icon in the message box.
|
|
2008
|
+
*/
|
|
2009
|
+
QUESTION = "undefined",
|
|
2010
|
+
/**
|
|
2011
|
+
* Shows the success icon in the message box.
|
|
2012
|
+
*/
|
|
2013
|
+
SUCCESS = "undefined",
|
|
2014
|
+
/**
|
|
2015
|
+
* Shows the warning icon in the message box.
|
|
2016
|
+
*/
|
|
2017
|
+
WARNING = "undefined",
|
|
2018
|
+
}
|
|
2009
2019
|
}
|
|
2010
2020
|
|
|
2011
2021
|
namespace PlanningCalendar {
|
|
@@ -3429,19 +3439,40 @@ declare namespace sap {
|
|
|
3429
3439
|
): this;
|
|
3430
3440
|
}
|
|
3431
3441
|
|
|
3432
|
-
type ColumnResizer$ColumnResizeEvent = sap.ui.base.Event<
|
|
3442
|
+
type ColumnResizer$ColumnResizeEvent = sap.ui.base.Event<
|
|
3443
|
+
ColumnResizer$ColumnResizeEventParameters,
|
|
3444
|
+
ColumnResizer
|
|
3445
|
+
>;
|
|
3433
3446
|
|
|
3434
|
-
type CopyProvider$CopyEvent = sap.ui.base.Event<
|
|
3447
|
+
type CopyProvider$CopyEvent = sap.ui.base.Event<
|
|
3448
|
+
CopyProvider$CopyEventParameters,
|
|
3449
|
+
CopyProvider
|
|
3450
|
+
>;
|
|
3435
3451
|
|
|
3436
|
-
type DataStateIndicator$ApplyFilterEvent = sap.ui.base.Event<
|
|
3452
|
+
type DataStateIndicator$ApplyFilterEvent = sap.ui.base.Event<
|
|
3453
|
+
DataStateIndicator$ApplyFilterEventParameters,
|
|
3454
|
+
DataStateIndicator
|
|
3455
|
+
>;
|
|
3437
3456
|
|
|
3438
|
-
type DataStateIndicator$ClearFilterEvent = sap.ui.base.Event<
|
|
3457
|
+
type DataStateIndicator$ClearFilterEvent = sap.ui.base.Event<
|
|
3458
|
+
DataStateIndicator$ClearFilterEventParameters,
|
|
3459
|
+
DataStateIndicator
|
|
3460
|
+
>;
|
|
3439
3461
|
|
|
3440
|
-
type DataStateIndicator$CloseEvent = sap.ui.base.Event<
|
|
3462
|
+
type DataStateIndicator$CloseEvent = sap.ui.base.Event<
|
|
3463
|
+
DataStateIndicator$CloseEventParameters,
|
|
3464
|
+
DataStateIndicator
|
|
3465
|
+
>;
|
|
3441
3466
|
|
|
3442
|
-
type DataStateIndicator$DataStateChangeEvent = sap.ui.base.Event<
|
|
3467
|
+
type DataStateIndicator$DataStateChangeEvent = sap.ui.base.Event<
|
|
3468
|
+
DataStateIndicator$DataStateChangeEventParameters,
|
|
3469
|
+
DataStateIndicator
|
|
3470
|
+
>;
|
|
3443
3471
|
|
|
3444
|
-
type PasteProvider$PasteEvent = sap.ui.base.Event<
|
|
3472
|
+
type PasteProvider$PasteEvent = sap.ui.base.Event<
|
|
3473
|
+
PasteProvider$PasteEventParameters,
|
|
3474
|
+
PasteProvider
|
|
3475
|
+
>;
|
|
3445
3476
|
}
|
|
3446
3477
|
|
|
3447
3478
|
namespace routing {
|
|
@@ -9986,11 +10017,20 @@ declare namespace sap {
|
|
|
9986
10017
|
Optimized = "Optimized",
|
|
9987
10018
|
}
|
|
9988
10019
|
|
|
9989
|
-
type SemanticButton$PressEvent = sap.ui.base.Event<
|
|
10020
|
+
type SemanticButton$PressEvent = sap.ui.base.Event<
|
|
10021
|
+
SemanticButton$PressEventParameters,
|
|
10022
|
+
SemanticButton
|
|
10023
|
+
>;
|
|
9990
10024
|
|
|
9991
|
-
type SemanticPage$NavButtonPressEvent = sap.ui.base.Event<
|
|
10025
|
+
type SemanticPage$NavButtonPressEvent = sap.ui.base.Event<
|
|
10026
|
+
SemanticPage$NavButtonPressEventParameters,
|
|
10027
|
+
SemanticPage
|
|
10028
|
+
>;
|
|
9992
10029
|
|
|
9993
|
-
type SemanticSelect$ChangeEvent = sap.ui.base.Event<
|
|
10030
|
+
type SemanticSelect$ChangeEvent = sap.ui.base.Event<
|
|
10031
|
+
SemanticSelect$ChangeEventParameters,
|
|
10032
|
+
SemanticSelect
|
|
10033
|
+
>;
|
|
9994
10034
|
}
|
|
9995
10035
|
|
|
9996
10036
|
namespace table {
|
|
@@ -12964,23 +13004,50 @@ declare namespace sap {
|
|
|
12964
13004
|
Sort = "Sort",
|
|
12965
13005
|
}
|
|
12966
13006
|
|
|
12967
|
-
type ActionItem$PressEvent = sap.ui.base.Event<
|
|
12968
|
-
|
|
12969
|
-
|
|
12970
|
-
|
|
12971
|
-
|
|
12972
|
-
|
|
12973
|
-
|
|
12974
|
-
|
|
12975
|
-
|
|
12976
|
-
|
|
12977
|
-
type
|
|
12978
|
-
|
|
12979
|
-
|
|
12980
|
-
|
|
12981
|
-
|
|
12982
|
-
|
|
12983
|
-
|
|
13007
|
+
type ActionItem$PressEvent = sap.ui.base.Event<
|
|
13008
|
+
ActionItem$PressEventParameters,
|
|
13009
|
+
ActionItem
|
|
13010
|
+
>;
|
|
13011
|
+
|
|
13012
|
+
type Item$CancelEvent = sap.ui.base.Event<
|
|
13013
|
+
Item$CancelEventParameters,
|
|
13014
|
+
Item
|
|
13015
|
+
>;
|
|
13016
|
+
|
|
13017
|
+
type Item$ConfirmEvent = sap.ui.base.Event<
|
|
13018
|
+
Item$ConfirmEventParameters,
|
|
13019
|
+
Item
|
|
13020
|
+
>;
|
|
13021
|
+
|
|
13022
|
+
type Item$ResetEvent = sap.ui.base.Event<
|
|
13023
|
+
Item$ResetEventParameters,
|
|
13024
|
+
Item
|
|
13025
|
+
>;
|
|
13026
|
+
|
|
13027
|
+
type Menu$AfterCloseEvent = sap.ui.base.Event<
|
|
13028
|
+
Menu$AfterCloseEventParameters,
|
|
13029
|
+
Menu
|
|
13030
|
+
>;
|
|
13031
|
+
|
|
13032
|
+
type Menu$BeforeOpenEvent = sap.ui.base.Event<
|
|
13033
|
+
Menu$BeforeOpenEventParameters,
|
|
13034
|
+
Menu
|
|
13035
|
+
>;
|
|
13036
|
+
|
|
13037
|
+
type QuickGroup$ChangeEvent = sap.ui.base.Event<
|
|
13038
|
+
QuickGroup$ChangeEventParameters,
|
|
13039
|
+
QuickGroup
|
|
13040
|
+
>;
|
|
13041
|
+
|
|
13042
|
+
type QuickSort$ChangeEvent = sap.ui.base.Event<
|
|
13043
|
+
QuickSort$ChangeEventParameters,
|
|
13044
|
+
QuickSort
|
|
13045
|
+
>;
|
|
13046
|
+
|
|
13047
|
+
type QuickTotal$ChangeEvent = sap.ui.base.Event<
|
|
13048
|
+
QuickTotal$ChangeEventParameters,
|
|
13049
|
+
QuickTotal
|
|
13050
|
+
>;
|
|
12984
13051
|
}
|
|
12985
13052
|
}
|
|
12986
13053
|
|
|
@@ -13087,6 +13154,16 @@ declare namespace sap {
|
|
|
13087
13154
|
| string
|
|
13088
13155
|
| sap.ui.base.ManagedObject.PropertyBindingInfo;
|
|
13089
13156
|
|
|
13157
|
+
/**
|
|
13158
|
+
* @since 1.117
|
|
13159
|
+
*
|
|
13160
|
+
* Determines which illustration type is displayed when the control holds no data.
|
|
13161
|
+
*/
|
|
13162
|
+
noDataIllustrationType?:
|
|
13163
|
+
| sap.m.IllustratedMessageType
|
|
13164
|
+
| sap.ui.base.ManagedObject.PropertyBindingInfo
|
|
13165
|
+
| `{${string}}`;
|
|
13166
|
+
|
|
13090
13167
|
/**
|
|
13091
13168
|
* Defines custom text for the drag and drop text label.
|
|
13092
13169
|
*/
|
|
@@ -13502,6 +13579,17 @@ declare namespace sap {
|
|
|
13502
13579
|
| sap.ui.base.ManagedObject.AggregationBindingInfo
|
|
13503
13580
|
| `{${string}}`;
|
|
13504
13581
|
|
|
13582
|
+
/**
|
|
13583
|
+
* @since 1.117
|
|
13584
|
+
*
|
|
13585
|
+
* Statuses of the item, but it would be appearing in the markers section
|
|
13586
|
+
*/
|
|
13587
|
+
markersAsStatus?:
|
|
13588
|
+
| sap.m.ObjectStatus[]
|
|
13589
|
+
| sap.m.ObjectStatus
|
|
13590
|
+
| sap.ui.base.ManagedObject.AggregationBindingInfo
|
|
13591
|
+
| `{${string}}`;
|
|
13592
|
+
|
|
13505
13593
|
/**
|
|
13506
13594
|
* @since 1.90
|
|
13507
13595
|
*
|
|
@@ -16097,6 +16185,18 @@ declare namespace sap {
|
|
|
16097
16185
|
* @returns Value of property `noDataDescription`
|
|
16098
16186
|
*/
|
|
16099
16187
|
getNoDataDescription(): string;
|
|
16188
|
+
/**
|
|
16189
|
+
* @since 1.117
|
|
16190
|
+
*
|
|
16191
|
+
* Gets current value of property {@link #getNoDataIllustrationType noDataIllustrationType}.
|
|
16192
|
+
*
|
|
16193
|
+
* Determines which illustration type is displayed when the control holds no data.
|
|
16194
|
+
*
|
|
16195
|
+
* Default value is `NoData`.
|
|
16196
|
+
*
|
|
16197
|
+
* @returns Value of property `noDataIllustrationType`
|
|
16198
|
+
*/
|
|
16199
|
+
getNoDataIllustrationType(): sap.m.IllustratedMessageType;
|
|
16100
16200
|
/**
|
|
16101
16201
|
* Gets current value of property {@link #getNoDataText noDataText}.
|
|
16102
16202
|
*
|
|
@@ -16638,6 +16738,25 @@ declare namespace sap {
|
|
|
16638
16738
|
*/
|
|
16639
16739
|
sNoDataDescription?: string
|
|
16640
16740
|
): this;
|
|
16741
|
+
/**
|
|
16742
|
+
* @since 1.117
|
|
16743
|
+
*
|
|
16744
|
+
* Sets a new value for property {@link #getNoDataIllustrationType noDataIllustrationType}.
|
|
16745
|
+
*
|
|
16746
|
+
* Determines which illustration type is displayed when the control holds no data.
|
|
16747
|
+
*
|
|
16748
|
+
* When called with a value of `null` or `undefined`, the default value of the property will be restored.
|
|
16749
|
+
*
|
|
16750
|
+
* Default value is `NoData`.
|
|
16751
|
+
*
|
|
16752
|
+
* @returns Reference to `this` in order to allow method chaining
|
|
16753
|
+
*/
|
|
16754
|
+
setNoDataIllustrationType(
|
|
16755
|
+
/**
|
|
16756
|
+
* New value for property `noDataIllustrationType`
|
|
16757
|
+
*/
|
|
16758
|
+
sNoDataIllustrationType?: sap.m.IllustratedMessageType
|
|
16759
|
+
): this;
|
|
16641
16760
|
/**
|
|
16642
16761
|
* Sets a new value for property {@link #getNoDataText noDataText}.
|
|
16643
16762
|
*
|
|
@@ -16934,6 +17053,19 @@ declare namespace sap {
|
|
|
16934
17053
|
*/
|
|
16935
17054
|
oMarker: sap.m.ObjectMarker
|
|
16936
17055
|
): this;
|
|
17056
|
+
/**
|
|
17057
|
+
* @since 1.117
|
|
17058
|
+
*
|
|
17059
|
+
* Adds some markerAsStatus to the aggregation {@link #getMarkersAsStatus markersAsStatus}.
|
|
17060
|
+
*
|
|
17061
|
+
* @returns Reference to `this` in order to allow method chaining
|
|
17062
|
+
*/
|
|
17063
|
+
addMarkerAsStatus(
|
|
17064
|
+
/**
|
|
17065
|
+
* The markerAsStatus to add; if empty, nothing is inserted
|
|
17066
|
+
*/
|
|
17067
|
+
oMarkerAsStatus: sap.m.ObjectStatus
|
|
17068
|
+
): this;
|
|
16937
17069
|
/**
|
|
16938
17070
|
* Adds some status to the aggregation {@link #getStatuses statuses}.
|
|
16939
17071
|
*
|
|
@@ -17055,6 +17187,14 @@ declare namespace sap {
|
|
|
17055
17187
|
* @returns Reference to `this` in order to allow method chaining
|
|
17056
17188
|
*/
|
|
17057
17189
|
destroyMarkers(): this;
|
|
17190
|
+
/**
|
|
17191
|
+
* @since 1.117
|
|
17192
|
+
*
|
|
17193
|
+
* Destroys all the markersAsStatus in the aggregation {@link #getMarkersAsStatus markersAsStatus}.
|
|
17194
|
+
*
|
|
17195
|
+
* @returns Reference to `this` in order to allow method chaining
|
|
17196
|
+
*/
|
|
17197
|
+
destroyMarkersAsStatus(): this;
|
|
17058
17198
|
/**
|
|
17059
17199
|
* Destroys all the statuses in the aggregation {@link #getStatuses statuses}.
|
|
17060
17200
|
*
|
|
@@ -17207,6 +17347,14 @@ declare namespace sap {
|
|
|
17207
17347
|
* Markers of the item.
|
|
17208
17348
|
*/
|
|
17209
17349
|
getMarkers(): sap.m.ObjectMarker[];
|
|
17350
|
+
/**
|
|
17351
|
+
* @since 1.117
|
|
17352
|
+
*
|
|
17353
|
+
* Gets content of aggregation {@link #getMarkersAsStatus markersAsStatus}.
|
|
17354
|
+
*
|
|
17355
|
+
* Statuses of the item, but it would be appearing in the markers section
|
|
17356
|
+
*/
|
|
17357
|
+
getMarkersAsStatus(): sap.m.ObjectStatus[];
|
|
17210
17358
|
/**
|
|
17211
17359
|
* Gets current value of property {@link #getMediaType mediaType}.
|
|
17212
17360
|
*
|
|
@@ -17249,6 +17397,15 @@ declare namespace sap {
|
|
|
17249
17397
|
* @returns Value of property `uploadState`
|
|
17250
17398
|
*/
|
|
17251
17399
|
getUploadState(): sap.m.UploadState;
|
|
17400
|
+
/**
|
|
17401
|
+
* @since 1.117.0
|
|
17402
|
+
*
|
|
17403
|
+
* Returns the upload type of the item The method by default returns Native It is recommended to use this
|
|
17404
|
+
* method, when the user has uploded the instance
|
|
17405
|
+
*
|
|
17406
|
+
* @returns edit state of uploadSetItem
|
|
17407
|
+
*/
|
|
17408
|
+
getUploadType(): sap.m.UploadType;
|
|
17252
17409
|
/**
|
|
17253
17410
|
* @since 1.90
|
|
17254
17411
|
*
|
|
@@ -17327,6 +17484,20 @@ declare namespace sap {
|
|
|
17327
17484
|
*/
|
|
17328
17485
|
oMarker: sap.m.ObjectMarker
|
|
17329
17486
|
): int;
|
|
17487
|
+
/**
|
|
17488
|
+
* @since 1.117
|
|
17489
|
+
*
|
|
17490
|
+
* Checks for the provided `sap.m.ObjectStatus` in the aggregation {@link #getMarkersAsStatus markersAsStatus}.
|
|
17491
|
+
* and returns its index if found or -1 otherwise.
|
|
17492
|
+
*
|
|
17493
|
+
* @returns The index of the provided control in the aggregation if found, or -1 otherwise
|
|
17494
|
+
*/
|
|
17495
|
+
indexOfMarkerAsStatus(
|
|
17496
|
+
/**
|
|
17497
|
+
* The markerAsStatus whose index is looked for
|
|
17498
|
+
*/
|
|
17499
|
+
oMarkerAsStatus: sap.m.ObjectStatus
|
|
17500
|
+
): int;
|
|
17330
17501
|
/**
|
|
17331
17502
|
* Checks for the provided `sap.m.ObjectStatus` in the aggregation {@link #getStatuses statuses}. and returns
|
|
17332
17503
|
* its index if found or -1 otherwise.
|
|
@@ -17392,6 +17563,25 @@ declare namespace sap {
|
|
|
17392
17563
|
*/
|
|
17393
17564
|
iIndex: int
|
|
17394
17565
|
): this;
|
|
17566
|
+
/**
|
|
17567
|
+
* @since 1.117
|
|
17568
|
+
*
|
|
17569
|
+
* Inserts a markerAsStatus into the aggregation {@link #getMarkersAsStatus markersAsStatus}.
|
|
17570
|
+
*
|
|
17571
|
+
* @returns Reference to `this` in order to allow method chaining
|
|
17572
|
+
*/
|
|
17573
|
+
insertMarkerAsStatus(
|
|
17574
|
+
/**
|
|
17575
|
+
* The markerAsStatus to insert; if empty, nothing is inserted
|
|
17576
|
+
*/
|
|
17577
|
+
oMarkerAsStatus: sap.m.ObjectStatus,
|
|
17578
|
+
/**
|
|
17579
|
+
* The `0`-based index the markerAsStatus should be inserted at; for a negative value of `iIndex`, the markerAsStatus
|
|
17580
|
+
* is inserted at position 0; for a value greater than the current size of the aggregation, the markerAsStatus
|
|
17581
|
+
* is inserted at the last position
|
|
17582
|
+
*/
|
|
17583
|
+
iIndex: int
|
|
17584
|
+
): this;
|
|
17395
17585
|
/**
|
|
17396
17586
|
* Inserts a status into the aggregation {@link #getStatuses statuses}.
|
|
17397
17587
|
*
|
|
@@ -17444,6 +17634,16 @@ declare namespace sap {
|
|
|
17444
17634
|
* @returns An array of the removed elements (might be empty)
|
|
17445
17635
|
*/
|
|
17446
17636
|
removeAllMarkers(): sap.m.ObjectMarker[];
|
|
17637
|
+
/**
|
|
17638
|
+
* @since 1.117
|
|
17639
|
+
*
|
|
17640
|
+
* Removes all the controls from the aggregation {@link #getMarkersAsStatus markersAsStatus}.
|
|
17641
|
+
*
|
|
17642
|
+
* Additionally, it unregisters them from the hosting UIArea.
|
|
17643
|
+
*
|
|
17644
|
+
* @returns An array of the removed elements (might be empty)
|
|
17645
|
+
*/
|
|
17646
|
+
removeAllMarkersAsStatus(): sap.m.ObjectStatus[];
|
|
17447
17647
|
/**
|
|
17448
17648
|
* Removes all the controls from the aggregation {@link #getStatuses statuses}.
|
|
17449
17649
|
*
|
|
@@ -17487,6 +17687,19 @@ declare namespace sap {
|
|
|
17487
17687
|
*/
|
|
17488
17688
|
vMarker: int | string | sap.m.ObjectMarker
|
|
17489
17689
|
): sap.m.ObjectMarker | null;
|
|
17690
|
+
/**
|
|
17691
|
+
* @since 1.117
|
|
17692
|
+
*
|
|
17693
|
+
* Removes a markerAsStatus from the aggregation {@link #getMarkersAsStatus markersAsStatus}.
|
|
17694
|
+
*
|
|
17695
|
+
* @returns The removed markerAsStatus or `null`
|
|
17696
|
+
*/
|
|
17697
|
+
removeMarkerAsStatus(
|
|
17698
|
+
/**
|
|
17699
|
+
* The markerAsStatus to remove or its index or id
|
|
17700
|
+
*/
|
|
17701
|
+
vMarkerAsStatus: int | string | sap.m.ObjectStatus
|
|
17702
|
+
): sap.m.ObjectStatus | null;
|
|
17490
17703
|
/**
|
|
17491
17704
|
* Removes a status from the aggregation {@link #getStatuses statuses}.
|
|
17492
17705
|
*
|
|
@@ -17784,53 +17997,125 @@ declare namespace sap {
|
|
|
17784
17997
|
Put = "PUT",
|
|
17785
17998
|
}
|
|
17786
17999
|
|
|
17787
|
-
type Uploader$UploadAbortedEvent = sap.ui.base.Event<
|
|
18000
|
+
type Uploader$UploadAbortedEvent = sap.ui.base.Event<
|
|
18001
|
+
Uploader$UploadAbortedEventParameters,
|
|
18002
|
+
Uploader
|
|
18003
|
+
>;
|
|
17788
18004
|
|
|
17789
|
-
type Uploader$UploadCompletedEvent = sap.ui.base.Event<
|
|
18005
|
+
type Uploader$UploadCompletedEvent = sap.ui.base.Event<
|
|
18006
|
+
Uploader$UploadCompletedEventParameters,
|
|
18007
|
+
Uploader
|
|
18008
|
+
>;
|
|
17790
18009
|
|
|
17791
|
-
type Uploader$UploadProgressedEvent = sap.ui.base.Event<
|
|
18010
|
+
type Uploader$UploadProgressedEvent = sap.ui.base.Event<
|
|
18011
|
+
Uploader$UploadProgressedEventParameters,
|
|
18012
|
+
Uploader
|
|
18013
|
+
>;
|
|
17792
18014
|
|
|
17793
|
-
type Uploader$UploadStartedEvent = sap.ui.base.Event<
|
|
18015
|
+
type Uploader$UploadStartedEvent = sap.ui.base.Event<
|
|
18016
|
+
Uploader$UploadStartedEventParameters,
|
|
18017
|
+
Uploader
|
|
18018
|
+
>;
|
|
17794
18019
|
|
|
17795
|
-
type UploadSet$AfterItemAddedEvent = sap.ui.base.Event<
|
|
18020
|
+
type UploadSet$AfterItemAddedEvent = sap.ui.base.Event<
|
|
18021
|
+
UploadSet$AfterItemAddedEventParameters,
|
|
18022
|
+
UploadSet
|
|
18023
|
+
>;
|
|
17796
18024
|
|
|
17797
|
-
type UploadSet$AfterItemEditedEvent = sap.ui.base.Event<
|
|
18025
|
+
type UploadSet$AfterItemEditedEvent = sap.ui.base.Event<
|
|
18026
|
+
UploadSet$AfterItemEditedEventParameters,
|
|
18027
|
+
UploadSet
|
|
18028
|
+
>;
|
|
17798
18029
|
|
|
17799
|
-
type UploadSet$AfterItemRemovedEvent = sap.ui.base.Event<
|
|
18030
|
+
type UploadSet$AfterItemRemovedEvent = sap.ui.base.Event<
|
|
18031
|
+
UploadSet$AfterItemRemovedEventParameters,
|
|
18032
|
+
UploadSet
|
|
18033
|
+
>;
|
|
17800
18034
|
|
|
17801
|
-
type UploadSet$BeforeItemAddedEvent = sap.ui.base.Event<
|
|
18035
|
+
type UploadSet$BeforeItemAddedEvent = sap.ui.base.Event<
|
|
18036
|
+
UploadSet$BeforeItemAddedEventParameters,
|
|
18037
|
+
UploadSet
|
|
18038
|
+
>;
|
|
17802
18039
|
|
|
17803
|
-
type UploadSet$BeforeItemEditedEvent = sap.ui.base.Event<
|
|
18040
|
+
type UploadSet$BeforeItemEditedEvent = sap.ui.base.Event<
|
|
18041
|
+
UploadSet$BeforeItemEditedEventParameters,
|
|
18042
|
+
UploadSet
|
|
18043
|
+
>;
|
|
17804
18044
|
|
|
17805
|
-
type UploadSet$BeforeItemRemovedEvent = sap.ui.base.Event<
|
|
18045
|
+
type UploadSet$BeforeItemRemovedEvent = sap.ui.base.Event<
|
|
18046
|
+
UploadSet$BeforeItemRemovedEventParameters,
|
|
18047
|
+
UploadSet
|
|
18048
|
+
>;
|
|
17806
18049
|
|
|
17807
|
-
type UploadSet$BeforeUploadStartsEvent = sap.ui.base.Event<
|
|
18050
|
+
type UploadSet$BeforeUploadStartsEvent = sap.ui.base.Event<
|
|
18051
|
+
UploadSet$BeforeUploadStartsEventParameters,
|
|
18052
|
+
UploadSet
|
|
18053
|
+
>;
|
|
17808
18054
|
|
|
17809
|
-
type UploadSet$BeforeUploadTerminationEvent = sap.ui.base.Event<
|
|
18055
|
+
type UploadSet$BeforeUploadTerminationEvent = sap.ui.base.Event<
|
|
18056
|
+
UploadSet$BeforeUploadTerminationEventParameters,
|
|
18057
|
+
UploadSet
|
|
18058
|
+
>;
|
|
17810
18059
|
|
|
17811
|
-
type UploadSet$FileNameLengthExceededEvent = sap.ui.base.Event<
|
|
18060
|
+
type UploadSet$FileNameLengthExceededEvent = sap.ui.base.Event<
|
|
18061
|
+
UploadSet$FileNameLengthExceededEventParameters,
|
|
18062
|
+
UploadSet
|
|
18063
|
+
>;
|
|
17812
18064
|
|
|
17813
|
-
type UploadSet$FileRenamedEvent = sap.ui.base.Event<
|
|
18065
|
+
type UploadSet$FileRenamedEvent = sap.ui.base.Event<
|
|
18066
|
+
UploadSet$FileRenamedEventParameters,
|
|
18067
|
+
UploadSet
|
|
18068
|
+
>;
|
|
17814
18069
|
|
|
17815
|
-
type UploadSet$FileSizeExceededEvent = sap.ui.base.Event<
|
|
18070
|
+
type UploadSet$FileSizeExceededEvent = sap.ui.base.Event<
|
|
18071
|
+
UploadSet$FileSizeExceededEventParameters,
|
|
18072
|
+
UploadSet
|
|
18073
|
+
>;
|
|
17816
18074
|
|
|
17817
|
-
type UploadSet$FileTypeMismatchEvent = sap.ui.base.Event<
|
|
18075
|
+
type UploadSet$FileTypeMismatchEvent = sap.ui.base.Event<
|
|
18076
|
+
UploadSet$FileTypeMismatchEventParameters,
|
|
18077
|
+
UploadSet
|
|
18078
|
+
>;
|
|
17818
18079
|
|
|
17819
|
-
type UploadSet$ItemDragStartEvent = sap.ui.base.Event<
|
|
18080
|
+
type UploadSet$ItemDragStartEvent = sap.ui.base.Event<
|
|
18081
|
+
UploadSet$ItemDragStartEventParameters,
|
|
18082
|
+
UploadSet
|
|
18083
|
+
>;
|
|
17820
18084
|
|
|
17821
|
-
type UploadSet$ItemDropEvent = sap.ui.base.Event<
|
|
18085
|
+
type UploadSet$ItemDropEvent = sap.ui.base.Event<
|
|
18086
|
+
UploadSet$ItemDropEventParameters,
|
|
18087
|
+
UploadSet
|
|
18088
|
+
>;
|
|
17822
18089
|
|
|
17823
|
-
type UploadSet$MediaTypeMismatchEvent = sap.ui.base.Event<
|
|
18090
|
+
type UploadSet$MediaTypeMismatchEvent = sap.ui.base.Event<
|
|
18091
|
+
UploadSet$MediaTypeMismatchEventParameters,
|
|
18092
|
+
UploadSet
|
|
18093
|
+
>;
|
|
17824
18094
|
|
|
17825
|
-
type UploadSet$SelectionChangedEvent = sap.ui.base.Event<
|
|
18095
|
+
type UploadSet$SelectionChangedEvent = sap.ui.base.Event<
|
|
18096
|
+
UploadSet$SelectionChangedEventParameters,
|
|
18097
|
+
UploadSet
|
|
18098
|
+
>;
|
|
17826
18099
|
|
|
17827
|
-
type UploadSet$UploadCompletedEvent = sap.ui.base.Event<
|
|
18100
|
+
type UploadSet$UploadCompletedEvent = sap.ui.base.Event<
|
|
18101
|
+
UploadSet$UploadCompletedEventParameters,
|
|
18102
|
+
UploadSet
|
|
18103
|
+
>;
|
|
17828
18104
|
|
|
17829
|
-
type UploadSet$UploadTerminatedEvent = sap.ui.base.Event<
|
|
18105
|
+
type UploadSet$UploadTerminatedEvent = sap.ui.base.Event<
|
|
18106
|
+
UploadSet$UploadTerminatedEventParameters,
|
|
18107
|
+
UploadSet
|
|
18108
|
+
>;
|
|
17830
18109
|
|
|
17831
|
-
type UploadSetItem$OpenPressedEvent = sap.ui.base.Event<
|
|
18110
|
+
type UploadSetItem$OpenPressedEvent = sap.ui.base.Event<
|
|
18111
|
+
UploadSetItem$OpenPressedEventParameters,
|
|
18112
|
+
UploadSetItem
|
|
18113
|
+
>;
|
|
17832
18114
|
|
|
17833
|
-
type UploadSetItem$RemovePressedEvent = sap.ui.base.Event<
|
|
18115
|
+
type UploadSetItem$RemovePressedEvent = sap.ui.base.Event<
|
|
18116
|
+
UploadSetItem$RemovePressedEventParameters,
|
|
18117
|
+
UploadSetItem
|
|
18118
|
+
>;
|
|
17834
18119
|
}
|
|
17835
18120
|
/**
|
|
17836
18121
|
* @since 1.80
|
|
@@ -18363,6 +18648,17 @@ declare namespace sap {
|
|
|
18363
18648
|
| sap.ui.base.ManagedObject.PropertyBindingInfo
|
|
18364
18649
|
| `{${string}}`;
|
|
18365
18650
|
|
|
18651
|
+
/**
|
|
18652
|
+
* @since 1.117.0
|
|
18653
|
+
*
|
|
18654
|
+
* Determines whether the `Avatar` is enabled (default is set to `true`). A disabled `Button` has different
|
|
18655
|
+
* colors depending on the {@link sap.m.AvatarColor AvatarColor}.
|
|
18656
|
+
*/
|
|
18657
|
+
enabled?:
|
|
18658
|
+
| boolean
|
|
18659
|
+
| sap.ui.base.ManagedObject.PropertyBindingInfo
|
|
18660
|
+
| `{${string}}`;
|
|
18661
|
+
|
|
18366
18662
|
/**
|
|
18367
18663
|
* A `sap.m.LightBox` instance, that will be opened automatically when the user interacts with the `Avatar`
|
|
18368
18664
|
* control.
|
|
@@ -20626,6 +20922,17 @@ declare namespace sap {
|
|
|
20626
20922
|
| sap.ui.base.ManagedObject.PropertyBindingInfo
|
|
20627
20923
|
| `{${string}}`;
|
|
20628
20924
|
|
|
20925
|
+
/**
|
|
20926
|
+
* @since 1.117
|
|
20927
|
+
*
|
|
20928
|
+
* Specifies whether clear icon is shown. Pressing the icon will clear input's value and fire the liveChange
|
|
20929
|
+
* event.
|
|
20930
|
+
*/
|
|
20931
|
+
showClearIcon?:
|
|
20932
|
+
| boolean
|
|
20933
|
+
| sap.ui.base.ManagedObject.PropertyBindingInfo
|
|
20934
|
+
| `{${string}}`;
|
|
20935
|
+
|
|
20629
20936
|
/**
|
|
20630
20937
|
* Custom options for the `DynamicDateRange`.
|
|
20631
20938
|
*/
|
|
@@ -24025,11 +24332,28 @@ declare namespace sap {
|
|
|
24025
24332
|
| `{${string}}`;
|
|
24026
24333
|
|
|
24027
24334
|
/**
|
|
24028
|
-
* Defines the header text that appears in the control. **Note:** If `headerToolbar` aggregation is
|
|
24029
|
-
* then this property is ignored.
|
|
24335
|
+
* Defines the header text that appears in the control. **Note:** If the `headerToolbar` aggregation is
|
|
24336
|
+
* set, then this property is ignored. If this is the case, use, for example, a `sap.m.Title` control in
|
|
24337
|
+
* the toolbar to define a header.
|
|
24030
24338
|
*/
|
|
24031
24339
|
headerText?: string | sap.ui.base.ManagedObject.PropertyBindingInfo;
|
|
24032
24340
|
|
|
24341
|
+
/**
|
|
24342
|
+
* @since 1.117.0
|
|
24343
|
+
*
|
|
24344
|
+
* Defines the semantic header level of the header text (see {@link #getHeaderText headerText} property}).
|
|
24345
|
+
* This information is, for example, used by assistive technologies, such as screenreaders, to create a
|
|
24346
|
+
* hierarchical site map for faster navigation. Depending on this setting, either the ARIA equivalent of
|
|
24347
|
+
* an HTML h1-h6 element is used or, when using the `Auto` level, no explicit level information is used.
|
|
24348
|
+
*
|
|
24349
|
+
* **Note:** If the `headerToolbar` aggregation is set, then this property is ignored. If this is the case,
|
|
24350
|
+
* use, for example, a `sap.m.Title` control in the toolbar to define a header.
|
|
24351
|
+
*/
|
|
24352
|
+
headerLevel?:
|
|
24353
|
+
| sap.ui.core.TitleLevel
|
|
24354
|
+
| sap.ui.base.ManagedObject.PropertyBindingInfo
|
|
24355
|
+
| `{${string}}`;
|
|
24356
|
+
|
|
24033
24357
|
/**
|
|
24034
24358
|
* @since 1.14
|
|
24035
24359
|
* @deprecated (since 1.16) - No longer has any functionality.
|
|
@@ -24241,16 +24565,18 @@ declare namespace sap {
|
|
|
24241
24565
|
/**
|
|
24242
24566
|
* @since 1.93
|
|
24243
24567
|
*
|
|
24244
|
-
* Defines the multi-selection mode for the control.
|
|
24245
|
-
* `sap.m.Table` control renders the Select All checkbox in the column header, otherwise the Deselect All
|
|
24246
|
-
* icon is rendered. The Select All checkbox allows the user to select all the items in the control, and
|
|
24247
|
-
* the Deselect All icon deselects the items. If the property is set to `ClearAll`, then selecting items
|
|
24248
|
-
* via the `selectAll` method is not possible. See {@link #selectAll selectAll} for more details.
|
|
24568
|
+
* Defines the multi-selection mode for the control.
|
|
24249
24569
|
*
|
|
24250
|
-
*
|
|
24251
|
-
*
|
|
24252
|
-
*
|
|
24253
|
-
*
|
|
24570
|
+
* If the property is set to `ClearAll`, then selecting items via the keyboard shortcut CTRL + A
|
|
24571
|
+
* and via the `selectAll` method is not possible. See {@link #selectAll selectAll} for more details. A
|
|
24572
|
+
* selection of multiple items is still possible using the range selection feature. For more information
|
|
24573
|
+
* about the range selection, see {@link https://ui5.sap.com/#/topic/8a0d4efa29d44ef39219c18d832012da Keyboard Handling for Item Selection}.
|
|
24574
|
+
*
|
|
24575
|
+
* **Only relevant for `sap.m.Table`:** If `ClearAll` is set, the table renders a Deselect All icon in the
|
|
24576
|
+
* column header, otherwise a Select All checkbox is shown. The Select All checkbox allows the user to select
|
|
24577
|
+
* all the items in the control, and the Deselect All icon deselects the items.
|
|
24578
|
+
*
|
|
24579
|
+
* **Note:** This property must be used with the `MultiSelect` mode.
|
|
24254
24580
|
*/
|
|
24255
24581
|
multiSelectMode?:
|
|
24256
24582
|
| sap.m.MultiSelectMode
|
|
@@ -28145,6 +28471,18 @@ declare namespace sap {
|
|
|
28145
28471
|
| sap.ui.base.ManagedObject.PropertyBindingInfo
|
|
28146
28472
|
| `{${string}}`;
|
|
28147
28473
|
|
|
28474
|
+
/**
|
|
28475
|
+
* @since 1.117
|
|
28476
|
+
*
|
|
28477
|
+
* Indicates whether the Panel header is sticky or not. If stickyHeader is set to true, then whenever you
|
|
28478
|
+
* scroll the content or the application, the header of the panel will be always visible and a solid color
|
|
28479
|
+
* will be used for its design.
|
|
28480
|
+
*/
|
|
28481
|
+
stickyHeader?:
|
|
28482
|
+
| boolean
|
|
28483
|
+
| sap.ui.base.ManagedObject.PropertyBindingInfo
|
|
28484
|
+
| `{${string}}`;
|
|
28485
|
+
|
|
28148
28486
|
/**
|
|
28149
28487
|
* Determines the content of the Panel. The content will be visible only when the Panel is expanded.
|
|
28150
28488
|
*/
|
|
@@ -31144,12 +31482,25 @@ declare namespace sap {
|
|
|
31144
31482
|
}
|
|
31145
31483
|
|
|
31146
31484
|
interface $SelectDialogBaseSettings extends sap.ui.core.$ControlSettings {
|
|
31485
|
+
/**
|
|
31486
|
+
* @since 1.117.0
|
|
31487
|
+
*
|
|
31488
|
+
* Specifies the control that will receive the initial focus.
|
|
31489
|
+
*
|
|
31490
|
+
* **Note:** When the `growing` property is set to `true`, you can set the initial focus to `sap.m.SelectDialogInitialFocus.SearchField`.
|
|
31491
|
+
* In this way the user can easily search for items that are not currently visible.
|
|
31492
|
+
*/
|
|
31493
|
+
initialFocus?:
|
|
31494
|
+
| sap.m.SelectDialogInitialFocus
|
|
31495
|
+
| sap.ui.base.ManagedObject.PropertyBindingInfo
|
|
31496
|
+
| `{${string}}`;
|
|
31497
|
+
|
|
31147
31498
|
/**
|
|
31148
31499
|
* @since 1.93
|
|
31149
31500
|
*
|
|
31150
31501
|
* Fires before `items` binding is updated (e.g. sorting, filtering)
|
|
31151
31502
|
*
|
|
31152
|
-
* **Note:** Event handler should not invalidate the control.
|
|
31503
|
+
* **Note:** Event handler should not invalidate the control.
|
|
31153
31504
|
*/
|
|
31154
31505
|
updateStarted?: (oEvent: SelectDialogBase$UpdateStartedEvent) => void;
|
|
31155
31506
|
|
|
@@ -42606,6 +42957,19 @@ declare namespace sap {
|
|
|
42606
42957
|
* @returns Value of property `displaySize`
|
|
42607
42958
|
*/
|
|
42608
42959
|
getDisplaySize(): sap.m.AvatarSize;
|
|
42960
|
+
/**
|
|
42961
|
+
* @since 1.117.0
|
|
42962
|
+
*
|
|
42963
|
+
* Gets current value of property {@link #getEnabled enabled}.
|
|
42964
|
+
*
|
|
42965
|
+
* Determines whether the `Avatar` is enabled (default is set to `true`). A disabled `Button` has different
|
|
42966
|
+
* colors depending on the {@link sap.m.AvatarColor AvatarColor}.
|
|
42967
|
+
*
|
|
42968
|
+
* Default value is `true`.
|
|
42969
|
+
*
|
|
42970
|
+
* @returns Value of property `enabled`
|
|
42971
|
+
*/
|
|
42972
|
+
getEnabled(): boolean;
|
|
42609
42973
|
/**
|
|
42610
42974
|
* Gets current value of property {@link #getFallbackIcon fallbackIcon}.
|
|
42611
42975
|
*
|
|
@@ -42901,6 +43265,26 @@ declare namespace sap {
|
|
|
42901
43265
|
*/
|
|
42902
43266
|
sDisplaySize?: sap.m.AvatarSize
|
|
42903
43267
|
): this;
|
|
43268
|
+
/**
|
|
43269
|
+
* @since 1.117.0
|
|
43270
|
+
*
|
|
43271
|
+
* Sets a new value for property {@link #getEnabled enabled}.
|
|
43272
|
+
*
|
|
43273
|
+
* Determines whether the `Avatar` is enabled (default is set to `true`). A disabled `Button` has different
|
|
43274
|
+
* colors depending on the {@link sap.m.AvatarColor AvatarColor}.
|
|
43275
|
+
*
|
|
43276
|
+
* When called with a value of `null` or `undefined`, the default value of the property will be restored.
|
|
43277
|
+
*
|
|
43278
|
+
* Default value is `true`.
|
|
43279
|
+
*
|
|
43280
|
+
* @returns Reference to `this` in order to allow method chaining
|
|
43281
|
+
*/
|
|
43282
|
+
setEnabled(
|
|
43283
|
+
/**
|
|
43284
|
+
* New value for property `enabled`
|
|
43285
|
+
*/
|
|
43286
|
+
bEnabled?: boolean
|
|
43287
|
+
): this;
|
|
42904
43288
|
/**
|
|
42905
43289
|
* Sets a new value for property {@link #getFallbackIcon fallbackIcon}.
|
|
42906
43290
|
*
|
|
@@ -55803,6 +56187,19 @@ declare namespace sap {
|
|
|
55803
56187
|
* @returns Value of property `required`
|
|
55804
56188
|
*/
|
|
55805
56189
|
getRequired(): boolean;
|
|
56190
|
+
/**
|
|
56191
|
+
* @since 1.117
|
|
56192
|
+
*
|
|
56193
|
+
* Gets current value of property {@link #getShowClearIcon showClearIcon}.
|
|
56194
|
+
*
|
|
56195
|
+
* Specifies whether clear icon is shown. Pressing the icon will clear input's value and fire the liveChange
|
|
56196
|
+
* event.
|
|
56197
|
+
*
|
|
56198
|
+
* Default value is `false`.
|
|
56199
|
+
*
|
|
56200
|
+
* @returns Value of property `showClearIcon`
|
|
56201
|
+
*/
|
|
56202
|
+
getShowClearIcon(): boolean;
|
|
55806
56203
|
/**
|
|
55807
56204
|
* @since 1.92
|
|
55808
56205
|
*
|
|
@@ -56136,6 +56533,17 @@ declare namespace sap {
|
|
|
56136
56533
|
*/
|
|
56137
56534
|
bRequired?: boolean
|
|
56138
56535
|
): this;
|
|
56536
|
+
/**
|
|
56537
|
+
* Sets the showClearIcon for the `DynamicDateRange`.
|
|
56538
|
+
*
|
|
56539
|
+
* @returns Reference to `this` for method chaining
|
|
56540
|
+
*/
|
|
56541
|
+
setShowClearIcon(
|
|
56542
|
+
/**
|
|
56543
|
+
* Whether to show clear icon.
|
|
56544
|
+
*/
|
|
56545
|
+
bShowClearIcon: boolean
|
|
56546
|
+
): this;
|
|
56139
56547
|
/**
|
|
56140
56548
|
* @since 1.92
|
|
56141
56549
|
*
|
|
@@ -56161,6 +56569,17 @@ declare namespace sap {
|
|
|
56161
56569
|
*/
|
|
56162
56570
|
sStandardOptions?: string[]
|
|
56163
56571
|
): this;
|
|
56572
|
+
/**
|
|
56573
|
+
* Sets the tooltip for the `DynamicDateRange`.
|
|
56574
|
+
*
|
|
56575
|
+
* @returns Reference to `this` for method chaining
|
|
56576
|
+
*/
|
|
56577
|
+
setTooltip(
|
|
56578
|
+
/**
|
|
56579
|
+
* The tooltip that should be shown.
|
|
56580
|
+
*/
|
|
56581
|
+
vTooltip: sap.ui.core.TooltipBase | string
|
|
56582
|
+
): this;
|
|
56164
56583
|
/**
|
|
56165
56584
|
* @since 1.92
|
|
56166
56585
|
*
|
|
@@ -64749,6 +65168,8 @@ declare namespace sap {
|
|
|
64749
65168
|
bShowOverflowSelectList?: boolean
|
|
64750
65169
|
): this;
|
|
64751
65170
|
/**
|
|
65171
|
+
* @deprecated (since 1.15.0) - Regarding to changes of this control this property is not needed anymore.
|
|
65172
|
+
*
|
|
64752
65173
|
* Reflector for the internal header's showSelection property.
|
|
64753
65174
|
*
|
|
64754
65175
|
* @returns this IconTabBar reference for chaining.
|
|
@@ -74047,11 +74468,30 @@ declare namespace sap {
|
|
|
74047
74468
|
* @returns Value of property `headerDesign`
|
|
74048
74469
|
*/
|
|
74049
74470
|
getHeaderDesign(): sap.m.ListHeaderDesign;
|
|
74471
|
+
/**
|
|
74472
|
+
* @since 1.117.0
|
|
74473
|
+
*
|
|
74474
|
+
* Gets current value of property {@link #getHeaderLevel headerLevel}.
|
|
74475
|
+
*
|
|
74476
|
+
* Defines the semantic header level of the header text (see {@link #getHeaderText headerText} property}).
|
|
74477
|
+
* This information is, for example, used by assistive technologies, such as screenreaders, to create a
|
|
74478
|
+
* hierarchical site map for faster navigation. Depending on this setting, either the ARIA equivalent of
|
|
74479
|
+
* an HTML h1-h6 element is used or, when using the `Auto` level, no explicit level information is used.
|
|
74480
|
+
*
|
|
74481
|
+
* **Note:** If the `headerToolbar` aggregation is set, then this property is ignored. If this is the case,
|
|
74482
|
+
* use, for example, a `sap.m.Title` control in the toolbar to define a header.
|
|
74483
|
+
*
|
|
74484
|
+
* Default value is `Auto`.
|
|
74485
|
+
*
|
|
74486
|
+
* @returns Value of property `headerLevel`
|
|
74487
|
+
*/
|
|
74488
|
+
getHeaderLevel(): sap.ui.core.TitleLevel;
|
|
74050
74489
|
/**
|
|
74051
74490
|
* Gets current value of property {@link #getHeaderText headerText}.
|
|
74052
74491
|
*
|
|
74053
|
-
* Defines the header text that appears in the control. **Note:** If `headerToolbar` aggregation is
|
|
74054
|
-
* then this property is ignored.
|
|
74492
|
+
* Defines the header text that appears in the control. **Note:** If the `headerToolbar` aggregation is
|
|
74493
|
+
* set, then this property is ignored. If this is the case, use, for example, a `sap.m.Title` control in
|
|
74494
|
+
* the toolbar to define a header.
|
|
74055
74495
|
*
|
|
74056
74496
|
* @returns Value of property `headerText`
|
|
74057
74497
|
*/
|
|
@@ -74152,16 +74592,18 @@ declare namespace sap {
|
|
|
74152
74592
|
*
|
|
74153
74593
|
* Gets current value of property {@link #getMultiSelectMode multiSelectMode}.
|
|
74154
74594
|
*
|
|
74155
|
-
* Defines the multi-selection mode for the control.
|
|
74156
|
-
*
|
|
74157
|
-
*
|
|
74158
|
-
* the
|
|
74159
|
-
*
|
|
74595
|
+
* Defines the multi-selection mode for the control.
|
|
74596
|
+
*
|
|
74597
|
+
* If the property is set to `ClearAll`, then selecting items via the keyboard shortcut CTRL + A
|
|
74598
|
+
* and via the `selectAll` method is not possible. See {@link #selectAll selectAll} for more details. A
|
|
74599
|
+
* selection of multiple items is still possible using the range selection feature. For more information
|
|
74600
|
+
* about the range selection, see {@link https://ui5.sap.com/#/topic/8a0d4efa29d44ef39219c18d832012da Keyboard Handling for Item Selection}.
|
|
74160
74601
|
*
|
|
74161
|
-
* **
|
|
74162
|
-
*
|
|
74163
|
-
*
|
|
74164
|
-
*
|
|
74602
|
+
* **Only relevant for `sap.m.Table`:** If `ClearAll` is set, the table renders a Deselect All icon in the
|
|
74603
|
+
* column header, otherwise a Select All checkbox is shown. The Select All checkbox allows the user to select
|
|
74604
|
+
* all the items in the control, and the Deselect All icon deselects the items.
|
|
74605
|
+
*
|
|
74606
|
+
* **Note:** This property must be used with the `MultiSelect` mode.
|
|
74165
74607
|
*
|
|
74166
74608
|
* Default value is `Default`.
|
|
74167
74609
|
*
|
|
@@ -74610,11 +75052,37 @@ declare namespace sap {
|
|
|
74610
75052
|
*/
|
|
74611
75053
|
sHeaderDesign?: sap.m.ListHeaderDesign
|
|
74612
75054
|
): this;
|
|
75055
|
+
/**
|
|
75056
|
+
* @since 1.117.0
|
|
75057
|
+
*
|
|
75058
|
+
* Sets a new value for property {@link #getHeaderLevel headerLevel}.
|
|
75059
|
+
*
|
|
75060
|
+
* Defines the semantic header level of the header text (see {@link #getHeaderText headerText} property}).
|
|
75061
|
+
* This information is, for example, used by assistive technologies, such as screenreaders, to create a
|
|
75062
|
+
* hierarchical site map for faster navigation. Depending on this setting, either the ARIA equivalent of
|
|
75063
|
+
* an HTML h1-h6 element is used or, when using the `Auto` level, no explicit level information is used.
|
|
75064
|
+
*
|
|
75065
|
+
* **Note:** If the `headerToolbar` aggregation is set, then this property is ignored. If this is the case,
|
|
75066
|
+
* use, for example, a `sap.m.Title` control in the toolbar to define a header.
|
|
75067
|
+
*
|
|
75068
|
+
* When called with a value of `null` or `undefined`, the default value of the property will be restored.
|
|
75069
|
+
*
|
|
75070
|
+
* Default value is `Auto`.
|
|
75071
|
+
*
|
|
75072
|
+
* @returns Reference to `this` in order to allow method chaining
|
|
75073
|
+
*/
|
|
75074
|
+
setHeaderLevel(
|
|
75075
|
+
/**
|
|
75076
|
+
* New value for property `headerLevel`
|
|
75077
|
+
*/
|
|
75078
|
+
sHeaderLevel?: sap.ui.core.TitleLevel
|
|
75079
|
+
): this;
|
|
74613
75080
|
/**
|
|
74614
75081
|
* Sets a new value for property {@link #getHeaderText headerText}.
|
|
74615
75082
|
*
|
|
74616
|
-
* Defines the header text that appears in the control. **Note:** If `headerToolbar` aggregation is
|
|
74617
|
-
* then this property is ignored.
|
|
75083
|
+
* Defines the header text that appears in the control. **Note:** If the `headerToolbar` aggregation is
|
|
75084
|
+
* set, then this property is ignored. If this is the case, use, for example, a `sap.m.Title` control in
|
|
75085
|
+
* the toolbar to define a header.
|
|
74618
75086
|
*
|
|
74619
75087
|
* When called with a value of `null` or `undefined`, the default value of the property will be restored.
|
|
74620
75088
|
*
|
|
@@ -74746,16 +75214,18 @@ declare namespace sap {
|
|
|
74746
75214
|
*
|
|
74747
75215
|
* Sets a new value for property {@link #getMultiSelectMode multiSelectMode}.
|
|
74748
75216
|
*
|
|
74749
|
-
* Defines the multi-selection mode for the control.
|
|
74750
|
-
*
|
|
74751
|
-
*
|
|
74752
|
-
* the
|
|
74753
|
-
*
|
|
75217
|
+
* Defines the multi-selection mode for the control.
|
|
75218
|
+
*
|
|
75219
|
+
* If the property is set to `ClearAll`, then selecting items via the keyboard shortcut CTRL + A
|
|
75220
|
+
* and via the `selectAll` method is not possible. See {@link #selectAll selectAll} for more details. A
|
|
75221
|
+
* selection of multiple items is still possible using the range selection feature. For more information
|
|
75222
|
+
* about the range selection, see {@link https://ui5.sap.com/#/topic/8a0d4efa29d44ef39219c18d832012da Keyboard Handling for Item Selection}.
|
|
74754
75223
|
*
|
|
74755
|
-
* **
|
|
74756
|
-
*
|
|
74757
|
-
*
|
|
74758
|
-
*
|
|
75224
|
+
* **Only relevant for `sap.m.Table`:** If `ClearAll` is set, the table renders a Deselect All icon in the
|
|
75225
|
+
* column header, otherwise a Select All checkbox is shown. The Select All checkbox allows the user to select
|
|
75226
|
+
* all the items in the control, and the Deselect All icon deselects the items.
|
|
75227
|
+
*
|
|
75228
|
+
* **Note:** This property must be used with the `MultiSelect` mode.
|
|
74759
75229
|
*
|
|
74760
75230
|
* When called with a value of `null` or `undefined`, the default value of the property will be restored.
|
|
74761
75231
|
*
|
|
@@ -76462,6 +76932,12 @@ declare namespace sap {
|
|
|
76462
76932
|
*/
|
|
76463
76933
|
iIndex: int
|
|
76464
76934
|
): this;
|
|
76935
|
+
/**
|
|
76936
|
+
* Returns whether the `Menu` is currently open.
|
|
76937
|
+
*
|
|
76938
|
+
* @returns true if menu is open
|
|
76939
|
+
*/
|
|
76940
|
+
isOpen(): boolean;
|
|
76465
76941
|
/**
|
|
76466
76942
|
* Opens the menu as a context menu.
|
|
76467
76943
|
*/
|
|
@@ -81890,6 +82366,11 @@ declare namespace sap {
|
|
|
81890
82366
|
* @returns An array of token validation callbacks
|
|
81891
82367
|
*/
|
|
81892
82368
|
getValidators(): Function[];
|
|
82369
|
+
/**
|
|
82370
|
+
*
|
|
82371
|
+
* @returns Indicates should token validator wait for asynchronous validation
|
|
82372
|
+
*/
|
|
82373
|
+
getWaitForAsyncValidation(): string;
|
|
81893
82374
|
/**
|
|
81894
82375
|
* Checks for the provided `sap.m.Token` in the aggregation {@link #getTokens tokens}. and returns its index
|
|
81895
82376
|
* if found or -1 otherwise.
|
|
@@ -86854,6 +87335,9 @@ declare namespace sap {
|
|
|
86854
87335
|
sIntroTextDirection?: sap.ui.core.TextDirection
|
|
86855
87336
|
): this;
|
|
86856
87337
|
/**
|
|
87338
|
+
* @deprecated (since 1.42.0) - replaced by `markers` aggregation. Add {@link sap.m.ObjectMarker} with type
|
|
87339
|
+
* `sap.m.ObjectMarkerType.Favorite`.
|
|
87340
|
+
*
|
|
86857
87341
|
* Sets the visibility value of the Favorite marker.
|
|
86858
87342
|
*
|
|
86859
87343
|
* @returns this pointer for chaining
|
|
@@ -86865,6 +87349,9 @@ declare namespace sap {
|
|
|
86865
87349
|
bMarked: boolean
|
|
86866
87350
|
): this;
|
|
86867
87351
|
/**
|
|
87352
|
+
* @deprecated (since 1.42.0) - replaced by `markers` aggregation. Add {@link sap.m.ObjectMarker} with type
|
|
87353
|
+
* `sap.m.ObjectMarkerType.Flagged`.
|
|
87354
|
+
*
|
|
86868
87355
|
* Sets the visibility value of the Flagged marker.
|
|
86869
87356
|
*
|
|
86870
87357
|
* @returns this pointer for chaining
|
|
@@ -86969,6 +87456,8 @@ declare namespace sap {
|
|
|
86969
87456
|
oSecondStatus: sap.m.ObjectStatus
|
|
86970
87457
|
): this;
|
|
86971
87458
|
/**
|
|
87459
|
+
* @deprecated (since 1.42.0) - replaced by `markers` aggregationv.
|
|
87460
|
+
*
|
|
86972
87461
|
* Sets the visibility value of the Flagged and Favorite markers.
|
|
86973
87462
|
*
|
|
86974
87463
|
* @returns this pointer for chaining
|
|
@@ -88061,6 +88550,9 @@ declare namespace sap {
|
|
|
88061
88550
|
sIntroTextDirection?: sap.ui.core.TextDirection
|
|
88062
88551
|
): this;
|
|
88063
88552
|
/**
|
|
88553
|
+
* @deprecated (since 1.42.0) - replaced by `markers` aggregation. Add {@link sap.m.ObjectMarker} with type
|
|
88554
|
+
* `sap.m.ObjectMarkerType.Favorite`.
|
|
88555
|
+
*
|
|
88064
88556
|
* Sets the visibility value of the Favorite marker.
|
|
88065
88557
|
*
|
|
88066
88558
|
* @returns this pointer for chaining
|
|
@@ -88072,6 +88564,9 @@ declare namespace sap {
|
|
|
88072
88564
|
bMarked: boolean
|
|
88073
88565
|
): this;
|
|
88074
88566
|
/**
|
|
88567
|
+
* @deprecated (since 1.42.0) - replaced by `markers` aggregation. Add {@link sap.m.ObjectMarker} with type
|
|
88568
|
+
* `sap.m.ObjectMarkerType.Flagged`.
|
|
88569
|
+
*
|
|
88075
88570
|
* Sets the visibility value of the Flagged marker.
|
|
88076
88571
|
*
|
|
88077
88572
|
* @returns this pointer for chaining
|
|
@@ -88083,7 +88578,10 @@ declare namespace sap {
|
|
|
88083
88578
|
bMarked: boolean
|
|
88084
88579
|
): this;
|
|
88085
88580
|
/**
|
|
88086
|
-
*
|
|
88581
|
+
* @deprecated (since 1.42.0) - replaced by `markers` aggregation. Add {@link sap.m.ObjectMarker} with type
|
|
88582
|
+
* `sap.m.ObjectMarkerType.Locked`.
|
|
88583
|
+
*
|
|
88584
|
+
* Sets the visibility value of the Locked marker.
|
|
88087
88585
|
*
|
|
88088
88586
|
* @returns this pointer for chaining
|
|
88089
88587
|
*/
|
|
@@ -88173,6 +88671,8 @@ declare namespace sap {
|
|
|
88173
88671
|
oSecondStatus: sap.m.ObjectStatus
|
|
88174
88672
|
): this;
|
|
88175
88673
|
/**
|
|
88674
|
+
* @deprecated (since 1.42.0) - replaced by `markers` aggregation.
|
|
88675
|
+
*
|
|
88176
88676
|
* Sets the visibility value of the Flagged and Favorite markers.
|
|
88177
88677
|
*
|
|
88178
88678
|
* @returns this pointer for chaining
|
|
@@ -97643,6 +98143,20 @@ declare namespace sap {
|
|
|
97643
98143
|
* information to the user.
|
|
97644
98144
|
*/
|
|
97645
98145
|
getInfoToolbar(): sap.m.Toolbar;
|
|
98146
|
+
/**
|
|
98147
|
+
* @since 1.117
|
|
98148
|
+
*
|
|
98149
|
+
* Gets current value of property {@link #getStickyHeader stickyHeader}.
|
|
98150
|
+
*
|
|
98151
|
+
* Indicates whether the Panel header is sticky or not. If stickyHeader is set to true, then whenever you
|
|
98152
|
+
* scroll the content or the application, the header of the panel will be always visible and a solid color
|
|
98153
|
+
* will be used for its design.
|
|
98154
|
+
*
|
|
98155
|
+
* Default value is `false`.
|
|
98156
|
+
*
|
|
98157
|
+
* @returns Value of property `stickyHeader`
|
|
98158
|
+
*/
|
|
98159
|
+
getStickyHeader(): boolean;
|
|
97646
98160
|
/**
|
|
97647
98161
|
* Gets current value of property {@link #getWidth width}.
|
|
97648
98162
|
*
|
|
@@ -97854,6 +98368,27 @@ declare namespace sap {
|
|
|
97854
98368
|
*/
|
|
97855
98369
|
oInfoToolbar: sap.m.Toolbar
|
|
97856
98370
|
): this;
|
|
98371
|
+
/**
|
|
98372
|
+
* @since 1.117
|
|
98373
|
+
*
|
|
98374
|
+
* Sets a new value for property {@link #getStickyHeader stickyHeader}.
|
|
98375
|
+
*
|
|
98376
|
+
* Indicates whether the Panel header is sticky or not. If stickyHeader is set to true, then whenever you
|
|
98377
|
+
* scroll the content or the application, the header of the panel will be always visible and a solid color
|
|
98378
|
+
* will be used for its design.
|
|
98379
|
+
*
|
|
98380
|
+
* When called with a value of `null` or `undefined`, the default value of the property will be restored.
|
|
98381
|
+
*
|
|
98382
|
+
* Default value is `false`.
|
|
98383
|
+
*
|
|
98384
|
+
* @returns Reference to `this` in order to allow method chaining
|
|
98385
|
+
*/
|
|
98386
|
+
setStickyHeader(
|
|
98387
|
+
/**
|
|
98388
|
+
* New value for property `stickyHeader`
|
|
98389
|
+
*/
|
|
98390
|
+
bStickyHeader?: boolean
|
|
98391
|
+
): this;
|
|
97857
98392
|
/**
|
|
97858
98393
|
* Sets a new value for property {@link #getWidth width}.
|
|
97859
98394
|
*
|
|
@@ -113674,7 +114209,7 @@ declare namespace sap {
|
|
|
113674
114209
|
*
|
|
113675
114210
|
* Fires before `items` binding is updated (e.g. sorting, filtering)
|
|
113676
114211
|
*
|
|
113677
|
-
* **Note:** Event handler should not invalidate the control.
|
|
114212
|
+
* **Note:** Event handler should not invalidate the control.
|
|
113678
114213
|
*
|
|
113679
114214
|
* @returns Reference to `this` in order to allow method chaining
|
|
113680
114215
|
*/
|
|
@@ -113703,7 +114238,7 @@ declare namespace sap {
|
|
|
113703
114238
|
*
|
|
113704
114239
|
* Fires before `items` binding is updated (e.g. sorting, filtering)
|
|
113705
114240
|
*
|
|
113706
|
-
* **Note:** Event handler should not invalidate the control.
|
|
114241
|
+
* **Note:** Event handler should not invalidate the control.
|
|
113707
114242
|
*
|
|
113708
114243
|
* @returns Reference to `this` in order to allow method chaining
|
|
113709
114244
|
*/
|
|
@@ -113819,6 +114354,43 @@ declare namespace sap {
|
|
|
113819
114354
|
*/
|
|
113820
114355
|
mParameters?: sap.m.SelectDialogBase$UpdateStartedEventParameters
|
|
113821
114356
|
): this;
|
|
114357
|
+
/**
|
|
114358
|
+
* @since 1.117.0
|
|
114359
|
+
*
|
|
114360
|
+
* Gets current value of property {@link #getInitialFocus initialFocus}.
|
|
114361
|
+
*
|
|
114362
|
+
* Specifies the control that will receive the initial focus.
|
|
114363
|
+
*
|
|
114364
|
+
* **Note:** When the `growing` property is set to `true`, you can set the initial focus to `sap.m.SelectDialogInitialFocus.SearchField`.
|
|
114365
|
+
* In this way the user can easily search for items that are not currently visible.
|
|
114366
|
+
*
|
|
114367
|
+
* Default value is `List`.
|
|
114368
|
+
*
|
|
114369
|
+
* @returns Value of property `initialFocus`
|
|
114370
|
+
*/
|
|
114371
|
+
getInitialFocus(): sap.m.SelectDialogInitialFocus;
|
|
114372
|
+
/**
|
|
114373
|
+
* @since 1.117.0
|
|
114374
|
+
*
|
|
114375
|
+
* Sets a new value for property {@link #getInitialFocus initialFocus}.
|
|
114376
|
+
*
|
|
114377
|
+
* Specifies the control that will receive the initial focus.
|
|
114378
|
+
*
|
|
114379
|
+
* **Note:** When the `growing` property is set to `true`, you can set the initial focus to `sap.m.SelectDialogInitialFocus.SearchField`.
|
|
114380
|
+
* In this way the user can easily search for items that are not currently visible.
|
|
114381
|
+
*
|
|
114382
|
+
* When called with a value of `null` or `undefined`, the default value of the property will be restored.
|
|
114383
|
+
*
|
|
114384
|
+
* Default value is `List`.
|
|
114385
|
+
*
|
|
114386
|
+
* @returns Reference to `this` in order to allow method chaining
|
|
114387
|
+
*/
|
|
114388
|
+
setInitialFocus(
|
|
114389
|
+
/**
|
|
114390
|
+
* New value for property `initialFocus`
|
|
114391
|
+
*/
|
|
114392
|
+
sInitialFocus?: sap.m.SelectDialogInitialFocus
|
|
114393
|
+
): this;
|
|
113822
114394
|
}
|
|
113823
114395
|
/**
|
|
113824
114396
|
* @since 1.48.0
|
|
@@ -120703,6 +121275,8 @@ declare namespace sap {
|
|
|
120703
121275
|
*
|
|
120704
121276
|
* The method is provided mainly for providing API consistency between sap.m.SplitContainer and sap.m.App.
|
|
120705
121277
|
* So that the same code line can be reused.
|
|
121278
|
+
*
|
|
121279
|
+
* @returns Reference to `this` in order to allow method chaining
|
|
120706
121280
|
*/
|
|
120707
121281
|
addPage(
|
|
120708
121282
|
/**
|
|
@@ -121848,6 +122422,8 @@ declare namespace sap {
|
|
|
121848
122422
|
): sap.ui.core.Control;
|
|
121849
122423
|
/**
|
|
121850
122424
|
* Used to hide the master page when in ShowHideMode and the device is in portrait mode.
|
|
122425
|
+
*
|
|
122426
|
+
* @returns Reference to `this` in order to allow method chaining
|
|
121851
122427
|
*/
|
|
121852
122428
|
hideMaster(): this;
|
|
121853
122429
|
/**
|
|
@@ -121914,13 +122490,15 @@ declare namespace sap {
|
|
|
121914
122490
|
* This can be used for deep-linking when the user directly reached a drilldown detail page using a bookmark
|
|
121915
122491
|
* and then wants to navigate up in the drilldown hierarchy. Normally, such a back navigation would not
|
|
121916
122492
|
* be possible as there is no previous page in the SplitContainer's history stack.
|
|
122493
|
+
*
|
|
122494
|
+
* @returns Reference to `this` in order to allow method chaining
|
|
121917
122495
|
*/
|
|
121918
122496
|
insertPreviousPage(
|
|
121919
122497
|
/**
|
|
121920
122498
|
* The ID of the control/page/screen, which is inserted into the history stack. The respective control must
|
|
121921
122499
|
* be aggregated by the SplitContainer, otherwise this will cause an error.
|
|
121922
122500
|
*/
|
|
121923
|
-
|
|
122501
|
+
pageId: string,
|
|
121924
122502
|
/**
|
|
121925
122503
|
* The type of the transition/animation which would have been used to navigate from the (inserted) previous
|
|
121926
122504
|
* page to the current page. When navigating back, the inverse animation will be applied. Options are "slide"
|
|
@@ -121932,7 +122510,7 @@ declare namespace sap {
|
|
|
121932
122510
|
* This optional object can carry any payload data which would have been given to the inserted previous
|
|
121933
122511
|
* page if the user would have done a normal forward navigation to it.
|
|
121934
122512
|
*/
|
|
121935
|
-
|
|
122513
|
+
data: object
|
|
121936
122514
|
): this;
|
|
121937
122515
|
/**
|
|
121938
122516
|
* Inserts the page/control with the specified ID into the navigation history stack of the NavContainer.
|
|
@@ -121940,18 +122518,20 @@ declare namespace sap {
|
|
|
121940
122518
|
* This can be used for deep-linking when the user directly reached a drilldown detail page using a bookmark
|
|
121941
122519
|
* and then wants to navigate up in the drilldown hierarchy. Normally, such a back navigation would not
|
|
121942
122520
|
* be possible as there is no previous page in the SplitContainer's history stack.
|
|
122521
|
+
*
|
|
122522
|
+
* @returns Reference to `this` in order to allow method chaining
|
|
121943
122523
|
*/
|
|
121944
122524
|
insertPreviousPage(
|
|
121945
122525
|
/**
|
|
121946
122526
|
* The ID of the control/page/screen, which is inserted into the history stack. The respective control must
|
|
121947
122527
|
* be aggregated by the SplitContainer, otherwise this will cause an error.
|
|
121948
122528
|
*/
|
|
121949
|
-
|
|
122529
|
+
pageId: string,
|
|
121950
122530
|
/**
|
|
121951
122531
|
* This optional object can carry any payload data which would have been given to the inserted previous
|
|
121952
122532
|
* page if the user would have done a normal forward navigation to it.
|
|
121953
122533
|
*/
|
|
121954
|
-
|
|
122534
|
+
data: object
|
|
121955
122535
|
): this;
|
|
121956
122536
|
/**
|
|
121957
122537
|
* @since 1.16.5
|
|
@@ -122205,8 +122785,10 @@ declare namespace sap {
|
|
|
122205
122785
|
): this;
|
|
122206
122786
|
/**
|
|
122207
122787
|
* Used to make the master page visible when in ShowHideMode and the device is in portrait mode.
|
|
122788
|
+
*
|
|
122789
|
+
* @returns Reference to `this` in order to allow method chaining
|
|
122208
122790
|
*/
|
|
122209
|
-
showMaster():
|
|
122791
|
+
showMaster(): this;
|
|
122210
122792
|
/**
|
|
122211
122793
|
* @since 1.10.0
|
|
122212
122794
|
*
|
|
@@ -144287,17 +144869,20 @@ declare namespace sap {
|
|
|
144287
144869
|
*/
|
|
144288
144870
|
enum MultiSelectMode {
|
|
144289
144871
|
/**
|
|
144290
|
-
*
|
|
144872
|
+
* The Select All functionality is not available. Instead, it is only possible to remove the selection of
|
|
144873
|
+
* all items. For a `sap.m.Table`, a Deselect All icon is rendered.
|
|
144291
144874
|
*/
|
|
144292
144875
|
ClearAll = "ClearAll",
|
|
144293
144876
|
/**
|
|
144294
|
-
*
|
|
144877
|
+
* The Select All functionality is available (default behavior). For a `sap.m.Table`, a Select All checkbox
|
|
144878
|
+
* is rendered.
|
|
144295
144879
|
*/
|
|
144296
144880
|
Default = "Default",
|
|
144297
144881
|
/**
|
|
144298
144882
|
* @since 1.109
|
|
144299
144883
|
*
|
|
144300
|
-
*
|
|
144884
|
+
* The Select All functionality is available. For a `sap.m.Table`, a Select All checkbox with a warning
|
|
144885
|
+
* popover is rendered if not all items could be selected (for example, because of growing).
|
|
144301
144886
|
*/
|
|
144302
144887
|
SelectAll = "SelectAll",
|
|
144303
144888
|
}
|
|
@@ -144919,6 +145504,21 @@ declare namespace sap {
|
|
|
144919
145504
|
*/
|
|
144920
145505
|
XXSmall = "XXSmall",
|
|
144921
145506
|
}
|
|
145507
|
+
/**
|
|
145508
|
+
* @since 1.117.0
|
|
145509
|
+
*
|
|
145510
|
+
* Defines the control that will receive the initial focus in the `sap.m.SelectDialog` or `sap.m.TableSelectDialog`.
|
|
145511
|
+
*/
|
|
145512
|
+
enum SelectDialogInitialFocus {
|
|
145513
|
+
/**
|
|
145514
|
+
* Content list.
|
|
145515
|
+
*/
|
|
145516
|
+
List = "List",
|
|
145517
|
+
/**
|
|
145518
|
+
* SearchField control
|
|
145519
|
+
*/
|
|
145520
|
+
SearchField = "SearchField",
|
|
145521
|
+
}
|
|
144922
145522
|
/**
|
|
144923
145523
|
* @since 1.48
|
|
144924
145524
|
* @ui5-protected DO NOT USE IN APPLICATIONS (only for related classes in the framework)
|
|
@@ -145586,6 +146186,19 @@ declare namespace sap {
|
|
|
145586
146186
|
*/
|
|
145587
146187
|
Uploading = "Uploading",
|
|
145588
146188
|
}
|
|
146189
|
+
/**
|
|
146190
|
+
* Type of the upload {@link sap.m.UploadSetItem}.
|
|
146191
|
+
*/
|
|
146192
|
+
enum UploadType {
|
|
146193
|
+
/**
|
|
146194
|
+
* The file has been uploaded from cloud.
|
|
146195
|
+
*/
|
|
146196
|
+
Cloud = "Cloud",
|
|
146197
|
+
/**
|
|
146198
|
+
* The file has been uploaded from your system.
|
|
146199
|
+
*/
|
|
146200
|
+
Native = "Native",
|
|
146201
|
+
}
|
|
145589
146202
|
/**
|
|
145590
146203
|
* Enumeration of possible value color settings.
|
|
145591
146204
|
*/
|
|
@@ -145856,577 +146469,1417 @@ declare namespace sap {
|
|
|
145856
146469
|
*/
|
|
145857
146470
|
type ValueCSSColor = string;
|
|
145858
146471
|
|
|
145859
|
-
type ActionSheet$AfterCloseEvent = sap.ui.base.Event<
|
|
145860
|
-
|
|
145861
|
-
|
|
145862
|
-
|
|
145863
|
-
|
|
145864
|
-
|
|
145865
|
-
|
|
145866
|
-
|
|
145867
|
-
|
|
145868
|
-
|
|
145869
|
-
type ActionSheet$
|
|
145870
|
-
|
|
145871
|
-
|
|
145872
|
-
|
|
145873
|
-
|
|
145874
|
-
|
|
145875
|
-
|
|
145876
|
-
|
|
145877
|
-
|
|
145878
|
-
|
|
145879
|
-
type
|
|
145880
|
-
|
|
145881
|
-
|
|
145882
|
-
|
|
145883
|
-
|
|
145884
|
-
|
|
145885
|
-
|
|
145886
|
-
|
|
145887
|
-
|
|
145888
|
-
|
|
145889
|
-
type
|
|
145890
|
-
|
|
145891
|
-
|
|
145892
|
-
|
|
145893
|
-
|
|
145894
|
-
|
|
145895
|
-
|
|
145896
|
-
|
|
145897
|
-
|
|
145898
|
-
|
|
145899
|
-
type
|
|
145900
|
-
|
|
145901
|
-
|
|
145902
|
-
|
|
145903
|
-
|
|
145904
|
-
|
|
145905
|
-
|
|
145906
|
-
|
|
145907
|
-
|
|
145908
|
-
|
|
145909
|
-
type
|
|
145910
|
-
|
|
145911
|
-
type
|
|
145912
|
-
|
|
145913
|
-
|
|
145914
|
-
|
|
145915
|
-
|
|
145916
|
-
|
|
145917
|
-
|
|
145918
|
-
|
|
145919
|
-
|
|
145920
|
-
|
|
145921
|
-
type
|
|
145922
|
-
|
|
145923
|
-
|
|
145924
|
-
|
|
145925
|
-
|
|
145926
|
-
|
|
145927
|
-
|
|
145928
|
-
|
|
145929
|
-
|
|
145930
|
-
|
|
145931
|
-
type
|
|
145932
|
-
|
|
145933
|
-
|
|
145934
|
-
|
|
145935
|
-
|
|
145936
|
-
|
|
145937
|
-
|
|
145938
|
-
|
|
145939
|
-
|
|
145940
|
-
|
|
145941
|
-
type
|
|
145942
|
-
|
|
145943
|
-
|
|
145944
|
-
|
|
145945
|
-
|
|
145946
|
-
|
|
145947
|
-
|
|
145948
|
-
|
|
145949
|
-
|
|
145950
|
-
|
|
145951
|
-
type
|
|
145952
|
-
|
|
145953
|
-
|
|
145954
|
-
|
|
145955
|
-
|
|
145956
|
-
|
|
145957
|
-
|
|
145958
|
-
|
|
145959
|
-
|
|
145960
|
-
|
|
145961
|
-
type
|
|
145962
|
-
|
|
145963
|
-
|
|
145964
|
-
|
|
145965
|
-
|
|
145966
|
-
|
|
145967
|
-
|
|
145968
|
-
|
|
145969
|
-
|
|
145970
|
-
|
|
145971
|
-
type
|
|
145972
|
-
|
|
145973
|
-
|
|
145974
|
-
|
|
145975
|
-
|
|
145976
|
-
|
|
145977
|
-
|
|
145978
|
-
|
|
145979
|
-
|
|
145980
|
-
|
|
145981
|
-
type
|
|
145982
|
-
|
|
145983
|
-
|
|
145984
|
-
|
|
145985
|
-
|
|
145986
|
-
|
|
145987
|
-
|
|
145988
|
-
|
|
145989
|
-
|
|
145990
|
-
|
|
145991
|
-
type
|
|
145992
|
-
|
|
145993
|
-
|
|
145994
|
-
|
|
145995
|
-
|
|
145996
|
-
|
|
145997
|
-
|
|
145998
|
-
|
|
145999
|
-
|
|
146000
|
-
|
|
146001
|
-
type
|
|
146002
|
-
|
|
146003
|
-
|
|
146004
|
-
|
|
146005
|
-
|
|
146006
|
-
|
|
146007
|
-
|
|
146008
|
-
|
|
146009
|
-
|
|
146010
|
-
|
|
146011
|
-
type
|
|
146012
|
-
|
|
146013
|
-
|
|
146014
|
-
|
|
146015
|
-
|
|
146016
|
-
|
|
146017
|
-
|
|
146018
|
-
|
|
146019
|
-
|
|
146020
|
-
|
|
146021
|
-
type
|
|
146022
|
-
|
|
146023
|
-
|
|
146024
|
-
|
|
146025
|
-
|
|
146026
|
-
|
|
146027
|
-
|
|
146028
|
-
|
|
146029
|
-
|
|
146030
|
-
|
|
146031
|
-
type
|
|
146032
|
-
|
|
146033
|
-
|
|
146034
|
-
|
|
146035
|
-
|
|
146036
|
-
|
|
146037
|
-
|
|
146038
|
-
|
|
146039
|
-
|
|
146040
|
-
|
|
146041
|
-
type
|
|
146042
|
-
|
|
146043
|
-
|
|
146044
|
-
|
|
146045
|
-
|
|
146046
|
-
|
|
146047
|
-
|
|
146048
|
-
|
|
146049
|
-
|
|
146050
|
-
|
|
146051
|
-
type
|
|
146052
|
-
|
|
146053
|
-
|
|
146054
|
-
|
|
146055
|
-
|
|
146056
|
-
|
|
146057
|
-
|
|
146058
|
-
|
|
146059
|
-
|
|
146060
|
-
|
|
146061
|
-
type
|
|
146062
|
-
|
|
146063
|
-
|
|
146064
|
-
|
|
146065
|
-
|
|
146066
|
-
|
|
146067
|
-
|
|
146068
|
-
|
|
146069
|
-
|
|
146070
|
-
|
|
146071
|
-
type
|
|
146072
|
-
|
|
146073
|
-
|
|
146074
|
-
|
|
146075
|
-
|
|
146076
|
-
|
|
146077
|
-
|
|
146078
|
-
|
|
146079
|
-
|
|
146080
|
-
|
|
146081
|
-
type
|
|
146082
|
-
|
|
146083
|
-
|
|
146084
|
-
|
|
146085
|
-
|
|
146086
|
-
|
|
146087
|
-
|
|
146088
|
-
|
|
146089
|
-
|
|
146090
|
-
|
|
146091
|
-
type
|
|
146092
|
-
|
|
146093
|
-
|
|
146094
|
-
|
|
146095
|
-
|
|
146096
|
-
|
|
146097
|
-
|
|
146098
|
-
|
|
146099
|
-
|
|
146100
|
-
|
|
146101
|
-
type
|
|
146102
|
-
|
|
146103
|
-
|
|
146104
|
-
|
|
146105
|
-
|
|
146106
|
-
|
|
146107
|
-
|
|
146108
|
-
|
|
146109
|
-
|
|
146110
|
-
|
|
146111
|
-
type
|
|
146112
|
-
|
|
146113
|
-
|
|
146114
|
-
|
|
146115
|
-
|
|
146116
|
-
|
|
146117
|
-
|
|
146118
|
-
|
|
146119
|
-
|
|
146120
|
-
|
|
146121
|
-
|
|
146122
|
-
|
|
146123
|
-
type
|
|
146124
|
-
|
|
146125
|
-
type
|
|
146126
|
-
|
|
146127
|
-
|
|
146128
|
-
|
|
146129
|
-
|
|
146130
|
-
|
|
146131
|
-
|
|
146132
|
-
|
|
146133
|
-
|
|
146134
|
-
|
|
146135
|
-
type
|
|
146136
|
-
|
|
146137
|
-
|
|
146138
|
-
|
|
146139
|
-
|
|
146140
|
-
|
|
146141
|
-
|
|
146142
|
-
|
|
146143
|
-
|
|
146144
|
-
|
|
146145
|
-
type
|
|
146146
|
-
|
|
146147
|
-
|
|
146148
|
-
|
|
146149
|
-
|
|
146150
|
-
|
|
146151
|
-
|
|
146152
|
-
|
|
146153
|
-
|
|
146154
|
-
|
|
146155
|
-
type
|
|
146156
|
-
|
|
146157
|
-
|
|
146158
|
-
|
|
146159
|
-
|
|
146160
|
-
|
|
146161
|
-
|
|
146162
|
-
|
|
146163
|
-
|
|
146164
|
-
|
|
146165
|
-
|
|
146166
|
-
|
|
146167
|
-
type
|
|
146168
|
-
|
|
146169
|
-
|
|
146170
|
-
|
|
146171
|
-
|
|
146172
|
-
|
|
146173
|
-
|
|
146174
|
-
|
|
146175
|
-
|
|
146176
|
-
|
|
146177
|
-
type
|
|
146178
|
-
|
|
146179
|
-
|
|
146180
|
-
|
|
146181
|
-
|
|
146182
|
-
|
|
146183
|
-
|
|
146184
|
-
|
|
146185
|
-
|
|
146186
|
-
|
|
146187
|
-
type
|
|
146188
|
-
|
|
146189
|
-
|
|
146190
|
-
|
|
146191
|
-
|
|
146192
|
-
|
|
146193
|
-
|
|
146194
|
-
|
|
146195
|
-
|
|
146196
|
-
|
|
146197
|
-
type
|
|
146198
|
-
|
|
146199
|
-
|
|
146200
|
-
|
|
146201
|
-
|
|
146202
|
-
|
|
146203
|
-
|
|
146204
|
-
|
|
146205
|
-
|
|
146206
|
-
|
|
146207
|
-
type
|
|
146208
|
-
|
|
146209
|
-
|
|
146210
|
-
|
|
146211
|
-
|
|
146212
|
-
|
|
146213
|
-
|
|
146214
|
-
|
|
146215
|
-
|
|
146216
|
-
|
|
146217
|
-
type
|
|
146218
|
-
|
|
146219
|
-
|
|
146220
|
-
|
|
146221
|
-
|
|
146222
|
-
|
|
146223
|
-
|
|
146224
|
-
|
|
146225
|
-
|
|
146226
|
-
|
|
146227
|
-
type
|
|
146228
|
-
|
|
146229
|
-
|
|
146230
|
-
|
|
146231
|
-
|
|
146232
|
-
|
|
146233
|
-
|
|
146234
|
-
|
|
146235
|
-
|
|
146236
|
-
|
|
146237
|
-
type
|
|
146238
|
-
|
|
146239
|
-
type
|
|
146240
|
-
|
|
146241
|
-
|
|
146242
|
-
|
|
146243
|
-
|
|
146244
|
-
|
|
146245
|
-
|
|
146246
|
-
|
|
146247
|
-
|
|
146248
|
-
|
|
146249
|
-
type
|
|
146250
|
-
|
|
146251
|
-
|
|
146252
|
-
|
|
146253
|
-
|
|
146254
|
-
|
|
146255
|
-
|
|
146256
|
-
|
|
146257
|
-
|
|
146258
|
-
|
|
146259
|
-
type
|
|
146260
|
-
|
|
146261
|
-
|
|
146262
|
-
|
|
146263
|
-
|
|
146264
|
-
|
|
146265
|
-
|
|
146266
|
-
|
|
146267
|
-
|
|
146268
|
-
|
|
146269
|
-
type
|
|
146270
|
-
|
|
146271
|
-
|
|
146272
|
-
|
|
146273
|
-
|
|
146274
|
-
|
|
146275
|
-
|
|
146276
|
-
|
|
146277
|
-
|
|
146278
|
-
|
|
146279
|
-
type
|
|
146280
|
-
|
|
146281
|
-
|
|
146282
|
-
|
|
146283
|
-
|
|
146284
|
-
|
|
146285
|
-
|
|
146286
|
-
|
|
146287
|
-
|
|
146288
|
-
|
|
146289
|
-
type
|
|
146290
|
-
|
|
146291
|
-
|
|
146292
|
-
|
|
146293
|
-
|
|
146294
|
-
|
|
146295
|
-
|
|
146296
|
-
|
|
146297
|
-
|
|
146298
|
-
|
|
146299
|
-
type
|
|
146300
|
-
|
|
146301
|
-
|
|
146302
|
-
|
|
146303
|
-
|
|
146304
|
-
|
|
146305
|
-
|
|
146306
|
-
|
|
146307
|
-
|
|
146308
|
-
|
|
146309
|
-
type
|
|
146310
|
-
|
|
146311
|
-
|
|
146312
|
-
|
|
146313
|
-
|
|
146314
|
-
|
|
146315
|
-
|
|
146316
|
-
|
|
146317
|
-
|
|
146318
|
-
|
|
146319
|
-
type
|
|
146320
|
-
|
|
146321
|
-
|
|
146322
|
-
|
|
146323
|
-
|
|
146324
|
-
|
|
146325
|
-
|
|
146326
|
-
|
|
146327
|
-
|
|
146328
|
-
|
|
146329
|
-
type
|
|
146330
|
-
|
|
146331
|
-
|
|
146332
|
-
|
|
146333
|
-
|
|
146334
|
-
|
|
146335
|
-
|
|
146336
|
-
|
|
146337
|
-
|
|
146338
|
-
|
|
146339
|
-
type
|
|
146340
|
-
|
|
146341
|
-
|
|
146342
|
-
|
|
146343
|
-
|
|
146344
|
-
|
|
146345
|
-
|
|
146346
|
-
|
|
146347
|
-
|
|
146348
|
-
|
|
146349
|
-
type
|
|
146350
|
-
|
|
146351
|
-
|
|
146352
|
-
|
|
146353
|
-
|
|
146354
|
-
|
|
146355
|
-
|
|
146356
|
-
|
|
146357
|
-
|
|
146358
|
-
|
|
146359
|
-
type
|
|
146360
|
-
|
|
146361
|
-
|
|
146362
|
-
|
|
146363
|
-
|
|
146364
|
-
|
|
146365
|
-
|
|
146366
|
-
|
|
146367
|
-
|
|
146368
|
-
|
|
146369
|
-
type
|
|
146370
|
-
|
|
146371
|
-
|
|
146372
|
-
|
|
146373
|
-
|
|
146374
|
-
|
|
146375
|
-
|
|
146376
|
-
|
|
146377
|
-
|
|
146378
|
-
|
|
146379
|
-
type
|
|
146380
|
-
|
|
146381
|
-
|
|
146382
|
-
|
|
146383
|
-
|
|
146384
|
-
|
|
146385
|
-
|
|
146386
|
-
|
|
146387
|
-
|
|
146388
|
-
|
|
146389
|
-
type
|
|
146390
|
-
|
|
146391
|
-
|
|
146392
|
-
|
|
146393
|
-
|
|
146394
|
-
|
|
146395
|
-
|
|
146396
|
-
|
|
146397
|
-
|
|
146398
|
-
|
|
146399
|
-
type
|
|
146400
|
-
|
|
146401
|
-
|
|
146402
|
-
|
|
146403
|
-
|
|
146404
|
-
|
|
146405
|
-
|
|
146406
|
-
|
|
146407
|
-
|
|
146408
|
-
|
|
146409
|
-
type
|
|
146410
|
-
|
|
146411
|
-
|
|
146412
|
-
|
|
146413
|
-
|
|
146414
|
-
|
|
146415
|
-
|
|
146416
|
-
|
|
146417
|
-
|
|
146418
|
-
|
|
146419
|
-
type
|
|
146420
|
-
|
|
146421
|
-
|
|
146422
|
-
|
|
146423
|
-
|
|
146424
|
-
|
|
146425
|
-
|
|
146426
|
-
|
|
146427
|
-
|
|
146428
|
-
|
|
146429
|
-
type
|
|
146472
|
+
type ActionSheet$AfterCloseEvent = sap.ui.base.Event<
|
|
146473
|
+
ActionSheet$AfterCloseEventParameters,
|
|
146474
|
+
ActionSheet
|
|
146475
|
+
>;
|
|
146476
|
+
|
|
146477
|
+
type ActionSheet$AfterOpenEvent = sap.ui.base.Event<
|
|
146478
|
+
ActionSheet$AfterOpenEventParameters,
|
|
146479
|
+
ActionSheet
|
|
146480
|
+
>;
|
|
146481
|
+
|
|
146482
|
+
type ActionSheet$BeforeCloseEvent = sap.ui.base.Event<
|
|
146483
|
+
ActionSheet$BeforeCloseEventParameters,
|
|
146484
|
+
ActionSheet
|
|
146485
|
+
>;
|
|
146486
|
+
|
|
146487
|
+
type ActionSheet$BeforeOpenEvent = sap.ui.base.Event<
|
|
146488
|
+
ActionSheet$BeforeOpenEventParameters,
|
|
146489
|
+
ActionSheet
|
|
146490
|
+
>;
|
|
146491
|
+
|
|
146492
|
+
type ActionSheet$CancelButtonPressEvent = sap.ui.base.Event<
|
|
146493
|
+
ActionSheet$CancelButtonPressEventParameters,
|
|
146494
|
+
ActionSheet
|
|
146495
|
+
>;
|
|
146496
|
+
|
|
146497
|
+
type ActionSheet$CancelButtonTapEvent = sap.ui.base.Event<
|
|
146498
|
+
ActionSheet$CancelButtonTapEventParameters,
|
|
146499
|
+
ActionSheet
|
|
146500
|
+
>;
|
|
146501
|
+
|
|
146502
|
+
type App$OrientationChangeEvent = sap.ui.base.Event<
|
|
146503
|
+
App$OrientationChangeEventParameters,
|
|
146504
|
+
App
|
|
146505
|
+
>;
|
|
146506
|
+
|
|
146507
|
+
type Avatar$PressEvent = sap.ui.base.Event<
|
|
146508
|
+
Avatar$PressEventParameters,
|
|
146509
|
+
Avatar
|
|
146510
|
+
>;
|
|
146511
|
+
|
|
146512
|
+
type BusyDialog$CloseEvent = sap.ui.base.Event<
|
|
146513
|
+
BusyDialog$CloseEventParameters,
|
|
146514
|
+
BusyDialog
|
|
146515
|
+
>;
|
|
146516
|
+
|
|
146517
|
+
type Button$PressEvent = sap.ui.base.Event<
|
|
146518
|
+
Button$PressEventParameters,
|
|
146519
|
+
Button
|
|
146520
|
+
>;
|
|
146521
|
+
|
|
146522
|
+
type Button$TapEvent = sap.ui.base.Event<Button$TapEventParameters, Button>;
|
|
146523
|
+
|
|
146524
|
+
type Carousel$BeforePageChangedEvent = sap.ui.base.Event<
|
|
146525
|
+
Carousel$BeforePageChangedEventParameters,
|
|
146526
|
+
Carousel
|
|
146527
|
+
>;
|
|
146528
|
+
|
|
146529
|
+
type Carousel$LoadPageEvent = sap.ui.base.Event<
|
|
146530
|
+
Carousel$LoadPageEventParameters,
|
|
146531
|
+
Carousel
|
|
146532
|
+
>;
|
|
146533
|
+
|
|
146534
|
+
type Carousel$PageChangedEvent = sap.ui.base.Event<
|
|
146535
|
+
Carousel$PageChangedEventParameters,
|
|
146536
|
+
Carousel
|
|
146537
|
+
>;
|
|
146538
|
+
|
|
146539
|
+
type Carousel$UnloadPageEvent = sap.ui.base.Event<
|
|
146540
|
+
Carousel$UnloadPageEventParameters,
|
|
146541
|
+
Carousel
|
|
146542
|
+
>;
|
|
146543
|
+
|
|
146544
|
+
type CheckBox$SelectEvent = sap.ui.base.Event<
|
|
146545
|
+
CheckBox$SelectEventParameters,
|
|
146546
|
+
CheckBox
|
|
146547
|
+
>;
|
|
146548
|
+
|
|
146549
|
+
type ColorPalette$ColorSelectEvent = sap.ui.base.Event<
|
|
146550
|
+
ColorPalette$ColorSelectEventParameters,
|
|
146551
|
+
ColorPalette
|
|
146552
|
+
>;
|
|
146553
|
+
|
|
146554
|
+
type ColorPalette$LiveChangeEvent = sap.ui.base.Event<
|
|
146555
|
+
ColorPalette$LiveChangeEventParameters,
|
|
146556
|
+
ColorPalette
|
|
146557
|
+
>;
|
|
146558
|
+
|
|
146559
|
+
type ColorPalettePopover$ColorSelectEvent = sap.ui.base.Event<
|
|
146560
|
+
ColorPalettePopover$ColorSelectEventParameters,
|
|
146561
|
+
ColorPalettePopover
|
|
146562
|
+
>;
|
|
146563
|
+
|
|
146564
|
+
type ColorPalettePopover$LiveChangeEvent = sap.ui.base.Event<
|
|
146565
|
+
ColorPalettePopover$LiveChangeEventParameters,
|
|
146566
|
+
ColorPalettePopover
|
|
146567
|
+
>;
|
|
146568
|
+
|
|
146569
|
+
type ComboBox$ChangeEvent = sap.ui.base.Event<
|
|
146570
|
+
ComboBox$ChangeEventParameters,
|
|
146571
|
+
ComboBox
|
|
146572
|
+
>;
|
|
146573
|
+
|
|
146574
|
+
type ComboBox$SelectionChangeEvent = sap.ui.base.Event<
|
|
146575
|
+
ComboBox$SelectionChangeEventParameters,
|
|
146576
|
+
ComboBox
|
|
146577
|
+
>;
|
|
146578
|
+
|
|
146579
|
+
type ComboBoxBase$LoadItemsEvent = sap.ui.base.Event<
|
|
146580
|
+
ComboBoxBase$LoadItemsEventParameters,
|
|
146581
|
+
ComboBoxBase
|
|
146582
|
+
>;
|
|
146583
|
+
|
|
146584
|
+
type DatePicker$AfterValueHelpCloseEvent = sap.ui.base.Event<
|
|
146585
|
+
DatePicker$AfterValueHelpCloseEventParameters,
|
|
146586
|
+
DatePicker
|
|
146587
|
+
>;
|
|
146588
|
+
|
|
146589
|
+
type DatePicker$AfterValueHelpOpenEvent = sap.ui.base.Event<
|
|
146590
|
+
DatePicker$AfterValueHelpOpenEventParameters,
|
|
146591
|
+
DatePicker
|
|
146592
|
+
>;
|
|
146593
|
+
|
|
146594
|
+
type DatePicker$ChangeEvent = sap.ui.base.Event<
|
|
146595
|
+
DatePicker$ChangeEventParameters,
|
|
146596
|
+
DatePicker
|
|
146597
|
+
>;
|
|
146598
|
+
|
|
146599
|
+
type DatePicker$NavigateEvent = sap.ui.base.Event<
|
|
146600
|
+
DatePicker$NavigateEventParameters,
|
|
146601
|
+
DatePicker
|
|
146602
|
+
>;
|
|
146603
|
+
|
|
146604
|
+
type DateRangeSelection$ChangeEvent = sap.ui.base.Event<
|
|
146605
|
+
DateRangeSelection$ChangeEventParameters,
|
|
146606
|
+
DateRangeSelection
|
|
146607
|
+
>;
|
|
146608
|
+
|
|
146609
|
+
type DateTimeField$LiveChangeEvent = sap.ui.base.Event<
|
|
146610
|
+
DateTimeField$LiveChangeEventParameters,
|
|
146611
|
+
DateTimeField
|
|
146612
|
+
>;
|
|
146613
|
+
|
|
146614
|
+
type DateTimeInput$ChangeEvent = sap.ui.base.Event<
|
|
146615
|
+
DateTimeInput$ChangeEventParameters,
|
|
146616
|
+
DateTimeInput
|
|
146617
|
+
>;
|
|
146618
|
+
|
|
146619
|
+
type Dialog$AfterCloseEvent = sap.ui.base.Event<
|
|
146620
|
+
Dialog$AfterCloseEventParameters,
|
|
146621
|
+
Dialog
|
|
146622
|
+
>;
|
|
146623
|
+
|
|
146624
|
+
type Dialog$AfterOpenEvent = sap.ui.base.Event<
|
|
146625
|
+
Dialog$AfterOpenEventParameters,
|
|
146626
|
+
Dialog
|
|
146627
|
+
>;
|
|
146628
|
+
|
|
146629
|
+
type Dialog$BeforeCloseEvent = sap.ui.base.Event<
|
|
146630
|
+
Dialog$BeforeCloseEventParameters,
|
|
146631
|
+
Dialog
|
|
146632
|
+
>;
|
|
146633
|
+
|
|
146634
|
+
type Dialog$BeforeOpenEvent = sap.ui.base.Event<
|
|
146635
|
+
Dialog$BeforeOpenEventParameters,
|
|
146636
|
+
Dialog
|
|
146637
|
+
>;
|
|
146638
|
+
|
|
146639
|
+
type DynamicDateRange$ChangeEvent = sap.ui.base.Event<
|
|
146640
|
+
DynamicDateRange$ChangeEventParameters,
|
|
146641
|
+
DynamicDateRange
|
|
146642
|
+
>;
|
|
146643
|
+
|
|
146644
|
+
type FacetFilter$ConfirmEvent = sap.ui.base.Event<
|
|
146645
|
+
FacetFilter$ConfirmEventParameters,
|
|
146646
|
+
FacetFilter
|
|
146647
|
+
>;
|
|
146648
|
+
|
|
146649
|
+
type FacetFilter$ResetEvent = sap.ui.base.Event<
|
|
146650
|
+
FacetFilter$ResetEventParameters,
|
|
146651
|
+
FacetFilter
|
|
146652
|
+
>;
|
|
146653
|
+
|
|
146654
|
+
type FacetFilterList$ListCloseEvent = sap.ui.base.Event<
|
|
146655
|
+
FacetFilterList$ListCloseEventParameters,
|
|
146656
|
+
FacetFilterList
|
|
146657
|
+
>;
|
|
146658
|
+
|
|
146659
|
+
type FacetFilterList$ListOpenEvent = sap.ui.base.Event<
|
|
146660
|
+
FacetFilterList$ListOpenEventParameters,
|
|
146661
|
+
FacetFilterList
|
|
146662
|
+
>;
|
|
146663
|
+
|
|
146664
|
+
type FacetFilterList$SearchEvent = sap.ui.base.Event<
|
|
146665
|
+
FacetFilterList$SearchEventParameters,
|
|
146666
|
+
FacetFilterList
|
|
146667
|
+
>;
|
|
146668
|
+
|
|
146669
|
+
type FeedContent$PressEvent = sap.ui.base.Event<
|
|
146670
|
+
FeedContent$PressEventParameters,
|
|
146671
|
+
FeedContent
|
|
146672
|
+
>;
|
|
146673
|
+
|
|
146674
|
+
type FeedInput$PostEvent = sap.ui.base.Event<
|
|
146675
|
+
FeedInput$PostEventParameters,
|
|
146676
|
+
FeedInput
|
|
146677
|
+
>;
|
|
146678
|
+
|
|
146679
|
+
type FeedListItem$IconPressEvent = sap.ui.base.Event<
|
|
146680
|
+
FeedListItem$IconPressEventParameters,
|
|
146681
|
+
FeedListItem
|
|
146682
|
+
>;
|
|
146683
|
+
|
|
146684
|
+
type FeedListItem$SenderPressEvent = sap.ui.base.Event<
|
|
146685
|
+
FeedListItem$SenderPressEventParameters,
|
|
146686
|
+
FeedListItem
|
|
146687
|
+
>;
|
|
146688
|
+
|
|
146689
|
+
type FeedListItemAction$PressEvent = sap.ui.base.Event<
|
|
146690
|
+
FeedListItemAction$PressEventParameters,
|
|
146691
|
+
FeedListItemAction
|
|
146692
|
+
>;
|
|
146693
|
+
|
|
146694
|
+
type GenericTag$PressEvent = sap.ui.base.Event<
|
|
146695
|
+
GenericTag$PressEventParameters,
|
|
146696
|
+
GenericTag
|
|
146697
|
+
>;
|
|
146698
|
+
|
|
146699
|
+
type GenericTile$PressEvent = sap.ui.base.Event<
|
|
146700
|
+
GenericTile$PressEventParameters,
|
|
146701
|
+
GenericTile
|
|
146702
|
+
>;
|
|
146703
|
+
|
|
146704
|
+
type HeaderContainer$ScrollEvent = sap.ui.base.Event<
|
|
146705
|
+
HeaderContainer$ScrollEventParameters,
|
|
146706
|
+
HeaderContainer
|
|
146707
|
+
>;
|
|
146708
|
+
|
|
146709
|
+
type IconTabBar$ExpandEvent = sap.ui.base.Event<
|
|
146710
|
+
IconTabBar$ExpandEventParameters,
|
|
146711
|
+
IconTabBar
|
|
146712
|
+
>;
|
|
146713
|
+
|
|
146714
|
+
type IconTabBar$SelectEvent = sap.ui.base.Event<
|
|
146715
|
+
IconTabBar$SelectEventParameters,
|
|
146716
|
+
IconTabBar
|
|
146717
|
+
>;
|
|
146718
|
+
|
|
146719
|
+
type IconTabHeader$SelectEvent = sap.ui.base.Event<
|
|
146720
|
+
IconTabHeader$SelectEventParameters,
|
|
146721
|
+
IconTabHeader
|
|
146722
|
+
>;
|
|
146723
|
+
|
|
146724
|
+
type Image$ErrorEvent = sap.ui.base.Event<
|
|
146725
|
+
Image$ErrorEventParameters,
|
|
146726
|
+
Image
|
|
146727
|
+
>;
|
|
146728
|
+
|
|
146729
|
+
type Image$LoadEvent = sap.ui.base.Event<Image$LoadEventParameters, Image>;
|
|
146730
|
+
|
|
146731
|
+
type Image$PressEvent = sap.ui.base.Event<
|
|
146732
|
+
Image$PressEventParameters,
|
|
146733
|
+
Image
|
|
146734
|
+
>;
|
|
146735
|
+
|
|
146736
|
+
type Image$TapEvent = sap.ui.base.Event<Image$TapEventParameters, Image>;
|
|
146737
|
+
|
|
146738
|
+
type ImageContent$PressEvent = sap.ui.base.Event<
|
|
146739
|
+
ImageContent$PressEventParameters,
|
|
146740
|
+
ImageContent
|
|
146741
|
+
>;
|
|
146742
|
+
|
|
146743
|
+
type Input$LiveChangeEvent = sap.ui.base.Event<
|
|
146744
|
+
Input$LiveChangeEventParameters,
|
|
146745
|
+
Input
|
|
146746
|
+
>;
|
|
146747
|
+
|
|
146748
|
+
type Input$SubmitEvent = sap.ui.base.Event<
|
|
146749
|
+
Input$SubmitEventParameters,
|
|
146750
|
+
Input
|
|
146751
|
+
>;
|
|
146752
|
+
|
|
146753
|
+
type Input$SuggestEvent = sap.ui.base.Event<
|
|
146754
|
+
Input$SuggestEventParameters,
|
|
146755
|
+
Input
|
|
146756
|
+
>;
|
|
146757
|
+
|
|
146758
|
+
type Input$SuggestionItemSelectedEvent = sap.ui.base.Event<
|
|
146759
|
+
Input$SuggestionItemSelectedEventParameters,
|
|
146760
|
+
Input
|
|
146761
|
+
>;
|
|
146762
|
+
|
|
146763
|
+
type Input$ValueHelpRequestEvent = sap.ui.base.Event<
|
|
146764
|
+
Input$ValueHelpRequestEventParameters,
|
|
146765
|
+
Input
|
|
146766
|
+
>;
|
|
146767
|
+
|
|
146768
|
+
type InputBase$ChangeEvent = sap.ui.base.Event<
|
|
146769
|
+
InputBase$ChangeEventParameters,
|
|
146770
|
+
InputBase
|
|
146771
|
+
>;
|
|
146772
|
+
|
|
146773
|
+
type Link$PressEvent = sap.ui.base.Event<Link$PressEventParameters, Link>;
|
|
146774
|
+
|
|
146775
|
+
type ListBase$BeforeOpenContextMenuEvent = sap.ui.base.Event<
|
|
146776
|
+
ListBase$BeforeOpenContextMenuEventParameters,
|
|
146777
|
+
ListBase
|
|
146778
|
+
>;
|
|
146779
|
+
|
|
146780
|
+
type ListBase$DeleteEvent = sap.ui.base.Event<
|
|
146781
|
+
ListBase$DeleteEventParameters,
|
|
146782
|
+
ListBase
|
|
146783
|
+
>;
|
|
146784
|
+
|
|
146785
|
+
type ListBase$GrowingFinishedEvent = sap.ui.base.Event<
|
|
146786
|
+
ListBase$GrowingFinishedEventParameters,
|
|
146787
|
+
ListBase
|
|
146788
|
+
>;
|
|
146789
|
+
|
|
146790
|
+
type ListBase$GrowingStartedEvent = sap.ui.base.Event<
|
|
146791
|
+
ListBase$GrowingStartedEventParameters,
|
|
146792
|
+
ListBase
|
|
146793
|
+
>;
|
|
146794
|
+
|
|
146795
|
+
type ListBase$ItemPressEvent = sap.ui.base.Event<
|
|
146796
|
+
ListBase$ItemPressEventParameters,
|
|
146797
|
+
ListBase
|
|
146798
|
+
>;
|
|
146799
|
+
|
|
146800
|
+
type ListBase$SelectEvent = sap.ui.base.Event<
|
|
146801
|
+
ListBase$SelectEventParameters,
|
|
146802
|
+
ListBase
|
|
146803
|
+
>;
|
|
146804
|
+
|
|
146805
|
+
type ListBase$SelectionChangeEvent = sap.ui.base.Event<
|
|
146806
|
+
ListBase$SelectionChangeEventParameters,
|
|
146807
|
+
ListBase
|
|
146808
|
+
>;
|
|
146809
|
+
|
|
146810
|
+
type ListBase$SwipeEvent = sap.ui.base.Event<
|
|
146811
|
+
ListBase$SwipeEventParameters,
|
|
146812
|
+
ListBase
|
|
146813
|
+
>;
|
|
146814
|
+
|
|
146815
|
+
type ListBase$UpdateFinishedEvent = sap.ui.base.Event<
|
|
146816
|
+
ListBase$UpdateFinishedEventParameters,
|
|
146817
|
+
ListBase
|
|
146818
|
+
>;
|
|
146819
|
+
|
|
146820
|
+
type ListBase$UpdateStartedEvent = sap.ui.base.Event<
|
|
146821
|
+
ListBase$UpdateStartedEventParameters,
|
|
146822
|
+
ListBase
|
|
146823
|
+
>;
|
|
146824
|
+
|
|
146825
|
+
type ListItemBase$DetailPressEvent = sap.ui.base.Event<
|
|
146826
|
+
ListItemBase$DetailPressEventParameters,
|
|
146827
|
+
ListItemBase
|
|
146828
|
+
>;
|
|
146829
|
+
|
|
146830
|
+
type ListItemBase$DetailTapEvent = sap.ui.base.Event<
|
|
146831
|
+
ListItemBase$DetailTapEventParameters,
|
|
146832
|
+
ListItemBase
|
|
146833
|
+
>;
|
|
146834
|
+
|
|
146835
|
+
type ListItemBase$PressEvent = sap.ui.base.Event<
|
|
146836
|
+
ListItemBase$PressEventParameters,
|
|
146837
|
+
ListItemBase
|
|
146838
|
+
>;
|
|
146839
|
+
|
|
146840
|
+
type ListItemBase$TapEvent = sap.ui.base.Event<
|
|
146841
|
+
ListItemBase$TapEventParameters,
|
|
146842
|
+
ListItemBase
|
|
146843
|
+
>;
|
|
146844
|
+
|
|
146845
|
+
type MaskInput$LiveChangeEvent = sap.ui.base.Event<
|
|
146846
|
+
MaskInput$LiveChangeEventParameters,
|
|
146847
|
+
MaskInput
|
|
146848
|
+
>;
|
|
146849
|
+
|
|
146850
|
+
type Menu$ClosedEvent = sap.ui.base.Event<Menu$ClosedEventParameters, Menu>;
|
|
146851
|
+
|
|
146852
|
+
type Menu$ItemSelectedEvent = sap.ui.base.Event<
|
|
146853
|
+
Menu$ItemSelectedEventParameters,
|
|
146854
|
+
Menu
|
|
146855
|
+
>;
|
|
146856
|
+
|
|
146857
|
+
type MenuButton$BeforeMenuOpenEvent = sap.ui.base.Event<
|
|
146858
|
+
MenuButton$BeforeMenuOpenEventParameters,
|
|
146859
|
+
MenuButton
|
|
146860
|
+
>;
|
|
146861
|
+
|
|
146862
|
+
type MenuButton$DefaultActionEvent = sap.ui.base.Event<
|
|
146863
|
+
MenuButton$DefaultActionEventParameters,
|
|
146864
|
+
MenuButton
|
|
146865
|
+
>;
|
|
146866
|
+
|
|
146867
|
+
type MenuItem$AggregationChangedEvent = sap.ui.base.Event<
|
|
146868
|
+
MenuItem$AggregationChangedEventParameters,
|
|
146869
|
+
MenuItem
|
|
146870
|
+
>;
|
|
146871
|
+
|
|
146872
|
+
type MenuItem$PressEvent = sap.ui.base.Event<
|
|
146873
|
+
MenuItem$PressEventParameters,
|
|
146874
|
+
MenuItem
|
|
146875
|
+
>;
|
|
146876
|
+
|
|
146877
|
+
type MenuItem$PropertyChangedEvent = sap.ui.base.Event<
|
|
146878
|
+
MenuItem$PropertyChangedEventParameters,
|
|
146879
|
+
MenuItem
|
|
146880
|
+
>;
|
|
146881
|
+
|
|
146882
|
+
type MessagePage$NavButtonPressEvent = sap.ui.base.Event<
|
|
146883
|
+
MessagePage$NavButtonPressEventParameters,
|
|
146884
|
+
MessagePage
|
|
146885
|
+
>;
|
|
146886
|
+
|
|
146887
|
+
type MessagePopover$ActiveTitlePressEvent = sap.ui.base.Event<
|
|
146888
|
+
MessagePopover$ActiveTitlePressEventParameters,
|
|
146889
|
+
MessagePopover
|
|
146890
|
+
>;
|
|
146891
|
+
|
|
146892
|
+
type MessagePopover$AfterCloseEvent = sap.ui.base.Event<
|
|
146893
|
+
MessagePopover$AfterCloseEventParameters,
|
|
146894
|
+
MessagePopover
|
|
146895
|
+
>;
|
|
146896
|
+
|
|
146897
|
+
type MessagePopover$AfterOpenEvent = sap.ui.base.Event<
|
|
146898
|
+
MessagePopover$AfterOpenEventParameters,
|
|
146899
|
+
MessagePopover
|
|
146900
|
+
>;
|
|
146901
|
+
|
|
146902
|
+
type MessagePopover$BeforeCloseEvent = sap.ui.base.Event<
|
|
146903
|
+
MessagePopover$BeforeCloseEventParameters,
|
|
146904
|
+
MessagePopover
|
|
146905
|
+
>;
|
|
146906
|
+
|
|
146907
|
+
type MessagePopover$BeforeOpenEvent = sap.ui.base.Event<
|
|
146908
|
+
MessagePopover$BeforeOpenEventParameters,
|
|
146909
|
+
MessagePopover
|
|
146910
|
+
>;
|
|
146911
|
+
|
|
146912
|
+
type MessagePopover$ItemSelectEvent = sap.ui.base.Event<
|
|
146913
|
+
MessagePopover$ItemSelectEventParameters,
|
|
146914
|
+
MessagePopover
|
|
146915
|
+
>;
|
|
146916
|
+
|
|
146917
|
+
type MessagePopover$ListSelectEvent = sap.ui.base.Event<
|
|
146918
|
+
MessagePopover$ListSelectEventParameters,
|
|
146919
|
+
MessagePopover
|
|
146920
|
+
>;
|
|
146921
|
+
|
|
146922
|
+
type MessagePopover$LongtextLoadedEvent = sap.ui.base.Event<
|
|
146923
|
+
MessagePopover$LongtextLoadedEventParameters,
|
|
146924
|
+
MessagePopover
|
|
146925
|
+
>;
|
|
146926
|
+
|
|
146927
|
+
type MessagePopover$UrlValidatedEvent = sap.ui.base.Event<
|
|
146928
|
+
MessagePopover$UrlValidatedEventParameters,
|
|
146929
|
+
MessagePopover
|
|
146930
|
+
>;
|
|
146931
|
+
|
|
146932
|
+
type MessageStrip$CloseEvent = sap.ui.base.Event<
|
|
146933
|
+
MessageStrip$CloseEventParameters,
|
|
146934
|
+
MessageStrip
|
|
146935
|
+
>;
|
|
146936
|
+
|
|
146937
|
+
type MessageView$ActiveTitlePressEvent = sap.ui.base.Event<
|
|
146938
|
+
MessageView$ActiveTitlePressEventParameters,
|
|
146939
|
+
MessageView
|
|
146940
|
+
>;
|
|
146941
|
+
|
|
146942
|
+
type MessageView$AfterOpenEvent = sap.ui.base.Event<
|
|
146943
|
+
MessageView$AfterOpenEventParameters,
|
|
146944
|
+
MessageView
|
|
146945
|
+
>;
|
|
146946
|
+
|
|
146947
|
+
type MessageView$ItemSelectEvent = sap.ui.base.Event<
|
|
146948
|
+
MessageView$ItemSelectEventParameters,
|
|
146949
|
+
MessageView
|
|
146950
|
+
>;
|
|
146951
|
+
|
|
146952
|
+
type MessageView$ListSelectEvent = sap.ui.base.Event<
|
|
146953
|
+
MessageView$ListSelectEventParameters,
|
|
146954
|
+
MessageView
|
|
146955
|
+
>;
|
|
146956
|
+
|
|
146957
|
+
type MessageView$LongtextLoadedEvent = sap.ui.base.Event<
|
|
146958
|
+
MessageView$LongtextLoadedEventParameters,
|
|
146959
|
+
MessageView
|
|
146960
|
+
>;
|
|
146961
|
+
|
|
146962
|
+
type MessageView$UrlValidatedEvent = sap.ui.base.Event<
|
|
146963
|
+
MessageView$UrlValidatedEventParameters,
|
|
146964
|
+
MessageView
|
|
146965
|
+
>;
|
|
146966
|
+
|
|
146967
|
+
type MultiComboBox$SelectionChangeEvent = sap.ui.base.Event<
|
|
146968
|
+
MultiComboBox$SelectionChangeEventParameters,
|
|
146969
|
+
MultiComboBox
|
|
146970
|
+
>;
|
|
146971
|
+
|
|
146972
|
+
type MultiComboBox$SelectionFinishEvent = sap.ui.base.Event<
|
|
146973
|
+
MultiComboBox$SelectionFinishEventParameters,
|
|
146974
|
+
MultiComboBox
|
|
146975
|
+
>;
|
|
146976
|
+
|
|
146977
|
+
type MultiInput$TokenChangeEvent = sap.ui.base.Event<
|
|
146978
|
+
MultiInput$TokenChangeEventParameters,
|
|
146979
|
+
MultiInput
|
|
146980
|
+
>;
|
|
146981
|
+
|
|
146982
|
+
type MultiInput$TokenUpdateEvent = sap.ui.base.Event<
|
|
146983
|
+
MultiInput$TokenUpdateEventParameters,
|
|
146984
|
+
MultiInput
|
|
146985
|
+
>;
|
|
146986
|
+
|
|
146987
|
+
type NavContainer$AfterNavigateEvent = sap.ui.base.Event<
|
|
146988
|
+
NavContainer$AfterNavigateEventParameters,
|
|
146989
|
+
NavContainer
|
|
146990
|
+
>;
|
|
146991
|
+
|
|
146992
|
+
type NavContainer$NavigateEvent = sap.ui.base.Event<
|
|
146993
|
+
NavContainer$NavigateEventParameters,
|
|
146994
|
+
NavContainer
|
|
146995
|
+
>;
|
|
146996
|
+
|
|
146997
|
+
type NavContainer$NavigationFinishedEvent = sap.ui.base.Event<
|
|
146998
|
+
NavContainer$NavigationFinishedEventParameters,
|
|
146999
|
+
NavContainer
|
|
147000
|
+
>;
|
|
147001
|
+
|
|
147002
|
+
type NewsContent$PressEvent = sap.ui.base.Event<
|
|
147003
|
+
NewsContent$PressEventParameters,
|
|
147004
|
+
NewsContent
|
|
147005
|
+
>;
|
|
147006
|
+
|
|
147007
|
+
type NotificationListBase$CloseEvent = sap.ui.base.Event<
|
|
147008
|
+
NotificationListBase$CloseEventParameters,
|
|
147009
|
+
NotificationListBase
|
|
147010
|
+
>;
|
|
147011
|
+
|
|
147012
|
+
type NotificationListGroup$OnCollapseEvent = sap.ui.base.Event<
|
|
147013
|
+
NotificationListGroup$OnCollapseEventParameters,
|
|
147014
|
+
NotificationListGroup
|
|
147015
|
+
>;
|
|
147016
|
+
|
|
147017
|
+
type NumericContent$PressEvent = sap.ui.base.Event<
|
|
147018
|
+
NumericContent$PressEventParameters,
|
|
147019
|
+
NumericContent
|
|
147020
|
+
>;
|
|
147021
|
+
|
|
147022
|
+
type ObjectAttribute$PressEvent = sap.ui.base.Event<
|
|
147023
|
+
ObjectAttribute$PressEventParameters,
|
|
147024
|
+
ObjectAttribute
|
|
147025
|
+
>;
|
|
147026
|
+
|
|
147027
|
+
type ObjectHeader$IconPressEvent = sap.ui.base.Event<
|
|
147028
|
+
ObjectHeader$IconPressEventParameters,
|
|
147029
|
+
ObjectHeader
|
|
147030
|
+
>;
|
|
147031
|
+
|
|
147032
|
+
type ObjectHeader$IntroPressEvent = sap.ui.base.Event<
|
|
147033
|
+
ObjectHeader$IntroPressEventParameters,
|
|
147034
|
+
ObjectHeader
|
|
147035
|
+
>;
|
|
147036
|
+
|
|
147037
|
+
type ObjectHeader$TitlePressEvent = sap.ui.base.Event<
|
|
147038
|
+
ObjectHeader$TitlePressEventParameters,
|
|
147039
|
+
ObjectHeader
|
|
147040
|
+
>;
|
|
147041
|
+
|
|
147042
|
+
type ObjectHeader$TitleSelectorPressEvent = sap.ui.base.Event<
|
|
147043
|
+
ObjectHeader$TitleSelectorPressEventParameters,
|
|
147044
|
+
ObjectHeader
|
|
147045
|
+
>;
|
|
147046
|
+
|
|
147047
|
+
type ObjectIdentifier$TitlePressEvent = sap.ui.base.Event<
|
|
147048
|
+
ObjectIdentifier$TitlePressEventParameters,
|
|
147049
|
+
ObjectIdentifier
|
|
147050
|
+
>;
|
|
147051
|
+
|
|
147052
|
+
type ObjectMarker$PressEvent = sap.ui.base.Event<
|
|
147053
|
+
ObjectMarker$PressEventParameters,
|
|
147054
|
+
ObjectMarker
|
|
147055
|
+
>;
|
|
147056
|
+
|
|
147057
|
+
type ObjectNumber$PressEvent = sap.ui.base.Event<
|
|
147058
|
+
ObjectNumber$PressEventParameters,
|
|
147059
|
+
ObjectNumber
|
|
147060
|
+
>;
|
|
147061
|
+
|
|
147062
|
+
type ObjectStatus$PressEvent = sap.ui.base.Event<
|
|
147063
|
+
ObjectStatus$PressEventParameters,
|
|
147064
|
+
ObjectStatus
|
|
147065
|
+
>;
|
|
147066
|
+
|
|
147067
|
+
type P13nColumnsPanel$AddColumnsItemEvent = sap.ui.base.Event<
|
|
147068
|
+
P13nColumnsPanel$AddColumnsItemEventParameters,
|
|
147069
|
+
P13nColumnsPanel
|
|
147070
|
+
>;
|
|
147071
|
+
|
|
147072
|
+
type P13nColumnsPanel$ChangeColumnsItemsEvent = sap.ui.base.Event<
|
|
147073
|
+
P13nColumnsPanel$ChangeColumnsItemsEventParameters,
|
|
147074
|
+
P13nColumnsPanel
|
|
147075
|
+
>;
|
|
147076
|
+
|
|
147077
|
+
type P13nColumnsPanel$SetDataEvent = sap.ui.base.Event<
|
|
147078
|
+
P13nColumnsPanel$SetDataEventParameters,
|
|
147079
|
+
P13nColumnsPanel
|
|
147080
|
+
>;
|
|
147081
|
+
|
|
147082
|
+
type P13nConditionPanel$DataChangeEvent = sap.ui.base.Event<
|
|
147083
|
+
P13nConditionPanel$DataChangeEventParameters,
|
|
147084
|
+
P13nConditionPanel
|
|
147085
|
+
>;
|
|
147086
|
+
|
|
147087
|
+
type P13nDialog$CancelEvent = sap.ui.base.Event<
|
|
147088
|
+
P13nDialog$CancelEventParameters,
|
|
147089
|
+
P13nDialog
|
|
147090
|
+
>;
|
|
147091
|
+
|
|
147092
|
+
type P13nDialog$OkEvent = sap.ui.base.Event<
|
|
147093
|
+
P13nDialog$OkEventParameters,
|
|
147094
|
+
P13nDialog
|
|
147095
|
+
>;
|
|
147096
|
+
|
|
147097
|
+
type P13nDialog$ResetEvent = sap.ui.base.Event<
|
|
147098
|
+
P13nDialog$ResetEventParameters,
|
|
147099
|
+
P13nDialog
|
|
147100
|
+
>;
|
|
147101
|
+
|
|
147102
|
+
type P13nDimMeasurePanel$ChangeChartTypeEvent = sap.ui.base.Event<
|
|
147103
|
+
P13nDimMeasurePanel$ChangeChartTypeEventParameters,
|
|
147104
|
+
P13nDimMeasurePanel
|
|
147105
|
+
>;
|
|
147106
|
+
|
|
147107
|
+
type P13nDimMeasurePanel$ChangeDimMeasureItemsEvent = sap.ui.base.Event<
|
|
147108
|
+
P13nDimMeasurePanel$ChangeDimMeasureItemsEventParameters,
|
|
147109
|
+
P13nDimMeasurePanel
|
|
147110
|
+
>;
|
|
147111
|
+
|
|
147112
|
+
type P13nFilterPanel$AddFilterItemEvent = sap.ui.base.Event<
|
|
147113
|
+
P13nFilterPanel$AddFilterItemEventParameters,
|
|
147114
|
+
P13nFilterPanel
|
|
147115
|
+
>;
|
|
147116
|
+
|
|
147117
|
+
type P13nFilterPanel$FilterItemChangedEvent = sap.ui.base.Event<
|
|
147118
|
+
P13nFilterPanel$FilterItemChangedEventParameters,
|
|
147119
|
+
P13nFilterPanel
|
|
147120
|
+
>;
|
|
147121
|
+
|
|
147122
|
+
type P13nFilterPanel$RemoveFilterItemEvent = sap.ui.base.Event<
|
|
147123
|
+
P13nFilterPanel$RemoveFilterItemEventParameters,
|
|
147124
|
+
P13nFilterPanel
|
|
147125
|
+
>;
|
|
147126
|
+
|
|
147127
|
+
type P13nFilterPanel$UpdateFilterItemEvent = sap.ui.base.Event<
|
|
147128
|
+
P13nFilterPanel$UpdateFilterItemEventParameters,
|
|
147129
|
+
P13nFilterPanel
|
|
147130
|
+
>;
|
|
147131
|
+
|
|
147132
|
+
type P13nGroupPanel$AddGroupItemEvent = sap.ui.base.Event<
|
|
147133
|
+
P13nGroupPanel$AddGroupItemEventParameters,
|
|
147134
|
+
P13nGroupPanel
|
|
147135
|
+
>;
|
|
147136
|
+
|
|
147137
|
+
type P13nGroupPanel$RemoveGroupItemEvent = sap.ui.base.Event<
|
|
147138
|
+
P13nGroupPanel$RemoveGroupItemEventParameters,
|
|
147139
|
+
P13nGroupPanel
|
|
147140
|
+
>;
|
|
147141
|
+
|
|
147142
|
+
type P13nGroupPanel$UpdateGroupItemEvent = sap.ui.base.Event<
|
|
147143
|
+
P13nGroupPanel$UpdateGroupItemEventParameters,
|
|
147144
|
+
P13nGroupPanel
|
|
147145
|
+
>;
|
|
147146
|
+
|
|
147147
|
+
type P13nPanel$BeforeNavigationToEvent = sap.ui.base.Event<
|
|
147148
|
+
P13nPanel$BeforeNavigationToEventParameters,
|
|
147149
|
+
P13nPanel
|
|
147150
|
+
>;
|
|
147151
|
+
|
|
147152
|
+
type P13nSortPanel$AddSortItemEvent = sap.ui.base.Event<
|
|
147153
|
+
P13nSortPanel$AddSortItemEventParameters,
|
|
147154
|
+
P13nSortPanel
|
|
147155
|
+
>;
|
|
147156
|
+
|
|
147157
|
+
type P13nSortPanel$RemoveSortItemEvent = sap.ui.base.Event<
|
|
147158
|
+
P13nSortPanel$RemoveSortItemEventParameters,
|
|
147159
|
+
P13nSortPanel
|
|
147160
|
+
>;
|
|
147161
|
+
|
|
147162
|
+
type P13nSortPanel$UpdateSortItemEvent = sap.ui.base.Event<
|
|
147163
|
+
P13nSortPanel$UpdateSortItemEventParameters,
|
|
147164
|
+
P13nSortPanel
|
|
147165
|
+
>;
|
|
147166
|
+
|
|
147167
|
+
type Page$NavButtonPressEvent = sap.ui.base.Event<
|
|
147168
|
+
Page$NavButtonPressEventParameters,
|
|
147169
|
+
Page
|
|
147170
|
+
>;
|
|
147171
|
+
|
|
147172
|
+
type Page$NavButtonTapEvent = sap.ui.base.Event<
|
|
147173
|
+
Page$NavButtonTapEventParameters,
|
|
147174
|
+
Page
|
|
147175
|
+
>;
|
|
147176
|
+
|
|
147177
|
+
type PagingButton$PositionChangeEvent = sap.ui.base.Event<
|
|
147178
|
+
PagingButton$PositionChangeEventParameters,
|
|
147179
|
+
PagingButton
|
|
147180
|
+
>;
|
|
147181
|
+
|
|
147182
|
+
type Panel$ExpandEvent = sap.ui.base.Event<
|
|
147183
|
+
Panel$ExpandEventParameters,
|
|
147184
|
+
Panel
|
|
147185
|
+
>;
|
|
147186
|
+
|
|
147187
|
+
type PDFViewer$ErrorEvent = sap.ui.base.Event<
|
|
147188
|
+
PDFViewer$ErrorEventParameters,
|
|
147189
|
+
PDFViewer
|
|
147190
|
+
>;
|
|
147191
|
+
|
|
147192
|
+
type PDFViewer$LoadedEvent = sap.ui.base.Event<
|
|
147193
|
+
PDFViewer$LoadedEventParameters,
|
|
147194
|
+
PDFViewer
|
|
147195
|
+
>;
|
|
147196
|
+
|
|
147197
|
+
type PDFViewer$SourceValidationFailedEvent = sap.ui.base.Event<
|
|
147198
|
+
PDFViewer$SourceValidationFailedEventParameters,
|
|
147199
|
+
PDFViewer
|
|
147200
|
+
>;
|
|
147201
|
+
|
|
147202
|
+
type PlanningCalendar$AppointmentSelectEvent = sap.ui.base.Event<
|
|
147203
|
+
PlanningCalendar$AppointmentSelectEventParameters,
|
|
147204
|
+
PlanningCalendar
|
|
147205
|
+
>;
|
|
147206
|
+
|
|
147207
|
+
type PlanningCalendar$IntervalSelectEvent = sap.ui.base.Event<
|
|
147208
|
+
PlanningCalendar$IntervalSelectEventParameters,
|
|
147209
|
+
PlanningCalendar
|
|
147210
|
+
>;
|
|
147211
|
+
|
|
147212
|
+
type PlanningCalendar$RowHeaderClickEvent = sap.ui.base.Event<
|
|
147213
|
+
PlanningCalendar$RowHeaderClickEventParameters,
|
|
147214
|
+
PlanningCalendar
|
|
147215
|
+
>;
|
|
147216
|
+
|
|
147217
|
+
type PlanningCalendar$RowSelectionChangeEvent = sap.ui.base.Event<
|
|
147218
|
+
PlanningCalendar$RowSelectionChangeEventParameters,
|
|
147219
|
+
PlanningCalendar
|
|
147220
|
+
>;
|
|
147221
|
+
|
|
147222
|
+
type PlanningCalendar$StartDateChangeEvent = sap.ui.base.Event<
|
|
147223
|
+
PlanningCalendar$StartDateChangeEventParameters,
|
|
147224
|
+
PlanningCalendar
|
|
147225
|
+
>;
|
|
147226
|
+
|
|
147227
|
+
type PlanningCalendar$ViewChangeEvent = sap.ui.base.Event<
|
|
147228
|
+
PlanningCalendar$ViewChangeEventParameters,
|
|
147229
|
+
PlanningCalendar
|
|
147230
|
+
>;
|
|
147231
|
+
|
|
147232
|
+
type PlanningCalendarRow$AppointmentCreateEvent = sap.ui.base.Event<
|
|
147233
|
+
PlanningCalendarRow$AppointmentCreateEventParameters,
|
|
147234
|
+
PlanningCalendarRow
|
|
147235
|
+
>;
|
|
147236
|
+
|
|
147237
|
+
type PlanningCalendarRow$AppointmentDragEnterEvent = sap.ui.base.Event<
|
|
147238
|
+
PlanningCalendarRow$AppointmentDragEnterEventParameters,
|
|
147239
|
+
PlanningCalendarRow
|
|
147240
|
+
>;
|
|
147241
|
+
|
|
147242
|
+
type PlanningCalendarRow$AppointmentDropEvent = sap.ui.base.Event<
|
|
147243
|
+
PlanningCalendarRow$AppointmentDropEventParameters,
|
|
147244
|
+
PlanningCalendarRow
|
|
147245
|
+
>;
|
|
147246
|
+
|
|
147247
|
+
type PlanningCalendarRow$AppointmentResizeEvent = sap.ui.base.Event<
|
|
147248
|
+
PlanningCalendarRow$AppointmentResizeEventParameters,
|
|
147249
|
+
PlanningCalendarRow
|
|
147250
|
+
>;
|
|
147251
|
+
|
|
147252
|
+
type Popover$AfterCloseEvent = sap.ui.base.Event<
|
|
147253
|
+
Popover$AfterCloseEventParameters,
|
|
147254
|
+
Popover
|
|
147255
|
+
>;
|
|
147256
|
+
|
|
147257
|
+
type Popover$AfterOpenEvent = sap.ui.base.Event<
|
|
147258
|
+
Popover$AfterOpenEventParameters,
|
|
147259
|
+
Popover
|
|
147260
|
+
>;
|
|
147261
|
+
|
|
147262
|
+
type Popover$BeforeCloseEvent = sap.ui.base.Event<
|
|
147263
|
+
Popover$BeforeCloseEventParameters,
|
|
147264
|
+
Popover
|
|
147265
|
+
>;
|
|
147266
|
+
|
|
147267
|
+
type Popover$BeforeOpenEvent = sap.ui.base.Event<
|
|
147268
|
+
Popover$BeforeOpenEventParameters,
|
|
147269
|
+
Popover
|
|
147270
|
+
>;
|
|
147271
|
+
|
|
147272
|
+
type PullToRefresh$RefreshEvent = sap.ui.base.Event<
|
|
147273
|
+
PullToRefresh$RefreshEventParameters,
|
|
147274
|
+
PullToRefresh
|
|
147275
|
+
>;
|
|
147276
|
+
|
|
147277
|
+
type QuickView$AfterCloseEvent = sap.ui.base.Event<
|
|
147278
|
+
QuickView$AfterCloseEventParameters,
|
|
147279
|
+
QuickView
|
|
147280
|
+
>;
|
|
147281
|
+
|
|
147282
|
+
type QuickView$AfterOpenEvent = sap.ui.base.Event<
|
|
147283
|
+
QuickView$AfterOpenEventParameters,
|
|
147284
|
+
QuickView
|
|
147285
|
+
>;
|
|
147286
|
+
|
|
147287
|
+
type QuickView$BeforeCloseEvent = sap.ui.base.Event<
|
|
147288
|
+
QuickView$BeforeCloseEventParameters,
|
|
147289
|
+
QuickView
|
|
147290
|
+
>;
|
|
147291
|
+
|
|
147292
|
+
type QuickView$BeforeOpenEvent = sap.ui.base.Event<
|
|
147293
|
+
QuickView$BeforeOpenEventParameters,
|
|
147294
|
+
QuickView
|
|
147295
|
+
>;
|
|
147296
|
+
|
|
147297
|
+
type QuickViewBase$AfterNavigateEvent = sap.ui.base.Event<
|
|
147298
|
+
QuickViewBase$AfterNavigateEventParameters,
|
|
147299
|
+
QuickViewBase
|
|
147300
|
+
>;
|
|
147301
|
+
|
|
147302
|
+
type QuickViewBase$NavigateEvent = sap.ui.base.Event<
|
|
147303
|
+
QuickViewBase$NavigateEventParameters,
|
|
147304
|
+
QuickViewBase
|
|
147305
|
+
>;
|
|
147306
|
+
|
|
147307
|
+
type RadioButton$SelectEvent = sap.ui.base.Event<
|
|
147308
|
+
RadioButton$SelectEventParameters,
|
|
147309
|
+
RadioButton
|
|
147310
|
+
>;
|
|
147311
|
+
|
|
147312
|
+
type RadioButtonGroup$SelectEvent = sap.ui.base.Event<
|
|
147313
|
+
RadioButtonGroup$SelectEventParameters,
|
|
147314
|
+
RadioButtonGroup
|
|
147315
|
+
>;
|
|
147316
|
+
|
|
147317
|
+
type RatingIndicator$ChangeEvent = sap.ui.base.Event<
|
|
147318
|
+
RatingIndicator$ChangeEventParameters,
|
|
147319
|
+
RatingIndicator
|
|
147320
|
+
>;
|
|
147321
|
+
|
|
147322
|
+
type RatingIndicator$LiveChangeEvent = sap.ui.base.Event<
|
|
147323
|
+
RatingIndicator$LiveChangeEventParameters,
|
|
147324
|
+
RatingIndicator
|
|
147325
|
+
>;
|
|
147326
|
+
|
|
147327
|
+
type ResponsivePopover$AfterCloseEvent = sap.ui.base.Event<
|
|
147328
|
+
ResponsivePopover$AfterCloseEventParameters,
|
|
147329
|
+
ResponsivePopover
|
|
147330
|
+
>;
|
|
147331
|
+
|
|
147332
|
+
type ResponsivePopover$AfterOpenEvent = sap.ui.base.Event<
|
|
147333
|
+
ResponsivePopover$AfterOpenEventParameters,
|
|
147334
|
+
ResponsivePopover
|
|
147335
|
+
>;
|
|
147336
|
+
|
|
147337
|
+
type ResponsivePopover$BeforeCloseEvent = sap.ui.base.Event<
|
|
147338
|
+
ResponsivePopover$BeforeCloseEventParameters,
|
|
147339
|
+
ResponsivePopover
|
|
147340
|
+
>;
|
|
147341
|
+
|
|
147342
|
+
type ResponsivePopover$BeforeOpenEvent = sap.ui.base.Event<
|
|
147343
|
+
ResponsivePopover$BeforeOpenEventParameters,
|
|
147344
|
+
ResponsivePopover
|
|
147345
|
+
>;
|
|
147346
|
+
|
|
147347
|
+
type SearchField$ChangeEvent = sap.ui.base.Event<
|
|
147348
|
+
SearchField$ChangeEventParameters,
|
|
147349
|
+
SearchField
|
|
147350
|
+
>;
|
|
147351
|
+
|
|
147352
|
+
type SearchField$LiveChangeEvent = sap.ui.base.Event<
|
|
147353
|
+
SearchField$LiveChangeEventParameters,
|
|
147354
|
+
SearchField
|
|
147355
|
+
>;
|
|
147356
|
+
|
|
147357
|
+
type SearchField$SearchEvent = sap.ui.base.Event<
|
|
147358
|
+
SearchField$SearchEventParameters,
|
|
147359
|
+
SearchField
|
|
147360
|
+
>;
|
|
147361
|
+
|
|
147362
|
+
type SearchField$SuggestEvent = sap.ui.base.Event<
|
|
147363
|
+
SearchField$SuggestEventParameters,
|
|
147364
|
+
SearchField
|
|
147365
|
+
>;
|
|
147366
|
+
|
|
147367
|
+
type SegmentedButton$SelectEvent = sap.ui.base.Event<
|
|
147368
|
+
SegmentedButton$SelectEventParameters,
|
|
147369
|
+
SegmentedButton
|
|
147370
|
+
>;
|
|
147371
|
+
|
|
147372
|
+
type SegmentedButton$SelectionChangeEvent = sap.ui.base.Event<
|
|
147373
|
+
SegmentedButton$SelectionChangeEventParameters,
|
|
147374
|
+
SegmentedButton
|
|
147375
|
+
>;
|
|
147376
|
+
|
|
147377
|
+
type SegmentedButtonItem$PressEvent = sap.ui.base.Event<
|
|
147378
|
+
SegmentedButtonItem$PressEventParameters,
|
|
147379
|
+
SegmentedButtonItem
|
|
147380
|
+
>;
|
|
147381
|
+
|
|
147382
|
+
type Select$ChangeEvent = sap.ui.base.Event<
|
|
147383
|
+
Select$ChangeEventParameters,
|
|
147384
|
+
Select
|
|
147385
|
+
>;
|
|
147386
|
+
|
|
147387
|
+
type Select$LiveChangeEvent = sap.ui.base.Event<
|
|
147388
|
+
Select$LiveChangeEventParameters,
|
|
147389
|
+
Select
|
|
147390
|
+
>;
|
|
147391
|
+
|
|
147392
|
+
type SelectDialog$CancelEvent = sap.ui.base.Event<
|
|
147393
|
+
SelectDialog$CancelEventParameters,
|
|
147394
|
+
SelectDialog
|
|
147395
|
+
>;
|
|
147396
|
+
|
|
147397
|
+
type SelectDialog$ConfirmEvent = sap.ui.base.Event<
|
|
147398
|
+
SelectDialog$ConfirmEventParameters,
|
|
147399
|
+
SelectDialog
|
|
147400
|
+
>;
|
|
147401
|
+
|
|
147402
|
+
type SelectDialog$LiveChangeEvent = sap.ui.base.Event<
|
|
147403
|
+
SelectDialog$LiveChangeEventParameters,
|
|
147404
|
+
SelectDialog
|
|
147405
|
+
>;
|
|
147406
|
+
|
|
147407
|
+
type SelectDialog$SearchEvent = sap.ui.base.Event<
|
|
147408
|
+
SelectDialog$SearchEventParameters,
|
|
147409
|
+
SelectDialog
|
|
147410
|
+
>;
|
|
147411
|
+
|
|
147412
|
+
type SelectDialogBase$SelectionChangeEvent = sap.ui.base.Event<
|
|
147413
|
+
SelectDialogBase$SelectionChangeEventParameters,
|
|
147414
|
+
SelectDialogBase
|
|
147415
|
+
>;
|
|
147416
|
+
|
|
147417
|
+
type SelectDialogBase$UpdateFinishedEvent = sap.ui.base.Event<
|
|
147418
|
+
SelectDialogBase$UpdateFinishedEventParameters,
|
|
147419
|
+
SelectDialogBase
|
|
147420
|
+
>;
|
|
147421
|
+
|
|
147422
|
+
type SelectDialogBase$UpdateStartedEvent = sap.ui.base.Event<
|
|
147423
|
+
SelectDialogBase$UpdateStartedEventParameters,
|
|
147424
|
+
SelectDialogBase
|
|
147425
|
+
>;
|
|
147426
|
+
|
|
147427
|
+
type SelectionDetails$ActionPressEvent = sap.ui.base.Event<
|
|
147428
|
+
SelectionDetails$ActionPressEventParameters,
|
|
147429
|
+
SelectionDetails
|
|
147430
|
+
>;
|
|
147431
|
+
|
|
147432
|
+
type SelectionDetails$BeforeCloseEvent = sap.ui.base.Event<
|
|
147433
|
+
SelectionDetails$BeforeCloseEventParameters,
|
|
147434
|
+
SelectionDetails
|
|
147435
|
+
>;
|
|
147436
|
+
|
|
147437
|
+
type SelectionDetails$BeforeOpenEvent = sap.ui.base.Event<
|
|
147438
|
+
SelectionDetails$BeforeOpenEventParameters,
|
|
147439
|
+
SelectionDetails
|
|
147440
|
+
>;
|
|
147441
|
+
|
|
147442
|
+
type SelectionDetails$NavigateEvent = sap.ui.base.Event<
|
|
147443
|
+
SelectionDetails$NavigateEventParameters,
|
|
147444
|
+
SelectionDetails
|
|
147445
|
+
>;
|
|
147446
|
+
|
|
147447
|
+
type SelectList$ItemPressEvent = sap.ui.base.Event<
|
|
147448
|
+
SelectList$ItemPressEventParameters,
|
|
147449
|
+
SelectList
|
|
147450
|
+
>;
|
|
147451
|
+
|
|
147452
|
+
type SelectList$SelectionChangeEvent = sap.ui.base.Event<
|
|
147453
|
+
SelectList$SelectionChangeEventParameters,
|
|
147454
|
+
SelectList
|
|
147455
|
+
>;
|
|
147456
|
+
|
|
147457
|
+
type Shell$LogoutEvent = sap.ui.base.Event<
|
|
147458
|
+
Shell$LogoutEventParameters,
|
|
147459
|
+
Shell
|
|
147460
|
+
>;
|
|
147461
|
+
|
|
147462
|
+
type SinglePlanningCalendar$AppointmentCreateEvent = sap.ui.base.Event<
|
|
147463
|
+
SinglePlanningCalendar$AppointmentCreateEventParameters,
|
|
147464
|
+
SinglePlanningCalendar
|
|
147465
|
+
>;
|
|
147466
|
+
|
|
147467
|
+
type SinglePlanningCalendar$AppointmentDropEvent = sap.ui.base.Event<
|
|
147468
|
+
SinglePlanningCalendar$AppointmentDropEventParameters,
|
|
147469
|
+
SinglePlanningCalendar
|
|
147470
|
+
>;
|
|
147471
|
+
|
|
147472
|
+
type SinglePlanningCalendar$AppointmentResizeEvent = sap.ui.base.Event<
|
|
147473
|
+
SinglePlanningCalendar$AppointmentResizeEventParameters,
|
|
147474
|
+
SinglePlanningCalendar
|
|
147475
|
+
>;
|
|
147476
|
+
|
|
147477
|
+
type SinglePlanningCalendar$AppointmentSelectEvent = sap.ui.base.Event<
|
|
147478
|
+
SinglePlanningCalendar$AppointmentSelectEventParameters,
|
|
147479
|
+
SinglePlanningCalendar
|
|
147480
|
+
>;
|
|
147481
|
+
|
|
147482
|
+
type SinglePlanningCalendar$CellPressEvent = sap.ui.base.Event<
|
|
147483
|
+
SinglePlanningCalendar$CellPressEventParameters,
|
|
147484
|
+
SinglePlanningCalendar
|
|
147485
|
+
>;
|
|
147486
|
+
|
|
147487
|
+
type SinglePlanningCalendar$HeaderDateSelectEvent = sap.ui.base.Event<
|
|
147488
|
+
SinglePlanningCalendar$HeaderDateSelectEventParameters,
|
|
147489
|
+
SinglePlanningCalendar
|
|
147490
|
+
>;
|
|
147491
|
+
|
|
147492
|
+
type SinglePlanningCalendar$MoreLinkPressEvent = sap.ui.base.Event<
|
|
147493
|
+
SinglePlanningCalendar$MoreLinkPressEventParameters,
|
|
147494
|
+
SinglePlanningCalendar
|
|
147495
|
+
>;
|
|
147496
|
+
|
|
147497
|
+
type SinglePlanningCalendar$StartDateChangeEvent = sap.ui.base.Event<
|
|
147498
|
+
SinglePlanningCalendar$StartDateChangeEventParameters,
|
|
147499
|
+
SinglePlanningCalendar
|
|
147500
|
+
>;
|
|
147501
|
+
|
|
147502
|
+
type SinglePlanningCalendar$ViewChangeEvent = sap.ui.base.Event<
|
|
147503
|
+
SinglePlanningCalendar$ViewChangeEventParameters,
|
|
147504
|
+
SinglePlanningCalendar
|
|
147505
|
+
>;
|
|
147506
|
+
|
|
147507
|
+
type Slider$ChangeEvent = sap.ui.base.Event<
|
|
147508
|
+
Slider$ChangeEventParameters,
|
|
147509
|
+
Slider
|
|
147510
|
+
>;
|
|
147511
|
+
|
|
147512
|
+
type Slider$LiveChangeEvent = sap.ui.base.Event<
|
|
147513
|
+
Slider$LiveChangeEventParameters,
|
|
147514
|
+
Slider
|
|
147515
|
+
>;
|
|
147516
|
+
|
|
147517
|
+
type SlideTile$PressEvent = sap.ui.base.Event<
|
|
147518
|
+
SlideTile$PressEventParameters,
|
|
147519
|
+
SlideTile
|
|
147520
|
+
>;
|
|
147521
|
+
|
|
147522
|
+
type SplitApp$OrientationChangeEvent = sap.ui.base.Event<
|
|
147523
|
+
SplitApp$OrientationChangeEventParameters,
|
|
147524
|
+
SplitApp
|
|
147525
|
+
>;
|
|
147526
|
+
|
|
147527
|
+
type SplitContainer$AfterDetailNavigateEvent = sap.ui.base.Event<
|
|
147528
|
+
SplitContainer$AfterDetailNavigateEventParameters,
|
|
147529
|
+
SplitContainer
|
|
147530
|
+
>;
|
|
147531
|
+
|
|
147532
|
+
type SplitContainer$AfterMasterCloseEvent = sap.ui.base.Event<
|
|
147533
|
+
SplitContainer$AfterMasterCloseEventParameters,
|
|
147534
|
+
SplitContainer
|
|
147535
|
+
>;
|
|
147536
|
+
|
|
147537
|
+
type SplitContainer$AfterMasterNavigateEvent = sap.ui.base.Event<
|
|
147538
|
+
SplitContainer$AfterMasterNavigateEventParameters,
|
|
147539
|
+
SplitContainer
|
|
147540
|
+
>;
|
|
147541
|
+
|
|
147542
|
+
type SplitContainer$AfterMasterOpenEvent = sap.ui.base.Event<
|
|
147543
|
+
SplitContainer$AfterMasterOpenEventParameters,
|
|
147544
|
+
SplitContainer
|
|
147545
|
+
>;
|
|
147546
|
+
|
|
147547
|
+
type SplitContainer$BeforeMasterCloseEvent = sap.ui.base.Event<
|
|
147548
|
+
SplitContainer$BeforeMasterCloseEventParameters,
|
|
147549
|
+
SplitContainer
|
|
147550
|
+
>;
|
|
147551
|
+
|
|
147552
|
+
type SplitContainer$BeforeMasterOpenEvent = sap.ui.base.Event<
|
|
147553
|
+
SplitContainer$BeforeMasterOpenEventParameters,
|
|
147554
|
+
SplitContainer
|
|
147555
|
+
>;
|
|
147556
|
+
|
|
147557
|
+
type SplitContainer$DetailNavigateEvent = sap.ui.base.Event<
|
|
147558
|
+
SplitContainer$DetailNavigateEventParameters,
|
|
147559
|
+
SplitContainer
|
|
147560
|
+
>;
|
|
147561
|
+
|
|
147562
|
+
type SplitContainer$MasterButtonEvent = sap.ui.base.Event<
|
|
147563
|
+
SplitContainer$MasterButtonEventParameters,
|
|
147564
|
+
SplitContainer
|
|
147565
|
+
>;
|
|
147566
|
+
|
|
147567
|
+
type SplitContainer$MasterNavigateEvent = sap.ui.base.Event<
|
|
147568
|
+
SplitContainer$MasterNavigateEventParameters,
|
|
147569
|
+
SplitContainer
|
|
147570
|
+
>;
|
|
147571
|
+
|
|
147572
|
+
type StepInput$ChangeEvent = sap.ui.base.Event<
|
|
147573
|
+
StepInput$ChangeEventParameters,
|
|
147574
|
+
StepInput
|
|
147575
|
+
>;
|
|
147576
|
+
|
|
147577
|
+
type Switch$ChangeEvent = sap.ui.base.Event<
|
|
147578
|
+
Switch$ChangeEventParameters,
|
|
147579
|
+
Switch
|
|
147580
|
+
>;
|
|
147581
|
+
|
|
147582
|
+
type TabContainer$AddNewButtonPressEvent = sap.ui.base.Event<
|
|
147583
|
+
TabContainer$AddNewButtonPressEventParameters,
|
|
147584
|
+
TabContainer
|
|
147585
|
+
>;
|
|
147586
|
+
|
|
147587
|
+
type TabContainer$ItemCloseEvent = sap.ui.base.Event<
|
|
147588
|
+
TabContainer$ItemCloseEventParameters,
|
|
147589
|
+
TabContainer
|
|
147590
|
+
>;
|
|
147591
|
+
|
|
147592
|
+
type TabContainer$ItemSelectEvent = sap.ui.base.Event<
|
|
147593
|
+
TabContainer$ItemSelectEventParameters,
|
|
147594
|
+
TabContainer
|
|
147595
|
+
>;
|
|
147596
|
+
|
|
147597
|
+
type TabContainerItem$ItemPropertyChangedEvent = sap.ui.base.Event<
|
|
147598
|
+
TabContainerItem$ItemPropertyChangedEventParameters,
|
|
147599
|
+
TabContainerItem
|
|
147600
|
+
>;
|
|
147601
|
+
|
|
147602
|
+
type Table$BeforeOpenContextMenuEvent = sap.ui.base.Event<
|
|
147603
|
+
Table$BeforeOpenContextMenuEventParameters,
|
|
147604
|
+
Table
|
|
147605
|
+
>;
|
|
147606
|
+
|
|
147607
|
+
type Table$PasteEvent = sap.ui.base.Event<
|
|
147608
|
+
Table$PasteEventParameters,
|
|
147609
|
+
Table
|
|
147610
|
+
>;
|
|
147611
|
+
|
|
147612
|
+
type Table$PopinChangedEvent = sap.ui.base.Event<
|
|
147613
|
+
Table$PopinChangedEventParameters,
|
|
147614
|
+
Table
|
|
147615
|
+
>;
|
|
147616
|
+
|
|
147617
|
+
type TablePersoController$PersonalizationsDoneEvent = sap.ui.base.Event<
|
|
147618
|
+
TablePersoController$PersonalizationsDoneEventParameters,
|
|
147619
|
+
TablePersoController
|
|
147620
|
+
>;
|
|
147621
|
+
|
|
147622
|
+
type TablePersoDialog$CancelEvent = sap.ui.base.Event<
|
|
147623
|
+
TablePersoDialog$CancelEventParameters,
|
|
147624
|
+
TablePersoDialog
|
|
147625
|
+
>;
|
|
147626
|
+
|
|
147627
|
+
type TablePersoDialog$ConfirmEvent = sap.ui.base.Event<
|
|
147628
|
+
TablePersoDialog$ConfirmEventParameters,
|
|
147629
|
+
TablePersoDialog
|
|
147630
|
+
>;
|
|
147631
|
+
|
|
147632
|
+
type TableSelectDialog$CancelEvent = sap.ui.base.Event<
|
|
147633
|
+
TableSelectDialog$CancelEventParameters,
|
|
147634
|
+
TableSelectDialog
|
|
147635
|
+
>;
|
|
147636
|
+
|
|
147637
|
+
type TableSelectDialog$ConfirmEvent = sap.ui.base.Event<
|
|
147638
|
+
TableSelectDialog$ConfirmEventParameters,
|
|
147639
|
+
TableSelectDialog
|
|
147640
|
+
>;
|
|
147641
|
+
|
|
147642
|
+
type TableSelectDialog$LiveChangeEvent = sap.ui.base.Event<
|
|
147643
|
+
TableSelectDialog$LiveChangeEventParameters,
|
|
147644
|
+
TableSelectDialog
|
|
147645
|
+
>;
|
|
147646
|
+
|
|
147647
|
+
type TableSelectDialog$SearchEvent = sap.ui.base.Event<
|
|
147648
|
+
TableSelectDialog$SearchEventParameters,
|
|
147649
|
+
TableSelectDialog
|
|
147650
|
+
>;
|
|
147651
|
+
|
|
147652
|
+
type TextArea$LiveChangeEvent = sap.ui.base.Event<
|
|
147653
|
+
TextArea$LiveChangeEventParameters,
|
|
147654
|
+
TextArea
|
|
147655
|
+
>;
|
|
147656
|
+
|
|
147657
|
+
type Tile$PressEvent = sap.ui.base.Event<Tile$PressEventParameters, Tile>;
|
|
147658
|
+
|
|
147659
|
+
type TileContainer$TileAddEvent = sap.ui.base.Event<
|
|
147660
|
+
TileContainer$TileAddEventParameters,
|
|
147661
|
+
TileContainer
|
|
147662
|
+
>;
|
|
147663
|
+
|
|
147664
|
+
type TileContainer$TileDeleteEvent = sap.ui.base.Event<
|
|
147665
|
+
TileContainer$TileDeleteEventParameters,
|
|
147666
|
+
TileContainer
|
|
147667
|
+
>;
|
|
147668
|
+
|
|
147669
|
+
type TileContainer$TileMoveEvent = sap.ui.base.Event<
|
|
147670
|
+
TileContainer$TileMoveEventParameters,
|
|
147671
|
+
TileContainer
|
|
147672
|
+
>;
|
|
147673
|
+
|
|
147674
|
+
type TimePicker$AfterValueHelpCloseEvent = sap.ui.base.Event<
|
|
147675
|
+
TimePicker$AfterValueHelpCloseEventParameters,
|
|
147676
|
+
TimePicker
|
|
147677
|
+
>;
|
|
147678
|
+
|
|
147679
|
+
type TimePicker$AfterValueHelpOpenEvent = sap.ui.base.Event<
|
|
147680
|
+
TimePicker$AfterValueHelpOpenEventParameters,
|
|
147681
|
+
TimePicker
|
|
147682
|
+
>;
|
|
147683
|
+
|
|
147684
|
+
type TimePicker$ChangeEvent = sap.ui.base.Event<
|
|
147685
|
+
TimePicker$ChangeEventParameters,
|
|
147686
|
+
TimePicker
|
|
147687
|
+
>;
|
|
147688
|
+
|
|
147689
|
+
type TimePicker$LiveChangeEvent = sap.ui.base.Event<
|
|
147690
|
+
TimePicker$LiveChangeEventParameters,
|
|
147691
|
+
TimePicker
|
|
147692
|
+
>;
|
|
147693
|
+
|
|
147694
|
+
type TimePickerSliders$ChangeEvent = sap.ui.base.Event<
|
|
147695
|
+
TimePickerSliders$ChangeEventParameters,
|
|
147696
|
+
TimePickerSliders
|
|
147697
|
+
>;
|
|
147698
|
+
|
|
147699
|
+
type ToggleButton$PressEvent = sap.ui.base.Event<
|
|
147700
|
+
ToggleButton$PressEventParameters,
|
|
147701
|
+
ToggleButton
|
|
147702
|
+
>;
|
|
147703
|
+
|
|
147704
|
+
type Token$DeleteEvent = sap.ui.base.Event<
|
|
147705
|
+
Token$DeleteEventParameters,
|
|
147706
|
+
Token
|
|
147707
|
+
>;
|
|
147708
|
+
|
|
147709
|
+
type Token$DeselectEvent = sap.ui.base.Event<
|
|
147710
|
+
Token$DeselectEventParameters,
|
|
147711
|
+
Token
|
|
147712
|
+
>;
|
|
147713
|
+
|
|
147714
|
+
type Token$PressEvent = sap.ui.base.Event<
|
|
147715
|
+
Token$PressEventParameters,
|
|
147716
|
+
Token
|
|
147717
|
+
>;
|
|
147718
|
+
|
|
147719
|
+
type Token$SelectEvent = sap.ui.base.Event<
|
|
147720
|
+
Token$SelectEventParameters,
|
|
147721
|
+
Token
|
|
147722
|
+
>;
|
|
147723
|
+
|
|
147724
|
+
type Tokenizer$TokenChangeEvent = sap.ui.base.Event<
|
|
147725
|
+
Tokenizer$TokenChangeEventParameters,
|
|
147726
|
+
Tokenizer
|
|
147727
|
+
>;
|
|
147728
|
+
|
|
147729
|
+
type Tokenizer$TokenDeleteEvent = sap.ui.base.Event<
|
|
147730
|
+
Tokenizer$TokenDeleteEventParameters,
|
|
147731
|
+
Tokenizer
|
|
147732
|
+
>;
|
|
147733
|
+
|
|
147734
|
+
type Tokenizer$TokenUpdateEvent = sap.ui.base.Event<
|
|
147735
|
+
Tokenizer$TokenUpdateEventParameters,
|
|
147736
|
+
Tokenizer
|
|
147737
|
+
>;
|
|
147738
|
+
|
|
147739
|
+
type Toolbar$PressEvent = sap.ui.base.Event<
|
|
147740
|
+
Toolbar$PressEventParameters,
|
|
147741
|
+
Toolbar
|
|
147742
|
+
>;
|
|
147743
|
+
|
|
147744
|
+
type Tree$ToggleOpenStateEvent = sap.ui.base.Event<
|
|
147745
|
+
Tree$ToggleOpenStateEventParameters,
|
|
147746
|
+
Tree
|
|
147747
|
+
>;
|
|
147748
|
+
|
|
147749
|
+
type UploadCollection$BeforeUploadStartsEvent = sap.ui.base.Event<
|
|
147750
|
+
UploadCollection$BeforeUploadStartsEventParameters,
|
|
147751
|
+
UploadCollection
|
|
147752
|
+
>;
|
|
147753
|
+
|
|
147754
|
+
type UploadCollection$ChangeEvent = sap.ui.base.Event<
|
|
147755
|
+
UploadCollection$ChangeEventParameters,
|
|
147756
|
+
UploadCollection
|
|
147757
|
+
>;
|
|
147758
|
+
|
|
147759
|
+
type UploadCollection$FileDeletedEvent = sap.ui.base.Event<
|
|
147760
|
+
UploadCollection$FileDeletedEventParameters,
|
|
147761
|
+
UploadCollection
|
|
147762
|
+
>;
|
|
147763
|
+
|
|
147764
|
+
type UploadCollection$FilenameLengthExceedEvent = sap.ui.base.Event<
|
|
147765
|
+
UploadCollection$FilenameLengthExceedEventParameters,
|
|
147766
|
+
UploadCollection
|
|
147767
|
+
>;
|
|
147768
|
+
|
|
147769
|
+
type UploadCollection$FileRenamedEvent = sap.ui.base.Event<
|
|
147770
|
+
UploadCollection$FileRenamedEventParameters,
|
|
147771
|
+
UploadCollection
|
|
147772
|
+
>;
|
|
147773
|
+
|
|
147774
|
+
type UploadCollection$FileSizeExceedEvent = sap.ui.base.Event<
|
|
147775
|
+
UploadCollection$FileSizeExceedEventParameters,
|
|
147776
|
+
UploadCollection
|
|
147777
|
+
>;
|
|
147778
|
+
|
|
147779
|
+
type UploadCollection$SelectionChangeEvent = sap.ui.base.Event<
|
|
147780
|
+
UploadCollection$SelectionChangeEventParameters,
|
|
147781
|
+
UploadCollection
|
|
147782
|
+
>;
|
|
147783
|
+
|
|
147784
|
+
type UploadCollection$TypeMissmatchEvent = sap.ui.base.Event<
|
|
147785
|
+
UploadCollection$TypeMissmatchEventParameters,
|
|
147786
|
+
UploadCollection
|
|
147787
|
+
>;
|
|
147788
|
+
|
|
147789
|
+
type UploadCollection$UploadCompleteEvent = sap.ui.base.Event<
|
|
147790
|
+
UploadCollection$UploadCompleteEventParameters,
|
|
147791
|
+
UploadCollection
|
|
147792
|
+
>;
|
|
147793
|
+
|
|
147794
|
+
type UploadCollection$UploadTerminatedEvent = sap.ui.base.Event<
|
|
147795
|
+
UploadCollection$UploadTerminatedEventParameters,
|
|
147796
|
+
UploadCollection
|
|
147797
|
+
>;
|
|
147798
|
+
|
|
147799
|
+
type UploadCollectionItem$DeletePressEvent = sap.ui.base.Event<
|
|
147800
|
+
UploadCollectionItem$DeletePressEventParameters,
|
|
147801
|
+
UploadCollectionItem
|
|
147802
|
+
>;
|
|
147803
|
+
|
|
147804
|
+
type UploadCollectionItem$PressEvent = sap.ui.base.Event<
|
|
147805
|
+
UploadCollectionItem$PressEventParameters,
|
|
147806
|
+
UploadCollectionItem
|
|
147807
|
+
>;
|
|
147808
|
+
|
|
147809
|
+
type ViewSettingsDialog$CancelEvent = sap.ui.base.Event<
|
|
147810
|
+
ViewSettingsDialog$CancelEventParameters,
|
|
147811
|
+
ViewSettingsDialog
|
|
147812
|
+
>;
|
|
147813
|
+
|
|
147814
|
+
type ViewSettingsDialog$ConfirmEvent = sap.ui.base.Event<
|
|
147815
|
+
ViewSettingsDialog$ConfirmEventParameters,
|
|
147816
|
+
ViewSettingsDialog
|
|
147817
|
+
>;
|
|
147818
|
+
|
|
147819
|
+
type ViewSettingsDialog$FilterDetailPageOpenedEvent = sap.ui.base.Event<
|
|
147820
|
+
ViewSettingsDialog$FilterDetailPageOpenedEventParameters,
|
|
147821
|
+
ViewSettingsDialog
|
|
147822
|
+
>;
|
|
147823
|
+
|
|
147824
|
+
type ViewSettingsDialog$ResetEvent = sap.ui.base.Event<
|
|
147825
|
+
ViewSettingsDialog$ResetEventParameters,
|
|
147826
|
+
ViewSettingsDialog
|
|
147827
|
+
>;
|
|
147828
|
+
|
|
147829
|
+
type ViewSettingsDialog$ResetFiltersEvent = sap.ui.base.Event<
|
|
147830
|
+
ViewSettingsDialog$ResetFiltersEventParameters,
|
|
147831
|
+
ViewSettingsDialog
|
|
147832
|
+
>;
|
|
147833
|
+
|
|
147834
|
+
type ViewSettingsFilterItem$FilterDetailItemsAggregationChangeEvent = sap.ui.base.Event<
|
|
147835
|
+
ViewSettingsFilterItem$FilterDetailItemsAggregationChangeEventParameters,
|
|
147836
|
+
ViewSettingsFilterItem
|
|
147837
|
+
>;
|
|
147838
|
+
|
|
147839
|
+
type ViewSettingsItem$ItemPropertyChangedEvent = sap.ui.base.Event<
|
|
147840
|
+
ViewSettingsItem$ItemPropertyChangedEventParameters,
|
|
147841
|
+
ViewSettingsItem
|
|
147842
|
+
>;
|
|
147843
|
+
|
|
147844
|
+
type WheelSlider$CollapsedEvent = sap.ui.base.Event<
|
|
147845
|
+
WheelSlider$CollapsedEventParameters,
|
|
147846
|
+
WheelSlider
|
|
147847
|
+
>;
|
|
147848
|
+
|
|
147849
|
+
type WheelSlider$ExpandedEvent = sap.ui.base.Event<
|
|
147850
|
+
WheelSlider$ExpandedEventParameters,
|
|
147851
|
+
WheelSlider
|
|
147852
|
+
>;
|
|
147853
|
+
|
|
147854
|
+
type WheelSlider$SelectedKeyChangeEvent = sap.ui.base.Event<
|
|
147855
|
+
WheelSlider$SelectedKeyChangeEventParameters,
|
|
147856
|
+
WheelSlider
|
|
147857
|
+
>;
|
|
147858
|
+
|
|
147859
|
+
type Wizard$CompleteEvent = sap.ui.base.Event<
|
|
147860
|
+
Wizard$CompleteEventParameters,
|
|
147861
|
+
Wizard
|
|
147862
|
+
>;
|
|
147863
|
+
|
|
147864
|
+
type Wizard$NavigationChangeEvent = sap.ui.base.Event<
|
|
147865
|
+
Wizard$NavigationChangeEventParameters,
|
|
147866
|
+
Wizard
|
|
147867
|
+
>;
|
|
147868
|
+
|
|
147869
|
+
type Wizard$StepActivateEvent = sap.ui.base.Event<
|
|
147870
|
+
Wizard$StepActivateEventParameters,
|
|
147871
|
+
Wizard
|
|
147872
|
+
>;
|
|
147873
|
+
|
|
147874
|
+
type WizardStep$ActivateEvent = sap.ui.base.Event<
|
|
147875
|
+
WizardStep$ActivateEventParameters,
|
|
147876
|
+
WizardStep
|
|
147877
|
+
>;
|
|
147878
|
+
|
|
147879
|
+
type WizardStep$CompleteEvent = sap.ui.base.Event<
|
|
147880
|
+
WizardStep$CompleteEventParameters,
|
|
147881
|
+
WizardStep
|
|
147882
|
+
>;
|
|
146430
147883
|
}
|
|
146431
147884
|
|
|
146432
147885
|
namespace f {
|