@openui5/types 1.115.1 → 1.117.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +6 -5
- package/package.json +1 -1
- package/types/index.d.ts +9 -3
- package/types/sap.f.d.ts +196 -276
- package/types/sap.m.d.ts +2202 -2899
- package/types/sap.tnt.d.ts +64 -29
- package/types/sap.ui.codeeditor.d.ts +11 -17
- package/types/sap.ui.commons.d.ts +278 -422
- package/types/sap.ui.core.d.ts +1160 -1090
- package/types/sap.ui.dt.d.ts +1 -1
- package/types/sap.ui.fl.d.ts +24 -74
- package/types/sap.ui.integration.d.ts +192 -100
- package/types/sap.ui.layout.d.ts +100 -69
- package/types/sap.ui.mdc.d.ts +1100 -913
- package/types/sap.ui.rta.d.ts +1 -1
- package/types/sap.ui.suite.d.ts +9 -15
- package/types/sap.ui.support.d.ts +1 -1
- package/types/sap.ui.table.d.ts +140 -192
- package/types/sap.ui.testrecorder.d.ts +1 -1
- package/types/sap.ui.unified.d.ts +277 -501
- package/types/sap.ui.ux3.d.ts +263 -504
- package/types/sap.ui.webc.common.d.ts +1 -1
- package/types/sap.ui.webc.fiori.d.ts +864 -342
- package/types/sap.ui.webc.main.d.ts +4337 -1135
- package/types/sap.uxap.d.ts +51 -91
package/types/sap.uxap.d.ts
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
// For Library Version: 1.
|
|
1
|
+
// For Library Version: 1.117.0
|
|
2
2
|
|
|
3
3
|
declare module "sap/uxap/library" {
|
|
4
4
|
/**
|
|
@@ -933,7 +933,7 @@ declare module "sap/uxap/BlockBase" {
|
|
|
933
933
|
*
|
|
934
934
|
* Fired when an aggregated view is instantiated.
|
|
935
935
|
*/
|
|
936
|
-
viewInit?: (oEvent:
|
|
936
|
+
viewInit?: (oEvent: BlockBase$ViewInitEvent) => void;
|
|
937
937
|
}
|
|
938
938
|
|
|
939
939
|
export interface BlockBase$ViewInitEventParameters {
|
|
@@ -943,13 +943,10 @@ declare module "sap/uxap/BlockBase" {
|
|
|
943
943
|
view?: View;
|
|
944
944
|
}
|
|
945
945
|
|
|
946
|
-
|
|
947
|
-
|
|
948
|
-
|
|
949
|
-
|
|
950
|
-
export type $BlockBaseViewInitEventParameters = BlockBase$ViewInitEventParameters;
|
|
951
|
-
|
|
952
|
-
export type BlockBase$ViewInitEvent = Event<BlockBase$ViewInitEventParameters>;
|
|
946
|
+
export type BlockBase$ViewInitEvent = Event<
|
|
947
|
+
BlockBase$ViewInitEventParameters,
|
|
948
|
+
BlockBase
|
|
949
|
+
>;
|
|
953
950
|
}
|
|
954
951
|
|
|
955
952
|
declare module "sap/uxap/BreadCrumbs" {
|
|
@@ -3483,22 +3480,18 @@ declare module "sap/uxap/ObjectPageHeader" {
|
|
|
3483
3480
|
* The event is fired when the objectPage header title selector (down-arrow) is pressed
|
|
3484
3481
|
*/
|
|
3485
3482
|
titleSelectorPress?: (
|
|
3486
|
-
oEvent:
|
|
3483
|
+
oEvent: ObjectPageHeader$TitleSelectorPressEvent
|
|
3487
3484
|
) => void;
|
|
3488
3485
|
|
|
3489
3486
|
/**
|
|
3490
3487
|
* The event is fired when the Locked button is pressed
|
|
3491
3488
|
*/
|
|
3492
|
-
markLockedPress?: (
|
|
3493
|
-
oEvent: Event<ObjectPageHeader$MarkLockedPressEventParameters>
|
|
3494
|
-
) => void;
|
|
3489
|
+
markLockedPress?: (oEvent: ObjectPageHeader$MarkLockedPressEvent) => void;
|
|
3495
3490
|
|
|
3496
3491
|
/**
|
|
3497
3492
|
* The event is fired when the unsaved changes button is pressed
|
|
3498
3493
|
*/
|
|
3499
|
-
markChangesPress?: (
|
|
3500
|
-
oEvent: Event<ObjectPageHeader$MarkChangesPressEventParameters>
|
|
3501
|
-
) => void;
|
|
3494
|
+
markChangesPress?: (oEvent: ObjectPageHeader$MarkChangesPressEvent) => void;
|
|
3502
3495
|
}
|
|
3503
3496
|
|
|
3504
3497
|
export interface ObjectPageHeader$MarkChangesPressEventParameters {
|
|
@@ -3508,13 +3501,10 @@ declare module "sap/uxap/ObjectPageHeader" {
|
|
|
3508
3501
|
domRef?: string;
|
|
3509
3502
|
}
|
|
3510
3503
|
|
|
3511
|
-
|
|
3512
|
-
|
|
3513
|
-
|
|
3514
|
-
|
|
3515
|
-
export type $ObjectPageHeaderMarkChangesPressEventParameters = ObjectPageHeader$MarkChangesPressEventParameters;
|
|
3516
|
-
|
|
3517
|
-
export type ObjectPageHeader$MarkChangesPressEvent = Event<ObjectPageHeader$MarkChangesPressEventParameters>;
|
|
3504
|
+
export type ObjectPageHeader$MarkChangesPressEvent = Event<
|
|
3505
|
+
ObjectPageHeader$MarkChangesPressEventParameters,
|
|
3506
|
+
ObjectPageHeader
|
|
3507
|
+
>;
|
|
3518
3508
|
|
|
3519
3509
|
export interface ObjectPageHeader$MarkLockedPressEventParameters {
|
|
3520
3510
|
/**
|
|
@@ -3523,13 +3513,10 @@ declare module "sap/uxap/ObjectPageHeader" {
|
|
|
3523
3513
|
domRef?: string;
|
|
3524
3514
|
}
|
|
3525
3515
|
|
|
3526
|
-
|
|
3527
|
-
|
|
3528
|
-
|
|
3529
|
-
|
|
3530
|
-
export type $ObjectPageHeaderMarkLockedPressEventParameters = ObjectPageHeader$MarkLockedPressEventParameters;
|
|
3531
|
-
|
|
3532
|
-
export type ObjectPageHeader$MarkLockedPressEvent = Event<ObjectPageHeader$MarkLockedPressEventParameters>;
|
|
3516
|
+
export type ObjectPageHeader$MarkLockedPressEvent = Event<
|
|
3517
|
+
ObjectPageHeader$MarkLockedPressEventParameters,
|
|
3518
|
+
ObjectPageHeader
|
|
3519
|
+
>;
|
|
3533
3520
|
|
|
3534
3521
|
export interface ObjectPageHeader$TitleSelectorPressEventParameters {
|
|
3535
3522
|
/**
|
|
@@ -3538,13 +3525,10 @@ declare module "sap/uxap/ObjectPageHeader" {
|
|
|
3538
3525
|
domRef?: string;
|
|
3539
3526
|
}
|
|
3540
3527
|
|
|
3541
|
-
|
|
3542
|
-
|
|
3543
|
-
|
|
3544
|
-
|
|
3545
|
-
export type $ObjectPageHeaderTitleSelectorPressEventParameters = ObjectPageHeader$TitleSelectorPressEventParameters;
|
|
3546
|
-
|
|
3547
|
-
export type ObjectPageHeader$TitleSelectorPressEvent = Event<ObjectPageHeader$TitleSelectorPressEventParameters>;
|
|
3528
|
+
export type ObjectPageHeader$TitleSelectorPressEvent = Event<
|
|
3529
|
+
ObjectPageHeader$TitleSelectorPressEventParameters,
|
|
3530
|
+
ObjectPageHeader
|
|
3531
|
+
>;
|
|
3548
3532
|
}
|
|
3549
3533
|
|
|
3550
3534
|
declare module "sap/uxap/ObjectPageHeaderActionButton" {
|
|
@@ -5138,7 +5122,7 @@ declare module "sap/uxap/ObjectPageLayout" {
|
|
|
5138
5122
|
*/
|
|
5139
5123
|
getPreserveHeaderStateOnScroll(): boolean;
|
|
5140
5124
|
/**
|
|
5141
|
-
* Returns the `sap.ui.core.ScrollEnablement` delegate which is used with this control.
|
|
5125
|
+
* Returns the `sap.ui.core.delegate.ScrollEnablement` delegate which is used with this control.
|
|
5142
5126
|
*
|
|
5143
5127
|
* @returns The scroll delegate instance
|
|
5144
5128
|
*/
|
|
@@ -6254,24 +6238,20 @@ declare module "sap/uxap/ObjectPageLayout" {
|
|
|
6254
6238
|
* The event is fired when the `headerContentPinned` property is changed via user interaction.
|
|
6255
6239
|
*/
|
|
6256
6240
|
headerContentPinnedStateChange?: (
|
|
6257
|
-
oEvent:
|
|
6241
|
+
oEvent: ObjectPageLayout$HeaderContentPinnedStateChangeEvent
|
|
6258
6242
|
) => void;
|
|
6259
6243
|
|
|
6260
6244
|
/**
|
|
6261
6245
|
* The event is fired when the Anchor bar is switched from moving to fixed or the other way round.
|
|
6262
6246
|
*/
|
|
6263
|
-
toggleAnchorBar?: (
|
|
6264
|
-
oEvent: Event<ObjectPageLayout$ToggleAnchorBarEventParameters>
|
|
6265
|
-
) => void;
|
|
6247
|
+
toggleAnchorBar?: (oEvent: ObjectPageLayout$ToggleAnchorBarEvent) => void;
|
|
6266
6248
|
|
|
6267
6249
|
/**
|
|
6268
6250
|
* @since 1.73
|
|
6269
6251
|
*
|
|
6270
6252
|
* Fired when the current section is changed by scrolling.
|
|
6271
6253
|
*/
|
|
6272
|
-
sectionChange?: (
|
|
6273
|
-
oEvent: Event<ObjectPageLayout$SectionChangeEventParameters>
|
|
6274
|
-
) => void;
|
|
6254
|
+
sectionChange?: (oEvent: ObjectPageLayout$SectionChangeEvent) => void;
|
|
6275
6255
|
|
|
6276
6256
|
/**
|
|
6277
6257
|
* The event is fired when the Edit Header button is pressed
|
|
@@ -6283,9 +6263,7 @@ declare module "sap/uxap/ObjectPageLayout" {
|
|
|
6283
6263
|
*
|
|
6284
6264
|
* The event is fired when the selected section is changed using the navigation.
|
|
6285
6265
|
*/
|
|
6286
|
-
navigate?: (
|
|
6287
|
-
oEvent: Event<ObjectPageLayout$NavigateEventParameters>
|
|
6288
|
-
) => void;
|
|
6266
|
+
navigate?: (oEvent: ObjectPageLayout$NavigateEvent) => void;
|
|
6289
6267
|
|
|
6290
6268
|
/**
|
|
6291
6269
|
* @since 1.77
|
|
@@ -6293,19 +6271,16 @@ declare module "sap/uxap/ObjectPageLayout" {
|
|
|
6293
6271
|
* Fired when the visibility of subsections is changed.
|
|
6294
6272
|
*/
|
|
6295
6273
|
subSectionVisibilityChange?: (
|
|
6296
|
-
oEvent:
|
|
6274
|
+
oEvent: ObjectPageLayout$SubSectionVisibilityChangeEvent
|
|
6297
6275
|
) => void;
|
|
6298
6276
|
}
|
|
6299
6277
|
|
|
6300
6278
|
export interface ObjectPageLayout$EditHeaderButtonPressEventParameters {}
|
|
6301
6279
|
|
|
6302
|
-
|
|
6303
|
-
|
|
6304
|
-
|
|
6305
|
-
|
|
6306
|
-
export type $ObjectPageLayoutEditHeaderButtonPressEventParameters = ObjectPageLayout$EditHeaderButtonPressEventParameters;
|
|
6307
|
-
|
|
6308
|
-
export type ObjectPageLayout$EditHeaderButtonPressEvent = Event<ObjectPageLayout$EditHeaderButtonPressEventParameters>;
|
|
6280
|
+
export type ObjectPageLayout$EditHeaderButtonPressEvent = Event<
|
|
6281
|
+
ObjectPageLayout$EditHeaderButtonPressEventParameters,
|
|
6282
|
+
ObjectPageLayout
|
|
6283
|
+
>;
|
|
6309
6284
|
|
|
6310
6285
|
export interface ObjectPageLayout$HeaderContentPinnedStateChangeEventParameters {
|
|
6311
6286
|
/**
|
|
@@ -6314,13 +6289,10 @@ declare module "sap/uxap/ObjectPageLayout" {
|
|
|
6314
6289
|
pinned?: boolean;
|
|
6315
6290
|
}
|
|
6316
6291
|
|
|
6317
|
-
|
|
6318
|
-
|
|
6319
|
-
|
|
6320
|
-
|
|
6321
|
-
export type $ObjectPageLayoutHeaderContentPinnedStateChangeEventParameters = ObjectPageLayout$HeaderContentPinnedStateChangeEventParameters;
|
|
6322
|
-
|
|
6323
|
-
export type ObjectPageLayout$HeaderContentPinnedStateChangeEvent = Event<ObjectPageLayout$HeaderContentPinnedStateChangeEventParameters>;
|
|
6292
|
+
export type ObjectPageLayout$HeaderContentPinnedStateChangeEvent = Event<
|
|
6293
|
+
ObjectPageLayout$HeaderContentPinnedStateChangeEventParameters,
|
|
6294
|
+
ObjectPageLayout
|
|
6295
|
+
>;
|
|
6324
6296
|
|
|
6325
6297
|
export interface ObjectPageLayout$NavigateEventParameters {
|
|
6326
6298
|
/**
|
|
@@ -6334,13 +6306,10 @@ declare module "sap/uxap/ObjectPageLayout" {
|
|
|
6334
6306
|
subSection?: ObjectPageSubSection;
|
|
6335
6307
|
}
|
|
6336
6308
|
|
|
6337
|
-
|
|
6338
|
-
|
|
6339
|
-
|
|
6340
|
-
|
|
6341
|
-
export type $ObjectPageLayoutNavigateEventParameters = ObjectPageLayout$NavigateEventParameters;
|
|
6342
|
-
|
|
6343
|
-
export type ObjectPageLayout$NavigateEvent = Event<ObjectPageLayout$NavigateEventParameters>;
|
|
6309
|
+
export type ObjectPageLayout$NavigateEvent = Event<
|
|
6310
|
+
ObjectPageLayout$NavigateEventParameters,
|
|
6311
|
+
ObjectPageLayout
|
|
6312
|
+
>;
|
|
6344
6313
|
|
|
6345
6314
|
export interface ObjectPageLayout$SectionChangeEventParameters {
|
|
6346
6315
|
/**
|
|
@@ -6354,13 +6323,10 @@ declare module "sap/uxap/ObjectPageLayout" {
|
|
|
6354
6323
|
subSection?: ObjectPageSubSection;
|
|
6355
6324
|
}
|
|
6356
6325
|
|
|
6357
|
-
|
|
6358
|
-
|
|
6359
|
-
|
|
6360
|
-
|
|
6361
|
-
export type $ObjectPageLayoutSectionChangeEventParameters = ObjectPageLayout$SectionChangeEventParameters;
|
|
6362
|
-
|
|
6363
|
-
export type ObjectPageLayout$SectionChangeEvent = Event<ObjectPageLayout$SectionChangeEventParameters>;
|
|
6326
|
+
export type ObjectPageLayout$SectionChangeEvent = Event<
|
|
6327
|
+
ObjectPageLayout$SectionChangeEventParameters,
|
|
6328
|
+
ObjectPageLayout
|
|
6329
|
+
>;
|
|
6364
6330
|
|
|
6365
6331
|
export interface ObjectPageLayout$SubSectionVisibilityChangeEventParameters {
|
|
6366
6332
|
/**
|
|
@@ -6369,13 +6335,10 @@ declare module "sap/uxap/ObjectPageLayout" {
|
|
|
6369
6335
|
visibleSubSections?: object;
|
|
6370
6336
|
}
|
|
6371
6337
|
|
|
6372
|
-
|
|
6373
|
-
|
|
6374
|
-
|
|
6375
|
-
|
|
6376
|
-
export type $ObjectPageLayoutSubSectionVisibilityChangeEventParameters = ObjectPageLayout$SubSectionVisibilityChangeEventParameters;
|
|
6377
|
-
|
|
6378
|
-
export type ObjectPageLayout$SubSectionVisibilityChangeEvent = Event<ObjectPageLayout$SubSectionVisibilityChangeEventParameters>;
|
|
6338
|
+
export type ObjectPageLayout$SubSectionVisibilityChangeEvent = Event<
|
|
6339
|
+
ObjectPageLayout$SubSectionVisibilityChangeEventParameters,
|
|
6340
|
+
ObjectPageLayout
|
|
6341
|
+
>;
|
|
6379
6342
|
|
|
6380
6343
|
export interface ObjectPageLayout$ToggleAnchorBarEventParameters {
|
|
6381
6344
|
/**
|
|
@@ -6385,13 +6348,10 @@ declare module "sap/uxap/ObjectPageLayout" {
|
|
|
6385
6348
|
fixed?: boolean;
|
|
6386
6349
|
}
|
|
6387
6350
|
|
|
6388
|
-
|
|
6389
|
-
|
|
6390
|
-
|
|
6391
|
-
|
|
6392
|
-
export type $ObjectPageLayoutToggleAnchorBarEventParameters = ObjectPageLayout$ToggleAnchorBarEventParameters;
|
|
6393
|
-
|
|
6394
|
-
export type ObjectPageLayout$ToggleAnchorBarEvent = Event<ObjectPageLayout$ToggleAnchorBarEventParameters>;
|
|
6351
|
+
export type ObjectPageLayout$ToggleAnchorBarEvent = Event<
|
|
6352
|
+
ObjectPageLayout$ToggleAnchorBarEventParameters,
|
|
6353
|
+
ObjectPageLayout
|
|
6354
|
+
>;
|
|
6395
6355
|
}
|
|
6396
6356
|
|
|
6397
6357
|
declare module "sap/uxap/ObjectPageLazyLoader" {
|