@sapui5/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 +5 -3
- package/package.json +1 -1
- package/types/index.d.ts +9 -3
- package/types/sap.apf.d.ts +47 -40
- package/types/sap.ca.ui.d.ts +171 -161
- package/types/sap.chart.d.ts +3 -45
- package/types/sap.collaboration.d.ts +31 -38
- package/types/sap.esh.search.ui.d.ts +112 -109
- package/types/sap.f.d.ts +67 -241
- package/types/sap.fe.core.d.ts +132 -6
- package/types/sap.fe.macros.d.ts +24 -48
- package/types/sap.fe.placeholder.d.ts +1 -1
- package/types/sap.fe.test.d.ts +1 -1
- package/types/sap.fe.tools.d.ts +1 -1
- package/types/sap.feedback.ui.d.ts +1 -1
- package/types/sap.gantt.d.ts +1223 -1502
- package/types/sap.insights.d.ts +3 -3
- package/types/sap.landvisz.d.ts +73 -67
- package/types/sap.m.d.ts +411 -2498
- package/types/sap.makit.d.ts +1 -37
- package/types/sap.me.d.ts +6 -60
- package/types/sap.ndc.d.ts +22 -25
- package/types/sap.ovp.d.ts +25 -8
- package/types/sap.rules.ui.d.ts +38 -51
- package/types/sap.sac.df.d.ts +11 -12
- package/types/sap.suite.ui.commons.d.ts +1180 -1233
- package/types/sap.suite.ui.generic.template.d.ts +1 -7
- package/types/sap.suite.ui.microchart.d.ts +4 -106
- 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.comp.d.ts +289 -782
- package/types/sap.ui.core.d.ts +283 -883
- package/types/sap.ui.dt.d.ts +1 -1
- package/types/sap.ui.export.d.ts +1 -13
- package/types/sap.ui.fl.d.ts +4 -69
- package/types/sap.ui.generic.app.d.ts +39 -43
- package/types/sap.ui.generic.template.d.ts +1 -1
- 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.richtexteditor.d.ts +2 -26
- 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.vbm.d.ts +568 -541
- package/types/sap.ui.vk.d.ts +1511 -1834
- package/types/sap.ui.vtm.d.ts +335 -329
- 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.uiext.inbox.d.ts +1 -79
- package/types/sap.ushell.d.ts +274 -887
- package/types/sap.ushell_abap.d.ts +1 -1
- package/types/sap.uxap.d.ts +10 -80
- package/types/sap.viz.d.ts +3 -823
- package/types/sap.webanalytics.core.d.ts +1 -1
- package/types/sap.zen.commons.d.ts +7 -12
- package/types/sap.zen.crosstab.d.ts +4 -7
- package/types/sap.zen.dsh.d.ts +133 -157
package/types/sap.uxap.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/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,12 +943,6 @@ declare module "sap/uxap/BlockBase" {
|
|
|
943
943
|
view?: View;
|
|
944
944
|
}
|
|
945
945
|
|
|
946
|
-
/**
|
|
947
|
-
* @deprecated (since 1.115.1) - This name was introduced in 1.115.0, but will be 'BlockBase$ViewInitEventParameters'
|
|
948
|
-
* in 1.115.1 and any later releases.
|
|
949
|
-
*/
|
|
950
|
-
export type $BlockBaseViewInitEventParameters = BlockBase$ViewInitEventParameters;
|
|
951
|
-
|
|
952
946
|
export type BlockBase$ViewInitEvent = Event<BlockBase$ViewInitEventParameters>;
|
|
953
947
|
}
|
|
954
948
|
|
|
@@ -3483,22 +3477,18 @@ declare module "sap/uxap/ObjectPageHeader" {
|
|
|
3483
3477
|
* The event is fired when the objectPage header title selector (down-arrow) is pressed
|
|
3484
3478
|
*/
|
|
3485
3479
|
titleSelectorPress?: (
|
|
3486
|
-
oEvent:
|
|
3480
|
+
oEvent: ObjectPageHeader$TitleSelectorPressEvent
|
|
3487
3481
|
) => void;
|
|
3488
3482
|
|
|
3489
3483
|
/**
|
|
3490
3484
|
* The event is fired when the Locked button is pressed
|
|
3491
3485
|
*/
|
|
3492
|
-
markLockedPress?: (
|
|
3493
|
-
oEvent: Event<ObjectPageHeader$MarkLockedPressEventParameters>
|
|
3494
|
-
) => void;
|
|
3486
|
+
markLockedPress?: (oEvent: ObjectPageHeader$MarkLockedPressEvent) => void;
|
|
3495
3487
|
|
|
3496
3488
|
/**
|
|
3497
3489
|
* The event is fired when the unsaved changes button is pressed
|
|
3498
3490
|
*/
|
|
3499
|
-
markChangesPress?: (
|
|
3500
|
-
oEvent: Event<ObjectPageHeader$MarkChangesPressEventParameters>
|
|
3501
|
-
) => void;
|
|
3491
|
+
markChangesPress?: (oEvent: ObjectPageHeader$MarkChangesPressEvent) => void;
|
|
3502
3492
|
}
|
|
3503
3493
|
|
|
3504
3494
|
export interface ObjectPageHeader$MarkChangesPressEventParameters {
|
|
@@ -3508,12 +3498,6 @@ declare module "sap/uxap/ObjectPageHeader" {
|
|
|
3508
3498
|
domRef?: string;
|
|
3509
3499
|
}
|
|
3510
3500
|
|
|
3511
|
-
/**
|
|
3512
|
-
* @deprecated (since 1.115.1) - This name was introduced in 1.115.0, but will be 'ObjectPageHeader$MarkChangesPressEventParameters'
|
|
3513
|
-
* in 1.115.1 and any later releases.
|
|
3514
|
-
*/
|
|
3515
|
-
export type $ObjectPageHeaderMarkChangesPressEventParameters = ObjectPageHeader$MarkChangesPressEventParameters;
|
|
3516
|
-
|
|
3517
3501
|
export type ObjectPageHeader$MarkChangesPressEvent = Event<ObjectPageHeader$MarkChangesPressEventParameters>;
|
|
3518
3502
|
|
|
3519
3503
|
export interface ObjectPageHeader$MarkLockedPressEventParameters {
|
|
@@ -3523,12 +3507,6 @@ declare module "sap/uxap/ObjectPageHeader" {
|
|
|
3523
3507
|
domRef?: string;
|
|
3524
3508
|
}
|
|
3525
3509
|
|
|
3526
|
-
/**
|
|
3527
|
-
* @deprecated (since 1.115.1) - This name was introduced in 1.115.0, but will be 'ObjectPageHeader$MarkLockedPressEventParameters'
|
|
3528
|
-
* in 1.115.1 and any later releases.
|
|
3529
|
-
*/
|
|
3530
|
-
export type $ObjectPageHeaderMarkLockedPressEventParameters = ObjectPageHeader$MarkLockedPressEventParameters;
|
|
3531
|
-
|
|
3532
3510
|
export type ObjectPageHeader$MarkLockedPressEvent = Event<ObjectPageHeader$MarkLockedPressEventParameters>;
|
|
3533
3511
|
|
|
3534
3512
|
export interface ObjectPageHeader$TitleSelectorPressEventParameters {
|
|
@@ -3538,12 +3516,6 @@ declare module "sap/uxap/ObjectPageHeader" {
|
|
|
3538
3516
|
domRef?: string;
|
|
3539
3517
|
}
|
|
3540
3518
|
|
|
3541
|
-
/**
|
|
3542
|
-
* @deprecated (since 1.115.1) - This name was introduced in 1.115.0, but will be 'ObjectPageHeader$TitleSelectorPressEventParameters'
|
|
3543
|
-
* in 1.115.1 and any later releases.
|
|
3544
|
-
*/
|
|
3545
|
-
export type $ObjectPageHeaderTitleSelectorPressEventParameters = ObjectPageHeader$TitleSelectorPressEventParameters;
|
|
3546
|
-
|
|
3547
3519
|
export type ObjectPageHeader$TitleSelectorPressEvent = Event<ObjectPageHeader$TitleSelectorPressEventParameters>;
|
|
3548
3520
|
}
|
|
3549
3521
|
|
|
@@ -6254,24 +6226,20 @@ declare module "sap/uxap/ObjectPageLayout" {
|
|
|
6254
6226
|
* The event is fired when the `headerContentPinned` property is changed via user interaction.
|
|
6255
6227
|
*/
|
|
6256
6228
|
headerContentPinnedStateChange?: (
|
|
6257
|
-
oEvent:
|
|
6229
|
+
oEvent: ObjectPageLayout$HeaderContentPinnedStateChangeEvent
|
|
6258
6230
|
) => void;
|
|
6259
6231
|
|
|
6260
6232
|
/**
|
|
6261
6233
|
* The event is fired when the Anchor bar is switched from moving to fixed or the other way round.
|
|
6262
6234
|
*/
|
|
6263
|
-
toggleAnchorBar?: (
|
|
6264
|
-
oEvent: Event<ObjectPageLayout$ToggleAnchorBarEventParameters>
|
|
6265
|
-
) => void;
|
|
6235
|
+
toggleAnchorBar?: (oEvent: ObjectPageLayout$ToggleAnchorBarEvent) => void;
|
|
6266
6236
|
|
|
6267
6237
|
/**
|
|
6268
6238
|
* @since 1.73
|
|
6269
6239
|
*
|
|
6270
6240
|
* Fired when the current section is changed by scrolling.
|
|
6271
6241
|
*/
|
|
6272
|
-
sectionChange?: (
|
|
6273
|
-
oEvent: Event<ObjectPageLayout$SectionChangeEventParameters>
|
|
6274
|
-
) => void;
|
|
6242
|
+
sectionChange?: (oEvent: ObjectPageLayout$SectionChangeEvent) => void;
|
|
6275
6243
|
|
|
6276
6244
|
/**
|
|
6277
6245
|
* The event is fired when the Edit Header button is pressed
|
|
@@ -6283,9 +6251,7 @@ declare module "sap/uxap/ObjectPageLayout" {
|
|
|
6283
6251
|
*
|
|
6284
6252
|
* The event is fired when the selected section is changed using the navigation.
|
|
6285
6253
|
*/
|
|
6286
|
-
navigate?: (
|
|
6287
|
-
oEvent: Event<ObjectPageLayout$NavigateEventParameters>
|
|
6288
|
-
) => void;
|
|
6254
|
+
navigate?: (oEvent: ObjectPageLayout$NavigateEvent) => void;
|
|
6289
6255
|
|
|
6290
6256
|
/**
|
|
6291
6257
|
* @since 1.77
|
|
@@ -6293,18 +6259,12 @@ declare module "sap/uxap/ObjectPageLayout" {
|
|
|
6293
6259
|
* Fired when the visibility of subsections is changed.
|
|
6294
6260
|
*/
|
|
6295
6261
|
subSectionVisibilityChange?: (
|
|
6296
|
-
oEvent:
|
|
6262
|
+
oEvent: ObjectPageLayout$SubSectionVisibilityChangeEvent
|
|
6297
6263
|
) => void;
|
|
6298
6264
|
}
|
|
6299
6265
|
|
|
6300
6266
|
export interface ObjectPageLayout$EditHeaderButtonPressEventParameters {}
|
|
6301
6267
|
|
|
6302
|
-
/**
|
|
6303
|
-
* @deprecated (since 1.115.1) - This name was introduced in 1.115.0, but will be 'ObjectPageLayout$EditHeaderButtonPressEventParameters'
|
|
6304
|
-
* in 1.115.1 and any later releases.
|
|
6305
|
-
*/
|
|
6306
|
-
export type $ObjectPageLayoutEditHeaderButtonPressEventParameters = ObjectPageLayout$EditHeaderButtonPressEventParameters;
|
|
6307
|
-
|
|
6308
6268
|
export type ObjectPageLayout$EditHeaderButtonPressEvent = Event<ObjectPageLayout$EditHeaderButtonPressEventParameters>;
|
|
6309
6269
|
|
|
6310
6270
|
export interface ObjectPageLayout$HeaderContentPinnedStateChangeEventParameters {
|
|
@@ -6314,12 +6274,6 @@ declare module "sap/uxap/ObjectPageLayout" {
|
|
|
6314
6274
|
pinned?: boolean;
|
|
6315
6275
|
}
|
|
6316
6276
|
|
|
6317
|
-
/**
|
|
6318
|
-
* @deprecated (since 1.115.1) - This name was introduced in 1.115.0, but will be 'ObjectPageLayout$HeaderContentPinnedStateChangeEventParameters'
|
|
6319
|
-
* in 1.115.1 and any later releases.
|
|
6320
|
-
*/
|
|
6321
|
-
export type $ObjectPageLayoutHeaderContentPinnedStateChangeEventParameters = ObjectPageLayout$HeaderContentPinnedStateChangeEventParameters;
|
|
6322
|
-
|
|
6323
6277
|
export type ObjectPageLayout$HeaderContentPinnedStateChangeEvent = Event<ObjectPageLayout$HeaderContentPinnedStateChangeEventParameters>;
|
|
6324
6278
|
|
|
6325
6279
|
export interface ObjectPageLayout$NavigateEventParameters {
|
|
@@ -6334,12 +6288,6 @@ declare module "sap/uxap/ObjectPageLayout" {
|
|
|
6334
6288
|
subSection?: ObjectPageSubSection;
|
|
6335
6289
|
}
|
|
6336
6290
|
|
|
6337
|
-
/**
|
|
6338
|
-
* @deprecated (since 1.115.1) - This name was introduced in 1.115.0, but will be 'ObjectPageLayout$NavigateEventParameters'
|
|
6339
|
-
* in 1.115.1 and any later releases.
|
|
6340
|
-
*/
|
|
6341
|
-
export type $ObjectPageLayoutNavigateEventParameters = ObjectPageLayout$NavigateEventParameters;
|
|
6342
|
-
|
|
6343
6291
|
export type ObjectPageLayout$NavigateEvent = Event<ObjectPageLayout$NavigateEventParameters>;
|
|
6344
6292
|
|
|
6345
6293
|
export interface ObjectPageLayout$SectionChangeEventParameters {
|
|
@@ -6354,12 +6302,6 @@ declare module "sap/uxap/ObjectPageLayout" {
|
|
|
6354
6302
|
subSection?: ObjectPageSubSection;
|
|
6355
6303
|
}
|
|
6356
6304
|
|
|
6357
|
-
/**
|
|
6358
|
-
* @deprecated (since 1.115.1) - This name was introduced in 1.115.0, but will be 'ObjectPageLayout$SectionChangeEventParameters'
|
|
6359
|
-
* in 1.115.1 and any later releases.
|
|
6360
|
-
*/
|
|
6361
|
-
export type $ObjectPageLayoutSectionChangeEventParameters = ObjectPageLayout$SectionChangeEventParameters;
|
|
6362
|
-
|
|
6363
6305
|
export type ObjectPageLayout$SectionChangeEvent = Event<ObjectPageLayout$SectionChangeEventParameters>;
|
|
6364
6306
|
|
|
6365
6307
|
export interface ObjectPageLayout$SubSectionVisibilityChangeEventParameters {
|
|
@@ -6369,12 +6311,6 @@ declare module "sap/uxap/ObjectPageLayout" {
|
|
|
6369
6311
|
visibleSubSections?: object;
|
|
6370
6312
|
}
|
|
6371
6313
|
|
|
6372
|
-
/**
|
|
6373
|
-
* @deprecated (since 1.115.1) - This name was introduced in 1.115.0, but will be 'ObjectPageLayout$SubSectionVisibilityChangeEventParameters'
|
|
6374
|
-
* in 1.115.1 and any later releases.
|
|
6375
|
-
*/
|
|
6376
|
-
export type $ObjectPageLayoutSubSectionVisibilityChangeEventParameters = ObjectPageLayout$SubSectionVisibilityChangeEventParameters;
|
|
6377
|
-
|
|
6378
6314
|
export type ObjectPageLayout$SubSectionVisibilityChangeEvent = Event<ObjectPageLayout$SubSectionVisibilityChangeEventParameters>;
|
|
6379
6315
|
|
|
6380
6316
|
export interface ObjectPageLayout$ToggleAnchorBarEventParameters {
|
|
@@ -6385,12 +6321,6 @@ declare module "sap/uxap/ObjectPageLayout" {
|
|
|
6385
6321
|
fixed?: boolean;
|
|
6386
6322
|
}
|
|
6387
6323
|
|
|
6388
|
-
/**
|
|
6389
|
-
* @deprecated (since 1.115.1) - This name was introduced in 1.115.0, but will be 'ObjectPageLayout$ToggleAnchorBarEventParameters'
|
|
6390
|
-
* in 1.115.1 and any later releases.
|
|
6391
|
-
*/
|
|
6392
|
-
export type $ObjectPageLayoutToggleAnchorBarEventParameters = ObjectPageLayout$ToggleAnchorBarEventParameters;
|
|
6393
|
-
|
|
6394
6324
|
export type ObjectPageLayout$ToggleAnchorBarEvent = Event<ObjectPageLayout$ToggleAnchorBarEventParameters>;
|
|
6395
6325
|
}
|
|
6396
6326
|
|