@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.tnt.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/tnt/library" {
|
|
4
4
|
/**
|
|
@@ -851,7 +851,10 @@ declare module "sap/tnt/NavigationList" {
|
|
|
851
851
|
item?: Item;
|
|
852
852
|
}
|
|
853
853
|
|
|
854
|
-
export type NavigationList$ItemSelectEvent = Event<
|
|
854
|
+
export type NavigationList$ItemSelectEvent = Event<
|
|
855
|
+
NavigationList$ItemSelectEventParameters,
|
|
856
|
+
NavigationList
|
|
857
|
+
>;
|
|
855
858
|
}
|
|
856
859
|
|
|
857
860
|
declare module "sap/tnt/NavigationListItem" {
|
|
@@ -1363,7 +1366,10 @@ declare module "sap/tnt/NavigationListItem" {
|
|
|
1363
1366
|
item?: Item;
|
|
1364
1367
|
}
|
|
1365
1368
|
|
|
1366
|
-
export type NavigationListItem$SelectEvent = Event<
|
|
1369
|
+
export type NavigationListItem$SelectEvent = Event<
|
|
1370
|
+
NavigationListItem$SelectEventParameters,
|
|
1371
|
+
NavigationListItem
|
|
1372
|
+
>;
|
|
1367
1373
|
}
|
|
1368
1374
|
|
|
1369
1375
|
declare module "sap/tnt/SideNavigation" {
|
|
@@ -1764,7 +1770,10 @@ declare module "sap/tnt/SideNavigation" {
|
|
|
1764
1770
|
item?: Item;
|
|
1765
1771
|
}
|
|
1766
1772
|
|
|
1767
|
-
export type SideNavigation$ItemSelectEvent = Event<
|
|
1773
|
+
export type SideNavigation$ItemSelectEvent = Event<
|
|
1774
|
+
SideNavigation$ItemSelectEventParameters,
|
|
1775
|
+
SideNavigation
|
|
1776
|
+
>;
|
|
1768
1777
|
}
|
|
1769
1778
|
|
|
1770
1779
|
declare module "sap/tnt/ToolHeader" {
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
// For Library Version: 1.
|
|
1
|
+
// For Library Version: 1.117.0
|
|
2
2
|
|
|
3
3
|
declare module "sap/ui/codeeditor/library" {}
|
|
4
4
|
|
|
@@ -677,7 +677,10 @@ declare module "sap/ui/codeeditor/CodeEditor" {
|
|
|
677
677
|
oldValue?: string;
|
|
678
678
|
}
|
|
679
679
|
|
|
680
|
-
export type CodeEditor$ChangeEvent = Event<
|
|
680
|
+
export type CodeEditor$ChangeEvent = Event<
|
|
681
|
+
CodeEditor$ChangeEventParameters,
|
|
682
|
+
CodeEditor
|
|
683
|
+
>;
|
|
681
684
|
|
|
682
685
|
export interface CodeEditor$LiveChangeEventParameters {
|
|
683
686
|
/**
|
|
@@ -691,7 +694,10 @@ declare module "sap/ui/codeeditor/CodeEditor" {
|
|
|
691
694
|
editorEvent?: object;
|
|
692
695
|
}
|
|
693
696
|
|
|
694
|
-
export type CodeEditor$LiveChangeEvent = Event<
|
|
697
|
+
export type CodeEditor$LiveChangeEvent = Event<
|
|
698
|
+
CodeEditor$LiveChangeEventParameters,
|
|
699
|
+
CodeEditor
|
|
700
|
+
>;
|
|
695
701
|
}
|
|
696
702
|
|
|
697
703
|
declare namespace sap {
|