@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.
@@ -1,4 +1,4 @@
1
- // For Library Version: 1.116.0
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<NavigationList$ItemSelectEventParameters>;
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<NavigationListItem$SelectEventParameters>;
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<SideNavigation$ItemSelectEventParameters>;
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.116.0
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<CodeEditor$ChangeEventParameters>;
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<CodeEditor$LiveChangeEventParameters>;
697
+ export type CodeEditor$LiveChangeEvent = Event<
698
+ CodeEditor$LiveChangeEventParameters,
699
+ CodeEditor
700
+ >;
695
701
  }
696
702
 
697
703
  declare namespace sap {