Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 6 additions & 1 deletion types/openui5/openui5-tests.ts
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,7 @@ import ColumnListItem from "sap/m/ColumnListItem";
import Filter from "sap/ui/model/Filter";
import Version from "sap/base/util/Version";
import UploadItem from "sap/m/upload/UploadItem";
import DragDropInfo from "sap/ui/core/dnd/DragDropInfo";

/*
* REMARK: the type definition files are automatically generated and this generation is tested,
Expand Down Expand Up @@ -221,4 +222,8 @@ const v: Version = new Version(1); // minor version is only optional since 1.124

// 1.125
const ui = new UploadItem();
ui.getIsTrustedSource();
ui.getIsTrustedSource();

// 1.126
const drag = new DragDropInfo();
drag.getKeyboardHandling();
2 changes: 1 addition & 1 deletion types/openui5/package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"private": true,
"name": "@types/openui5",
"version": "1.125.9999",
"version": "1.126.9999",
"nonNpm": true,
"nonNpmDescription": "openui5",
"projects": [
Expand Down
2 changes: 1 addition & 1 deletion types/openui5/sap.f.d.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// For Library Version: 1.125.0
// For Library Version: 1.126.0

declare module "sap/tnt/library" {
export interface IToolHeader {
Expand Down
Loading