@openui5/types 1.116.0 → 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/package.json +1 -1
- package/types/sap.f.d.ts +130 -36
- package/types/sap.m.d.ts +1793 -403
- package/types/sap.tnt.d.ts +13 -4
- package/types/sap.ui.codeeditor.d.ts +9 -3
- package/types/sap.ui.commons.d.ts +236 -68
- package/types/sap.ui.core.d.ts +934 -264
- package/types/sap.ui.dt.d.ts +1 -1
- package/types/sap.ui.fl.d.ts +21 -6
- package/types/sap.ui.integration.d.ts +71 -13
- package/types/sap.ui.layout.d.ts +95 -30
- package/types/sap.ui.mdc.d.ts +296 -98
- package/types/sap.ui.rta.d.ts +1 -1
- package/types/sap.ui.suite.d.ts +9 -3
- package/types/sap.ui.support.d.ts +1 -1
- package/types/sap.ui.table.d.ts +118 -24
- package/types/sap.ui.testrecorder.d.ts +1 -1
- package/types/sap.ui.unified.d.ts +209 -53
- package/types/sap.ui.ux3.d.ts +220 -61
- package/types/sap.ui.webc.common.d.ts +1 -1
- package/types/sap.ui.webc.fiori.d.ts +137 -35
- package/types/sap.ui.webc.main.d.ts +331 -100
- package/types/sap.uxap.d.ts +42 -12
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
|
/**
|
|
@@ -943,7 +943,10 @@ declare module "sap/uxap/BlockBase" {
|
|
|
943
943
|
view?: View;
|
|
944
944
|
}
|
|
945
945
|
|
|
946
|
-
export type BlockBase$ViewInitEvent = Event<
|
|
946
|
+
export type BlockBase$ViewInitEvent = Event<
|
|
947
|
+
BlockBase$ViewInitEventParameters,
|
|
948
|
+
BlockBase
|
|
949
|
+
>;
|
|
947
950
|
}
|
|
948
951
|
|
|
949
952
|
declare module "sap/uxap/BreadCrumbs" {
|
|
@@ -3498,7 +3501,10 @@ declare module "sap/uxap/ObjectPageHeader" {
|
|
|
3498
3501
|
domRef?: string;
|
|
3499
3502
|
}
|
|
3500
3503
|
|
|
3501
|
-
export type ObjectPageHeader$MarkChangesPressEvent = Event<
|
|
3504
|
+
export type ObjectPageHeader$MarkChangesPressEvent = Event<
|
|
3505
|
+
ObjectPageHeader$MarkChangesPressEventParameters,
|
|
3506
|
+
ObjectPageHeader
|
|
3507
|
+
>;
|
|
3502
3508
|
|
|
3503
3509
|
export interface ObjectPageHeader$MarkLockedPressEventParameters {
|
|
3504
3510
|
/**
|
|
@@ -3507,7 +3513,10 @@ declare module "sap/uxap/ObjectPageHeader" {
|
|
|
3507
3513
|
domRef?: string;
|
|
3508
3514
|
}
|
|
3509
3515
|
|
|
3510
|
-
export type ObjectPageHeader$MarkLockedPressEvent = Event<
|
|
3516
|
+
export type ObjectPageHeader$MarkLockedPressEvent = Event<
|
|
3517
|
+
ObjectPageHeader$MarkLockedPressEventParameters,
|
|
3518
|
+
ObjectPageHeader
|
|
3519
|
+
>;
|
|
3511
3520
|
|
|
3512
3521
|
export interface ObjectPageHeader$TitleSelectorPressEventParameters {
|
|
3513
3522
|
/**
|
|
@@ -3516,7 +3525,10 @@ declare module "sap/uxap/ObjectPageHeader" {
|
|
|
3516
3525
|
domRef?: string;
|
|
3517
3526
|
}
|
|
3518
3527
|
|
|
3519
|
-
export type ObjectPageHeader$TitleSelectorPressEvent = Event<
|
|
3528
|
+
export type ObjectPageHeader$TitleSelectorPressEvent = Event<
|
|
3529
|
+
ObjectPageHeader$TitleSelectorPressEventParameters,
|
|
3530
|
+
ObjectPageHeader
|
|
3531
|
+
>;
|
|
3520
3532
|
}
|
|
3521
3533
|
|
|
3522
3534
|
declare module "sap/uxap/ObjectPageHeaderActionButton" {
|
|
@@ -5110,7 +5122,7 @@ declare module "sap/uxap/ObjectPageLayout" {
|
|
|
5110
5122
|
*/
|
|
5111
5123
|
getPreserveHeaderStateOnScroll(): boolean;
|
|
5112
5124
|
/**
|
|
5113
|
-
* 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.
|
|
5114
5126
|
*
|
|
5115
5127
|
* @returns The scroll delegate instance
|
|
5116
5128
|
*/
|
|
@@ -6265,7 +6277,10 @@ declare module "sap/uxap/ObjectPageLayout" {
|
|
|
6265
6277
|
|
|
6266
6278
|
export interface ObjectPageLayout$EditHeaderButtonPressEventParameters {}
|
|
6267
6279
|
|
|
6268
|
-
export type ObjectPageLayout$EditHeaderButtonPressEvent = Event<
|
|
6280
|
+
export type ObjectPageLayout$EditHeaderButtonPressEvent = Event<
|
|
6281
|
+
ObjectPageLayout$EditHeaderButtonPressEventParameters,
|
|
6282
|
+
ObjectPageLayout
|
|
6283
|
+
>;
|
|
6269
6284
|
|
|
6270
6285
|
export interface ObjectPageLayout$HeaderContentPinnedStateChangeEventParameters {
|
|
6271
6286
|
/**
|
|
@@ -6274,7 +6289,10 @@ declare module "sap/uxap/ObjectPageLayout" {
|
|
|
6274
6289
|
pinned?: boolean;
|
|
6275
6290
|
}
|
|
6276
6291
|
|
|
6277
|
-
export type ObjectPageLayout$HeaderContentPinnedStateChangeEvent = Event<
|
|
6292
|
+
export type ObjectPageLayout$HeaderContentPinnedStateChangeEvent = Event<
|
|
6293
|
+
ObjectPageLayout$HeaderContentPinnedStateChangeEventParameters,
|
|
6294
|
+
ObjectPageLayout
|
|
6295
|
+
>;
|
|
6278
6296
|
|
|
6279
6297
|
export interface ObjectPageLayout$NavigateEventParameters {
|
|
6280
6298
|
/**
|
|
@@ -6288,7 +6306,10 @@ declare module "sap/uxap/ObjectPageLayout" {
|
|
|
6288
6306
|
subSection?: ObjectPageSubSection;
|
|
6289
6307
|
}
|
|
6290
6308
|
|
|
6291
|
-
export type ObjectPageLayout$NavigateEvent = Event<
|
|
6309
|
+
export type ObjectPageLayout$NavigateEvent = Event<
|
|
6310
|
+
ObjectPageLayout$NavigateEventParameters,
|
|
6311
|
+
ObjectPageLayout
|
|
6312
|
+
>;
|
|
6292
6313
|
|
|
6293
6314
|
export interface ObjectPageLayout$SectionChangeEventParameters {
|
|
6294
6315
|
/**
|
|
@@ -6302,7 +6323,10 @@ declare module "sap/uxap/ObjectPageLayout" {
|
|
|
6302
6323
|
subSection?: ObjectPageSubSection;
|
|
6303
6324
|
}
|
|
6304
6325
|
|
|
6305
|
-
export type ObjectPageLayout$SectionChangeEvent = Event<
|
|
6326
|
+
export type ObjectPageLayout$SectionChangeEvent = Event<
|
|
6327
|
+
ObjectPageLayout$SectionChangeEventParameters,
|
|
6328
|
+
ObjectPageLayout
|
|
6329
|
+
>;
|
|
6306
6330
|
|
|
6307
6331
|
export interface ObjectPageLayout$SubSectionVisibilityChangeEventParameters {
|
|
6308
6332
|
/**
|
|
@@ -6311,7 +6335,10 @@ declare module "sap/uxap/ObjectPageLayout" {
|
|
|
6311
6335
|
visibleSubSections?: object;
|
|
6312
6336
|
}
|
|
6313
6337
|
|
|
6314
|
-
export type ObjectPageLayout$SubSectionVisibilityChangeEvent = Event<
|
|
6338
|
+
export type ObjectPageLayout$SubSectionVisibilityChangeEvent = Event<
|
|
6339
|
+
ObjectPageLayout$SubSectionVisibilityChangeEventParameters,
|
|
6340
|
+
ObjectPageLayout
|
|
6341
|
+
>;
|
|
6315
6342
|
|
|
6316
6343
|
export interface ObjectPageLayout$ToggleAnchorBarEventParameters {
|
|
6317
6344
|
/**
|
|
@@ -6321,7 +6348,10 @@ declare module "sap/uxap/ObjectPageLayout" {
|
|
|
6321
6348
|
fixed?: boolean;
|
|
6322
6349
|
}
|
|
6323
6350
|
|
|
6324
|
-
export type ObjectPageLayout$ToggleAnchorBarEvent = Event<
|
|
6351
|
+
export type ObjectPageLayout$ToggleAnchorBarEvent = Event<
|
|
6352
|
+
ObjectPageLayout$ToggleAnchorBarEventParameters,
|
|
6353
|
+
ObjectPageLayout
|
|
6354
|
+
>;
|
|
6325
6355
|
}
|
|
6326
6356
|
|
|
6327
6357
|
declare module "sap/uxap/ObjectPageLazyLoader" {
|