@openui5/ts-types-esm 1.92.0 → 1.93.3
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/README.md +15 -0
- package/package.json +1 -1
- package/types/sap.f.d.ts +627 -470
- package/types/sap.m.d.ts +5461 -4764
- package/types/sap.tnt.d.ts +149 -117
- package/types/sap.ui.codeeditor.d.ts +28 -28
- package/types/sap.ui.commons.d.ts +1386 -1386
- package/types/sap.ui.core.d.ts +3812 -3922
- package/types/sap.ui.dt.d.ts +2 -4
- package/types/sap.ui.fl.d.ts +31 -31
- package/types/sap.ui.integration.d.ts +118 -112
- package/types/sap.ui.layout.d.ts +582 -575
- package/types/sap.ui.mdc.d.ts +23 -1
- package/types/sap.ui.rta.d.ts +1 -1
- package/types/sap.ui.suite.d.ts +53 -53
- package/types/sap.ui.support.d.ts +6 -12
- package/types/sap.ui.table.d.ts +245 -245
- package/types/sap.ui.testrecorder.d.ts +1 -1
- package/types/sap.ui.unified.d.ts +853 -711
- package/types/sap.ui.ux3.d.ts +785 -793
- package/types/sap.ui.webc.common.d.ts +1 -1
- package/types/sap.ui.webc.fiori.d.ts +439 -435
- package/types/sap.ui.webc.main.d.ts +1317 -1317
- package/types/sap.uxap.d.ts +393 -231
package/types/sap.ui.dt.d.ts
CHANGED
package/types/sap.ui.fl.d.ts
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
// For Library Version: 1.
|
|
1
|
+
// For Library Version: 1.93.3
|
|
2
2
|
|
|
3
3
|
declare module "sap/ui/fl/library" {}
|
|
4
4
|
|
|
@@ -660,6 +660,31 @@ declare module "sap/ui/fl/variants/VariantManagement" {
|
|
|
660
660
|
mSettings?: $VariantManagementSettings
|
|
661
661
|
);
|
|
662
662
|
|
|
663
|
+
/**
|
|
664
|
+
* Creates a new subclass of class sap.ui.fl.variants.VariantManagement with name `sClassName` and enriches
|
|
665
|
+
* it with the information contained in `oClassInfo`.
|
|
666
|
+
*
|
|
667
|
+
* `oClassInfo` might contain the same kind of information as described in {@link sap.ui.core.Control.extend}.
|
|
668
|
+
*/
|
|
669
|
+
static extend<T extends Record<string, unknown>>(
|
|
670
|
+
/**
|
|
671
|
+
* Name of the class being created
|
|
672
|
+
*/
|
|
673
|
+
sClassName: string,
|
|
674
|
+
/**
|
|
675
|
+
* Object literal with information about the class
|
|
676
|
+
*/
|
|
677
|
+
oClassInfo?: sap.ClassInfo<T, VariantManagement>,
|
|
678
|
+
/**
|
|
679
|
+
* Constructor function for the metadata object; if not given, it defaults to the metadata implementation
|
|
680
|
+
* used by this class
|
|
681
|
+
*/
|
|
682
|
+
FNMetaImpl?: Function
|
|
683
|
+
): Function;
|
|
684
|
+
/**
|
|
685
|
+
* Returns a metadata object for class sap.ui.fl.variants.VariantManagement.
|
|
686
|
+
*/
|
|
687
|
+
static getMetadata(): ElementMetadata;
|
|
663
688
|
/**
|
|
664
689
|
* Adds some for into the association {@link #getFor for}.
|
|
665
690
|
*/
|
|
@@ -961,27 +986,6 @@ declare module "sap/ui/fl/variants/VariantManagement" {
|
|
|
961
986
|
*/
|
|
962
987
|
oListener?: object
|
|
963
988
|
): this;
|
|
964
|
-
/**
|
|
965
|
-
* Creates a new subclass of class sap.ui.fl.variants.VariantManagement with name `sClassName` and enriches
|
|
966
|
-
* it with the information contained in `oClassInfo`.
|
|
967
|
-
*
|
|
968
|
-
* `oClassInfo` might contain the same kind of information as described in {@link sap.ui.core.Control.extend}.
|
|
969
|
-
*/
|
|
970
|
-
static extend<T extends Record<string, unknown>>(
|
|
971
|
-
/**
|
|
972
|
-
* Name of the class being created
|
|
973
|
-
*/
|
|
974
|
-
sClassName: string,
|
|
975
|
-
/**
|
|
976
|
-
* Object literal with information about the class
|
|
977
|
-
*/
|
|
978
|
-
oClassInfo?: sap.ClassInfo<T, VariantManagement>,
|
|
979
|
-
/**
|
|
980
|
-
* Constructor function for the metadata object; if not given, it defaults to the metadata implementation
|
|
981
|
-
* used by this class
|
|
982
|
-
*/
|
|
983
|
-
FNMetaImpl?: Function
|
|
984
|
-
): Function;
|
|
985
989
|
/**
|
|
986
990
|
* Fires event {@link #event:cancel cancel} to attached listeners.
|
|
987
991
|
*/
|
|
@@ -1113,10 +1117,6 @@ declare module "sap/ui/fl/variants/VariantManagement" {
|
|
|
1113
1117
|
* Default value is `false`.
|
|
1114
1118
|
*/
|
|
1115
1119
|
getManualVariantKey(): boolean;
|
|
1116
|
-
/**
|
|
1117
|
-
* Returns a metadata object for class sap.ui.fl.variants.VariantManagement.
|
|
1118
|
-
*/
|
|
1119
|
-
static getMetadata(): ElementMetadata;
|
|
1120
1120
|
/**
|
|
1121
1121
|
* Gets current value of property {@link #getModelName modelName}.
|
|
1122
1122
|
*
|
|
@@ -1431,27 +1431,27 @@ declare module "sap/ui/fl/variants/VariantManagement" {
|
|
|
1431
1431
|
* This event is fired when the Save View dialog or the Save As dialog is closed with the
|
|
1432
1432
|
* save button.
|
|
1433
1433
|
*/
|
|
1434
|
-
save?:
|
|
1434
|
+
save?: (oEvent: Event) => void;
|
|
1435
1435
|
|
|
1436
1436
|
/**
|
|
1437
1437
|
* This event is fired when users presses the cancel button inside Save As dialog.
|
|
1438
1438
|
*/
|
|
1439
|
-
cancel?:
|
|
1439
|
+
cancel?: (oEvent: Event) => void;
|
|
1440
1440
|
|
|
1441
1441
|
/**
|
|
1442
1442
|
* This event is fired when users apply changes to variants in the Manage Views dialog.
|
|
1443
1443
|
*/
|
|
1444
|
-
manage?:
|
|
1444
|
+
manage?: (oEvent: Event) => void;
|
|
1445
1445
|
|
|
1446
1446
|
/**
|
|
1447
1447
|
* This event is fired when the model and context are set.
|
|
1448
1448
|
*/
|
|
1449
|
-
initialized?:
|
|
1449
|
+
initialized?: (oEvent: Event) => void;
|
|
1450
1450
|
|
|
1451
1451
|
/**
|
|
1452
1452
|
* This event is fired when a new variant is selected.
|
|
1453
1453
|
*/
|
|
1454
|
-
select?:
|
|
1454
|
+
select?: (oEvent: Event) => void;
|
|
1455
1455
|
}
|
|
1456
1456
|
}
|
|
1457
1457
|
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
// For Library Version: 1.
|
|
1
|
+
// For Library Version: 1.93.3
|
|
2
2
|
|
|
3
3
|
declare module "sap/ui/integration/library" {
|
|
4
4
|
import { URI } from "sap/ui/core/library";
|
|
@@ -164,6 +164,31 @@ declare module "sap/ui/integration/ActionDefinition" {
|
|
|
164
164
|
mSettings?: $ActionDefinitionSettings
|
|
165
165
|
);
|
|
166
166
|
|
|
167
|
+
/**
|
|
168
|
+
* Creates a new subclass of class sap.ui.integration.ActionDefinition with name `sClassName` and enriches
|
|
169
|
+
* it with the information contained in `oClassInfo`.
|
|
170
|
+
*
|
|
171
|
+
* `oClassInfo` might contain the same kind of information as described in {@link sap.ui.core.Element.extend}.
|
|
172
|
+
*/
|
|
173
|
+
static extend<T extends Record<string, unknown>>(
|
|
174
|
+
/**
|
|
175
|
+
* Name of the class being created
|
|
176
|
+
*/
|
|
177
|
+
sClassName: string,
|
|
178
|
+
/**
|
|
179
|
+
* Object literal with information about the class
|
|
180
|
+
*/
|
|
181
|
+
oClassInfo?: sap.ClassInfo<T, ActionDefinition>,
|
|
182
|
+
/**
|
|
183
|
+
* Constructor function for the metadata object; if not given, it defaults to the metadata implementation
|
|
184
|
+
* used by this class
|
|
185
|
+
*/
|
|
186
|
+
FNMetaImpl?: Function
|
|
187
|
+
): Function;
|
|
188
|
+
/**
|
|
189
|
+
* Returns a metadata object for class sap.ui.integration.ActionDefinition.
|
|
190
|
+
*/
|
|
191
|
+
static getMetadata(): ElementMetadata;
|
|
167
192
|
/**
|
|
168
193
|
* Attaches event handler `fnFunction` to the {@link #event:press press} event of this `sap.ui.integration.ActionDefinition`.
|
|
169
194
|
*
|
|
@@ -222,27 +247,6 @@ declare module "sap/ui/integration/ActionDefinition" {
|
|
|
222
247
|
*/
|
|
223
248
|
oListener?: object
|
|
224
249
|
): this;
|
|
225
|
-
/**
|
|
226
|
-
* Creates a new subclass of class sap.ui.integration.ActionDefinition with name `sClassName` and enriches
|
|
227
|
-
* it with the information contained in `oClassInfo`.
|
|
228
|
-
*
|
|
229
|
-
* `oClassInfo` might contain the same kind of information as described in {@link sap.ui.core.Element.extend}.
|
|
230
|
-
*/
|
|
231
|
-
static extend<T extends Record<string, unknown>>(
|
|
232
|
-
/**
|
|
233
|
-
* Name of the class being created
|
|
234
|
-
*/
|
|
235
|
-
sClassName: string,
|
|
236
|
-
/**
|
|
237
|
-
* Object literal with information about the class
|
|
238
|
-
*/
|
|
239
|
-
oClassInfo?: sap.ClassInfo<T, ActionDefinition>,
|
|
240
|
-
/**
|
|
241
|
-
* Constructor function for the metadata object; if not given, it defaults to the metadata implementation
|
|
242
|
-
* used by this class
|
|
243
|
-
*/
|
|
244
|
-
FNMetaImpl?: Function
|
|
245
|
-
): Function;
|
|
246
250
|
/**
|
|
247
251
|
* Fires event {@link #event:press press} to attached listeners.
|
|
248
252
|
*/
|
|
@@ -275,10 +279,6 @@ declare module "sap/ui/integration/ActionDefinition" {
|
|
|
275
279
|
* The icon of the action button.
|
|
276
280
|
*/
|
|
277
281
|
getIcon(): URI;
|
|
278
|
-
/**
|
|
279
|
-
* Returns a metadata object for class sap.ui.integration.ActionDefinition.
|
|
280
|
-
*/
|
|
281
|
-
static getMetadata(): ElementMetadata;
|
|
282
282
|
/**
|
|
283
283
|
* Gets current value of property {@link #getParameters parameters}.
|
|
284
284
|
*
|
|
@@ -449,7 +449,7 @@ declare module "sap/ui/integration/ActionDefinition" {
|
|
|
449
449
|
/**
|
|
450
450
|
* Fired when the action button is pressed.
|
|
451
451
|
*/
|
|
452
|
-
press?:
|
|
452
|
+
press?: (oEvent: Event) => void;
|
|
453
453
|
}
|
|
454
454
|
}
|
|
455
455
|
|
|
@@ -529,14 +529,14 @@ declare module "sap/ui/integration/Designtime" {
|
|
|
529
529
|
*/
|
|
530
530
|
FNMetaImpl?: Function
|
|
531
531
|
): Function;
|
|
532
|
-
/**
|
|
533
|
-
* Returns an interface to the card, which uses this extension.
|
|
534
|
-
*/
|
|
535
|
-
getCard(): CardFacade;
|
|
536
532
|
/**
|
|
537
533
|
* Returns a metadata object for class sap.ui.integration.Designtime.
|
|
538
534
|
*/
|
|
539
535
|
static getMetadata(): ManagedObjectMetadata;
|
|
536
|
+
/**
|
|
537
|
+
* Returns an interface to the card, which uses this extension.
|
|
538
|
+
*/
|
|
539
|
+
getCard(): CardFacade;
|
|
540
540
|
}
|
|
541
541
|
|
|
542
542
|
export interface $DesigntimeSettings extends $ManagedObjectSettings {}
|
|
@@ -870,6 +870,31 @@ declare module "sap/ui/integration/Extension" {
|
|
|
870
870
|
mSettings?: $ExtensionSettings
|
|
871
871
|
);
|
|
872
872
|
|
|
873
|
+
/**
|
|
874
|
+
* Creates a new subclass of class sap.ui.integration.Extension with name `sClassName` and enriches it with
|
|
875
|
+
* the information contained in `oClassInfo`.
|
|
876
|
+
*
|
|
877
|
+
* `oClassInfo` might contain the same kind of information as described in {@link sap.ui.base.ManagedObject.extend}.
|
|
878
|
+
*/
|
|
879
|
+
static extend<T extends Record<string, unknown>>(
|
|
880
|
+
/**
|
|
881
|
+
* Name of the class being created
|
|
882
|
+
*/
|
|
883
|
+
sClassName: string,
|
|
884
|
+
/**
|
|
885
|
+
* Object literal with information about the class
|
|
886
|
+
*/
|
|
887
|
+
oClassInfo?: sap.ClassInfo<T, Extension>,
|
|
888
|
+
/**
|
|
889
|
+
* Constructor function for the metadata object; if not given, it defaults to the metadata implementation
|
|
890
|
+
* used by this class
|
|
891
|
+
*/
|
|
892
|
+
FNMetaImpl?: Function
|
|
893
|
+
): Function;
|
|
894
|
+
/**
|
|
895
|
+
* Returns a metadata object for class sap.ui.integration.Extension.
|
|
896
|
+
*/
|
|
897
|
+
static getMetadata(): ManagedObjectMetadata;
|
|
873
898
|
/**
|
|
874
899
|
* @EXPERIMENTAL (since 1.75)
|
|
875
900
|
*
|
|
@@ -932,27 +957,6 @@ declare module "sap/ui/integration/Extension" {
|
|
|
932
957
|
*/
|
|
933
958
|
oListener?: object
|
|
934
959
|
): this;
|
|
935
|
-
/**
|
|
936
|
-
* Creates a new subclass of class sap.ui.integration.Extension with name `sClassName` and enriches it with
|
|
937
|
-
* the information contained in `oClassInfo`.
|
|
938
|
-
*
|
|
939
|
-
* `oClassInfo` might contain the same kind of information as described in {@link sap.ui.base.ManagedObject.extend}.
|
|
940
|
-
*/
|
|
941
|
-
static extend<T extends Record<string, unknown>>(
|
|
942
|
-
/**
|
|
943
|
-
* Name of the class being created
|
|
944
|
-
*/
|
|
945
|
-
sClassName: string,
|
|
946
|
-
/**
|
|
947
|
-
* Object literal with information about the class
|
|
948
|
-
*/
|
|
949
|
-
oClassInfo?: sap.ClassInfo<T, Extension>,
|
|
950
|
-
/**
|
|
951
|
-
* Constructor function for the metadata object; if not given, it defaults to the metadata implementation
|
|
952
|
-
* used by this class
|
|
953
|
-
*/
|
|
954
|
-
FNMetaImpl?: Function
|
|
955
|
-
): Function;
|
|
956
960
|
/**
|
|
957
961
|
* @EXPERIMENTAL (since 1.75)
|
|
958
962
|
*
|
|
@@ -1009,10 +1013,6 @@ declare module "sap/ui/integration/Extension" {
|
|
|
1009
1013
|
* The formatters, which can be used in the manifest.
|
|
1010
1014
|
*/
|
|
1011
1015
|
getFormatters(): object;
|
|
1012
|
-
/**
|
|
1013
|
-
* Returns a metadata object for class sap.ui.integration.Extension.
|
|
1014
|
-
*/
|
|
1015
|
-
static getMetadata(): ManagedObjectMetadata;
|
|
1016
1016
|
/**
|
|
1017
1017
|
* Called when the card is ready.
|
|
1018
1018
|
*/
|
|
@@ -1040,7 +1040,7 @@ declare module "sap/ui/integration/Extension" {
|
|
|
1040
1040
|
*
|
|
1041
1041
|
* Fired when an action is triggered in the card.
|
|
1042
1042
|
*/
|
|
1043
|
-
action?:
|
|
1043
|
+
action?: (oEvent: Event) => void;
|
|
1044
1044
|
}
|
|
1045
1045
|
}
|
|
1046
1046
|
|
|
@@ -1097,6 +1097,31 @@ declare module "sap/ui/integration/Host" {
|
|
|
1097
1097
|
mSettings?: $HostSettings
|
|
1098
1098
|
);
|
|
1099
1099
|
|
|
1100
|
+
/**
|
|
1101
|
+
* Creates a new subclass of class sap.ui.integration.Host with name `sClassName` and enriches it with the
|
|
1102
|
+
* information contained in `oClassInfo`.
|
|
1103
|
+
*
|
|
1104
|
+
* `oClassInfo` might contain the same kind of information as described in {@link sap.ui.core.Element.extend}.
|
|
1105
|
+
*/
|
|
1106
|
+
static extend<T extends Record<string, unknown>>(
|
|
1107
|
+
/**
|
|
1108
|
+
* Name of the class being created
|
|
1109
|
+
*/
|
|
1110
|
+
sClassName: string,
|
|
1111
|
+
/**
|
|
1112
|
+
* Object literal with information about the class
|
|
1113
|
+
*/
|
|
1114
|
+
oClassInfo?: sap.ClassInfo<T, Host>,
|
|
1115
|
+
/**
|
|
1116
|
+
* Constructor function for the metadata object; if not given, it defaults to the metadata implementation
|
|
1117
|
+
* used by this class
|
|
1118
|
+
*/
|
|
1119
|
+
FNMetaImpl?: Function
|
|
1120
|
+
): Function;
|
|
1121
|
+
/**
|
|
1122
|
+
* Returns a metadata object for class sap.ui.integration.Host.
|
|
1123
|
+
*/
|
|
1124
|
+
static getMetadata(): ElementMetadata;
|
|
1100
1125
|
/**
|
|
1101
1126
|
* @EXPERIMENTAL (since 1.75)
|
|
1102
1127
|
*
|
|
@@ -1221,27 +1246,6 @@ declare module "sap/ui/integration/Host" {
|
|
|
1221
1246
|
*/
|
|
1222
1247
|
oListener?: object
|
|
1223
1248
|
): this;
|
|
1224
|
-
/**
|
|
1225
|
-
* Creates a new subclass of class sap.ui.integration.Host with name `sClassName` and enriches it with the
|
|
1226
|
-
* information contained in `oClassInfo`.
|
|
1227
|
-
*
|
|
1228
|
-
* `oClassInfo` might contain the same kind of information as described in {@link sap.ui.core.Element.extend}.
|
|
1229
|
-
*/
|
|
1230
|
-
static extend<T extends Record<string, unknown>>(
|
|
1231
|
-
/**
|
|
1232
|
-
* Name of the class being created
|
|
1233
|
-
*/
|
|
1234
|
-
sClassName: string,
|
|
1235
|
-
/**
|
|
1236
|
-
* Object literal with information about the class
|
|
1237
|
-
*/
|
|
1238
|
-
oClassInfo?: sap.ClassInfo<T, Host>,
|
|
1239
|
-
/**
|
|
1240
|
-
* Constructor function for the metadata object; if not given, it defaults to the metadata implementation
|
|
1241
|
-
* used by this class
|
|
1242
|
-
*/
|
|
1243
|
-
FNMetaImpl?: Function
|
|
1244
|
-
): Function;
|
|
1245
1249
|
/**
|
|
1246
1250
|
* @EXPERIMENTAL (since 1.75)
|
|
1247
1251
|
*
|
|
@@ -1348,10 +1352,6 @@ declare module "sap/ui/integration/Host" {
|
|
|
1348
1352
|
* that contain at least the name. { "name": "DestinationName" }
|
|
1349
1353
|
*/
|
|
1350
1354
|
getDestinations(): Promise<any>;
|
|
1351
|
-
/**
|
|
1352
|
-
* Returns a metadata object for class sap.ui.integration.Host.
|
|
1353
|
-
*/
|
|
1354
|
-
static getMetadata(): ElementMetadata;
|
|
1355
1355
|
/**
|
|
1356
1356
|
* Gets current value of property {@link #getResolveDestination resolveDestination}.
|
|
1357
1357
|
*
|
|
@@ -1430,14 +1430,14 @@ declare module "sap/ui/integration/Host" {
|
|
|
1430
1430
|
*
|
|
1431
1431
|
* Fired when an action is triggered.
|
|
1432
1432
|
*/
|
|
1433
|
-
action?:
|
|
1433
|
+
action?: (oEvent: Event) => void;
|
|
1434
1434
|
|
|
1435
1435
|
/**
|
|
1436
1436
|
* @EXPERIMENTAL (since 1.91)
|
|
1437
1437
|
*
|
|
1438
1438
|
* Fired when a message from channels like navigator.serviceWorker is received.
|
|
1439
1439
|
*/
|
|
1440
|
-
message?:
|
|
1440
|
+
message?: (oEvent: Event) => void;
|
|
1441
1441
|
}
|
|
1442
1442
|
}
|
|
1443
1443
|
|
|
@@ -1547,6 +1547,31 @@ declare module "sap/ui/integration/widgets/Card" {
|
|
|
1547
1547
|
mSettings?: $CardSettings
|
|
1548
1548
|
);
|
|
1549
1549
|
|
|
1550
|
+
/**
|
|
1551
|
+
* Creates a new subclass of class sap.ui.integration.widgets.Card with name `sClassName` and enriches it
|
|
1552
|
+
* with the information contained in `oClassInfo`.
|
|
1553
|
+
*
|
|
1554
|
+
* `oClassInfo` might contain the same kind of information as described in {@link sap.f.CardBase.extend}.
|
|
1555
|
+
*/
|
|
1556
|
+
static extend<T extends Record<string, unknown>>(
|
|
1557
|
+
/**
|
|
1558
|
+
* Name of the class being created
|
|
1559
|
+
*/
|
|
1560
|
+
sClassName: string,
|
|
1561
|
+
/**
|
|
1562
|
+
* Object literal with information about the class
|
|
1563
|
+
*/
|
|
1564
|
+
oClassInfo?: sap.ClassInfo<T, Card>,
|
|
1565
|
+
/**
|
|
1566
|
+
* Constructor function for the metadata object; if not given, it defaults to the metadata implementation
|
|
1567
|
+
* used by this class
|
|
1568
|
+
*/
|
|
1569
|
+
FNMetaImpl?: Function
|
|
1570
|
+
): Function;
|
|
1571
|
+
/**
|
|
1572
|
+
* Returns a metadata object for class sap.ui.integration.widgets.Card.
|
|
1573
|
+
*/
|
|
1574
|
+
static getMetadata(): ElementMetadata;
|
|
1550
1575
|
/**
|
|
1551
1576
|
* @SINCE 1.85
|
|
1552
1577
|
* @EXPERIMENTAL (since 1.85)
|
|
@@ -1756,27 +1781,6 @@ declare module "sap/ui/integration/widgets/Card" {
|
|
|
1756
1781
|
*/
|
|
1757
1782
|
oListener?: object
|
|
1758
1783
|
): this;
|
|
1759
|
-
/**
|
|
1760
|
-
* Creates a new subclass of class sap.ui.integration.widgets.Card with name `sClassName` and enriches it
|
|
1761
|
-
* with the information contained in `oClassInfo`.
|
|
1762
|
-
*
|
|
1763
|
-
* `oClassInfo` might contain the same kind of information as described in {@link sap.f.CardBase.extend}.
|
|
1764
|
-
*/
|
|
1765
|
-
static extend<T extends Record<string, unknown>>(
|
|
1766
|
-
/**
|
|
1767
|
-
* Name of the class being created
|
|
1768
|
-
*/
|
|
1769
|
-
sClassName: string,
|
|
1770
|
-
/**
|
|
1771
|
-
* Object literal with information about the class
|
|
1772
|
-
*/
|
|
1773
|
-
oClassInfo?: sap.ClassInfo<T, Card>,
|
|
1774
|
-
/**
|
|
1775
|
-
* Constructor function for the metadata object; if not given, it defaults to the metadata implementation
|
|
1776
|
-
* used by this class
|
|
1777
|
-
*/
|
|
1778
|
-
FNMetaImpl?: Function
|
|
1779
|
-
): Function;
|
|
1780
1784
|
/**
|
|
1781
1785
|
* @EXPERIMENTAL (since 1.64)
|
|
1782
1786
|
*
|
|
@@ -1939,10 +1943,6 @@ declare module "sap/ui/integration/widgets/Card" {
|
|
|
1939
1943
|
*/
|
|
1940
1944
|
sPath: string
|
|
1941
1945
|
): Object;
|
|
1942
|
-
/**
|
|
1943
|
-
* Returns a metadata object for class sap.ui.integration.widgets.Card.
|
|
1944
|
-
*/
|
|
1945
|
-
static getMetadata(): ElementMetadata;
|
|
1946
1946
|
/**
|
|
1947
1947
|
* @EXPERIMENTAL (since 1.83)
|
|
1948
1948
|
*
|
|
@@ -2375,6 +2375,12 @@ declare module "sap/ui/integration/widgets/Card" {
|
|
|
2375
2375
|
*/
|
|
2376
2376
|
iIndex: int
|
|
2377
2377
|
): this;
|
|
2378
|
+
/**
|
|
2379
|
+
* @EXPERIMENTAL (since 1.65)
|
|
2380
|
+
*
|
|
2381
|
+
* Refreshes the card by re-applying the manifest settings and triggering all data requests.
|
|
2382
|
+
*/
|
|
2383
|
+
refresh(): void;
|
|
2378
2384
|
/**
|
|
2379
2385
|
* @SINCE 1.85
|
|
2380
2386
|
* @EXPERIMENTAL (since 1.85)
|
|
@@ -2572,14 +2578,14 @@ declare module "sap/ui/integration/widgets/Card" {
|
|
|
2572
2578
|
*
|
|
2573
2579
|
* Fired when an action is triggered on the card.
|
|
2574
2580
|
*/
|
|
2575
|
-
action?:
|
|
2581
|
+
action?: (oEvent: Event) => void;
|
|
2576
2582
|
|
|
2577
2583
|
/**
|
|
2578
2584
|
* @EXPERIMENTAL (since 1.72)
|
|
2579
2585
|
*
|
|
2580
2586
|
* Fired when the manifest is loaded.
|
|
2581
2587
|
*/
|
|
2582
|
-
manifestReady?:
|
|
2588
|
+
manifestReady?: (oEvent: Event) => void;
|
|
2583
2589
|
|
|
2584
2590
|
/**
|
|
2585
2591
|
* Fired when card utilities (like `DataProviderFactory`) and the card elements (like header) are created
|
|
@@ -2587,7 +2593,7 @@ declare module "sap/ui/integration/widgets/Card" {
|
|
|
2587
2593
|
*
|
|
2588
2594
|
* Note: The card's content may not be available yet because it may depend on other resources to load.
|
|
2589
2595
|
*/
|
|
2590
|
-
manifestApplied?:
|
|
2596
|
+
manifestApplied?: (oEvent: Event) => void;
|
|
2591
2597
|
}
|
|
2592
2598
|
}
|
|
2593
2599
|
|