@openui5/types 1.115.1 → 1.116.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/README.md +6 -5
- package/package.json +1 -1
- package/types/index.d.ts +9 -3
- package/types/sap.f.d.ts +67 -241
- package/types/sap.m.d.ts +411 -2498
- package/types/sap.tnt.d.ts +52 -26
- package/types/sap.ui.codeeditor.d.ts +3 -15
- package/types/sap.ui.commons.d.ts +43 -355
- package/types/sap.ui.core.d.ts +283 -883
- package/types/sap.ui.dt.d.ts +1 -1
- package/types/sap.ui.fl.d.ts +4 -69
- package/types/sap.ui.integration.d.ts +124 -90
- package/types/sap.ui.layout.d.ts +6 -40
- package/types/sap.ui.mdc.d.ts +806 -817
- package/types/sap.ui.rta.d.ts +1 -1
- package/types/sap.ui.suite.d.ts +1 -13
- package/types/sap.ui.support.d.ts +1 -1
- package/types/sap.ui.table.d.ts +23 -169
- package/types/sap.ui.testrecorder.d.ts +1 -1
- package/types/sap.ui.unified.d.ts +69 -449
- package/types/sap.ui.ux3.d.ts +44 -444
- package/types/sap.ui.webc.common.d.ts +1 -1
- package/types/sap.ui.webc.fiori.d.ts +731 -311
- package/types/sap.ui.webc.main.d.ts +4016 -1045
- package/types/sap.uxap.d.ts +10 -80
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.116.0
|
|
2
2
|
|
|
3
3
|
declare module "sap/ui/fl/library" {}
|
|
4
4
|
|
|
@@ -744,17 +744,6 @@ declare module "sap/ui/fl/variants/VariantManagement" {
|
|
|
744
744
|
* @returns Value of property `inErrorState`
|
|
745
745
|
*/
|
|
746
746
|
getInErrorState(): boolean;
|
|
747
|
-
/**
|
|
748
|
-
* Gets current value of property {@link #getManualVariantKey manualVariantKey}.
|
|
749
|
-
*
|
|
750
|
-
* If set to `true`, the key for a vendor variant will be added manually.
|
|
751
|
-
* **Note:** This flag is only used internally.
|
|
752
|
-
*
|
|
753
|
-
* Default value is `false`.
|
|
754
|
-
*
|
|
755
|
-
* @returns Value of property `manualVariantKey`
|
|
756
|
-
*/
|
|
757
|
-
getManualVariantKey(): boolean;
|
|
758
747
|
/**
|
|
759
748
|
* @since 1.109
|
|
760
749
|
*
|
|
@@ -964,24 +953,6 @@ declare module "sap/ui/fl/variants/VariantManagement" {
|
|
|
964
953
|
*/
|
|
965
954
|
bInErrorState?: boolean
|
|
966
955
|
): this;
|
|
967
|
-
/**
|
|
968
|
-
* Sets a new value for property {@link #getManualVariantKey manualVariantKey}.
|
|
969
|
-
*
|
|
970
|
-
* If set to `true`, the key for a vendor variant will be added manually.
|
|
971
|
-
* **Note:** This flag is only used internally.
|
|
972
|
-
*
|
|
973
|
-
* When called with a value of `null` or `undefined`, the default value of the property will be restored.
|
|
974
|
-
*
|
|
975
|
-
* Default value is `false`.
|
|
976
|
-
*
|
|
977
|
-
* @returns Reference to `this` in order to allow method chaining
|
|
978
|
-
*/
|
|
979
|
-
setManualVariantKey(
|
|
980
|
-
/**
|
|
981
|
-
* New value for property `manualVariantKey`
|
|
982
|
-
*/
|
|
983
|
-
bManualVariantKey?: boolean
|
|
984
|
-
): this;
|
|
985
956
|
/**
|
|
986
957
|
* @since 1.109
|
|
987
958
|
*
|
|
@@ -1124,12 +1095,6 @@ declare module "sap/ui/fl/variants/VariantManagement" {
|
|
|
1124
1095
|
*/
|
|
1125
1096
|
showSetAsDefault?: boolean | PropertyBindingInfo | `{${string}}`;
|
|
1126
1097
|
|
|
1127
|
-
/**
|
|
1128
|
-
* If set to `true`, the key for a vendor variant will be added manually.
|
|
1129
|
-
* **Note:** This flag is only used internally.
|
|
1130
|
-
*/
|
|
1131
|
-
manualVariantKey?: boolean | PropertyBindingInfo | `{${string}}`;
|
|
1132
|
-
|
|
1133
1098
|
/**
|
|
1134
1099
|
* Indicates that the control is in error state. If set to `true`, an error message will be displayed whenever
|
|
1135
1100
|
* the variant is opened.
|
|
@@ -1194,7 +1159,7 @@ declare module "sap/ui/fl/variants/VariantManagement" {
|
|
|
1194
1159
|
* This event is fired when the Save View dialog or the Save As dialog is closed with the
|
|
1195
1160
|
* save button.
|
|
1196
1161
|
*/
|
|
1197
|
-
save?: (oEvent:
|
|
1162
|
+
save?: (oEvent: VariantManagement$SaveEvent) => void;
|
|
1198
1163
|
|
|
1199
1164
|
/**
|
|
1200
1165
|
* This event is fired when users presses the cancel button inside Save As dialog.
|
|
@@ -1204,32 +1169,20 @@ declare module "sap/ui/fl/variants/VariantManagement" {
|
|
|
1204
1169
|
/**
|
|
1205
1170
|
* This event is fired when users apply changes to variants in the Manage Views dialog.
|
|
1206
1171
|
*/
|
|
1207
|
-
manage?: (oEvent:
|
|
1172
|
+
manage?: (oEvent: VariantManagement$ManageEvent) => void;
|
|
1208
1173
|
|
|
1209
1174
|
/**
|
|
1210
1175
|
* This event is fired when a new variant is selected.
|
|
1211
1176
|
*/
|
|
1212
|
-
select?: (oEvent:
|
|
1177
|
+
select?: (oEvent: VariantManagement$SelectEvent) => void;
|
|
1213
1178
|
}
|
|
1214
1179
|
|
|
1215
1180
|
export interface VariantManagement$CancelEventParameters {}
|
|
1216
1181
|
|
|
1217
|
-
/**
|
|
1218
|
-
* @deprecated (since 1.115.1) - This name was introduced in 1.115.0, but will be 'VariantManagement$CancelEventParameters'
|
|
1219
|
-
* in 1.115.1 and any later releases.
|
|
1220
|
-
*/
|
|
1221
|
-
export type $VariantManagementCancelEventParameters = VariantManagement$CancelEventParameters;
|
|
1222
|
-
|
|
1223
1182
|
export type VariantManagement$CancelEvent = Event<VariantManagement$CancelEventParameters>;
|
|
1224
1183
|
|
|
1225
1184
|
export interface VariantManagement$InitializedEventParameters {}
|
|
1226
1185
|
|
|
1227
|
-
/**
|
|
1228
|
-
* @deprecated (since 1.115.1) - This name was introduced in 1.115.0, but will be 'VariantManagement$InitializedEventParameters'
|
|
1229
|
-
* in 1.115.1 and any later releases.
|
|
1230
|
-
*/
|
|
1231
|
-
export type $VariantManagementInitializedEventParameters = VariantManagement$InitializedEventParameters;
|
|
1232
|
-
|
|
1233
1186
|
export type VariantManagement$InitializedEvent = Event<VariantManagement$InitializedEventParameters>;
|
|
1234
1187
|
|
|
1235
1188
|
export interface VariantManagement$ManageEventParameters {
|
|
@@ -1255,12 +1208,6 @@ declare module "sap/ui/fl/variants/VariantManagement" {
|
|
|
1255
1208
|
def?: string;
|
|
1256
1209
|
}
|
|
1257
1210
|
|
|
1258
|
-
/**
|
|
1259
|
-
* @deprecated (since 1.115.1) - This name was introduced in 1.115.0, but will be 'VariantManagement$ManageEventParameters'
|
|
1260
|
-
* in 1.115.1 and any later releases.
|
|
1261
|
-
*/
|
|
1262
|
-
export type $VariantManagementManageEventParameters = VariantManagement$ManageEventParameters;
|
|
1263
|
-
|
|
1264
1211
|
export type VariantManagement$ManageEvent = Event<VariantManagement$ManageEventParameters>;
|
|
1265
1212
|
|
|
1266
1213
|
export interface VariantManagement$SaveEventParameters {
|
|
@@ -1302,12 +1249,6 @@ declare module "sap/ui/fl/variants/VariantManagement" {
|
|
|
1302
1249
|
tile?: boolean;
|
|
1303
1250
|
}
|
|
1304
1251
|
|
|
1305
|
-
/**
|
|
1306
|
-
* @deprecated (since 1.115.1) - This name was introduced in 1.115.0, but will be 'VariantManagement$SaveEventParameters'
|
|
1307
|
-
* in 1.115.1 and any later releases.
|
|
1308
|
-
*/
|
|
1309
|
-
export type $VariantManagementSaveEventParameters = VariantManagement$SaveEventParameters;
|
|
1310
|
-
|
|
1311
1252
|
export type VariantManagement$SaveEvent = Event<VariantManagement$SaveEventParameters>;
|
|
1312
1253
|
|
|
1313
1254
|
export interface VariantManagement$SelectEventParameters {
|
|
@@ -1317,12 +1258,6 @@ declare module "sap/ui/fl/variants/VariantManagement" {
|
|
|
1317
1258
|
key?: string;
|
|
1318
1259
|
}
|
|
1319
1260
|
|
|
1320
|
-
/**
|
|
1321
|
-
* @deprecated (since 1.115.1) - This name was introduced in 1.115.0, but will be 'VariantManagement$SelectEventParameters'
|
|
1322
|
-
* in 1.115.1 and any later releases.
|
|
1323
|
-
*/
|
|
1324
|
-
export type $VariantManagementSelectEventParameters = VariantManagement$SelectEventParameters;
|
|
1325
|
-
|
|
1326
1261
|
export type VariantManagement$SelectEvent = Event<VariantManagement$SelectEventParameters>;
|
|
1327
1262
|
}
|
|
1328
1263
|
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
// For Library Version: 1.
|
|
1
|
+
// For Library Version: 1.116.0
|
|
2
2
|
|
|
3
3
|
declare module "sap/ui/integration/library" {
|
|
4
4
|
import { URI } from "sap/ui/core/library";
|
|
@@ -600,12 +600,6 @@ declare module "sap/ui/integration/ActionDefinition" {
|
|
|
600
600
|
|
|
601
601
|
export interface ActionDefinition$PressEventParameters {}
|
|
602
602
|
|
|
603
|
-
/**
|
|
604
|
-
* @deprecated (since 1.115.1) - This name was introduced in 1.115.0, but will be 'ActionDefinition$PressEventParameters'
|
|
605
|
-
* in 1.115.1 and any later releases.
|
|
606
|
-
*/
|
|
607
|
-
export type $ActionDefinitionPressEventParameters = ActionDefinition$PressEventParameters;
|
|
608
|
-
|
|
609
603
|
export type ActionDefinition$PressEvent = Event<ActionDefinition$PressEventParameters>;
|
|
610
604
|
}
|
|
611
605
|
|
|
@@ -1259,8 +1253,8 @@ declare module "sap/ui/integration/widgets/Card" {
|
|
|
1259
1253
|
*
|
|
1260
1254
|
* Gets current value of property {@link #getBaseUrl baseUrl}.
|
|
1261
1255
|
*
|
|
1262
|
-
* Defines the base URL of the
|
|
1263
|
-
* of a URL.
|
|
1256
|
+
* Defines the base URL of the card manifest. It should be used when manifest property is an object instead
|
|
1257
|
+
* of a URL. If both manifest URL and base URL are defined - the base URL will be used for loading dependencies.
|
|
1264
1258
|
*
|
|
1265
1259
|
* @returns Value of property `baseUrl`
|
|
1266
1260
|
*/
|
|
@@ -1630,8 +1624,8 @@ declare module "sap/ui/integration/widgets/Card" {
|
|
|
1630
1624
|
*
|
|
1631
1625
|
* Sets a new value for property {@link #getBaseUrl baseUrl}.
|
|
1632
1626
|
*
|
|
1633
|
-
* Defines the base URL of the
|
|
1634
|
-
* of a URL.
|
|
1627
|
+
* Defines the base URL of the card manifest. It should be used when manifest property is an object instead
|
|
1628
|
+
* of a URL. If both manifest URL and base URL are defined - the base URL will be used for loading dependencies.
|
|
1635
1629
|
*
|
|
1636
1630
|
* When called with a value of `null` or `undefined`, the default value of the property will be restored.
|
|
1637
1631
|
*
|
|
@@ -1918,8 +1912,8 @@ declare module "sap/ui/integration/widgets/Card" {
|
|
|
1918
1912
|
*
|
|
1919
1913
|
* Gets current value of property {@link #getBaseUrl baseUrl}.
|
|
1920
1914
|
*
|
|
1921
|
-
* Defines the base URL of the
|
|
1922
|
-
* of a URL.
|
|
1915
|
+
* Defines the base URL of the card manifest. It should be used when manifest property is an object instead
|
|
1916
|
+
* of a URL. If both manifest URL and base URL are defined - the base URL will be used for loading dependencies.
|
|
1923
1917
|
*
|
|
1924
1918
|
* @returns Value of property `baseUrl`
|
|
1925
1919
|
*/
|
|
@@ -2256,8 +2250,8 @@ declare module "sap/ui/integration/widgets/Card" {
|
|
|
2256
2250
|
* @since 1.70
|
|
2257
2251
|
* @experimental (since 1.70)
|
|
2258
2252
|
*
|
|
2259
|
-
* Defines the base URL of the
|
|
2260
|
-
* of a URL.
|
|
2253
|
+
* Defines the base URL of the card manifest. It should be used when manifest property is an object instead
|
|
2254
|
+
* of a URL. If both manifest URL and base URL are defined - the base URL will be used for loading dependencies.
|
|
2261
2255
|
*/
|
|
2262
2256
|
baseUrl?: URI | PropertyBindingInfo | `{${string}}`;
|
|
2263
2257
|
|
|
@@ -2360,7 +2354,7 @@ declare module "sap/ui/integration/widgets/Card" {
|
|
|
2360
2354
|
* In consecutive order those places are: `Extension`, `Card`, `Host`. Each of them can prevent the next
|
|
2361
2355
|
* one to handle the action by calling `oEvent.preventDefault()`.
|
|
2362
2356
|
*/
|
|
2363
|
-
action?: (oEvent:
|
|
2357
|
+
action?: (oEvent: Card$ActionEvent) => void;
|
|
2364
2358
|
|
|
2365
2359
|
/**
|
|
2366
2360
|
* @experimental (since 1.96)
|
|
@@ -2368,9 +2362,7 @@ declare module "sap/ui/integration/widgets/Card" {
|
|
|
2368
2362
|
* Fired when some configuration settings are changed as a result of user interaction. For example - filter
|
|
2369
2363
|
* value is changed.
|
|
2370
2364
|
*/
|
|
2371
|
-
configurationChange?: (
|
|
2372
|
-
oEvent: Event<Card$ConfigurationChangeEventParameters>
|
|
2373
|
-
) => void;
|
|
2365
|
+
configurationChange?: (oEvent: Card$ConfigurationChangeEvent) => void;
|
|
2374
2366
|
|
|
2375
2367
|
/**
|
|
2376
2368
|
* @experimental (since 1.72)
|
|
@@ -2418,12 +2410,6 @@ declare module "sap/ui/integration/widgets/Card" {
|
|
|
2418
2410
|
type?: CardActionType | keyof typeof CardActionType;
|
|
2419
2411
|
}
|
|
2420
2412
|
|
|
2421
|
-
/**
|
|
2422
|
-
* @deprecated (since 1.115.1) - This name was introduced in 1.115.0, but will be 'Card$ActionEventParameters'
|
|
2423
|
-
* in 1.115.1 and any later releases.
|
|
2424
|
-
*/
|
|
2425
|
-
export type $CardActionEventParameters = Card$ActionEventParameters;
|
|
2426
|
-
|
|
2427
2413
|
export type Card$ActionEvent = Event<Card$ActionEventParameters>;
|
|
2428
2414
|
|
|
2429
2415
|
export interface Card$ConfigurationChangeEventParameters {
|
|
@@ -2442,42 +2428,18 @@ declare module "sap/ui/integration/widgets/Card" {
|
|
|
2442
2428
|
changes?: object;
|
|
2443
2429
|
}
|
|
2444
2430
|
|
|
2445
|
-
/**
|
|
2446
|
-
* @deprecated (since 1.115.1) - This name was introduced in 1.115.0, but will be 'Card$ConfigurationChangeEventParameters'
|
|
2447
|
-
* in 1.115.1 and any later releases.
|
|
2448
|
-
*/
|
|
2449
|
-
export type $CardConfigurationChangeEventParameters = Card$ConfigurationChangeEventParameters;
|
|
2450
|
-
|
|
2451
2431
|
export type Card$ConfigurationChangeEvent = Event<Card$ConfigurationChangeEventParameters>;
|
|
2452
2432
|
|
|
2453
2433
|
export interface Card$ManifestAppliedEventParameters {}
|
|
2454
2434
|
|
|
2455
|
-
/**
|
|
2456
|
-
* @deprecated (since 1.115.1) - This name was introduced in 1.115.0, but will be 'Card$ManifestAppliedEventParameters'
|
|
2457
|
-
* in 1.115.1 and any later releases.
|
|
2458
|
-
*/
|
|
2459
|
-
export type $CardManifestAppliedEventParameters = Card$ManifestAppliedEventParameters;
|
|
2460
|
-
|
|
2461
2435
|
export type Card$ManifestAppliedEvent = Event<Card$ManifestAppliedEventParameters>;
|
|
2462
2436
|
|
|
2463
2437
|
export interface Card$ManifestReadyEventParameters {}
|
|
2464
2438
|
|
|
2465
|
-
/**
|
|
2466
|
-
* @deprecated (since 1.115.1) - This name was introduced in 1.115.0, but will be 'Card$ManifestReadyEventParameters'
|
|
2467
|
-
* in 1.115.1 and any later releases.
|
|
2468
|
-
*/
|
|
2469
|
-
export type $CardManifestReadyEventParameters = Card$ManifestReadyEventParameters;
|
|
2470
|
-
|
|
2471
2439
|
export type Card$ManifestReadyEvent = Event<Card$ManifestReadyEventParameters>;
|
|
2472
2440
|
|
|
2473
2441
|
export interface Card$StateChangedEventParameters {}
|
|
2474
2442
|
|
|
2475
|
-
/**
|
|
2476
|
-
* @deprecated (since 1.115.1) - This name was introduced in 1.115.0, but will be 'Card$StateChangedEventParameters'
|
|
2477
|
-
* in 1.115.1 and any later releases.
|
|
2478
|
-
*/
|
|
2479
|
-
export type $CardStateChangedEventParameters = Card$StateChangedEventParameters;
|
|
2480
|
-
|
|
2481
2443
|
export type Card$StateChangedEvent = Event<Card$StateChangedEventParameters>;
|
|
2482
2444
|
}
|
|
2483
2445
|
|
|
@@ -2994,10 +2956,10 @@ declare module "sap/ui/integration/Extension" {
|
|
|
2994
2956
|
|
|
2995
2957
|
import ManagedObjectMetadata from "sap/ui/base/ManagedObjectMetadata";
|
|
2996
2958
|
|
|
2997
|
-
import Event from "sap/ui/base/Event";
|
|
2998
|
-
|
|
2999
2959
|
import Control from "sap/ui/core/Control";
|
|
3000
2960
|
|
|
2961
|
+
import Event from "sap/ui/base/Event";
|
|
2962
|
+
|
|
3001
2963
|
/**
|
|
3002
2964
|
* @since 1.75
|
|
3003
2965
|
*
|
|
@@ -3268,7 +3230,7 @@ declare module "sap/ui/integration/Extension" {
|
|
|
3268
3230
|
* In consecutive order those places are: `Extension`, `Card`, `Host`. Each of them can prevent the next
|
|
3269
3231
|
* one to handle the action by calling `oEvent.preventDefault()`.
|
|
3270
3232
|
*/
|
|
3271
|
-
action?: (oEvent:
|
|
3233
|
+
action?: (oEvent: Extension$ActionEvent) => void;
|
|
3272
3234
|
}
|
|
3273
3235
|
|
|
3274
3236
|
export interface Extension$ActionEventParameters {
|
|
@@ -3298,12 +3260,6 @@ declare module "sap/ui/integration/Extension" {
|
|
|
3298
3260
|
type?: CardActionType | keyof typeof CardActionType;
|
|
3299
3261
|
}
|
|
3300
3262
|
|
|
3301
|
-
/**
|
|
3302
|
-
* @deprecated (since 1.115.1) - This name was introduced in 1.115.0, but will be 'Extension$ActionEventParameters'
|
|
3303
|
-
* in 1.115.1 and any later releases.
|
|
3304
|
-
*/
|
|
3305
|
-
export type $ExtensionActionEventParameters = Extension$ActionEventParameters;
|
|
3306
|
-
|
|
3307
3263
|
export type Extension$ActionEvent = Event<Extension$ActionEventParameters>;
|
|
3308
3264
|
}
|
|
3309
3265
|
|
|
@@ -3318,10 +3274,10 @@ declare module "sap/ui/integration/Host" {
|
|
|
3318
3274
|
|
|
3319
3275
|
import { PropertyBindingInfo } from "sap/ui/base/ManagedObject";
|
|
3320
3276
|
|
|
3321
|
-
import Event from "sap/ui/base/Event";
|
|
3322
|
-
|
|
3323
3277
|
import Control from "sap/ui/core/Control";
|
|
3324
3278
|
|
|
3279
|
+
import Event from "sap/ui/base/Event";
|
|
3280
|
+
|
|
3325
3281
|
/**
|
|
3326
3282
|
* @since 1.75
|
|
3327
3283
|
* @experimental (since 1.75)
|
|
@@ -3503,6 +3459,59 @@ declare module "sap/ui/integration/Host" {
|
|
|
3503
3459
|
*/
|
|
3504
3460
|
oListener?: object
|
|
3505
3461
|
): this;
|
|
3462
|
+
/**
|
|
3463
|
+
* @experimental (since 1.116)
|
|
3464
|
+
*
|
|
3465
|
+
* Attaches event handler `fnFunction` to the {@link #event:cardInitialized cardInitialized} event of this
|
|
3466
|
+
* `sap.ui.integration.Host`.
|
|
3467
|
+
*
|
|
3468
|
+
* When called, the context of the event handler (its `this`) will be bound to `oListener` if specified,
|
|
3469
|
+
* otherwise it will be bound to this `sap.ui.integration.Host` itself.
|
|
3470
|
+
*
|
|
3471
|
+
* Fired when the card is initially ready for the first time. Will not be fired for consecutive refreshes
|
|
3472
|
+
* or data changes.
|
|
3473
|
+
*
|
|
3474
|
+
* @returns Reference to `this` in order to allow method chaining
|
|
3475
|
+
*/
|
|
3476
|
+
attachCardInitialized(
|
|
3477
|
+
/**
|
|
3478
|
+
* An application-specific payload object that will be passed to the event handler along with the event
|
|
3479
|
+
* object when firing the event
|
|
3480
|
+
*/
|
|
3481
|
+
oData: object,
|
|
3482
|
+
/**
|
|
3483
|
+
* The function to be called when the event occurs
|
|
3484
|
+
*/
|
|
3485
|
+
fnFunction: (p1: Host$CardInitializedEvent) => void,
|
|
3486
|
+
/**
|
|
3487
|
+
* Context object to call the event handler with. Defaults to this `sap.ui.integration.Host` itself
|
|
3488
|
+
*/
|
|
3489
|
+
oListener?: object
|
|
3490
|
+
): this;
|
|
3491
|
+
/**
|
|
3492
|
+
* @experimental (since 1.116)
|
|
3493
|
+
*
|
|
3494
|
+
* Attaches event handler `fnFunction` to the {@link #event:cardInitialized cardInitialized} event of this
|
|
3495
|
+
* `sap.ui.integration.Host`.
|
|
3496
|
+
*
|
|
3497
|
+
* When called, the context of the event handler (its `this`) will be bound to `oListener` if specified,
|
|
3498
|
+
* otherwise it will be bound to this `sap.ui.integration.Host` itself.
|
|
3499
|
+
*
|
|
3500
|
+
* Fired when the card is initially ready for the first time. Will not be fired for consecutive refreshes
|
|
3501
|
+
* or data changes.
|
|
3502
|
+
*
|
|
3503
|
+
* @returns Reference to `this` in order to allow method chaining
|
|
3504
|
+
*/
|
|
3505
|
+
attachCardInitialized(
|
|
3506
|
+
/**
|
|
3507
|
+
* The function to be called when the event occurs
|
|
3508
|
+
*/
|
|
3509
|
+
fnFunction: (p1: Host$CardInitializedEvent) => void,
|
|
3510
|
+
/**
|
|
3511
|
+
* Context object to call the event handler with. Defaults to this `sap.ui.integration.Host` itself
|
|
3512
|
+
*/
|
|
3513
|
+
oListener?: object
|
|
3514
|
+
): this;
|
|
3506
3515
|
/**
|
|
3507
3516
|
* @experimental (since 1.107)
|
|
3508
3517
|
*
|
|
@@ -3675,6 +3684,26 @@ declare module "sap/ui/integration/Host" {
|
|
|
3675
3684
|
*/
|
|
3676
3685
|
oListener?: object
|
|
3677
3686
|
): this;
|
|
3687
|
+
/**
|
|
3688
|
+
* @experimental (since 1.116)
|
|
3689
|
+
*
|
|
3690
|
+
* Detaches event handler `fnFunction` from the {@link #event:cardInitialized cardInitialized} event of
|
|
3691
|
+
* this `sap.ui.integration.Host`.
|
|
3692
|
+
*
|
|
3693
|
+
* The passed function and listener object must match the ones used for event registration.
|
|
3694
|
+
*
|
|
3695
|
+
* @returns Reference to `this` in order to allow method chaining
|
|
3696
|
+
*/
|
|
3697
|
+
detachCardInitialized(
|
|
3698
|
+
/**
|
|
3699
|
+
* The function to be called, when the event occurs
|
|
3700
|
+
*/
|
|
3701
|
+
fnFunction: (p1: Host$CardInitializedEvent) => void,
|
|
3702
|
+
/**
|
|
3703
|
+
* Context object on which the given function had to be called
|
|
3704
|
+
*/
|
|
3705
|
+
oListener?: object
|
|
3706
|
+
): this;
|
|
3678
3707
|
/**
|
|
3679
3708
|
* @experimental (since 1.107)
|
|
3680
3709
|
*
|
|
@@ -3746,6 +3775,20 @@ declare module "sap/ui/integration/Host" {
|
|
|
3746
3775
|
*/
|
|
3747
3776
|
mParameters?: Host$CardConfigurationChangeEventParameters
|
|
3748
3777
|
): this;
|
|
3778
|
+
/**
|
|
3779
|
+
* @experimental (since 1.116)
|
|
3780
|
+
* @ui5-protected Do not call from applications (only from related classes in the framework)
|
|
3781
|
+
*
|
|
3782
|
+
* Fires event {@link #event:cardInitialized cardInitialized} to attached listeners.
|
|
3783
|
+
*
|
|
3784
|
+
* @returns Reference to `this` in order to allow method chaining
|
|
3785
|
+
*/
|
|
3786
|
+
fireCardInitialized(
|
|
3787
|
+
/**
|
|
3788
|
+
* Parameters to pass along with the event
|
|
3789
|
+
*/
|
|
3790
|
+
mParameters?: Host$CardInitializedEventParameters
|
|
3791
|
+
): this;
|
|
3749
3792
|
/**
|
|
3750
3793
|
* @experimental (since 1.107)
|
|
3751
3794
|
* @ui5-protected Do not call from applications (only from related classes in the framework)
|
|
@@ -3951,7 +3994,7 @@ declare module "sap/ui/integration/Host" {
|
|
|
3951
3994
|
* In consecutive order those places are: `Extension`, `Card`, `Host`. Each of them can prevent the next
|
|
3952
3995
|
* one to handle the action by calling `oEvent.preventDefault()`.
|
|
3953
3996
|
*/
|
|
3954
|
-
action?: (oEvent:
|
|
3997
|
+
action?: (oEvent: Host$ActionEvent) => void;
|
|
3955
3998
|
|
|
3956
3999
|
/**
|
|
3957
4000
|
* @experimental (since 1.96)
|
|
@@ -3960,7 +4003,7 @@ declare module "sap/ui/integration/Host" {
|
|
|
3960
4003
|
* - filter value is changed.
|
|
3961
4004
|
*/
|
|
3962
4005
|
cardConfigurationChange?: (
|
|
3963
|
-
oEvent:
|
|
4006
|
+
oEvent: Host$CardConfigurationChangeEvent
|
|
3964
4007
|
) => void;
|
|
3965
4008
|
|
|
3966
4009
|
/**
|
|
@@ -3969,16 +4012,22 @@ declare module "sap/ui/integration/Host" {
|
|
|
3969
4012
|
* Fired when the state of a card is changed. For example - the card is ready, new page is selected inside
|
|
3970
4013
|
* the card, a filter is changed or data is refreshed.
|
|
3971
4014
|
*/
|
|
3972
|
-
cardStateChanged?: (
|
|
3973
|
-
|
|
3974
|
-
|
|
4015
|
+
cardStateChanged?: (oEvent: Host$CardStateChangedEvent) => void;
|
|
4016
|
+
|
|
4017
|
+
/**
|
|
4018
|
+
* @experimental (since 1.116)
|
|
4019
|
+
*
|
|
4020
|
+
* Fired when the card is initially ready for the first time. Will not be fired for consecutive refreshes
|
|
4021
|
+
* or data changes.
|
|
4022
|
+
*/
|
|
4023
|
+
cardInitialized?: (oEvent: Host$CardInitializedEvent) => void;
|
|
3975
4024
|
|
|
3976
4025
|
/**
|
|
3977
4026
|
* @experimental (since 1.91)
|
|
3978
4027
|
*
|
|
3979
4028
|
* Fired when a message from channels like navigator.serviceWorker is received.
|
|
3980
4029
|
*/
|
|
3981
|
-
message?: (oEvent:
|
|
4030
|
+
message?: (oEvent: Host$MessageEvent) => void;
|
|
3982
4031
|
}
|
|
3983
4032
|
|
|
3984
4033
|
export interface Host$ActionEventParameters {
|
|
@@ -4008,12 +4057,6 @@ declare module "sap/ui/integration/Host" {
|
|
|
4008
4057
|
type?: CardActionType | keyof typeof CardActionType;
|
|
4009
4058
|
}
|
|
4010
4059
|
|
|
4011
|
-
/**
|
|
4012
|
-
* @deprecated (since 1.115.1) - This name was introduced in 1.115.0, but will be 'Host$ActionEventParameters'
|
|
4013
|
-
* in 1.115.1 and any later releases.
|
|
4014
|
-
*/
|
|
4015
|
-
export type $HostActionEventParameters = Host$ActionEventParameters;
|
|
4016
|
-
|
|
4017
4060
|
export type Host$ActionEvent = Event<Host$ActionEventParameters>;
|
|
4018
4061
|
|
|
4019
4062
|
export interface Host$CardConfigurationChangeEventParameters {
|
|
@@ -4037,14 +4080,17 @@ declare module "sap/ui/integration/Host" {
|
|
|
4037
4080
|
changes?: object;
|
|
4038
4081
|
}
|
|
4039
4082
|
|
|
4040
|
-
/**
|
|
4041
|
-
* @deprecated (since 1.115.1) - This name was introduced in 1.115.0, but will be 'Host$CardConfigurationChangeEventParameters'
|
|
4042
|
-
* in 1.115.1 and any later releases.
|
|
4043
|
-
*/
|
|
4044
|
-
export type $HostCardConfigurationChangeEventParameters = Host$CardConfigurationChangeEventParameters;
|
|
4045
|
-
|
|
4046
4083
|
export type Host$CardConfigurationChangeEvent = Event<Host$CardConfigurationChangeEventParameters>;
|
|
4047
4084
|
|
|
4085
|
+
export interface Host$CardInitializedEventParameters {
|
|
4086
|
+
/**
|
|
4087
|
+
* The card.
|
|
4088
|
+
*/
|
|
4089
|
+
card?: Control;
|
|
4090
|
+
}
|
|
4091
|
+
|
|
4092
|
+
export type Host$CardInitializedEvent = Event<Host$CardInitializedEventParameters>;
|
|
4093
|
+
|
|
4048
4094
|
export interface Host$CardStateChangedEventParameters {
|
|
4049
4095
|
/**
|
|
4050
4096
|
* The card the changes are fired from.
|
|
@@ -4052,24 +4098,12 @@ declare module "sap/ui/integration/Host" {
|
|
|
4052
4098
|
card?: Control;
|
|
4053
4099
|
}
|
|
4054
4100
|
|
|
4055
|
-
/**
|
|
4056
|
-
* @deprecated (since 1.115.1) - This name was introduced in 1.115.0, but will be 'Host$CardStateChangedEventParameters'
|
|
4057
|
-
* in 1.115.1 and any later releases.
|
|
4058
|
-
*/
|
|
4059
|
-
export type $HostCardStateChangedEventParameters = Host$CardStateChangedEventParameters;
|
|
4060
|
-
|
|
4061
4101
|
export type Host$CardStateChangedEvent = Event<Host$CardStateChangedEventParameters>;
|
|
4062
4102
|
|
|
4063
4103
|
export interface Host$MessageEventParameters {
|
|
4064
4104
|
data?: object;
|
|
4065
4105
|
}
|
|
4066
4106
|
|
|
4067
|
-
/**
|
|
4068
|
-
* @deprecated (since 1.115.1) - This name was introduced in 1.115.0, but will be 'Host$MessageEventParameters'
|
|
4069
|
-
* in 1.115.1 and any later releases.
|
|
4070
|
-
*/
|
|
4071
|
-
export type $HostMessageEventParameters = Host$MessageEventParameters;
|
|
4072
|
-
|
|
4073
4107
|
export type Host$MessageEvent = Event<Host$MessageEventParameters>;
|
|
4074
4108
|
}
|
|
4075
4109
|
|
package/types/sap.ui.layout.d.ts
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
// For Library Version: 1.
|
|
1
|
+
// For Library Version: 1.116.0
|
|
2
2
|
|
|
3
3
|
declare module "sap/ui/layout/library" {
|
|
4
4
|
import Control from "sap/ui/core/Control";
|
|
@@ -3621,9 +3621,7 @@ declare module "sap/ui/layout/cssgrid/GridResponsiveLayout" {
|
|
|
3621
3621
|
/**
|
|
3622
3622
|
* Fired when the currently active GridSettings changes
|
|
3623
3623
|
*/
|
|
3624
|
-
layoutChange?: (
|
|
3625
|
-
oEvent: Event<GridResponsiveLayout$LayoutChangeEventParameters>
|
|
3626
|
-
) => void;
|
|
3624
|
+
layoutChange?: (oEvent: GridResponsiveLayout$LayoutChangeEvent) => void;
|
|
3627
3625
|
}
|
|
3628
3626
|
|
|
3629
3627
|
export interface GridResponsiveLayout$LayoutChangeEventParameters {
|
|
@@ -3633,12 +3631,6 @@ declare module "sap/ui/layout/cssgrid/GridResponsiveLayout" {
|
|
|
3633
3631
|
layout?: string;
|
|
3634
3632
|
}
|
|
3635
3633
|
|
|
3636
|
-
/**
|
|
3637
|
-
* @deprecated (since 1.115.1) - This name was introduced in 1.115.0, but will be 'GridResponsiveLayout$LayoutChangeEventParameters'
|
|
3638
|
-
* in 1.115.1 and any later releases.
|
|
3639
|
-
*/
|
|
3640
|
-
export type $GridResponsiveLayoutLayoutChangeEventParameters = GridResponsiveLayout$LayoutChangeEventParameters;
|
|
3641
|
-
|
|
3642
3634
|
export type GridResponsiveLayout$LayoutChangeEvent = Event<GridResponsiveLayout$LayoutChangeEventParameters>;
|
|
3643
3635
|
}
|
|
3644
3636
|
|
|
@@ -4319,9 +4311,7 @@ declare module "sap/ui/layout/cssgrid/ResponsiveColumnLayout" {
|
|
|
4319
4311
|
/**
|
|
4320
4312
|
* Fired when the currently active layout changes
|
|
4321
4313
|
*/
|
|
4322
|
-
layoutChange?: (
|
|
4323
|
-
oEvent: Event<ResponsiveColumnLayout$LayoutChangeEventParameters>
|
|
4324
|
-
) => void;
|
|
4314
|
+
layoutChange?: (oEvent: ResponsiveColumnLayout$LayoutChangeEvent) => void;
|
|
4325
4315
|
}
|
|
4326
4316
|
|
|
4327
4317
|
export interface ResponsiveColumnLayout$LayoutChangeEventParameters {
|
|
@@ -4331,12 +4321,6 @@ declare module "sap/ui/layout/cssgrid/ResponsiveColumnLayout" {
|
|
|
4331
4321
|
layout?: string;
|
|
4332
4322
|
}
|
|
4333
4323
|
|
|
4334
|
-
/**
|
|
4335
|
-
* @deprecated (since 1.115.1) - This name was introduced in 1.115.0, but will be 'ResponsiveColumnLayout$LayoutChangeEventParameters'
|
|
4336
|
-
* in 1.115.1 and any later releases.
|
|
4337
|
-
*/
|
|
4338
|
-
export type $ResponsiveColumnLayoutLayoutChangeEventParameters = ResponsiveColumnLayout$LayoutChangeEventParameters;
|
|
4339
|
-
|
|
4340
4324
|
export type ResponsiveColumnLayout$LayoutChangeEvent = Event<ResponsiveColumnLayout$LayoutChangeEventParameters>;
|
|
4341
4325
|
}
|
|
4342
4326
|
|
|
@@ -5023,7 +5007,7 @@ declare module "sap/ui/layout/DynamicSideContent" {
|
|
|
5023
5007
|
* Fires when the current breakpoint has been changed.
|
|
5024
5008
|
*/
|
|
5025
5009
|
breakpointChanged?: (
|
|
5026
|
-
oEvent:
|
|
5010
|
+
oEvent: DynamicSideContent$BreakpointChangedEvent
|
|
5027
5011
|
) => void;
|
|
5028
5012
|
}
|
|
5029
5013
|
|
|
@@ -5031,12 +5015,6 @@ declare module "sap/ui/layout/DynamicSideContent" {
|
|
|
5031
5015
|
currentBreakpoint?: string;
|
|
5032
5016
|
}
|
|
5033
5017
|
|
|
5034
|
-
/**
|
|
5035
|
-
* @deprecated (since 1.115.1) - This name was introduced in 1.115.0, but will be 'DynamicSideContent$BreakpointChangedEventParameters'
|
|
5036
|
-
* in 1.115.1 and any later releases.
|
|
5037
|
-
*/
|
|
5038
|
-
export type $DynamicSideContentBreakpointChangedEventParameters = DynamicSideContent$BreakpointChangedEventParameters;
|
|
5039
|
-
|
|
5040
5018
|
export type DynamicSideContent$BreakpointChangedEvent = Event<DynamicSideContent$BreakpointChangedEventParameters>;
|
|
5041
5019
|
}
|
|
5042
5020
|
|
|
@@ -12508,7 +12486,7 @@ declare module "sap/ui/layout/PaneContainer" {
|
|
|
12508
12486
|
/**
|
|
12509
12487
|
* Fired when contents are resized.
|
|
12510
12488
|
*/
|
|
12511
|
-
resize?: (oEvent:
|
|
12489
|
+
resize?: (oEvent: PaneContainer$ResizeEvent) => void;
|
|
12512
12490
|
}
|
|
12513
12491
|
|
|
12514
12492
|
export interface PaneContainer$ResizeEventParameters {
|
|
@@ -12523,12 +12501,6 @@ declare module "sap/ui/layout/PaneContainer" {
|
|
|
12523
12501
|
newSizes?: float[];
|
|
12524
12502
|
}
|
|
12525
12503
|
|
|
12526
|
-
/**
|
|
12527
|
-
* @deprecated (since 1.115.1) - This name was introduced in 1.115.0, but will be 'PaneContainer$ResizeEventParameters'
|
|
12528
|
-
* in 1.115.1 and any later releases.
|
|
12529
|
-
*/
|
|
12530
|
-
export type $PaneContainerResizeEventParameters = PaneContainer$ResizeEventParameters;
|
|
12531
|
-
|
|
12532
12504
|
export type PaneContainer$ResizeEvent = Event<PaneContainer$ResizeEventParameters>;
|
|
12533
12505
|
}
|
|
12534
12506
|
|
|
@@ -13894,7 +13866,7 @@ declare module "sap/ui/layout/Splitter" {
|
|
|
13894
13866
|
/**
|
|
13895
13867
|
* Event is fired when contents are resized.
|
|
13896
13868
|
*/
|
|
13897
|
-
resize?: (oEvent:
|
|
13869
|
+
resize?: (oEvent: Splitter$ResizeEvent) => void;
|
|
13898
13870
|
}
|
|
13899
13871
|
|
|
13900
13872
|
export interface Splitter$ResizeEventParameters {
|
|
@@ -13915,12 +13887,6 @@ declare module "sap/ui/layout/Splitter" {
|
|
|
13915
13887
|
newSizes?: int[];
|
|
13916
13888
|
}
|
|
13917
13889
|
|
|
13918
|
-
/**
|
|
13919
|
-
* @deprecated (since 1.115.1) - This name was introduced in 1.115.0, but will be 'Splitter$ResizeEventParameters'
|
|
13920
|
-
* in 1.115.1 and any later releases.
|
|
13921
|
-
*/
|
|
13922
|
-
export type $SplitterResizeEventParameters = Splitter$ResizeEventParameters;
|
|
13923
|
-
|
|
13924
13890
|
export type Splitter$ResizeEvent = Event<Splitter$ResizeEventParameters>;
|
|
13925
13891
|
}
|
|
13926
13892
|
|