@sapui5/types
Advanced tools
Comparing version 1.125.1 to 1.126.0
{ | ||
"name": "@sapui5/types", | ||
"version": "1.125.1", | ||
"version": "1.126.0", | ||
"description": "SAPUI5 TypeScript Definitions", | ||
@@ -5,0 +5,0 @@ "homepage": "https://sap.github.io/ui5-typescript/", |
@@ -42,2 +42,3 @@ /** | ||
/// <reference path="./sap.ui.rta.d.ts"/> | ||
/// <reference path="./sap.cux.home.d.ts"/> | ||
/// <reference path="./sap.esh.search.ui.d.ts"/> | ||
@@ -44,0 +45,0 @@ /// <reference path="./sap.fe.base.d.ts"/> |
@@ -1,2 +0,2 @@ | ||
// For Library Version: 1.125.0 | ||
// For Library Version: 1.126.0 | ||
@@ -3,0 +3,0 @@ declare module "sap/apf/library" {} |
@@ -1,2 +0,2 @@ | ||
// For Library Version: 1.125.0 | ||
// For Library Version: 1.126.0 | ||
@@ -3,0 +3,0 @@ declare module "sap/fe/base/library" {} |
@@ -1,2 +0,2 @@ | ||
// For Library Version: 1.125.0 | ||
// For Library Version: 1.126.0 | ||
@@ -1042,3 +1042,13 @@ declare module "sap/fe/core/AppComponent" { | ||
*/ | ||
oContext: Context | ||
oContext: Context, | ||
/** | ||
* Object containing the parameters for the navigation | ||
*/ | ||
parameters?: { | ||
/** | ||
* By default, the internal algorithm decides whether the navigation preserves the previous entry. This | ||
* parameter allows you to override this behavior. | ||
*/ | ||
preserveHistory: boolean; | ||
} | ||
): void; | ||
@@ -1118,3 +1128,3 @@ /** | ||
} | ||
): boolean; | ||
): Promise<boolean>; | ||
} | ||
@@ -1121,0 +1131,0 @@ } |
@@ -1,2 +0,2 @@ | ||
// For Library Version: 1.125.0 | ||
// For Library Version: 1.126.0 | ||
@@ -3,0 +3,0 @@ declare module "sap/fe/navigation/library" { |
@@ -1,3 +0,3 @@ | ||
// For Library Version: 1.125.0 | ||
// For Library Version: 1.126.0 | ||
declare namespace sap {} |
@@ -1,2 +0,2 @@ | ||
// For Library Version: 1.125.0 | ||
// For Library Version: 1.126.0 | ||
@@ -3,0 +3,0 @@ declare module "sap/fe/plugins/managecache/library" {} |
@@ -1,2 +0,2 @@ | ||
// For Library Version: 1.125.0 | ||
// For Library Version: 1.126.0 | ||
@@ -3,0 +3,0 @@ declare module "sap/fe/templates/library" {} |
@@ -1,3 +0,3 @@ | ||
// For Library Version: 1.125.0 | ||
// For Library Version: 1.126.0 | ||
declare namespace sap {} |
@@ -1,3 +0,3 @@ | ||
// For Library Version: 1.125.0 | ||
// For Library Version: 1.126.0 | ||
declare namespace sap {} |
@@ -1,2 +0,2 @@ | ||
// For Library Version: 1.125.0 | ||
// For Library Version: 1.126.0 | ||
@@ -3,0 +3,0 @@ declare module "sap/insights/library" {} |
@@ -1,2 +0,2 @@ | ||
// For Library Version: 1.125.0 | ||
// For Library Version: 1.126.0 | ||
@@ -3,0 +3,0 @@ declare module "sap/ndc/library" {} |
@@ -1,2 +0,2 @@ | ||
// For Library Version: 1.125.0 | ||
// For Library Version: 1.126.0 | ||
@@ -6,3 +6,6 @@ declare module "sap/ovp/library" {} | ||
declare module "sap/ovp/app/Component" { | ||
import AppComponent from "sap/fe/core/AppComponent"; | ||
import { | ||
default as AppComponent, | ||
$AppComponentSettings, | ||
} from "sap/fe/core/AppComponent"; | ||
@@ -14,4 +17,16 @@ import ComponentMetadata from "sap/ui/core/ComponentMetadata"; | ||
*/ | ||
interface Component extends AppComponent { | ||
export default class Component extends AppComponent { | ||
/** | ||
* Main class used for Overview Page Application Component | ||
* | ||
* Accepts an object literal `mSettings` that defines initial property values, aggregated and associated | ||
* objects as well as event handlers. See {@link sap.ui.base.ManagedObject#constructor} for a general description | ||
* of the syntax of the settings object. | ||
* | ||
* This class does not have its own settings, but all settings applicable to the base type {@link sap.fe.core.AppComponent#constructor sap.fe.core.AppComponent } | ||
* can be used.@ui5-updated-doclet | ||
*/ | ||
constructor(); | ||
/** | ||
* Creates a new subclass of class sap.ovp.app.Component with name `sClassName` and enriches it with the | ||
@@ -25,3 +40,3 @@ * information contained in `oClassInfo`. | ||
*/ | ||
extend( | ||
static extend<T extends Record<string, unknown>>( | ||
/** | ||
@@ -34,3 +49,3 @@ * Name of the class being created | ||
*/ | ||
oClassInfo?: object, | ||
oClassInfo?: sap.ClassInfo<T, Component>, | ||
/** | ||
@@ -48,6 +63,8 @@ * Constructor function for the metadata object; if not given, it defaults to the metadata implementation | ||
*/ | ||
getMetadata(): ComponentMetadata; | ||
static getMetadata(): ComponentMetadata; | ||
} | ||
const Component: Component; | ||
export default Component; | ||
/** | ||
* Describes the settings that can be provided to the Component constructor. | ||
*/ | ||
export interface $ComponentSettings extends $AppComponentSettings {} | ||
} | ||
@@ -54,0 +71,0 @@ |
@@ -1,2 +0,2 @@ | ||
// For Library Version: 1.125.0 | ||
// For Library Version: 1.126.0 | ||
@@ -3,0 +3,0 @@ declare module "sap/rules/ui/library" { |
@@ -1,2 +0,2 @@ | ||
// For Library Version: 1.125.0 | ||
// For Library Version: 1.126.0 | ||
@@ -3,0 +3,0 @@ declare module "sap/ui/codeeditor/library" {} |
@@ -1,2 +0,2 @@ | ||
// For Library Version: 1.125.0 | ||
// For Library Version: 1.126.0 | ||
@@ -3,0 +3,0 @@ declare namespace sap { |
@@ -1,2 +0,2 @@ | ||
// For Library Version: 1.125.0 | ||
// For Library Version: 1.126.0 | ||
@@ -692,3 +692,3 @@ declare module "sap/ui/export/library" { | ||
* | ||
* Custom formatters in data binding are not supported. | ||
* Custom formatter functions in data binding are not supported. | ||
* | ||
@@ -695,0 +695,0 @@ * The size of an exported table is limited by available browser memory. Export of large data sets can lead |
@@ -1,2 +0,2 @@ | ||
// For Library Version: 1.125.0 | ||
// For Library Version: 1.126.0 | ||
@@ -1519,2 +1519,4 @@ declare module "sap/ui/fl/library" {} | ||
"sap/ui/fl/apply/_internal/changes/descriptor/fiori/SetCloudDevAdaptationStatus": undefined; | ||
"sap/ui/fl/apply/_internal/changes/descriptor/fiori/SetRegistrationIds": undefined; | ||
@@ -1614,2 +1616,6 @@ | ||
"sap/ui/fl/changeHandler/BaseAddViaDelegate": undefined; | ||
"sap/ui/fl/changeHandler/BaseRename": undefined; | ||
"sap/ui/fl/ChangePersistenceFactory": undefined; | ||
@@ -1616,0 +1622,0 @@ |
@@ -1,3 +0,3 @@ | ||
// For Library Version: 1.125.0 | ||
// For Library Version: 1.126.0 | ||
declare namespace sap {} |
@@ -1,2 +0,2 @@ | ||
// For Library Version: 1.125.0 | ||
// For Library Version: 1.126.0 | ||
@@ -3,0 +3,0 @@ declare module "sap/ui/rta/api/startAdaptation" { |
@@ -1,2 +0,2 @@ | ||
// For Library Version: 1.125.0 | ||
// For Library Version: 1.126.0 | ||
@@ -3,0 +3,0 @@ declare module "sap/ui/suite/library" { |
@@ -1,2 +0,2 @@ | ||
// For Library Version: 1.125.0 | ||
// For Library Version: 1.126.0 | ||
@@ -3,0 +3,0 @@ declare module "sap/ui/support/library" { |
@@ -1,2 +0,2 @@ | ||
// For Library Version: 1.125.0 | ||
// For Library Version: 1.126.0 | ||
@@ -3,0 +3,0 @@ declare module "sap/ui/testrecorder/library" {} |
@@ -1,2 +0,2 @@ | ||
// For Library Version: 1.125.0 | ||
// For Library Version: 1.126.0 | ||
@@ -3,0 +3,0 @@ declare module "sap/ui/webc/common/library" {} |
@@ -1,2 +0,2 @@ | ||
// For Library Version: 1.125.0 | ||
// For Library Version: 1.126.0 | ||
@@ -3,0 +3,0 @@ declare namespace sap { |
@@ -1,3 +0,3 @@ | ||
// For Library Version: 1.125.0 | ||
// For Library Version: 1.126.0 | ||
declare namespace sap {} |
@@ -1,2 +0,2 @@ | ||
// For Library Version: 1.125.1 | ||
// For Library Version: 1.126.0 | ||
@@ -3,0 +3,0 @@ declare module "sap/zen/commons/library" {} |
@@ -1,2 +0,2 @@ | ||
// For Library Version: 1.125.1 | ||
// For Library Version: 1.126.0 | ||
@@ -3,0 +3,0 @@ declare module "sap/zen/crosstab/library" {} |
Sorry, the diff of this file is too big to display
Sorry, the diff of this file is too big to display
Sorry, the diff of this file is too big to display
Sorry, the diff of this file is too big to display
Sorry, the diff of this file is too big to display
Sorry, the diff of this file is too big to display
Sorry, the diff of this file is too big to display
Sorry, the diff of this file is too big to display
Sorry, the diff of this file is too big to display
Sorry, the diff of this file is too big to display
Sorry, the diff of this file is too big to display
Sorry, the diff of this file is too big to display
Sorry, the diff of this file is too big to display
Sorry, the diff of this file is too big to display
Sorry, the diff of this file is too big to display
Sorry, the diff of this file is too big to display
Sorry, the diff of this file is too big to display
Sorry, the diff of this file is too big to display
Sorry, the diff of this file is too big to display
Sorry, the diff of this file is too big to display
Sorry, the diff of this file is too big to display
Sorry, the diff of this file is too big to display
Sorry, the diff of this file is too big to display
Sorry, the diff of this file is too big to display
Sorry, the diff of this file is too big to display
Sorry, the diff of this file is too big to display
Sorry, the diff of this file is too big to display
Sorry, the diff of this file is too big to display
Sorry, the diff of this file is too big to display
Sorry, the diff of this file is too big to display
Sorry, the diff of this file is too big to display
Sorry, the diff of this file is too big to display
Sorry, the diff of this file is too big to display
Sorry, the diff of this file is too big to display
Sorry, the diff of this file is too big to display
Sorry, the diff of this file is too big to display
Sorry, the diff of this file is too big to display
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
69
29797916
684779