@sapui5/ts-types-esm 1.132.1 → 1.133.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/package.json +1 -1
- package/types/sap.apf.d.ts +12 -11
- package/types/sap.ca.ui.d.ts +413 -415
- package/types/sap.chart.d.ts +6 -6
- package/types/sap.collaboration.d.ts +31 -31
- package/types/sap.cux.home.d.ts +937 -106
- package/types/sap.esh.search.ui.d.ts +39 -1
- package/types/sap.f.d.ts +159 -175
- package/types/sap.fe.base.d.ts +1 -1
- package/types/sap.fe.controls.d.ts +1 -1
- package/types/sap.fe.core.d.ts +16 -9
- package/types/sap.fe.ina.d.ts +1 -1
- package/types/sap.fe.macros.d.ts +81 -45
- package/types/sap.fe.navigation.d.ts +3 -3
- package/types/sap.fe.placeholder.d.ts +1 -1
- package/types/sap.fe.plugins.managecache.d.ts +1 -1
- package/types/sap.fe.templates.d.ts +1 -1
- package/types/sap.fe.test.d.ts +3 -8
- package/types/sap.fe.tools.d.ts +1 -1
- package/types/sap.feedback.ui.d.ts +1 -1
- package/types/sap.gantt.d.ts +385 -329
- package/types/sap.insights.d.ts +3 -3
- package/types/sap.m.d.ts +1946 -1117
- package/types/sap.makit.d.ts +182 -182
- package/types/sap.me.d.ts +25 -27
- package/types/sap.ndc.d.ts +1 -1
- package/types/sap.ovp.d.ts +1 -1
- package/types/sap.rules.ui.d.ts +41 -41
- package/types/sap.sac.df.d.ts +108 -98
- package/types/sap.suite.ui.commons.d.ts +432 -487
- package/types/sap.suite.ui.generic.template.d.ts +28 -8
- package/types/sap.suite.ui.microchart.d.ts +55 -79
- package/types/sap.tnt.d.ts +229 -14
- package/types/sap.ui.codeeditor.d.ts +1 -1
- package/types/sap.ui.commons.d.ts +326 -335
- package/types/sap.ui.comp.d.ts +427 -421
- package/types/sap.ui.core.d.ts +693 -718
- package/types/sap.ui.dt.d.ts +1 -1
- package/types/sap.ui.export.d.ts +1 -1
- package/types/sap.ui.fl.d.ts +5 -5
- package/types/sap.ui.generic.app.d.ts +83 -66
- package/types/sap.ui.generic.template.d.ts +1 -1
- package/types/sap.ui.integration.d.ts +324 -236
- package/types/sap.ui.layout.d.ts +87 -103
- package/types/sap.ui.mdc.d.ts +167 -142
- package/types/sap.ui.richtexteditor.d.ts +48 -8
- package/types/sap.ui.rta.d.ts +1 -1
- package/types/sap.ui.suite.d.ts +14 -14
- package/types/sap.ui.support.d.ts +2 -2
- package/types/sap.ui.table.d.ts +219 -197
- package/types/sap.ui.testrecorder.d.ts +1 -1
- package/types/sap.ui.unified.d.ts +130 -112
- package/types/sap.ui.ux3.d.ts +113 -117
- package/types/sap.ui.vbm.d.ts +57 -57
- package/types/sap.ui.vk.d.ts +135 -132
- package/types/sap.ui.vtm.d.ts +112 -103
- package/types/sap.ui.webc.common.d.ts +7 -7
- package/types/sap.ui.webc.fiori.d.ts +164 -176
- package/types/sap.ui.webc.main.d.ts +527 -531
- package/types/sap.uiext.inbox.d.ts +43 -43
- package/types/sap.ushell.d.ts +206 -123
- package/types/sap.ushell_abap.d.ts +1 -1
- package/types/sap.uxap.d.ts +33 -51
- package/types/sap.viz.d.ts +2782 -2858
- package/types/sap.webanalytics.core.d.ts +1 -1
- package/types/sap.zen.commons.d.ts +17 -17
- package/types/sap.zen.crosstab.d.ts +10 -10
- package/types/sap.zen.dsh.d.ts +11 -11
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
// For Library Version: 1.
|
|
1
|
+
// For Library Version: 1.133.0
|
|
2
2
|
|
|
3
3
|
declare module "sap/ui/integration/library" {
|
|
4
4
|
import { URI } from "sap/ui/core/library";
|
|
@@ -29,32 +29,32 @@ declare module "sap/ui/integration/library" {
|
|
|
29
29
|
* This enum is part of the 'sap/ui/integration/library' module export and must be accessed by the property
|
|
30
30
|
* 'CardActionType'.
|
|
31
31
|
*
|
|
32
|
-
* @experimental
|
|
32
|
+
* @experimental As of version 1.64. Disclaimer: this property is in a beta state - incompatible API changes
|
|
33
33
|
* may be done before its official public release. Use at your own discretion.
|
|
34
34
|
*/
|
|
35
35
|
export enum CardActionType {
|
|
36
36
|
/**
|
|
37
37
|
* Used for custom actions.
|
|
38
38
|
*
|
|
39
|
-
* @experimental
|
|
39
|
+
* @experimental As of version 1.76.
|
|
40
40
|
*/
|
|
41
41
|
Custom = "Custom",
|
|
42
42
|
/**
|
|
43
43
|
* Date selection. Available only for Calendar cards.
|
|
44
44
|
*
|
|
45
|
-
* @experimental
|
|
45
|
+
* @experimental As of version 1.87.
|
|
46
46
|
*/
|
|
47
47
|
DateChange = "DateChange",
|
|
48
48
|
/**
|
|
49
49
|
* Used for hiding the appeared details about the card.
|
|
50
50
|
*
|
|
51
|
-
* @experimental
|
|
51
|
+
* @experimental As of version 1.100.
|
|
52
52
|
*/
|
|
53
53
|
HideCard = "HideCard",
|
|
54
54
|
/**
|
|
55
55
|
* Month selection. Available only for Calendar cards.
|
|
56
56
|
*
|
|
57
|
-
* @experimental
|
|
57
|
+
* @experimental As of version 1.87.
|
|
58
58
|
*/
|
|
59
59
|
MonthChange = "MonthChange",
|
|
60
60
|
/**
|
|
@@ -64,7 +64,7 @@ declare module "sap/ui/integration/library" {
|
|
|
64
64
|
/**
|
|
65
65
|
* Used for showing more details about the card.
|
|
66
66
|
*
|
|
67
|
-
* @experimental
|
|
67
|
+
* @experimental As of version 1.100.
|
|
68
68
|
*/
|
|
69
69
|
ShowCard = "ShowCard",
|
|
70
70
|
/**
|
|
@@ -100,7 +100,7 @@ declare module "sap/ui/integration/library" {
|
|
|
100
100
|
* This enum is part of the 'sap/ui/integration/library' module export and must be accessed by the property
|
|
101
101
|
* 'CardBlockingMessageType'.
|
|
102
102
|
*
|
|
103
|
-
* @experimental
|
|
103
|
+
* @experimental As of version 1.114.
|
|
104
104
|
*/
|
|
105
105
|
export enum CardBlockingMessageType {
|
|
106
106
|
/**
|
|
@@ -123,7 +123,7 @@ declare module "sap/ui/integration/library" {
|
|
|
123
123
|
* 'CardDataMode'.
|
|
124
124
|
*
|
|
125
125
|
* @since 1.65
|
|
126
|
-
* @experimental
|
|
126
|
+
* @experimental As of version 1.65.
|
|
127
127
|
*/
|
|
128
128
|
export enum CardDataMode {
|
|
129
129
|
/**
|
|
@@ -146,7 +146,7 @@ declare module "sap/ui/integration/library" {
|
|
|
146
146
|
* 'CardDesign'.
|
|
147
147
|
*
|
|
148
148
|
* @since 1.109
|
|
149
|
-
* @experimental
|
|
149
|
+
* @experimental As of version 1.109.
|
|
150
150
|
*/
|
|
151
151
|
export enum CardDesign {
|
|
152
152
|
/**
|
|
@@ -165,7 +165,7 @@ declare module "sap/ui/integration/library" {
|
|
|
165
165
|
* 'CardDisplayVariant'.
|
|
166
166
|
*
|
|
167
167
|
* @since 1.118
|
|
168
|
-
* @experimental
|
|
168
|
+
* @experimental As of version 1.118. For usage only by Work Zone.
|
|
169
169
|
*/
|
|
170
170
|
export enum CardDisplayVariant {
|
|
171
171
|
/**
|
|
@@ -212,7 +212,7 @@ declare module "sap/ui/integration/library" {
|
|
|
212
212
|
/**
|
|
213
213
|
* An object type that represents card menu action properties.
|
|
214
214
|
*
|
|
215
|
-
* @experimental
|
|
215
|
+
* @experimental As of version 1.79.
|
|
216
216
|
*/
|
|
217
217
|
export type CardMenuAction = {
|
|
218
218
|
/**
|
|
@@ -267,7 +267,7 @@ declare module "sap/ui/integration/library" {
|
|
|
267
267
|
* This enum is part of the 'sap/ui/integration/library' module export and must be accessed by the property
|
|
268
268
|
* 'CardMessageType'.
|
|
269
269
|
*
|
|
270
|
-
* @experimental
|
|
270
|
+
* @experimental As of version 1.128.
|
|
271
271
|
*/
|
|
272
272
|
export enum CardMessageType {
|
|
273
273
|
/**
|
|
@@ -300,6 +300,35 @@ declare module "sap/ui/integration/library" {
|
|
|
300
300
|
*/
|
|
301
301
|
Warning = "Warning",
|
|
302
302
|
}
|
|
303
|
+
/**
|
|
304
|
+
* Determines the overflow behaviour of the card.
|
|
305
|
+
*
|
|
306
|
+
* This enum is part of the 'sap/ui/integration/library' module export and must be accessed by the property
|
|
307
|
+
* 'CardOverflow'.
|
|
308
|
+
*
|
|
309
|
+
* @since 1.133
|
|
310
|
+
* @experimental As of version 1.133.
|
|
311
|
+
*/
|
|
312
|
+
export enum CardOverflow {
|
|
313
|
+
/**
|
|
314
|
+
* The overflowing part of the card is hidden.
|
|
315
|
+
*
|
|
316
|
+
* **Note**: If the "Default" option is used, the card must be allowed to grow in height as much as it needs
|
|
317
|
+
* to avoid overflowing. Use a layout which allows this.
|
|
318
|
+
*/
|
|
319
|
+
Default = "Default",
|
|
320
|
+
/**
|
|
321
|
+
* The overflowing part of the card is hidden, but a 'Show More' button is displayed in the footer. By pressing
|
|
322
|
+
* the button, the full content will be displayed.
|
|
323
|
+
*
|
|
324
|
+
* **Note**: If this option is used, the "minHeight" setting for cards of type Analytical, AnalyticsCloud
|
|
325
|
+
* and WebPage will be ignored.
|
|
326
|
+
*
|
|
327
|
+
* **Disclaimer**: This feature is not suitable for object cards with forms. It might lead to undesired
|
|
328
|
+
* user interaction.
|
|
329
|
+
*/
|
|
330
|
+
ShowMore = "ShowMore",
|
|
331
|
+
}
|
|
303
332
|
/**
|
|
304
333
|
* Preview modes for `{@link sap.ui.integration.widgets.Card}`. Helpful in scenarios when the end user is
|
|
305
334
|
* choosing or configuring a card.
|
|
@@ -308,7 +337,7 @@ declare module "sap/ui/integration/library" {
|
|
|
308
337
|
* 'CardPreviewMode'.
|
|
309
338
|
*
|
|
310
339
|
* @since 1.112
|
|
311
|
-
* @experimental
|
|
340
|
+
* @experimental As of version 1.112.
|
|
312
341
|
*/
|
|
313
342
|
export enum CardPreviewMode {
|
|
314
343
|
/**
|
|
@@ -349,8 +378,8 @@ declare module "sap/ui/integration/ActionDefinition" {
|
|
|
349
378
|
* in `Component` card and `Extension`.
|
|
350
379
|
*
|
|
351
380
|
* @since 1.85
|
|
352
|
-
* @experimental
|
|
353
|
-
* be done before its official public release. Use at your own discretion.
|
|
381
|
+
* @experimental As of version 1.85. Disclaimer: this class is in a beta state - incompatible API changes
|
|
382
|
+
* may be done before its official public release. Use at your own discretion.
|
|
354
383
|
*/
|
|
355
384
|
export default class ActionDefinition extends UI5Element {
|
|
356
385
|
/**
|
|
@@ -528,11 +557,12 @@ declare module "sap/ui/integration/ActionDefinition" {
|
|
|
528
557
|
*
|
|
529
558
|
* Default value is `Transparent`.
|
|
530
559
|
*
|
|
531
|
-
* @deprecated
|
|
560
|
+
* @deprecated As of version 1.130. All `ActionDefinitions` are now rendered as menu items and don't have
|
|
561
|
+
* `buttonType`.
|
|
532
562
|
*
|
|
533
563
|
* @returns Value of property `buttonType`
|
|
534
564
|
*/
|
|
535
|
-
getButtonType(): ButtonType
|
|
565
|
+
getButtonType(): ButtonType;
|
|
536
566
|
/**
|
|
537
567
|
* Gets current value of property {@link #getEnabled enabled}.
|
|
538
568
|
*
|
|
@@ -594,7 +624,7 @@ declare module "sap/ui/integration/ActionDefinition" {
|
|
|
594
624
|
*
|
|
595
625
|
* @returns Value of property `type`
|
|
596
626
|
*/
|
|
597
|
-
getType(): CardActionType
|
|
627
|
+
getType(): CardActionType;
|
|
598
628
|
/**
|
|
599
629
|
* Gets current value of property {@link #getVisible visible}.
|
|
600
630
|
*
|
|
@@ -667,7 +697,8 @@ declare module "sap/ui/integration/ActionDefinition" {
|
|
|
667
697
|
*
|
|
668
698
|
* Default value is `Transparent`.
|
|
669
699
|
*
|
|
670
|
-
* @deprecated
|
|
700
|
+
* @deprecated As of version 1.130. All `ActionDefinitions` are now rendered as menu items and don't have
|
|
701
|
+
* `buttonType`.
|
|
671
702
|
*
|
|
672
703
|
* @returns Reference to `this` in order to allow method chaining
|
|
673
704
|
*/
|
|
@@ -803,8 +834,8 @@ declare module "sap/ui/integration/ActionDefinition" {
|
|
|
803
834
|
/**
|
|
804
835
|
* Describes the settings that can be provided to the ActionDefinition constructor.
|
|
805
836
|
*
|
|
806
|
-
* @experimental
|
|
807
|
-
* be done before its official public release. Use at your own discretion.
|
|
837
|
+
* @experimental As of version 1.85. Disclaimer: this class is in a beta state - incompatible API changes
|
|
838
|
+
* may be done before its official public release. Use at your own discretion.
|
|
808
839
|
*/
|
|
809
840
|
export interface $ActionDefinitionSettings extends $ElementSettings {
|
|
810
841
|
/**
|
|
@@ -828,7 +859,8 @@ declare module "sap/ui/integration/ActionDefinition" {
|
|
|
828
859
|
/**
|
|
829
860
|
* The type of the action button.
|
|
830
861
|
*
|
|
831
|
-
* @deprecated
|
|
862
|
+
* @deprecated As of version 1.130. All `ActionDefinitions` are now rendered as menu items and don't have
|
|
863
|
+
* `buttonType`.
|
|
832
864
|
*/
|
|
833
865
|
buttonType?:
|
|
834
866
|
| (ButtonType | keyof typeof ButtonType)
|
|
@@ -893,6 +925,7 @@ declare module "sap/ui/integration/widgets/Card" {
|
|
|
893
925
|
CardDataMode,
|
|
894
926
|
CardDesign,
|
|
895
927
|
CardDisplayVariant,
|
|
928
|
+
CardOverflow,
|
|
896
929
|
CardPreviewMode,
|
|
897
930
|
CardArea,
|
|
898
931
|
CardMessageType,
|
|
@@ -925,7 +958,7 @@ declare module "sap/ui/integration/widgets/Card" {
|
|
|
925
958
|
/**
|
|
926
959
|
* Settings for blocking message that ocurred in a {@link sap.ui.integration.widgets.Card}
|
|
927
960
|
*
|
|
928
|
-
* @experimental
|
|
961
|
+
* @experimental As of version 1.114.
|
|
929
962
|
*/
|
|
930
963
|
export type BlockingMessageSettings = {
|
|
931
964
|
/**
|
|
@@ -1018,7 +1051,7 @@ declare module "sap/ui/integration/widgets/Card" {
|
|
|
1018
1051
|
*/
|
|
1019
1052
|
constructor(
|
|
1020
1053
|
/**
|
|
1021
|
-
* Initial settings for the new control
|
|
1054
|
+
* Initial settings for the new control.
|
|
1022
1055
|
*/
|
|
1023
1056
|
mSettings?: $CardSettings
|
|
1024
1057
|
);
|
|
@@ -1033,11 +1066,11 @@ declare module "sap/ui/integration/widgets/Card" {
|
|
|
1033
1066
|
*/
|
|
1034
1067
|
constructor(
|
|
1035
1068
|
/**
|
|
1036
|
-
* ID for the new control
|
|
1069
|
+
* ID for the new control. ID generated automatically if no ID is provided.
|
|
1037
1070
|
*/
|
|
1038
1071
|
sId?: string,
|
|
1039
1072
|
/**
|
|
1040
|
-
* Initial settings for the new control
|
|
1073
|
+
* Initial settings for the new control.
|
|
1041
1074
|
*/
|
|
1042
1075
|
mSettings?: $CardSettings
|
|
1043
1076
|
);
|
|
@@ -1077,8 +1110,8 @@ declare module "sap/ui/integration/widgets/Card" {
|
|
|
1077
1110
|
* Adds some actionDefinition to the aggregation {@link #getActionDefinitions actionDefinitions}.
|
|
1078
1111
|
*
|
|
1079
1112
|
* @since 1.85
|
|
1080
|
-
* @experimental
|
|
1081
|
-
* may be done before its official public release. Use at your own discretion.
|
|
1113
|
+
* @experimental As of version 1.85. Disclaimer: this aggregation is in a beta state - incompatible API
|
|
1114
|
+
* changes may be done before its official public release. Use at your own discretion.
|
|
1082
1115
|
*
|
|
1083
1116
|
* @returns Reference to `this` in order to allow method chaining
|
|
1084
1117
|
*/
|
|
@@ -1100,8 +1133,8 @@ declare module "sap/ui/integration/widgets/Card" {
|
|
|
1100
1133
|
* In consecutive order those places are: `Extension`, `Card`, `Host`. Each of them can prevent the next
|
|
1101
1134
|
* one to handle the action by calling `oEvent.preventDefault()`.
|
|
1102
1135
|
*
|
|
1103
|
-
* @experimental
|
|
1104
|
-
* be done before its official public release. Use at your own discretion.
|
|
1136
|
+
* @experimental As of version 1.64. Disclaimer: this event is in a beta state - incompatible API changes
|
|
1137
|
+
* may be done before its official public release. Use at your own discretion.
|
|
1105
1138
|
*
|
|
1106
1139
|
* @returns Reference to `this` in order to allow method chaining
|
|
1107
1140
|
*/
|
|
@@ -1132,8 +1165,8 @@ declare module "sap/ui/integration/widgets/Card" {
|
|
|
1132
1165
|
* In consecutive order those places are: `Extension`, `Card`, `Host`. Each of them can prevent the next
|
|
1133
1166
|
* one to handle the action by calling `oEvent.preventDefault()`.
|
|
1134
1167
|
*
|
|
1135
|
-
* @experimental
|
|
1136
|
-
* be done before its official public release. Use at your own discretion.
|
|
1168
|
+
* @experimental As of version 1.64. Disclaimer: this event is in a beta state - incompatible API changes
|
|
1169
|
+
* may be done before its official public release. Use at your own discretion.
|
|
1137
1170
|
*
|
|
1138
1171
|
* @returns Reference to `this` in order to allow method chaining
|
|
1139
1172
|
*/
|
|
@@ -1157,7 +1190,7 @@ declare module "sap/ui/integration/widgets/Card" {
|
|
|
1157
1190
|
* Fired when some configuration settings are changed as a result of user interaction. For example - filter
|
|
1158
1191
|
* value is changed.
|
|
1159
1192
|
*
|
|
1160
|
-
* @experimental
|
|
1193
|
+
* @experimental As of version 1.96.
|
|
1161
1194
|
*
|
|
1162
1195
|
* @returns Reference to `this` in order to allow method chaining
|
|
1163
1196
|
*/
|
|
@@ -1186,7 +1219,7 @@ declare module "sap/ui/integration/widgets/Card" {
|
|
|
1186
1219
|
* Fired when some configuration settings are changed as a result of user interaction. For example - filter
|
|
1187
1220
|
* value is changed.
|
|
1188
1221
|
*
|
|
1189
|
-
* @experimental
|
|
1222
|
+
* @experimental As of version 1.96.
|
|
1190
1223
|
*
|
|
1191
1224
|
* @returns Reference to `this` in order to allow method chaining
|
|
1192
1225
|
*/
|
|
@@ -1208,7 +1241,7 @@ declare module "sap/ui/integration/widgets/Card" {
|
|
|
1208
1241
|
*
|
|
1209
1242
|
* Fired when the manifest is loaded.
|
|
1210
1243
|
*
|
|
1211
|
-
* @experimental
|
|
1244
|
+
* @experimental As of version 1.72.
|
|
1212
1245
|
*
|
|
1213
1246
|
* @returns Reference to `this` in order to allow method chaining
|
|
1214
1247
|
*/
|
|
@@ -1235,7 +1268,7 @@ declare module "sap/ui/integration/widgets/Card" {
|
|
|
1235
1268
|
*
|
|
1236
1269
|
* Fired when the manifest is loaded.
|
|
1237
1270
|
*
|
|
1238
|
-
* @experimental
|
|
1271
|
+
* @experimental As of version 1.72.
|
|
1239
1272
|
*
|
|
1240
1273
|
* @returns Reference to `this` in order to allow method chaining
|
|
1241
1274
|
*/
|
|
@@ -1258,7 +1291,7 @@ declare module "sap/ui/integration/widgets/Card" {
|
|
|
1258
1291
|
* Fired when the state of the card is changed. For example - the card is ready, new page is selected, a
|
|
1259
1292
|
* filter is changed or data is refreshed.
|
|
1260
1293
|
*
|
|
1261
|
-
* @experimental
|
|
1294
|
+
* @experimental As of version 1.107.
|
|
1262
1295
|
*
|
|
1263
1296
|
* @returns Reference to `this` in order to allow method chaining
|
|
1264
1297
|
*/
|
|
@@ -1286,7 +1319,7 @@ declare module "sap/ui/integration/widgets/Card" {
|
|
|
1286
1319
|
* Fired when the state of the card is changed. For example - the card is ready, new page is selected, a
|
|
1287
1320
|
* filter is changed or data is refreshed.
|
|
1288
1321
|
*
|
|
1289
|
-
* @experimental
|
|
1322
|
+
* @experimental As of version 1.107.
|
|
1290
1323
|
*
|
|
1291
1324
|
* @returns Reference to `this` in order to allow method chaining
|
|
1292
1325
|
*/
|
|
@@ -1304,8 +1337,8 @@ declare module "sap/ui/integration/widgets/Card" {
|
|
|
1304
1337
|
* Destroys all the actionDefinitions in the aggregation {@link #getActionDefinitions actionDefinitions}.
|
|
1305
1338
|
*
|
|
1306
1339
|
* @since 1.85
|
|
1307
|
-
* @experimental
|
|
1308
|
-
* may be done before its official public release. Use at your own discretion.
|
|
1340
|
+
* @experimental As of version 1.85. Disclaimer: this aggregation is in a beta state - incompatible API
|
|
1341
|
+
* changes may be done before its official public release. Use at your own discretion.
|
|
1309
1342
|
*
|
|
1310
1343
|
* @returns Reference to `this` in order to allow method chaining
|
|
1311
1344
|
*/
|
|
@@ -1315,8 +1348,8 @@ declare module "sap/ui/integration/widgets/Card" {
|
|
|
1315
1348
|
*
|
|
1316
1349
|
* The passed function and listener object must match the ones used for event registration.
|
|
1317
1350
|
*
|
|
1318
|
-
* @experimental
|
|
1319
|
-
* be done before its official public release. Use at your own discretion.
|
|
1351
|
+
* @experimental As of version 1.64. Disclaimer: this event is in a beta state - incompatible API changes
|
|
1352
|
+
* may be done before its official public release. Use at your own discretion.
|
|
1320
1353
|
*
|
|
1321
1354
|
* @returns Reference to `this` in order to allow method chaining
|
|
1322
1355
|
*/
|
|
@@ -1336,7 +1369,7 @@ declare module "sap/ui/integration/widgets/Card" {
|
|
|
1336
1369
|
*
|
|
1337
1370
|
* The passed function and listener object must match the ones used for event registration.
|
|
1338
1371
|
*
|
|
1339
|
-
* @experimental
|
|
1372
|
+
* @experimental As of version 1.96.
|
|
1340
1373
|
*
|
|
1341
1374
|
* @returns Reference to `this` in order to allow method chaining
|
|
1342
1375
|
*/
|
|
@@ -1356,7 +1389,7 @@ declare module "sap/ui/integration/widgets/Card" {
|
|
|
1356
1389
|
*
|
|
1357
1390
|
* The passed function and listener object must match the ones used for event registration.
|
|
1358
1391
|
*
|
|
1359
|
-
* @experimental
|
|
1392
|
+
* @experimental As of version 1.72.
|
|
1360
1393
|
*
|
|
1361
1394
|
* @returns Reference to `this` in order to allow method chaining
|
|
1362
1395
|
*/
|
|
@@ -1375,7 +1408,7 @@ declare module "sap/ui/integration/widgets/Card" {
|
|
|
1375
1408
|
*
|
|
1376
1409
|
* The passed function and listener object must match the ones used for event registration.
|
|
1377
1410
|
*
|
|
1378
|
-
* @experimental
|
|
1411
|
+
* @experimental As of version 1.107.
|
|
1379
1412
|
*
|
|
1380
1413
|
* @returns Reference to `this` in order to allow method chaining
|
|
1381
1414
|
*/
|
|
@@ -1395,8 +1428,8 @@ declare module "sap/ui/integration/widgets/Card" {
|
|
|
1395
1428
|
* Listeners may prevent the default action of this event by calling the `preventDefault` method on the
|
|
1396
1429
|
* event object. The return value of this method indicates whether the default action should be executed.
|
|
1397
1430
|
*
|
|
1398
|
-
* @experimental
|
|
1399
|
-
* be done before its official public release. Use at your own discretion.
|
|
1431
|
+
* @experimental As of version 1.64. Disclaimer: this event is in a beta state - incompatible API changes
|
|
1432
|
+
* may be done before its official public release. Use at your own discretion.
|
|
1400
1433
|
* @ui5-protected Do not call from applications (only from related classes in the framework)
|
|
1401
1434
|
*
|
|
1402
1435
|
* @returns Whether or not to prevent the default action
|
|
@@ -1410,7 +1443,7 @@ declare module "sap/ui/integration/widgets/Card" {
|
|
|
1410
1443
|
/**
|
|
1411
1444
|
* Fires event {@link #event:configurationChange configurationChange} to attached listeners.
|
|
1412
1445
|
*
|
|
1413
|
-
* @experimental
|
|
1446
|
+
* @experimental As of version 1.96.
|
|
1414
1447
|
* @ui5-protected Do not call from applications (only from related classes in the framework)
|
|
1415
1448
|
*
|
|
1416
1449
|
* @returns Reference to `this` in order to allow method chaining
|
|
@@ -1424,7 +1457,7 @@ declare module "sap/ui/integration/widgets/Card" {
|
|
|
1424
1457
|
/**
|
|
1425
1458
|
* Fires event {@link #event:manifestReady manifestReady} to attached listeners.
|
|
1426
1459
|
*
|
|
1427
|
-
* @experimental
|
|
1460
|
+
* @experimental As of version 1.72.
|
|
1428
1461
|
* @ui5-protected Do not call from applications (only from related classes in the framework)
|
|
1429
1462
|
*
|
|
1430
1463
|
* @returns Reference to `this` in order to allow method chaining
|
|
@@ -1438,7 +1471,7 @@ declare module "sap/ui/integration/widgets/Card" {
|
|
|
1438
1471
|
/**
|
|
1439
1472
|
* Fires event {@link #event:stateChanged stateChanged} to attached listeners.
|
|
1440
1473
|
*
|
|
1441
|
-
* @experimental
|
|
1474
|
+
* @experimental As of version 1.107.
|
|
1442
1475
|
* @ui5-protected Do not call from applications (only from related classes in the framework)
|
|
1443
1476
|
*
|
|
1444
1477
|
* @returns Reference to `this` in order to allow method chaining
|
|
@@ -1456,8 +1489,8 @@ declare module "sap/ui/integration/widgets/Card" {
|
|
|
1456
1489
|
* is destroyed when the property `manifest` changes.
|
|
1457
1490
|
*
|
|
1458
1491
|
* @since 1.85
|
|
1459
|
-
* @experimental
|
|
1460
|
-
* may be done before its official public release. Use at your own discretion.
|
|
1492
|
+
* @experimental As of version 1.85. Disclaimer: this aggregation is in a beta state - incompatible API
|
|
1493
|
+
* changes may be done before its official public release. Use at your own discretion.
|
|
1461
1494
|
*/
|
|
1462
1495
|
getActionDefinitions(): ActionDefinition[];
|
|
1463
1496
|
/**
|
|
@@ -1468,7 +1501,7 @@ declare module "sap/ui/integration/widgets/Card" {
|
|
|
1468
1501
|
* If both manifest URL and base URL are not defined - relative resources might not be loaded correctly.
|
|
1469
1502
|
*
|
|
1470
1503
|
* @since 1.70
|
|
1471
|
-
* @experimental
|
|
1504
|
+
* @experimental As of version 1.70.
|
|
1472
1505
|
*
|
|
1473
1506
|
* @returns Value of property `baseUrl`
|
|
1474
1507
|
*/
|
|
@@ -1476,7 +1509,7 @@ declare module "sap/ui/integration/widgets/Card" {
|
|
|
1476
1509
|
/**
|
|
1477
1510
|
* Get information about the blocking message in the card.
|
|
1478
1511
|
*
|
|
1479
|
-
* @experimental
|
|
1512
|
+
* @experimental As of version 1.114.
|
|
1480
1513
|
*
|
|
1481
1514
|
* @returns Information about the message or `null`, if such isn't shown.
|
|
1482
1515
|
*/
|
|
@@ -1490,7 +1523,7 @@ declare module "sap/ui/integration/widgets/Card" {
|
|
|
1490
1523
|
*
|
|
1491
1524
|
* - Use when developing a Component card.
|
|
1492
1525
|
*
|
|
1493
|
-
* @experimental
|
|
1526
|
+
* @experimental As of version 1.77.
|
|
1494
1527
|
*
|
|
1495
1528
|
* @returns Object containing parameters in format `{parameterKey: parameterValue}`.
|
|
1496
1529
|
*/
|
|
@@ -1503,11 +1536,11 @@ declare module "sap/ui/integration/widgets/Card" {
|
|
|
1503
1536
|
* Default value is `Auto`.
|
|
1504
1537
|
*
|
|
1505
1538
|
* @since 1.65
|
|
1506
|
-
* @experimental
|
|
1539
|
+
* @experimental As of version 1.65.
|
|
1507
1540
|
*
|
|
1508
1541
|
* @returns Value of property `dataMode`
|
|
1509
1542
|
*/
|
|
1510
|
-
getDataMode(): CardDataMode
|
|
1543
|
+
getDataMode(): CardDataMode;
|
|
1511
1544
|
/**
|
|
1512
1545
|
* Gets current value of property {@link #getDesign design}.
|
|
1513
1546
|
*
|
|
@@ -1516,11 +1549,11 @@ declare module "sap/ui/integration/widgets/Card" {
|
|
|
1516
1549
|
* Default value is `Solid`.
|
|
1517
1550
|
*
|
|
1518
1551
|
* @since 1.109
|
|
1519
|
-
* @experimental
|
|
1552
|
+
* @experimental As of version 1.109.
|
|
1520
1553
|
*
|
|
1521
1554
|
* @returns Value of property `design`
|
|
1522
1555
|
*/
|
|
1523
|
-
getDesign(): CardDesign
|
|
1556
|
+
getDesign(): CardDesign;
|
|
1524
1557
|
/**
|
|
1525
1558
|
* Gets current value of property {@link #getDisplayVariant displayVariant}.
|
|
1526
1559
|
*
|
|
@@ -1529,11 +1562,11 @@ declare module "sap/ui/integration/widgets/Card" {
|
|
|
1529
1562
|
* Default value is `Standard`.
|
|
1530
1563
|
*
|
|
1531
1564
|
* @since 1.118
|
|
1532
|
-
* @experimental
|
|
1565
|
+
* @experimental As of version 1.118. For usage only by Work Zone.
|
|
1533
1566
|
*
|
|
1534
1567
|
* @returns Value of property `displayVariant`
|
|
1535
1568
|
*/
|
|
1536
|
-
getDisplayVariant(): CardDisplayVariant
|
|
1569
|
+
getDisplayVariant(): CardDisplayVariant;
|
|
1537
1570
|
/**
|
|
1538
1571
|
* Returns the DOM Element that should get the focus.
|
|
1539
1572
|
*
|
|
@@ -1549,7 +1582,7 @@ declare module "sap/ui/integration/widgets/Card" {
|
|
|
1549
1582
|
/**
|
|
1550
1583
|
* Gets the instance of the `host` association.
|
|
1551
1584
|
*
|
|
1552
|
-
* @experimental
|
|
1585
|
+
* @experimental As of version 1.77.
|
|
1553
1586
|
*
|
|
1554
1587
|
* @returns The host object associated with this card.
|
|
1555
1588
|
*/
|
|
@@ -1604,8 +1637,8 @@ declare module "sap/ui/integration/widgets/Card" {
|
|
|
1604
1637
|
* Default value is `[]`.
|
|
1605
1638
|
*
|
|
1606
1639
|
* @since 1.76
|
|
1607
|
-
* @experimental
|
|
1608
|
-
* is implemented.
|
|
1640
|
+
* @experimental As of version 1.76. This API might be removed when a permanent solution for flexibility
|
|
1641
|
+
* changes is implemented.
|
|
1609
1642
|
*
|
|
1610
1643
|
* @returns Value of property `manifestChanges`
|
|
1611
1644
|
*/
|
|
@@ -1615,7 +1648,7 @@ declare module "sap/ui/integration/widgets/Card" {
|
|
|
1615
1648
|
*
|
|
1616
1649
|
* **Note** Use this method when the manifest is ready. Check `manifestReady` event.
|
|
1617
1650
|
*
|
|
1618
|
-
* @experimental
|
|
1651
|
+
* @experimental As of version 1.77.
|
|
1619
1652
|
*
|
|
1620
1653
|
* @returns The value at the specified path.
|
|
1621
1654
|
*/
|
|
@@ -1625,13 +1658,29 @@ declare module "sap/ui/integration/widgets/Card" {
|
|
|
1625
1658
|
*/
|
|
1626
1659
|
sPath: string
|
|
1627
1660
|
): any;
|
|
1661
|
+
/**
|
|
1662
|
+
* Gets current value of property {@link #getOverflow overflow}.
|
|
1663
|
+
*
|
|
1664
|
+
* Allows to control the overflow behaviour of the card.
|
|
1665
|
+
*
|
|
1666
|
+
* **Note**: If the "Default" option is used, the card must be allowed to grow in height as much as it needs
|
|
1667
|
+
* to avoid overflowing. Use a layout which allows this.
|
|
1668
|
+
*
|
|
1669
|
+
* Default value is `Default`.
|
|
1670
|
+
*
|
|
1671
|
+
* @since 1.133
|
|
1672
|
+
* @experimental As of version 1.133.
|
|
1673
|
+
*
|
|
1674
|
+
* @returns Value of property `overflow`
|
|
1675
|
+
*/
|
|
1676
|
+
getOverflow(): CardOverflow;
|
|
1628
1677
|
/**
|
|
1629
1678
|
* Gets current value of property {@link #getParameters parameters}.
|
|
1630
1679
|
*
|
|
1631
1680
|
* Overrides the default values of the parameters, which are defined in the manifest. The value is an object
|
|
1632
1681
|
* containing parameters in format `{parameterKey: parameterValue}`.
|
|
1633
1682
|
*
|
|
1634
|
-
* @experimental
|
|
1683
|
+
* @experimental As of version 1.65. This property might be changed in future.
|
|
1635
1684
|
*
|
|
1636
1685
|
* @returns Value of property `parameters`
|
|
1637
1686
|
*/
|
|
@@ -1649,11 +1698,11 @@ declare module "sap/ui/integration/widgets/Card" {
|
|
|
1649
1698
|
* Default value is `Off`.
|
|
1650
1699
|
*
|
|
1651
1700
|
* @since 1.112
|
|
1652
|
-
* @experimental
|
|
1701
|
+
* @experimental As of version 1.112.
|
|
1653
1702
|
*
|
|
1654
1703
|
* @returns Value of property `previewMode`
|
|
1655
1704
|
*/
|
|
1656
|
-
getPreviewMode(): CardPreviewMode
|
|
1705
|
+
getPreviewMode(): CardPreviewMode;
|
|
1657
1706
|
/**
|
|
1658
1707
|
* Gets current value of property {@link #getReferenceId referenceId}.
|
|
1659
1708
|
*
|
|
@@ -1671,7 +1720,7 @@ declare module "sap/ui/integration/widgets/Card" {
|
|
|
1671
1720
|
*
|
|
1672
1721
|
* For more details see {@link module:sap/base/i18n/ResourceBundle#getText}.
|
|
1673
1722
|
*
|
|
1674
|
-
* @experimental
|
|
1723
|
+
* @experimental As of version 1.83. The API might change.
|
|
1675
1724
|
*
|
|
1676
1725
|
* @returns The value belonging to the key, if found; otherwise the key itself or `undefined` depending
|
|
1677
1726
|
* on `bIgnoreKeyFallback`.
|
|
@@ -1703,7 +1752,7 @@ declare module "sap/ui/integration/widgets/Card" {
|
|
|
1703
1752
|
* Default value is `false`.
|
|
1704
1753
|
*
|
|
1705
1754
|
* @since 1.127
|
|
1706
|
-
* @experimental
|
|
1755
|
+
* @experimental As of version 1.127.
|
|
1707
1756
|
*
|
|
1708
1757
|
* @returns Value of property `useProgressiveDisclosure`
|
|
1709
1758
|
*/
|
|
@@ -1711,7 +1760,7 @@ declare module "sap/ui/integration/widgets/Card" {
|
|
|
1711
1760
|
/**
|
|
1712
1761
|
* Hide the blocking message that is shown in the card by `showBlockingMessage` call.
|
|
1713
1762
|
*
|
|
1714
|
-
* @experimental
|
|
1763
|
+
* @experimental As of version 1.114.
|
|
1715
1764
|
*/
|
|
1716
1765
|
hideBlockingMessage(): void;
|
|
1717
1766
|
/**
|
|
@@ -1727,7 +1776,7 @@ declare module "sap/ui/integration/widgets/Card" {
|
|
|
1727
1776
|
/**
|
|
1728
1777
|
* Hides the message previously shown by showMessage.
|
|
1729
1778
|
*
|
|
1730
|
-
* @experimental
|
|
1779
|
+
* @experimental As of version 1.117.
|
|
1731
1780
|
*/
|
|
1732
1781
|
hideMessage(): void;
|
|
1733
1782
|
/**
|
|
@@ -1735,8 +1784,8 @@ declare module "sap/ui/integration/widgets/Card" {
|
|
|
1735
1784
|
* and returns its index if found or -1 otherwise.
|
|
1736
1785
|
*
|
|
1737
1786
|
* @since 1.85
|
|
1738
|
-
* @experimental
|
|
1739
|
-
* may be done before its official public release. Use at your own discretion.
|
|
1787
|
+
* @experimental As of version 1.85. Disclaimer: this aggregation is in a beta state - incompatible API
|
|
1788
|
+
* changes may be done before its official public release. Use at your own discretion.
|
|
1740
1789
|
*
|
|
1741
1790
|
* @returns The index of the provided control in the aggregation if found, or -1 otherwise
|
|
1742
1791
|
*/
|
|
@@ -1750,8 +1799,8 @@ declare module "sap/ui/integration/widgets/Card" {
|
|
|
1750
1799
|
* Inserts a actionDefinition into the aggregation {@link #getActionDefinitions actionDefinitions}.
|
|
1751
1800
|
*
|
|
1752
1801
|
* @since 1.85
|
|
1753
|
-
* @experimental
|
|
1754
|
-
* may be done before its official public release. Use at your own discretion.
|
|
1802
|
+
* @experimental As of version 1.85. Disclaimer: this aggregation is in a beta state - incompatible API
|
|
1803
|
+
* changes may be done before its official public release. Use at your own discretion.
|
|
1755
1804
|
*
|
|
1756
1805
|
* @returns Reference to `this` in order to allow method chaining
|
|
1757
1806
|
*/
|
|
@@ -1768,7 +1817,7 @@ declare module "sap/ui/integration/widgets/Card" {
|
|
|
1768
1817
|
iIndex: int
|
|
1769
1818
|
): this;
|
|
1770
1819
|
/**
|
|
1771
|
-
* @experimental
|
|
1820
|
+
* @experimental As of version 1.65. The API might change.
|
|
1772
1821
|
*
|
|
1773
1822
|
* @returns If the card is ready or not.
|
|
1774
1823
|
*/
|
|
@@ -1781,7 +1830,7 @@ declare module "sap/ui/integration/widgets/Card" {
|
|
|
1781
1830
|
* the complete manifest json } The promise is rejected if the module cannot be loaded with an object: {
|
|
1782
1831
|
* error: "Card.designtime not found" }
|
|
1783
1832
|
*
|
|
1784
|
-
* @experimental
|
|
1833
|
+
* @experimental As of version 1.73.
|
|
1785
1834
|
*
|
|
1786
1835
|
* @returns Promise resolves after the designtime configuration is loaded.
|
|
1787
1836
|
*/
|
|
@@ -1789,7 +1838,7 @@ declare module "sap/ui/integration/widgets/Card" {
|
|
|
1789
1838
|
/**
|
|
1790
1839
|
* Refreshes the card by re-applying the manifest settings and triggering all data requests.
|
|
1791
1840
|
*
|
|
1792
|
-
* @experimental
|
|
1841
|
+
* @experimental As of version 1.65. The API might change.
|
|
1793
1842
|
*/
|
|
1794
1843
|
refresh(): void;
|
|
1795
1844
|
/**
|
|
@@ -1802,8 +1851,8 @@ declare module "sap/ui/integration/widgets/Card" {
|
|
|
1802
1851
|
* Removes a actionDefinition from the aggregation {@link #getActionDefinitions actionDefinitions}.
|
|
1803
1852
|
*
|
|
1804
1853
|
* @since 1.85
|
|
1805
|
-
* @experimental
|
|
1806
|
-
* may be done before its official public release. Use at your own discretion.
|
|
1854
|
+
* @experimental As of version 1.85. Disclaimer: this aggregation is in a beta state - incompatible API
|
|
1855
|
+
* changes may be done before its official public release. Use at your own discretion.
|
|
1807
1856
|
*
|
|
1808
1857
|
* @returns The removed actionDefinition or `null`
|
|
1809
1858
|
*/
|
|
@@ -1819,8 +1868,8 @@ declare module "sap/ui/integration/widgets/Card" {
|
|
|
1819
1868
|
* Additionally, it unregisters them from the hosting UIArea.
|
|
1820
1869
|
*
|
|
1821
1870
|
* @since 1.85
|
|
1822
|
-
* @experimental
|
|
1823
|
-
* may be done before its official public release. Use at your own discretion.
|
|
1871
|
+
* @experimental As of version 1.85. Disclaimer: this aggregation is in a beta state - incompatible API
|
|
1872
|
+
* changes may be done before its official public release. Use at your own discretion.
|
|
1824
1873
|
*
|
|
1825
1874
|
* @returns An array of the removed elements (might be empty)
|
|
1826
1875
|
*/
|
|
@@ -1828,7 +1877,7 @@ declare module "sap/ui/integration/widgets/Card" {
|
|
|
1828
1877
|
/**
|
|
1829
1878
|
* Performs an HTTP request using the given configuration.
|
|
1830
1879
|
*
|
|
1831
|
-
* @experimental
|
|
1880
|
+
* @experimental As of version 1.79.
|
|
1832
1881
|
*
|
|
1833
1882
|
* @returns Resolves when the request is successful, rejects otherwise.
|
|
1834
1883
|
*/
|
|
@@ -1893,7 +1942,7 @@ declare module "sap/ui/integration/widgets/Card" {
|
|
|
1893
1942
|
* When called with a value of `null` or `undefined`, the default value of the property will be restored.
|
|
1894
1943
|
*
|
|
1895
1944
|
* @since 1.70
|
|
1896
|
-
* @experimental
|
|
1945
|
+
* @experimental As of version 1.70.
|
|
1897
1946
|
*
|
|
1898
1947
|
* @returns Reference to `this` in order to allow method chaining
|
|
1899
1948
|
*/
|
|
@@ -1907,7 +1956,7 @@ declare module "sap/ui/integration/widgets/Card" {
|
|
|
1907
1956
|
* Sets a new value for the `dataMode` property.
|
|
1908
1957
|
*
|
|
1909
1958
|
* @since 1.65
|
|
1910
|
-
* @experimental
|
|
1959
|
+
* @experimental As of version 1.65. API might change.
|
|
1911
1960
|
*
|
|
1912
1961
|
* @returns Pointer to the control instance to allow method chaining.
|
|
1913
1962
|
*/
|
|
@@ -1927,7 +1976,7 @@ declare module "sap/ui/integration/widgets/Card" {
|
|
|
1927
1976
|
* Default value is `Solid`.
|
|
1928
1977
|
*
|
|
1929
1978
|
* @since 1.109
|
|
1930
|
-
* @experimental
|
|
1979
|
+
* @experimental As of version 1.109.
|
|
1931
1980
|
*
|
|
1932
1981
|
* @returns Reference to `this` in order to allow method chaining
|
|
1933
1982
|
*/
|
|
@@ -2013,8 +2062,8 @@ declare module "sap/ui/integration/widgets/Card" {
|
|
|
2013
2062
|
* Default value is `[]`.
|
|
2014
2063
|
*
|
|
2015
2064
|
* @since 1.76
|
|
2016
|
-
* @experimental
|
|
2017
|
-
* is implemented.
|
|
2065
|
+
* @experimental As of version 1.76. This API might be removed when a permanent solution for flexibility
|
|
2066
|
+
* changes is implemented.
|
|
2018
2067
|
*
|
|
2019
2068
|
* @returns Reference to `this` in order to allow method chaining
|
|
2020
2069
|
*/
|
|
@@ -2024,6 +2073,29 @@ declare module "sap/ui/integration/widgets/Card" {
|
|
|
2024
2073
|
*/
|
|
2025
2074
|
sManifestChanges?: object[]
|
|
2026
2075
|
): this;
|
|
2076
|
+
/**
|
|
2077
|
+
* Sets a new value for property {@link #getOverflow overflow}.
|
|
2078
|
+
*
|
|
2079
|
+
* Allows to control the overflow behaviour of the card.
|
|
2080
|
+
*
|
|
2081
|
+
* **Note**: If the "Default" option is used, the card must be allowed to grow in height as much as it needs
|
|
2082
|
+
* to avoid overflowing. Use a layout which allows this.
|
|
2083
|
+
*
|
|
2084
|
+
* When called with a value of `null` or `undefined`, the default value of the property will be restored.
|
|
2085
|
+
*
|
|
2086
|
+
* Default value is `Default`.
|
|
2087
|
+
*
|
|
2088
|
+
* @since 1.133
|
|
2089
|
+
* @experimental As of version 1.133.
|
|
2090
|
+
*
|
|
2091
|
+
* @returns Reference to `this` in order to allow method chaining
|
|
2092
|
+
*/
|
|
2093
|
+
setOverflow(
|
|
2094
|
+
/**
|
|
2095
|
+
* New value for property `overflow`
|
|
2096
|
+
*/
|
|
2097
|
+
sOverflow?: CardOverflow | keyof typeof CardOverflow
|
|
2098
|
+
): this;
|
|
2027
2099
|
/**
|
|
2028
2100
|
* Sets a new value for property {@link #getParameters parameters}.
|
|
2029
2101
|
*
|
|
@@ -2032,7 +2104,7 @@ declare module "sap/ui/integration/widgets/Card" {
|
|
|
2032
2104
|
*
|
|
2033
2105
|
* When called with a value of `null` or `undefined`, the default value of the property will be restored.
|
|
2034
2106
|
*
|
|
2035
|
-
* @experimental
|
|
2107
|
+
* @experimental As of version 1.65. This property might be changed in future.
|
|
2036
2108
|
*
|
|
2037
2109
|
* @returns Reference to `this` in order to allow method chaining
|
|
2038
2110
|
*/
|
|
@@ -2057,7 +2129,7 @@ declare module "sap/ui/integration/widgets/Card" {
|
|
|
2057
2129
|
* Default value is `Off`.
|
|
2058
2130
|
*
|
|
2059
2131
|
* @since 1.112
|
|
2060
|
-
* @experimental
|
|
2132
|
+
* @experimental As of version 1.112.
|
|
2061
2133
|
*
|
|
2062
2134
|
* @returns Reference to `this` in order to allow method chaining
|
|
2063
2135
|
*/
|
|
@@ -2097,7 +2169,7 @@ declare module "sap/ui/integration/widgets/Card" {
|
|
|
2097
2169
|
* Default value is `false`.
|
|
2098
2170
|
*
|
|
2099
2171
|
* @since 1.127
|
|
2100
|
-
* @experimental
|
|
2172
|
+
* @experimental As of version 1.127.
|
|
2101
2173
|
*
|
|
2102
2174
|
* @returns Reference to `this` in order to allow method chaining
|
|
2103
2175
|
*/
|
|
@@ -2111,7 +2183,7 @@ declare module "sap/ui/integration/widgets/Card" {
|
|
|
2111
2183
|
* Show blocking message in the card's content area. Should be used after the `manifestApplied` event or
|
|
2112
2184
|
* after the `cardReady` lifecycle hook in Component cards and Extensions.
|
|
2113
2185
|
*
|
|
2114
|
-
* @experimental
|
|
2186
|
+
* @experimental As of version 1.114.
|
|
2115
2187
|
*/
|
|
2116
2188
|
showBlockingMessage(
|
|
2117
2189
|
/**
|
|
@@ -2135,7 +2207,7 @@ declare module "sap/ui/integration/widgets/Card" {
|
|
|
2135
2207
|
* If there is a previous message, it is removed. Can be used only after the `manifestApplied` event is
|
|
2136
2208
|
* fired.
|
|
2137
2209
|
*
|
|
2138
|
-
* @experimental
|
|
2210
|
+
* @experimental As of version 1.81.
|
|
2139
2211
|
*/
|
|
2140
2212
|
showMessage(
|
|
2141
2213
|
/**
|
|
@@ -2173,7 +2245,7 @@ declare module "sap/ui/integration/widgets/Card" {
|
|
|
2173
2245
|
* ```
|
|
2174
2246
|
*
|
|
2175
2247
|
*
|
|
2176
|
-
* @experimental
|
|
2248
|
+
* @experimental As of version 1.84.
|
|
2177
2249
|
*/
|
|
2178
2250
|
triggerAction(
|
|
2179
2251
|
/**
|
|
@@ -2202,7 +2274,7 @@ declare module "sap/ui/integration/widgets/Card" {
|
|
|
2202
2274
|
/**
|
|
2203
2275
|
* Facade of the {@link sap.ui.integration.widgets.Card} control.
|
|
2204
2276
|
*
|
|
2205
|
-
* @experimental
|
|
2277
|
+
* @experimental As of version 1.79.
|
|
2206
2278
|
*/
|
|
2207
2279
|
export interface CardFacade {
|
|
2208
2280
|
__implements__sap_ui_integration_widgets_CardFacade: boolean;
|
|
@@ -2211,8 +2283,8 @@ declare module "sap/ui/integration/widgets/Card" {
|
|
|
2211
2283
|
* Adds some actionDefinition to the aggregation {@link #getActionDefinitions actionDefinitions}.
|
|
2212
2284
|
*
|
|
2213
2285
|
* @since 1.85
|
|
2214
|
-
* @experimental
|
|
2215
|
-
* may be done before its official public release. Use at your own discretion.
|
|
2286
|
+
* @experimental As of version 1.85. Disclaimer: this aggregation is in a beta state - incompatible API
|
|
2287
|
+
* changes may be done before its official public release. Use at your own discretion.
|
|
2216
2288
|
*
|
|
2217
2289
|
* @returns Reference to `this` in order to allow method chaining
|
|
2218
2290
|
*/
|
|
@@ -2230,7 +2302,7 @@ declare module "sap/ui/integration/widgets/Card" {
|
|
|
2230
2302
|
* If both manifest URL and base URL are not defined - relative resources might not be loaded correctly.
|
|
2231
2303
|
*
|
|
2232
2304
|
* @since 1.70
|
|
2233
|
-
* @experimental
|
|
2305
|
+
* @experimental As of version 1.70.
|
|
2234
2306
|
*
|
|
2235
2307
|
* @returns Value of property `baseUrl`
|
|
2236
2308
|
*/
|
|
@@ -2238,7 +2310,7 @@ declare module "sap/ui/integration/widgets/Card" {
|
|
|
2238
2310
|
/**
|
|
2239
2311
|
* Get information about the blocking message in the card.
|
|
2240
2312
|
*
|
|
2241
|
-
* @experimental
|
|
2313
|
+
* @experimental As of version 1.114.
|
|
2242
2314
|
*
|
|
2243
2315
|
* @returns Information about the message or `null`, if such isn't shown.
|
|
2244
2316
|
*/
|
|
@@ -2252,7 +2324,7 @@ declare module "sap/ui/integration/widgets/Card" {
|
|
|
2252
2324
|
*
|
|
2253
2325
|
* - Use when developing a Component card.
|
|
2254
2326
|
*
|
|
2255
|
-
* @experimental
|
|
2327
|
+
* @experimental As of version 1.77.
|
|
2256
2328
|
*
|
|
2257
2329
|
* @returns Object containing parameters in format `{parameterKey: parameterValue}`.
|
|
2258
2330
|
*/
|
|
@@ -2262,7 +2334,7 @@ declare module "sap/ui/integration/widgets/Card" {
|
|
|
2262
2334
|
*
|
|
2263
2335
|
* **Note** Use this method when the manifest is ready. Check `manifestReady` event.
|
|
2264
2336
|
*
|
|
2265
|
-
* @experimental
|
|
2337
|
+
* @experimental As of version 1.77.
|
|
2266
2338
|
*
|
|
2267
2339
|
* @returns The value at the specified path.
|
|
2268
2340
|
*/
|
|
@@ -2278,7 +2350,7 @@ declare module "sap/ui/integration/widgets/Card" {
|
|
|
2278
2350
|
* Overrides the default values of the parameters, which are defined in the manifest. The value is an object
|
|
2279
2351
|
* containing parameters in format `{parameterKey: parameterValue}`.
|
|
2280
2352
|
*
|
|
2281
|
-
* @experimental
|
|
2353
|
+
* @experimental As of version 1.65. This property might be changed in future.
|
|
2282
2354
|
*
|
|
2283
2355
|
* @returns Value of property `parameters`
|
|
2284
2356
|
*/
|
|
@@ -2288,7 +2360,7 @@ declare module "sap/ui/integration/widgets/Card" {
|
|
|
2288
2360
|
*
|
|
2289
2361
|
* For more details see {@link module:sap/base/i18n/ResourceBundle#getText}.
|
|
2290
2362
|
*
|
|
2291
|
-
* @experimental
|
|
2363
|
+
* @experimental As of version 1.83. The API might change.
|
|
2292
2364
|
*
|
|
2293
2365
|
* @returns The value belonging to the key, if found; otherwise the key itself or `undefined` depending
|
|
2294
2366
|
* on `bIgnoreKeyFallback`.
|
|
@@ -2314,7 +2386,7 @@ declare module "sap/ui/integration/widgets/Card" {
|
|
|
2314
2386
|
/**
|
|
2315
2387
|
* Hide the blocking message that is shown in the card by `showBlockingMessage` call.
|
|
2316
2388
|
*
|
|
2317
|
-
* @experimental
|
|
2389
|
+
* @experimental As of version 1.114.
|
|
2318
2390
|
*/
|
|
2319
2391
|
hideBlockingMessage(): void;
|
|
2320
2392
|
/**
|
|
@@ -2330,7 +2402,7 @@ declare module "sap/ui/integration/widgets/Card" {
|
|
|
2330
2402
|
/**
|
|
2331
2403
|
* Hides the message previously shown by showMessage.
|
|
2332
2404
|
*
|
|
2333
|
-
* @experimental
|
|
2405
|
+
* @experimental As of version 1.117.
|
|
2334
2406
|
*/
|
|
2335
2407
|
hideMessage(): void;
|
|
2336
2408
|
/**
|
|
@@ -2338,8 +2410,8 @@ declare module "sap/ui/integration/widgets/Card" {
|
|
|
2338
2410
|
* and returns its index if found or -1 otherwise.
|
|
2339
2411
|
*
|
|
2340
2412
|
* @since 1.85
|
|
2341
|
-
* @experimental
|
|
2342
|
-
* may be done before its official public release. Use at your own discretion.
|
|
2413
|
+
* @experimental As of version 1.85. Disclaimer: this aggregation is in a beta state - incompatible API
|
|
2414
|
+
* changes may be done before its official public release. Use at your own discretion.
|
|
2343
2415
|
*
|
|
2344
2416
|
* @returns The index of the provided control in the aggregation if found, or -1 otherwise
|
|
2345
2417
|
*/
|
|
@@ -2353,8 +2425,8 @@ declare module "sap/ui/integration/widgets/Card" {
|
|
|
2353
2425
|
* Inserts a actionDefinition into the aggregation {@link #getActionDefinitions actionDefinitions}.
|
|
2354
2426
|
*
|
|
2355
2427
|
* @since 1.85
|
|
2356
|
-
* @experimental
|
|
2357
|
-
* may be done before its official public release. Use at your own discretion.
|
|
2428
|
+
* @experimental As of version 1.85. Disclaimer: this aggregation is in a beta state - incompatible API
|
|
2429
|
+
* changes may be done before its official public release. Use at your own discretion.
|
|
2358
2430
|
*
|
|
2359
2431
|
* @returns Reference to `this` in order to allow method chaining
|
|
2360
2432
|
*/
|
|
@@ -2373,7 +2445,7 @@ declare module "sap/ui/integration/widgets/Card" {
|
|
|
2373
2445
|
/**
|
|
2374
2446
|
* Refreshes the card by re-applying the manifest settings and triggering all data requests.
|
|
2375
2447
|
*
|
|
2376
|
-
* @experimental
|
|
2448
|
+
* @experimental As of version 1.65. The API might change.
|
|
2377
2449
|
*/
|
|
2378
2450
|
refresh(): void;
|
|
2379
2451
|
/**
|
|
@@ -2386,8 +2458,8 @@ declare module "sap/ui/integration/widgets/Card" {
|
|
|
2386
2458
|
* Removes a actionDefinition from the aggregation {@link #getActionDefinitions actionDefinitions}.
|
|
2387
2459
|
*
|
|
2388
2460
|
* @since 1.85
|
|
2389
|
-
* @experimental
|
|
2390
|
-
* may be done before its official public release. Use at your own discretion.
|
|
2461
|
+
* @experimental As of version 1.85. Disclaimer: this aggregation is in a beta state - incompatible API
|
|
2462
|
+
* changes may be done before its official public release. Use at your own discretion.
|
|
2391
2463
|
*
|
|
2392
2464
|
* @returns The removed actionDefinition or `null`
|
|
2393
2465
|
*/
|
|
@@ -2400,7 +2472,7 @@ declare module "sap/ui/integration/widgets/Card" {
|
|
|
2400
2472
|
/**
|
|
2401
2473
|
* Performs an HTTP request using the given configuration.
|
|
2402
2474
|
*
|
|
2403
|
-
* @experimental
|
|
2475
|
+
* @experimental As of version 1.79.
|
|
2404
2476
|
*
|
|
2405
2477
|
* @returns Resolves when the request is successful, rejects otherwise.
|
|
2406
2478
|
*/
|
|
@@ -2459,7 +2531,7 @@ declare module "sap/ui/integration/widgets/Card" {
|
|
|
2459
2531
|
* Show blocking message in the card's content area. Should be used after the `manifestApplied` event or
|
|
2460
2532
|
* after the `cardReady` lifecycle hook in Component cards and Extensions.
|
|
2461
2533
|
*
|
|
2462
|
-
* @experimental
|
|
2534
|
+
* @experimental As of version 1.114.
|
|
2463
2535
|
*/
|
|
2464
2536
|
showBlockingMessage(
|
|
2465
2537
|
/**
|
|
@@ -2483,7 +2555,7 @@ declare module "sap/ui/integration/widgets/Card" {
|
|
|
2483
2555
|
* If there is a previous message, it is removed. Can be used only after the `manifestApplied` event is
|
|
2484
2556
|
* fired.
|
|
2485
2557
|
*
|
|
2486
|
-
* @experimental
|
|
2558
|
+
* @experimental As of version 1.81.
|
|
2487
2559
|
*/
|
|
2488
2560
|
showMessage(
|
|
2489
2561
|
/**
|
|
@@ -2521,7 +2593,7 @@ declare module "sap/ui/integration/widgets/Card" {
|
|
|
2521
2593
|
* ```
|
|
2522
2594
|
*
|
|
2523
2595
|
*
|
|
2524
|
-
* @experimental
|
|
2596
|
+
* @experimental As of version 1.84.
|
|
2525
2597
|
*/
|
|
2526
2598
|
triggerAction(
|
|
2527
2599
|
/**
|
|
@@ -2567,7 +2639,7 @@ declare module "sap/ui/integration/widgets/Card" {
|
|
|
2567
2639
|
* Overrides the default values of the parameters, which are defined in the manifest. The value is an object
|
|
2568
2640
|
* containing parameters in format `{parameterKey: parameterValue}`.
|
|
2569
2641
|
*
|
|
2570
|
-
* @experimental
|
|
2642
|
+
* @experimental As of version 1.65. This property might be changed in future.
|
|
2571
2643
|
*/
|
|
2572
2644
|
parameters?: object | PropertyBindingInfo | `{${string}}`;
|
|
2573
2645
|
|
|
@@ -2575,7 +2647,7 @@ declare module "sap/ui/integration/widgets/Card" {
|
|
|
2575
2647
|
* Defines the state of the `Card`. When set to `Inactive`, the `Card` doesn't make requests.
|
|
2576
2648
|
*
|
|
2577
2649
|
* @since 1.65
|
|
2578
|
-
* @experimental
|
|
2650
|
+
* @experimental As of version 1.65.
|
|
2579
2651
|
*/
|
|
2580
2652
|
dataMode?:
|
|
2581
2653
|
| (CardDataMode | keyof typeof CardDataMode)
|
|
@@ -2588,7 +2660,7 @@ declare module "sap/ui/integration/widgets/Card" {
|
|
|
2588
2660
|
* If both manifest URL and base URL are not defined - relative resources might not be loaded correctly.
|
|
2589
2661
|
*
|
|
2590
2662
|
* @since 1.70
|
|
2591
|
-
* @experimental
|
|
2663
|
+
* @experimental As of version 1.70.
|
|
2592
2664
|
*/
|
|
2593
2665
|
baseUrl?: URI | PropertyBindingInfo | `{${string}}`;
|
|
2594
2666
|
|
|
@@ -2631,8 +2703,8 @@ declare module "sap/ui/integration/widgets/Card" {
|
|
|
2631
2703
|
*
|
|
2632
2704
|
*
|
|
2633
2705
|
* @since 1.76
|
|
2634
|
-
* @experimental
|
|
2635
|
-
* is implemented.
|
|
2706
|
+
* @experimental As of version 1.76. This API might be removed when a permanent solution for flexibility
|
|
2707
|
+
* changes is implemented.
|
|
2636
2708
|
*/
|
|
2637
2709
|
manifestChanges?: object[] | PropertyBindingInfo | `{${string}}`;
|
|
2638
2710
|
|
|
@@ -2640,7 +2712,7 @@ declare module "sap/ui/integration/widgets/Card" {
|
|
|
2640
2712
|
* Defines the design of the `Card`.
|
|
2641
2713
|
*
|
|
2642
2714
|
* @since 1.109
|
|
2643
|
-
* @experimental
|
|
2715
|
+
* @experimental As of version 1.109.
|
|
2644
2716
|
*/
|
|
2645
2717
|
design?:
|
|
2646
2718
|
| (CardDesign | keyof typeof CardDesign)
|
|
@@ -2651,7 +2723,7 @@ declare module "sap/ui/integration/widgets/Card" {
|
|
|
2651
2723
|
* Defines the display variant for card rendering and behavior.
|
|
2652
2724
|
*
|
|
2653
2725
|
* @since 1.118
|
|
2654
|
-
* @experimental
|
|
2726
|
+
* @experimental As of version 1.118. For usage only by Work Zone.
|
|
2655
2727
|
*/
|
|
2656
2728
|
displayVariant?:
|
|
2657
2729
|
| (CardDisplayVariant | keyof typeof CardDisplayVariant)
|
|
@@ -2667,7 +2739,7 @@ declare module "sap/ui/integration/widgets/Card" {
|
|
|
2667
2739
|
* - When set to "Off", the card displays real data.
|
|
2668
2740
|
*
|
|
2669
2741
|
* @since 1.112
|
|
2670
|
-
* @experimental
|
|
2742
|
+
* @experimental As of version 1.112.
|
|
2671
2743
|
*/
|
|
2672
2744
|
previewMode?:
|
|
2673
2745
|
| (CardPreviewMode | keyof typeof CardPreviewMode)
|
|
@@ -2679,17 +2751,31 @@ declare module "sap/ui/integration/widgets/Card" {
|
|
|
2679
2751
|
* the feature for cards where it is needed.
|
|
2680
2752
|
*
|
|
2681
2753
|
* @since 1.127
|
|
2682
|
-
* @experimental
|
|
2754
|
+
* @experimental As of version 1.127.
|
|
2683
2755
|
*/
|
|
2684
2756
|
useProgressiveDisclosure?: boolean | PropertyBindingInfo | `{${string}}`;
|
|
2685
2757
|
|
|
2758
|
+
/**
|
|
2759
|
+
* Allows to control the overflow behaviour of the card.
|
|
2760
|
+
*
|
|
2761
|
+
* **Note**: If the "Default" option is used, the card must be allowed to grow in height as much as it needs
|
|
2762
|
+
* to avoid overflowing. Use a layout which allows this.
|
|
2763
|
+
*
|
|
2764
|
+
* @since 1.133
|
|
2765
|
+
* @experimental As of version 1.133.
|
|
2766
|
+
*/
|
|
2767
|
+
overflow?:
|
|
2768
|
+
| (CardOverflow | keyof typeof CardOverflow)
|
|
2769
|
+
| PropertyBindingInfo
|
|
2770
|
+
| `{${string}}`;
|
|
2771
|
+
|
|
2686
2772
|
/**
|
|
2687
2773
|
* Actions definitions from which actions in the header menu of the card are created. **Note**: This aggregation
|
|
2688
2774
|
* is destroyed when the property `manifest` changes.
|
|
2689
2775
|
*
|
|
2690
2776
|
* @since 1.85
|
|
2691
|
-
* @experimental
|
|
2692
|
-
* may be done before its official public release. Use at your own discretion.
|
|
2777
|
+
* @experimental As of version 1.85. Disclaimer: this aggregation is in a beta state - incompatible API
|
|
2778
|
+
* changes may be done before its official public release. Use at your own discretion.
|
|
2693
2779
|
*/
|
|
2694
2780
|
actionDefinitions?:
|
|
2695
2781
|
| ActionDefinition[]
|
|
@@ -2709,8 +2795,8 @@ declare module "sap/ui/integration/widgets/Card" {
|
|
|
2709
2795
|
* In consecutive order those places are: `Extension`, `Card`, `Host`. Each of them can prevent the next
|
|
2710
2796
|
* one to handle the action by calling `oEvent.preventDefault()`.
|
|
2711
2797
|
*
|
|
2712
|
-
* @experimental
|
|
2713
|
-
* be done before its official public release. Use at your own discretion.
|
|
2798
|
+
* @experimental As of version 1.64. Disclaimer: this event is in a beta state - incompatible API changes
|
|
2799
|
+
* may be done before its official public release. Use at your own discretion.
|
|
2714
2800
|
*/
|
|
2715
2801
|
action?: (oEvent: Card$ActionEvent) => void;
|
|
2716
2802
|
|
|
@@ -2718,14 +2804,14 @@ declare module "sap/ui/integration/widgets/Card" {
|
|
|
2718
2804
|
* Fired when some configuration settings are changed as a result of user interaction. For example - filter
|
|
2719
2805
|
* value is changed.
|
|
2720
2806
|
*
|
|
2721
|
-
* @experimental
|
|
2807
|
+
* @experimental As of version 1.96.
|
|
2722
2808
|
*/
|
|
2723
2809
|
configurationChange?: (oEvent: Card$ConfigurationChangeEvent) => void;
|
|
2724
2810
|
|
|
2725
2811
|
/**
|
|
2726
2812
|
* Fired when the manifest is loaded.
|
|
2727
2813
|
*
|
|
2728
|
-
* @experimental
|
|
2814
|
+
* @experimental As of version 1.72.
|
|
2729
2815
|
*/
|
|
2730
2816
|
manifestReady?: (oEvent: Event) => void;
|
|
2731
2817
|
|
|
@@ -2733,7 +2819,7 @@ declare module "sap/ui/integration/widgets/Card" {
|
|
|
2733
2819
|
* Fired when the state of the card is changed. For example - the card is ready, new page is selected, a
|
|
2734
2820
|
* filter is changed or data is refreshed.
|
|
2735
2821
|
*
|
|
2736
|
-
* @experimental
|
|
2822
|
+
* @experimental As of version 1.107.
|
|
2737
2823
|
*/
|
|
2738
2824
|
stateChanged?: (oEvent: Event) => void;
|
|
2739
2825
|
}
|
|
@@ -2741,8 +2827,8 @@ declare module "sap/ui/integration/widgets/Card" {
|
|
|
2741
2827
|
/**
|
|
2742
2828
|
* Parameters of the Card#action event.
|
|
2743
2829
|
*
|
|
2744
|
-
* @experimental
|
|
2745
|
-
* be done before its official public release. Use at your own discretion.
|
|
2830
|
+
* @experimental As of version 1.64. Disclaimer: this event is in a beta state - incompatible API changes
|
|
2831
|
+
* may be done before its official public release. Use at your own discretion.
|
|
2746
2832
|
*/
|
|
2747
2833
|
export interface Card$ActionEventParameters {
|
|
2748
2834
|
/**
|
|
@@ -2781,15 +2867,15 @@ declare module "sap/ui/integration/widgets/Card" {
|
|
|
2781
2867
|
/**
|
|
2782
2868
|
* Event object of the Card#action event.
|
|
2783
2869
|
*
|
|
2784
|
-
* @experimental
|
|
2785
|
-
* be done before its official public release. Use at your own discretion.
|
|
2870
|
+
* @experimental As of version 1.64. Disclaimer: this event is in a beta state - incompatible API changes
|
|
2871
|
+
* may be done before its official public release. Use at your own discretion.
|
|
2786
2872
|
*/
|
|
2787
2873
|
export type Card$ActionEvent = Event<Card$ActionEventParameters, Card>;
|
|
2788
2874
|
|
|
2789
2875
|
/**
|
|
2790
2876
|
* Parameters of the Card#configurationChange event.
|
|
2791
2877
|
*
|
|
2792
|
-
* @experimental
|
|
2878
|
+
* @experimental As of version 1.96.
|
|
2793
2879
|
*/
|
|
2794
2880
|
export interface Card$ConfigurationChangeEventParameters {
|
|
2795
2881
|
/**
|
|
@@ -2810,7 +2896,7 @@ declare module "sap/ui/integration/widgets/Card" {
|
|
|
2810
2896
|
/**
|
|
2811
2897
|
* Event object of the Card#configurationChange event.
|
|
2812
2898
|
*
|
|
2813
|
-
* @experimental
|
|
2899
|
+
* @experimental As of version 1.96.
|
|
2814
2900
|
*/
|
|
2815
2901
|
export type Card$ConfigurationChangeEvent = Event<
|
|
2816
2902
|
Card$ConfigurationChangeEventParameters,
|
|
@@ -2833,14 +2919,14 @@ declare module "sap/ui/integration/widgets/Card" {
|
|
|
2833
2919
|
/**
|
|
2834
2920
|
* Parameters of the Card#manifestReady event.
|
|
2835
2921
|
*
|
|
2836
|
-
* @experimental
|
|
2922
|
+
* @experimental As of version 1.72.
|
|
2837
2923
|
*/
|
|
2838
2924
|
export interface Card$ManifestReadyEventParameters {}
|
|
2839
2925
|
|
|
2840
2926
|
/**
|
|
2841
2927
|
* Event object of the Card#manifestReady event.
|
|
2842
2928
|
*
|
|
2843
|
-
* @experimental
|
|
2929
|
+
* @experimental As of version 1.72.
|
|
2844
2930
|
*/
|
|
2845
2931
|
export type Card$ManifestReadyEvent = Event<
|
|
2846
2932
|
Card$ManifestReadyEventParameters,
|
|
@@ -2850,14 +2936,14 @@ declare module "sap/ui/integration/widgets/Card" {
|
|
|
2850
2936
|
/**
|
|
2851
2937
|
* Parameters of the Card#stateChanged event.
|
|
2852
2938
|
*
|
|
2853
|
-
* @experimental
|
|
2939
|
+
* @experimental As of version 1.107.
|
|
2854
2940
|
*/
|
|
2855
2941
|
export interface Card$StateChangedEventParameters {}
|
|
2856
2942
|
|
|
2857
2943
|
/**
|
|
2858
2944
|
* Event object of the Card#stateChanged event.
|
|
2859
2945
|
*
|
|
2860
|
-
* @experimental
|
|
2946
|
+
* @experimental As of version 1.107.
|
|
2861
2947
|
*/
|
|
2862
2948
|
export type Card$StateChangedEvent = Event<
|
|
2863
2949
|
Card$StateChangedEventParameters,
|
|
@@ -2880,7 +2966,7 @@ declare module "sap/ui/integration/Designtime" {
|
|
|
2880
2966
|
* be implemented.
|
|
2881
2967
|
*
|
|
2882
2968
|
* @since 1.75
|
|
2883
|
-
* @experimental
|
|
2969
|
+
* @experimental As of version 1.75.
|
|
2884
2970
|
*/
|
|
2885
2971
|
export default class Designtime extends ManagedObject {
|
|
2886
2972
|
/**
|
|
@@ -2962,7 +3048,7 @@ declare module "sap/ui/integration/Designtime" {
|
|
|
2962
3048
|
/**
|
|
2963
3049
|
* Describes the settings that can be provided to the Designtime constructor.
|
|
2964
3050
|
*
|
|
2965
|
-
* @experimental
|
|
3051
|
+
* @experimental As of version 1.75.
|
|
2966
3052
|
*/
|
|
2967
3053
|
export interface $DesigntimeSettings extends $ManagedObjectSettings {}
|
|
2968
3054
|
}
|
|
@@ -2972,7 +3058,7 @@ declare module "sap/ui/integration/designtime/baseEditor/validator/IsBoolean" {
|
|
|
2972
3058
|
* Validates if the provided value is a boolean or binding string.
|
|
2973
3059
|
*
|
|
2974
3060
|
* @since 1.81
|
|
2975
|
-
* @experimental
|
|
3061
|
+
* @experimental 1.81
|
|
2976
3062
|
*/
|
|
2977
3063
|
interface IsBoolean {
|
|
2978
3064
|
/**
|
|
@@ -2997,7 +3083,7 @@ declare module "sap/ui/integration/designtime/baseEditor/validator/IsDate" {
|
|
|
2997
3083
|
* Validates if the provided value can be parsed to a valid date.
|
|
2998
3084
|
*
|
|
2999
3085
|
* @since 1.81
|
|
3000
|
-
* @experimental
|
|
3086
|
+
* @experimental 1.81
|
|
3001
3087
|
*/
|
|
3002
3088
|
interface IsDate {
|
|
3003
3089
|
/**
|
|
@@ -3022,7 +3108,7 @@ declare module "sap/ui/integration/designtime/baseEditor/validator/IsInteger" {
|
|
|
3022
3108
|
* Validates if the provided value is an integer or binding string.
|
|
3023
3109
|
*
|
|
3024
3110
|
* @since 1.81
|
|
3025
|
-
* @experimental
|
|
3111
|
+
* @experimental 1.81
|
|
3026
3112
|
*/
|
|
3027
3113
|
interface IsInteger {
|
|
3028
3114
|
/**
|
|
@@ -3047,7 +3133,7 @@ declare module "sap/ui/integration/designtime/baseEditor/validator/IsNumber" {
|
|
|
3047
3133
|
* Validates if the provided value is a number or binding string.
|
|
3048
3134
|
*
|
|
3049
3135
|
* @since 1.81
|
|
3050
|
-
* @experimental
|
|
3136
|
+
* @experimental 1.81
|
|
3051
3137
|
*/
|
|
3052
3138
|
interface IsNumber {
|
|
3053
3139
|
/**
|
|
@@ -3072,7 +3158,7 @@ declare module "sap/ui/integration/designtime/baseEditor/validator/IsSelectedKey
|
|
|
3072
3158
|
* Validates if the provided value is one of the given keys.
|
|
3073
3159
|
*
|
|
3074
3160
|
* @since 1.81
|
|
3075
|
-
* @experimental
|
|
3161
|
+
* @experimental 1.81
|
|
3076
3162
|
*/
|
|
3077
3163
|
interface IsSelectedKey {
|
|
3078
3164
|
/**
|
|
@@ -3106,7 +3192,7 @@ declare module "sap/ui/integration/designtime/baseEditor/validator/IsStringList"
|
|
|
3106
3192
|
* Validates if none of the provided values is an invalid binding.
|
|
3107
3193
|
*
|
|
3108
3194
|
* @since 1.81
|
|
3109
|
-
* @experimental
|
|
3195
|
+
* @experimental 1.81
|
|
3110
3196
|
*/
|
|
3111
3197
|
interface IsStringList {
|
|
3112
3198
|
/**
|
|
@@ -3131,7 +3217,7 @@ declare module "sap/ui/integration/designtime/baseEditor/validator/IsUniqueKey"
|
|
|
3131
3217
|
* Validates if the provided key is unique in a list of given keys.
|
|
3132
3218
|
*
|
|
3133
3219
|
* @since 1.81
|
|
3134
|
-
* @experimental
|
|
3220
|
+
* @experimental 1.81
|
|
3135
3221
|
*/
|
|
3136
3222
|
interface IsUniqueKey {
|
|
3137
3223
|
/**
|
|
@@ -3169,7 +3255,7 @@ declare module "sap/ui/integration/designtime/baseEditor/validator/IsUniqueList"
|
|
|
3169
3255
|
* Validates if the provided list contains no duplicates.
|
|
3170
3256
|
*
|
|
3171
3257
|
* @since 1.81
|
|
3172
|
-
* @experimental
|
|
3258
|
+
* @experimental 1.81
|
|
3173
3259
|
*/
|
|
3174
3260
|
interface IsUniqueList {
|
|
3175
3261
|
/**
|
|
@@ -3194,7 +3280,7 @@ declare module "sap/ui/integration/designtime/baseEditor/validator/IsValidBindin
|
|
|
3194
3280
|
* Validates if the provided value is a valid binding.
|
|
3195
3281
|
*
|
|
3196
3282
|
* @since 1.81
|
|
3197
|
-
* @experimental
|
|
3283
|
+
* @experimental 1.81
|
|
3198
3284
|
*/
|
|
3199
3285
|
interface IsValidBinding {
|
|
3200
3286
|
/**
|
|
@@ -3228,7 +3314,7 @@ declare module "sap/ui/integration/designtime/baseEditor/validator/MaxLength" {
|
|
|
3228
3314
|
* Validates if the provided value doesn't exceed the maximum length.
|
|
3229
3315
|
*
|
|
3230
3316
|
* @since 1.81
|
|
3231
|
-
* @experimental
|
|
3317
|
+
* @experimental 1.81
|
|
3232
3318
|
*/
|
|
3233
3319
|
interface MaxLength {
|
|
3234
3320
|
/**
|
|
@@ -3253,7 +3339,7 @@ declare module "sap/ui/integration/designtime/baseEditor/validator/NotABinding"
|
|
|
3253
3339
|
* Validates if the provided value doesn't contain a binding.
|
|
3254
3340
|
*
|
|
3255
3341
|
* @since 1.81
|
|
3256
|
-
* @experimental
|
|
3342
|
+
* @experimental 1.81
|
|
3257
3343
|
*/
|
|
3258
3344
|
interface NotABinding {
|
|
3259
3345
|
/**
|
|
@@ -3277,7 +3363,7 @@ declare module "sap/ui/integration/editor/Editor" {
|
|
|
3277
3363
|
/**
|
|
3278
3364
|
* Facade of the {@link sap.ui.integration.editor.Editor} control.
|
|
3279
3365
|
*
|
|
3280
|
-
* @experimental
|
|
3366
|
+
* @experimental As of version 1.94.
|
|
3281
3367
|
*/
|
|
3282
3368
|
export interface EditorFacade {
|
|
3283
3369
|
__implements__sap_ui_integration_editor_EditorFacade: boolean;
|
|
@@ -3285,7 +3371,7 @@ declare module "sap/ui/integration/editor/Editor" {
|
|
|
3285
3371
|
/**
|
|
3286
3372
|
* Performs an HTTP request using the given configuration.
|
|
3287
3373
|
*
|
|
3288
|
-
* @experimental
|
|
3374
|
+
* @experimental As of version 1.94.
|
|
3289
3375
|
*
|
|
3290
3376
|
* @returns Resolves when the request is successful, rejects otherwise.
|
|
3291
3377
|
*/
|
|
@@ -3484,8 +3570,8 @@ declare module "sap/ui/integration/Extension" {
|
|
|
3484
3570
|
* In consecutive order those places are: `Extension`, `Card`, `Host`. Each of them can prevent the next
|
|
3485
3571
|
* one to handle the action by calling `oEvent.preventDefault()`.
|
|
3486
3572
|
*
|
|
3487
|
-
* @experimental
|
|
3488
|
-
* be done before its official public release. Use at your own discretion.
|
|
3573
|
+
* @experimental As of version 1.75. Disclaimer: this event is in a beta state - incompatible API changes
|
|
3574
|
+
* may be done before its official public release. Use at your own discretion.
|
|
3489
3575
|
*
|
|
3490
3576
|
* @returns Reference to `this` in order to allow method chaining
|
|
3491
3577
|
*/
|
|
@@ -3516,8 +3602,8 @@ declare module "sap/ui/integration/Extension" {
|
|
|
3516
3602
|
* In consecutive order those places are: `Extension`, `Card`, `Host`. Each of them can prevent the next
|
|
3517
3603
|
* one to handle the action by calling `oEvent.preventDefault()`.
|
|
3518
3604
|
*
|
|
3519
|
-
* @experimental
|
|
3520
|
-
* be done before its official public release. Use at your own discretion.
|
|
3605
|
+
* @experimental As of version 1.75. Disclaimer: this event is in a beta state - incompatible API changes
|
|
3606
|
+
* may be done before its official public release. Use at your own discretion.
|
|
3521
3607
|
*
|
|
3522
3608
|
* @returns Reference to `this` in order to allow method chaining
|
|
3523
3609
|
*/
|
|
@@ -3536,8 +3622,8 @@ declare module "sap/ui/integration/Extension" {
|
|
|
3536
3622
|
*
|
|
3537
3623
|
* The passed function and listener object must match the ones used for event registration.
|
|
3538
3624
|
*
|
|
3539
|
-
* @experimental
|
|
3540
|
-
* be done before its official public release. Use at your own discretion.
|
|
3625
|
+
* @experimental As of version 1.75. Disclaimer: this event is in a beta state - incompatible API changes
|
|
3626
|
+
* may be done before its official public release. Use at your own discretion.
|
|
3541
3627
|
*
|
|
3542
3628
|
* @returns Reference to `this` in order to allow method chaining
|
|
3543
3629
|
*/
|
|
@@ -3556,7 +3642,7 @@ declare module "sap/ui/integration/Extension" {
|
|
|
3556
3642
|
* the response is available. Use this method to override the default behavior when fetching network resources.
|
|
3557
3643
|
* Mimics the browser native Fetch API.
|
|
3558
3644
|
*
|
|
3559
|
-
* @experimental
|
|
3645
|
+
* @experimental As of version 1.113. The API might change.
|
|
3560
3646
|
*
|
|
3561
3647
|
* @returns A `Promise` that resolves to a `Response` object.
|
|
3562
3648
|
*/
|
|
@@ -3581,8 +3667,8 @@ declare module "sap/ui/integration/Extension" {
|
|
|
3581
3667
|
* Listeners may prevent the default action of this event by calling the `preventDefault` method on the
|
|
3582
3668
|
* event object. The return value of this method indicates whether the default action should be executed.
|
|
3583
3669
|
*
|
|
3584
|
-
* @experimental
|
|
3585
|
-
* be done before its official public release. Use at your own discretion.
|
|
3670
|
+
* @experimental As of version 1.75. Disclaimer: this event is in a beta state - incompatible API changes
|
|
3671
|
+
* may be done before its official public release. Use at your own discretion.
|
|
3586
3672
|
* @ui5-protected Do not call from applications (only from related classes in the framework)
|
|
3587
3673
|
*
|
|
3588
3674
|
* @returns Whether or not to prevent the default action
|
|
@@ -3598,8 +3684,8 @@ declare module "sap/ui/integration/Extension" {
|
|
|
3598
3684
|
*
|
|
3599
3685
|
* The actions configuration.
|
|
3600
3686
|
*
|
|
3601
|
-
* @deprecated
|
|
3602
|
-
* @experimental
|
|
3687
|
+
* @deprecated As of version 1.85. This property is replaced by the `actions` aggregation of the card;
|
|
3688
|
+
* @experimental As of version 1.75. Disclaimer: this property is in a beta state - incompatible API changes
|
|
3603
3689
|
* may be done before its official public release. Use at your own discretion.
|
|
3604
3690
|
*
|
|
3605
3691
|
* @returns Value of property `actions`
|
|
@@ -3624,7 +3710,7 @@ declare module "sap/ui/integration/Extension" {
|
|
|
3624
3710
|
/**
|
|
3625
3711
|
* Override this method to lazy load dependencies for the extension.
|
|
3626
3712
|
*
|
|
3627
|
-
* @experimental
|
|
3713
|
+
* @experimental As of version 1.108.
|
|
3628
3714
|
*
|
|
3629
3715
|
* @returns Returns a promise. The card will wait for this promise to be resolved before continuing with
|
|
3630
3716
|
* the initialization.
|
|
@@ -3641,8 +3727,8 @@ declare module "sap/ui/integration/Extension" {
|
|
|
3641
3727
|
*
|
|
3642
3728
|
* When called with a value of `null` or `undefined`, the default value of the property will be restored.
|
|
3643
3729
|
*
|
|
3644
|
-
* @deprecated
|
|
3645
|
-
* @experimental
|
|
3730
|
+
* @deprecated As of version 1.85. This property is replaced by the `actions` aggregation of the card;
|
|
3731
|
+
* @experimental As of version 1.75. Disclaimer: this property is in a beta state - incompatible API changes
|
|
3646
3732
|
* may be done before its official public release. Use at your own discretion.
|
|
3647
3733
|
*
|
|
3648
3734
|
* @returns Reference to `this` in order to allow method chaining
|
|
@@ -3676,8 +3762,8 @@ declare module "sap/ui/integration/Extension" {
|
|
|
3676
3762
|
/**
|
|
3677
3763
|
* The actions configuration.
|
|
3678
3764
|
*
|
|
3679
|
-
* @deprecated
|
|
3680
|
-
* @experimental
|
|
3765
|
+
* @deprecated As of version 1.85. This property is replaced by the `actions` aggregation of the card;
|
|
3766
|
+
* @experimental As of version 1.75. Disclaimer: this property is in a beta state - incompatible API changes
|
|
3681
3767
|
* may be done before its official public release. Use at your own discretion.
|
|
3682
3768
|
*/
|
|
3683
3769
|
actions?: CardMenuAction[] | PropertyBindingInfo | `{${string}}`;
|
|
@@ -3685,7 +3771,7 @@ declare module "sap/ui/integration/Extension" {
|
|
|
3685
3771
|
/**
|
|
3686
3772
|
* The formatters that can be used in the manifest.
|
|
3687
3773
|
*
|
|
3688
|
-
* @experimental
|
|
3774
|
+
* @experimental As of version 1.79.
|
|
3689
3775
|
*/
|
|
3690
3776
|
formatters?: object | PropertyBindingInfo | `{${string}}`;
|
|
3691
3777
|
|
|
@@ -3696,8 +3782,8 @@ declare module "sap/ui/integration/Extension" {
|
|
|
3696
3782
|
* In consecutive order those places are: `Extension`, `Card`, `Host`. Each of them can prevent the next
|
|
3697
3783
|
* one to handle the action by calling `oEvent.preventDefault()`.
|
|
3698
3784
|
*
|
|
3699
|
-
* @experimental
|
|
3700
|
-
* be done before its official public release. Use at your own discretion.
|
|
3785
|
+
* @experimental As of version 1.75. Disclaimer: this event is in a beta state - incompatible API changes
|
|
3786
|
+
* may be done before its official public release. Use at your own discretion.
|
|
3701
3787
|
*/
|
|
3702
3788
|
action?: (oEvent: Extension$ActionEvent) => void;
|
|
3703
3789
|
}
|
|
@@ -3705,8 +3791,8 @@ declare module "sap/ui/integration/Extension" {
|
|
|
3705
3791
|
/**
|
|
3706
3792
|
* Parameters of the Extension#action event.
|
|
3707
3793
|
*
|
|
3708
|
-
* @experimental
|
|
3709
|
-
* be done before its official public release. Use at your own discretion.
|
|
3794
|
+
* @experimental As of version 1.75. Disclaimer: this event is in a beta state - incompatible API changes
|
|
3795
|
+
* may be done before its official public release. Use at your own discretion.
|
|
3710
3796
|
*/
|
|
3711
3797
|
export interface Extension$ActionEventParameters {
|
|
3712
3798
|
/**
|
|
@@ -3750,8 +3836,8 @@ declare module "sap/ui/integration/Extension" {
|
|
|
3750
3836
|
/**
|
|
3751
3837
|
* Event object of the Extension#action event.
|
|
3752
3838
|
*
|
|
3753
|
-
* @experimental
|
|
3754
|
-
* be done before its official public release. Use at your own discretion.
|
|
3839
|
+
* @experimental As of version 1.75. Disclaimer: this event is in a beta state - incompatible API changes
|
|
3840
|
+
* may be done before its official public release. Use at your own discretion.
|
|
3755
3841
|
*/
|
|
3756
3842
|
export type Extension$ActionEvent = Event<
|
|
3757
3843
|
Extension$ActionEventParameters,
|
|
@@ -3780,7 +3866,7 @@ declare module "sap/ui/integration/Host" {
|
|
|
3780
3866
|
* Examples may include, but are not limited to options like: share a card, remove a card.
|
|
3781
3867
|
*
|
|
3782
3868
|
* @since 1.75
|
|
3783
|
-
* @experimental
|
|
3869
|
+
* @experimental As of version 1.75.
|
|
3784
3870
|
*/
|
|
3785
3871
|
export default class Host extends UI5Element {
|
|
3786
3872
|
/**
|
|
@@ -3857,8 +3943,8 @@ declare module "sap/ui/integration/Host" {
|
|
|
3857
3943
|
* In consecutive order those places are: `Extension`, `Card`, `Host`. Each of them can prevent the next
|
|
3858
3944
|
* one to handle the action by calling `oEvent.preventDefault()`.
|
|
3859
3945
|
*
|
|
3860
|
-
* @experimental
|
|
3861
|
-
* be done before its official public release. Use at your own discretion.
|
|
3946
|
+
* @experimental As of version 1.75. Disclaimer: this event is in a beta state - incompatible API changes
|
|
3947
|
+
* may be done before its official public release. Use at your own discretion.
|
|
3862
3948
|
*
|
|
3863
3949
|
* @returns Reference to `this` in order to allow method chaining
|
|
3864
3950
|
*/
|
|
@@ -3889,8 +3975,8 @@ declare module "sap/ui/integration/Host" {
|
|
|
3889
3975
|
* In consecutive order those places are: `Extension`, `Card`, `Host`. Each of them can prevent the next
|
|
3890
3976
|
* one to handle the action by calling `oEvent.preventDefault()`.
|
|
3891
3977
|
*
|
|
3892
|
-
* @experimental
|
|
3893
|
-
* be done before its official public release. Use at your own discretion.
|
|
3978
|
+
* @experimental As of version 1.75. Disclaimer: this event is in a beta state - incompatible API changes
|
|
3979
|
+
* may be done before its official public release. Use at your own discretion.
|
|
3894
3980
|
*
|
|
3895
3981
|
* @returns Reference to `this` in order to allow method chaining
|
|
3896
3982
|
*/
|
|
@@ -3914,7 +4000,7 @@ declare module "sap/ui/integration/Host" {
|
|
|
3914
4000
|
* Fired when some card configuration settings are changed as a result of user interaction. For example
|
|
3915
4001
|
* - filter value is changed.
|
|
3916
4002
|
*
|
|
3917
|
-
* @experimental
|
|
4003
|
+
* @experimental As of version 1.96.
|
|
3918
4004
|
*
|
|
3919
4005
|
* @returns Reference to `this` in order to allow method chaining
|
|
3920
4006
|
*/
|
|
@@ -3943,7 +4029,7 @@ declare module "sap/ui/integration/Host" {
|
|
|
3943
4029
|
* Fired when some card configuration settings are changed as a result of user interaction. For example
|
|
3944
4030
|
* - filter value is changed.
|
|
3945
4031
|
*
|
|
3946
|
-
* @experimental
|
|
4032
|
+
* @experimental As of version 1.96.
|
|
3947
4033
|
*
|
|
3948
4034
|
* @returns Reference to `this` in order to allow method chaining
|
|
3949
4035
|
*/
|
|
@@ -3967,7 +4053,7 @@ declare module "sap/ui/integration/Host" {
|
|
|
3967
4053
|
* Fired when the card is initially ready for the first time. Will not be fired for consecutive refreshes
|
|
3968
4054
|
* or data changes.
|
|
3969
4055
|
*
|
|
3970
|
-
* @experimental
|
|
4056
|
+
* @experimental As of version 1.116.
|
|
3971
4057
|
*
|
|
3972
4058
|
* @returns Reference to `this` in order to allow method chaining
|
|
3973
4059
|
*/
|
|
@@ -3996,7 +4082,7 @@ declare module "sap/ui/integration/Host" {
|
|
|
3996
4082
|
* Fired when the card is initially ready for the first time. Will not be fired for consecutive refreshes
|
|
3997
4083
|
* or data changes.
|
|
3998
4084
|
*
|
|
3999
|
-
* @experimental
|
|
4085
|
+
* @experimental As of version 1.116.
|
|
4000
4086
|
*
|
|
4001
4087
|
* @returns Reference to `this` in order to allow method chaining
|
|
4002
4088
|
*/
|
|
@@ -4020,7 +4106,7 @@ declare module "sap/ui/integration/Host" {
|
|
|
4020
4106
|
* Fired when the state of a card is changed. For example - the card is ready, new page is selected inside
|
|
4021
4107
|
* the card, a filter is changed or data is refreshed.
|
|
4022
4108
|
*
|
|
4023
|
-
* @experimental
|
|
4109
|
+
* @experimental As of version 1.107.
|
|
4024
4110
|
*
|
|
4025
4111
|
* @returns Reference to `this` in order to allow method chaining
|
|
4026
4112
|
*/
|
|
@@ -4049,7 +4135,7 @@ declare module "sap/ui/integration/Host" {
|
|
|
4049
4135
|
* Fired when the state of a card is changed. For example - the card is ready, new page is selected inside
|
|
4050
4136
|
* the card, a filter is changed or data is refreshed.
|
|
4051
4137
|
*
|
|
4052
|
-
* @experimental
|
|
4138
|
+
* @experimental As of version 1.107.
|
|
4053
4139
|
*
|
|
4054
4140
|
* @returns Reference to `this` in order to allow method chaining
|
|
4055
4141
|
*/
|
|
@@ -4071,7 +4157,7 @@ declare module "sap/ui/integration/Host" {
|
|
|
4071
4157
|
*
|
|
4072
4158
|
* Fired when a message from channels like navigator.serviceWorker is received.
|
|
4073
4159
|
*
|
|
4074
|
-
* @experimental
|
|
4160
|
+
* @experimental As of version 1.91.
|
|
4075
4161
|
*
|
|
4076
4162
|
* @returns Reference to `this` in order to allow method chaining
|
|
4077
4163
|
*/
|
|
@@ -4098,7 +4184,7 @@ declare module "sap/ui/integration/Host" {
|
|
|
4098
4184
|
*
|
|
4099
4185
|
* Fired when a message from channels like navigator.serviceWorker is received.
|
|
4100
4186
|
*
|
|
4101
|
-
* @experimental
|
|
4187
|
+
* @experimental As of version 1.91.
|
|
4102
4188
|
*
|
|
4103
4189
|
* @returns Reference to `this` in order to allow method chaining
|
|
4104
4190
|
*/
|
|
@@ -4115,8 +4201,8 @@ declare module "sap/ui/integration/Host" {
|
|
|
4115
4201
|
/**
|
|
4116
4202
|
* This function is called when a CSRF token has expired.
|
|
4117
4203
|
*
|
|
4118
|
-
* @deprecated
|
|
4119
|
-
* @experimental
|
|
4204
|
+
* @deprecated As of version 1.120.0. the concept has been discarded.
|
|
4205
|
+
* @experimental As of version 1.97.
|
|
4120
4206
|
*/
|
|
4121
4207
|
csrfTokenExpired(
|
|
4122
4208
|
/**
|
|
@@ -4129,8 +4215,8 @@ declare module "sap/ui/integration/Host" {
|
|
|
4129
4215
|
/**
|
|
4130
4216
|
* This function is called when a CSRF token is fetched.
|
|
4131
4217
|
*
|
|
4132
|
-
* @deprecated
|
|
4133
|
-
* @experimental
|
|
4218
|
+
* @deprecated As of version 1.120.0. the concept has been discarded.
|
|
4219
|
+
* @experimental As of version 1.97.
|
|
4134
4220
|
*/
|
|
4135
4221
|
csrfTokenFetched(
|
|
4136
4222
|
/**
|
|
@@ -4149,8 +4235,8 @@ declare module "sap/ui/integration/Host" {
|
|
|
4149
4235
|
*
|
|
4150
4236
|
* The passed function and listener object must match the ones used for event registration.
|
|
4151
4237
|
*
|
|
4152
|
-
* @experimental
|
|
4153
|
-
* be done before its official public release. Use at your own discretion.
|
|
4238
|
+
* @experimental As of version 1.75. Disclaimer: this event is in a beta state - incompatible API changes
|
|
4239
|
+
* may be done before its official public release. Use at your own discretion.
|
|
4154
4240
|
*
|
|
4155
4241
|
* @returns Reference to `this` in order to allow method chaining
|
|
4156
4242
|
*/
|
|
@@ -4170,7 +4256,7 @@ declare module "sap/ui/integration/Host" {
|
|
|
4170
4256
|
*
|
|
4171
4257
|
* The passed function and listener object must match the ones used for event registration.
|
|
4172
4258
|
*
|
|
4173
|
-
* @experimental
|
|
4259
|
+
* @experimental As of version 1.96.
|
|
4174
4260
|
*
|
|
4175
4261
|
* @returns Reference to `this` in order to allow method chaining
|
|
4176
4262
|
*/
|
|
@@ -4190,7 +4276,7 @@ declare module "sap/ui/integration/Host" {
|
|
|
4190
4276
|
*
|
|
4191
4277
|
* The passed function and listener object must match the ones used for event registration.
|
|
4192
4278
|
*
|
|
4193
|
-
* @experimental
|
|
4279
|
+
* @experimental As of version 1.116.
|
|
4194
4280
|
*
|
|
4195
4281
|
* @returns Reference to `this` in order to allow method chaining
|
|
4196
4282
|
*/
|
|
@@ -4210,7 +4296,7 @@ declare module "sap/ui/integration/Host" {
|
|
|
4210
4296
|
*
|
|
4211
4297
|
* The passed function and listener object must match the ones used for event registration.
|
|
4212
4298
|
*
|
|
4213
|
-
* @experimental
|
|
4299
|
+
* @experimental As of version 1.107.
|
|
4214
4300
|
*
|
|
4215
4301
|
* @returns Reference to `this` in order to allow method chaining
|
|
4216
4302
|
*/
|
|
@@ -4229,7 +4315,7 @@ declare module "sap/ui/integration/Host" {
|
|
|
4229
4315
|
*
|
|
4230
4316
|
* The passed function and listener object must match the ones used for event registration.
|
|
4231
4317
|
*
|
|
4232
|
-
* @experimental
|
|
4318
|
+
* @experimental As of version 1.91.
|
|
4233
4319
|
*
|
|
4234
4320
|
* @returns Reference to `this` in order to allow method chaining
|
|
4235
4321
|
*/
|
|
@@ -4249,8 +4335,8 @@ declare module "sap/ui/integration/Host" {
|
|
|
4249
4335
|
* Listeners may prevent the default action of this event by calling the `preventDefault` method on the
|
|
4250
4336
|
* event object. The return value of this method indicates whether the default action should be executed.
|
|
4251
4337
|
*
|
|
4252
|
-
* @experimental
|
|
4253
|
-
* be done before its official public release. Use at your own discretion.
|
|
4338
|
+
* @experimental As of version 1.75. Disclaimer: this event is in a beta state - incompatible API changes
|
|
4339
|
+
* may be done before its official public release. Use at your own discretion.
|
|
4254
4340
|
* @ui5-protected Do not call from applications (only from related classes in the framework)
|
|
4255
4341
|
*
|
|
4256
4342
|
* @returns Whether or not to prevent the default action
|
|
@@ -4264,7 +4350,7 @@ declare module "sap/ui/integration/Host" {
|
|
|
4264
4350
|
/**
|
|
4265
4351
|
* Fires event {@link #event:cardConfigurationChange cardConfigurationChange} to attached listeners.
|
|
4266
4352
|
*
|
|
4267
|
-
* @experimental
|
|
4353
|
+
* @experimental As of version 1.96.
|
|
4268
4354
|
* @ui5-protected Do not call from applications (only from related classes in the framework)
|
|
4269
4355
|
*
|
|
4270
4356
|
* @returns Reference to `this` in order to allow method chaining
|
|
@@ -4278,7 +4364,7 @@ declare module "sap/ui/integration/Host" {
|
|
|
4278
4364
|
/**
|
|
4279
4365
|
* Fires event {@link #event:cardInitialized cardInitialized} to attached listeners.
|
|
4280
4366
|
*
|
|
4281
|
-
* @experimental
|
|
4367
|
+
* @experimental As of version 1.116.
|
|
4282
4368
|
* @ui5-protected Do not call from applications (only from related classes in the framework)
|
|
4283
4369
|
*
|
|
4284
4370
|
* @returns Reference to `this` in order to allow method chaining
|
|
@@ -4292,7 +4378,7 @@ declare module "sap/ui/integration/Host" {
|
|
|
4292
4378
|
/**
|
|
4293
4379
|
* Fires event {@link #event:cardStateChanged cardStateChanged} to attached listeners.
|
|
4294
4380
|
*
|
|
4295
|
-
* @experimental
|
|
4381
|
+
* @experimental As of version 1.107.
|
|
4296
4382
|
* @ui5-protected Do not call from applications (only from related classes in the framework)
|
|
4297
4383
|
*
|
|
4298
4384
|
* @returns Reference to `this` in order to allow method chaining
|
|
@@ -4306,7 +4392,7 @@ declare module "sap/ui/integration/Host" {
|
|
|
4306
4392
|
/**
|
|
4307
4393
|
* Fires event {@link #event:message message} to attached listeners.
|
|
4308
4394
|
*
|
|
4309
|
-
* @experimental
|
|
4395
|
+
* @experimental As of version 1.91.
|
|
4310
4396
|
* @ui5-protected Do not call from applications (only from related classes in the framework)
|
|
4311
4397
|
*
|
|
4312
4398
|
* @returns Reference to `this` in order to allow method chaining
|
|
@@ -4322,7 +4408,7 @@ declare module "sap/ui/integration/Host" {
|
|
|
4322
4408
|
*
|
|
4323
4409
|
* The actions configuration.
|
|
4324
4410
|
*
|
|
4325
|
-
* @experimental
|
|
4411
|
+
* @experimental As of version 1.75. Disclaimer: this property is in a beta state - incompatible API changes
|
|
4326
4412
|
* may be done before its official public release. Use at your own discretion.
|
|
4327
4413
|
*
|
|
4328
4414
|
* @returns Value of property `actions`
|
|
@@ -4370,8 +4456,8 @@ declare module "sap/ui/integration/Host" {
|
|
|
4370
4456
|
* Resolves the value of a CSRF token. Subclasses of Host can override this method to take over the default
|
|
4371
4457
|
* CSRF token resolving. Applications must not call this method directly, it is called by the framework.
|
|
4372
4458
|
*
|
|
4373
|
-
* @deprecated
|
|
4374
|
-
* @experimental
|
|
4459
|
+
* @deprecated As of version 1.120.0. the concept has been discarded.
|
|
4460
|
+
* @experimental As of version 1.97.
|
|
4375
4461
|
* @ui5-protected Do not call from applications (only from related classes in the framework)
|
|
4376
4462
|
*
|
|
4377
4463
|
* @returns A promise which resolves the CSRF token to its value.
|
|
@@ -4435,7 +4521,7 @@ declare module "sap/ui/integration/Host" {
|
|
|
4435
4521
|
*
|
|
4436
4522
|
* When called with a value of `null` or `undefined`, the default value of the property will be restored.
|
|
4437
4523
|
*
|
|
4438
|
-
* @experimental
|
|
4524
|
+
* @experimental As of version 1.75. Disclaimer: this property is in a beta state - incompatible API changes
|
|
4439
4525
|
* may be done before its official public release. Use at your own discretion.
|
|
4440
4526
|
*
|
|
4441
4527
|
* @returns Reference to `this` in order to allow method chaining
|
|
@@ -4470,13 +4556,13 @@ declare module "sap/ui/integration/Host" {
|
|
|
4470
4556
|
/**
|
|
4471
4557
|
* Describes the settings that can be provided to the Host constructor.
|
|
4472
4558
|
*
|
|
4473
|
-
* @experimental
|
|
4559
|
+
* @experimental As of version 1.75.
|
|
4474
4560
|
*/
|
|
4475
4561
|
export interface $HostSettings extends $ElementSettings {
|
|
4476
4562
|
/**
|
|
4477
4563
|
* The actions configuration.
|
|
4478
4564
|
*
|
|
4479
|
-
* @experimental
|
|
4565
|
+
* @experimental As of version 1.75. Disclaimer: this property is in a beta state - incompatible API changes
|
|
4480
4566
|
* may be done before its official public release. Use at your own discretion.
|
|
4481
4567
|
*/
|
|
4482
4568
|
actions?: CardMenuAction[] | PropertyBindingInfo | `{${string}}`;
|
|
@@ -4501,8 +4587,8 @@ declare module "sap/ui/integration/Host" {
|
|
|
4501
4587
|
* In consecutive order those places are: `Extension`, `Card`, `Host`. Each of them can prevent the next
|
|
4502
4588
|
* one to handle the action by calling `oEvent.preventDefault()`.
|
|
4503
4589
|
*
|
|
4504
|
-
* @experimental
|
|
4505
|
-
* be done before its official public release. Use at your own discretion.
|
|
4590
|
+
* @experimental As of version 1.75. Disclaimer: this event is in a beta state - incompatible API changes
|
|
4591
|
+
* may be done before its official public release. Use at your own discretion.
|
|
4506
4592
|
*/
|
|
4507
4593
|
action?: (oEvent: Host$ActionEvent) => void;
|
|
4508
4594
|
|
|
@@ -4510,7 +4596,7 @@ declare module "sap/ui/integration/Host" {
|
|
|
4510
4596
|
* Fired when some card configuration settings are changed as a result of user interaction. For example
|
|
4511
4597
|
* - filter value is changed.
|
|
4512
4598
|
*
|
|
4513
|
-
* @experimental
|
|
4599
|
+
* @experimental As of version 1.96.
|
|
4514
4600
|
*/
|
|
4515
4601
|
cardConfigurationChange?: (
|
|
4516
4602
|
oEvent: Host$CardConfigurationChangeEvent
|
|
@@ -4520,7 +4606,7 @@ declare module "sap/ui/integration/Host" {
|
|
|
4520
4606
|
* Fired when the state of a card is changed. For example - the card is ready, new page is selected inside
|
|
4521
4607
|
* the card, a filter is changed or data is refreshed.
|
|
4522
4608
|
*
|
|
4523
|
-
* @experimental
|
|
4609
|
+
* @experimental As of version 1.107.
|
|
4524
4610
|
*/
|
|
4525
4611
|
cardStateChanged?: (oEvent: Host$CardStateChangedEvent) => void;
|
|
4526
4612
|
|
|
@@ -4528,14 +4614,14 @@ declare module "sap/ui/integration/Host" {
|
|
|
4528
4614
|
* Fired when the card is initially ready for the first time. Will not be fired for consecutive refreshes
|
|
4529
4615
|
* or data changes.
|
|
4530
4616
|
*
|
|
4531
|
-
* @experimental
|
|
4617
|
+
* @experimental As of version 1.116.
|
|
4532
4618
|
*/
|
|
4533
4619
|
cardInitialized?: (oEvent: Host$CardInitializedEvent) => void;
|
|
4534
4620
|
|
|
4535
4621
|
/**
|
|
4536
4622
|
* Fired when a message from channels like navigator.serviceWorker is received.
|
|
4537
4623
|
*
|
|
4538
|
-
* @experimental
|
|
4624
|
+
* @experimental As of version 1.91.
|
|
4539
4625
|
*/
|
|
4540
4626
|
message?: (oEvent: Host$MessageEvent) => void;
|
|
4541
4627
|
}
|
|
@@ -4543,8 +4629,8 @@ declare module "sap/ui/integration/Host" {
|
|
|
4543
4629
|
/**
|
|
4544
4630
|
* Parameters of the Host#action event.
|
|
4545
4631
|
*
|
|
4546
|
-
* @experimental
|
|
4547
|
-
* be done before its official public release. Use at your own discretion.
|
|
4632
|
+
* @experimental As of version 1.75. Disclaimer: this event is in a beta state - incompatible API changes
|
|
4633
|
+
* may be done before its official public release. Use at your own discretion.
|
|
4548
4634
|
*/
|
|
4549
4635
|
export interface Host$ActionEventParameters {
|
|
4550
4636
|
/**
|
|
@@ -4588,15 +4674,15 @@ declare module "sap/ui/integration/Host" {
|
|
|
4588
4674
|
/**
|
|
4589
4675
|
* Event object of the Host#action event.
|
|
4590
4676
|
*
|
|
4591
|
-
* @experimental
|
|
4592
|
-
* be done before its official public release. Use at your own discretion.
|
|
4677
|
+
* @experimental As of version 1.75. Disclaimer: this event is in a beta state - incompatible API changes
|
|
4678
|
+
* may be done before its official public release. Use at your own discretion.
|
|
4593
4679
|
*/
|
|
4594
4680
|
export type Host$ActionEvent = Event<Host$ActionEventParameters, Host>;
|
|
4595
4681
|
|
|
4596
4682
|
/**
|
|
4597
4683
|
* Parameters of the Host#cardConfigurationChange event.
|
|
4598
4684
|
*
|
|
4599
|
-
* @experimental
|
|
4685
|
+
* @experimental As of version 1.96.
|
|
4600
4686
|
*/
|
|
4601
4687
|
export interface Host$CardConfigurationChangeEventParameters {
|
|
4602
4688
|
/**
|
|
@@ -4622,7 +4708,7 @@ declare module "sap/ui/integration/Host" {
|
|
|
4622
4708
|
/**
|
|
4623
4709
|
* Event object of the Host#cardConfigurationChange event.
|
|
4624
4710
|
*
|
|
4625
|
-
* @experimental
|
|
4711
|
+
* @experimental As of version 1.96.
|
|
4626
4712
|
*/
|
|
4627
4713
|
export type Host$CardConfigurationChangeEvent = Event<
|
|
4628
4714
|
Host$CardConfigurationChangeEventParameters,
|
|
@@ -4632,7 +4718,7 @@ declare module "sap/ui/integration/Host" {
|
|
|
4632
4718
|
/**
|
|
4633
4719
|
* Parameters of the Host#cardInitialized event.
|
|
4634
4720
|
*
|
|
4635
|
-
* @experimental
|
|
4721
|
+
* @experimental As of version 1.116.
|
|
4636
4722
|
*/
|
|
4637
4723
|
export interface Host$CardInitializedEventParameters {
|
|
4638
4724
|
/**
|
|
@@ -4644,7 +4730,7 @@ declare module "sap/ui/integration/Host" {
|
|
|
4644
4730
|
/**
|
|
4645
4731
|
* Event object of the Host#cardInitialized event.
|
|
4646
4732
|
*
|
|
4647
|
-
* @experimental
|
|
4733
|
+
* @experimental As of version 1.116.
|
|
4648
4734
|
*/
|
|
4649
4735
|
export type Host$CardInitializedEvent = Event<
|
|
4650
4736
|
Host$CardInitializedEventParameters,
|
|
@@ -4654,7 +4740,7 @@ declare module "sap/ui/integration/Host" {
|
|
|
4654
4740
|
/**
|
|
4655
4741
|
* Parameters of the Host#cardStateChanged event.
|
|
4656
4742
|
*
|
|
4657
|
-
* @experimental
|
|
4743
|
+
* @experimental As of version 1.107.
|
|
4658
4744
|
*/
|
|
4659
4745
|
export interface Host$CardStateChangedEventParameters {
|
|
4660
4746
|
/**
|
|
@@ -4666,7 +4752,7 @@ declare module "sap/ui/integration/Host" {
|
|
|
4666
4752
|
/**
|
|
4667
4753
|
* Event object of the Host#cardStateChanged event.
|
|
4668
4754
|
*
|
|
4669
|
-
* @experimental
|
|
4755
|
+
* @experimental As of version 1.107.
|
|
4670
4756
|
*/
|
|
4671
4757
|
export type Host$CardStateChangedEvent = Event<
|
|
4672
4758
|
Host$CardStateChangedEventParameters,
|
|
@@ -4676,7 +4762,7 @@ declare module "sap/ui/integration/Host" {
|
|
|
4676
4762
|
/**
|
|
4677
4763
|
* Parameters of the Host#message event.
|
|
4678
4764
|
*
|
|
4679
|
-
* @experimental
|
|
4765
|
+
* @experimental As of version 1.91.
|
|
4680
4766
|
*/
|
|
4681
4767
|
export interface Host$MessageEventParameters {
|
|
4682
4768
|
data?: object;
|
|
@@ -4685,7 +4771,7 @@ declare module "sap/ui/integration/Host" {
|
|
|
4685
4771
|
/**
|
|
4686
4772
|
* Event object of the Host#message event.
|
|
4687
4773
|
*
|
|
4688
|
-
* @experimental
|
|
4774
|
+
* @experimental As of version 1.91.
|
|
4689
4775
|
*/
|
|
4690
4776
|
export type Host$MessageEvent = Event<Host$MessageEventParameters, Host>;
|
|
4691
4777
|
}
|
|
@@ -4706,7 +4792,7 @@ declare namespace sap {
|
|
|
4706
4792
|
* Validates if the provided value belongs to the icon pool.
|
|
4707
4793
|
*
|
|
4708
4794
|
* @since 1.81
|
|
4709
|
-
* @experimental
|
|
4795
|
+
* @experimental 1.81
|
|
4710
4796
|
*/
|
|
4711
4797
|
namespace IsInIconPool {
|
|
4712
4798
|
/**
|
|
@@ -4880,6 +4966,8 @@ declare namespace sap {
|
|
|
4880
4966
|
|
|
4881
4967
|
"sap/ui/integration/util/ManifestResolver": undefined;
|
|
4882
4968
|
|
|
4969
|
+
"sap/ui/integration/util/openCardShowMore": undefined;
|
|
4970
|
+
|
|
4883
4971
|
"sap/ui/integration/util/RequestDataProvider": undefined;
|
|
4884
4972
|
|
|
4885
4973
|
"sap/ui/integration/util/SkeletonCard": undefined;
|