Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

@types/openui5

Package Overview
Dependencies
Maintainers
1
Versions
58
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@types/openui5 - npm Package Compare versions

Comparing version 1.114.2 to 1.115.0

2

openui5/index.d.ts

@@ -1,2 +0,2 @@

// Type definitions for OpenUI5 1.114
// Type definitions for OpenUI5 1.115
// Project: https://github.com/SAP/openui5

@@ -3,0 +3,0 @@ // Definitions by: OpenUI5 Bot <https://github.com/openui5bot>

{
"name": "@types/openui5",
"version": "1.114.2",
"version": "1.115.0",
"description": "TypeScript definitions for OpenUI5",

@@ -41,4 +41,4 @@ "homepage": "https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/openui5",

},
"typesPublisherContentHash": "a2ddc6bc568e3bd99d72b0218d8b0048081529af8e900aa2b0eb2ef247fd5462",
"typesPublisherContentHash": "4729901478fc199991c3dd4d8df91fc3c1bdb0c6d0623437aaa069c540b97844",
"typeScriptVersion": "5.0"
}

@@ -11,3 +11,3 @@ # Installation

### Additional Details
* Last updated: Mon, 12 Jun 2023 18:33:08 GMT
* Last updated: Wed, 14 Jun 2023 10:32:51 GMT
* Dependencies: [@types/jquery](https://npmjs.com/package/@types/jquery), [@types/qunit](https://npmjs.com/package/@types/qunit)

@@ -14,0 +14,0 @@ * Global values: `sap`

@@ -1,2 +0,2 @@

// For Library Version: 1.113.0
// For Library Version: 1.115.0

@@ -23,3 +23,3 @@ declare module "sap/ui/codeeditor/library" {}

*/
export default class CodeEditor extends Control {
class CodeEditor extends Control {
/**

@@ -119,3 +119,3 @@ * Constructor for a new CodeEditor.

*/
fnFunction: (p1: Event) => void,
fnFunction: (p1: Event<$CodeEditorChangeEventParameters>) => void,
/**

@@ -140,3 +140,3 @@ * Context object to call the event handler with. Defaults to this `sap.ui.codeeditor.CodeEditor` itself

*/
fnFunction: (p1: Event) => void,
fnFunction: (p1: Event<$CodeEditorChangeEventParameters>) => void,
/**

@@ -166,3 +166,3 @@ * Context object to call the event handler with. Defaults to this `sap.ui.codeeditor.CodeEditor` itself

*/
fnFunction: (p1: Event) => void,
fnFunction: (p1: Event<$CodeEditorLiveChangeEventParameters>) => void,
/**

@@ -187,3 +187,3 @@ * Context object to call the event handler with. Defaults to this `sap.ui.codeeditor.CodeEditor` itself

*/
fnFunction: (p1: Event) => void,
fnFunction: (p1: Event<$CodeEditorLiveChangeEventParameters>) => void,
/**

@@ -205,3 +205,3 @@ * Context object to call the event handler with. Defaults to this `sap.ui.codeeditor.CodeEditor` itself

*/
fnFunction: (p1: Event) => void,
fnFunction: (p1: Event<$CodeEditorChangeEventParameters>) => void,
/**

@@ -223,3 +223,3 @@ * Context object on which the given function had to be called

*/
fnFunction: (p1: Event) => void,
fnFunction: (p1: Event<$CodeEditorLiveChangeEventParameters>) => void,
/**

@@ -231,3 +231,3 @@ * Context object on which the given function had to be called

/**
* - DO NOT USE IN APPLICATIONS (only for related classes in the framework)
* Protected: DO NOT USE IN APPLICATIONS (only for related classes in the framework)
*

@@ -242,15 +242,6 @@ * Fires event {@link #event:change change} to attached listeners.

*/
mParameters?: {
/**
* The current value of the code editor.
*/
value?: string;
/**
* The old value of the code editor.
*/
oldValue?: string;
}
mParameters?: $CodeEditorChangeEventParameters
): this;
/**
* - DO NOT USE IN APPLICATIONS (only for related classes in the framework)
* Protected: DO NOT USE IN APPLICATIONS (only for related classes in the framework)
*

@@ -265,12 +256,3 @@ * Fires event {@link #event:liveChange liveChange} to attached listeners.

*/
mParameters?: {
/**
* The current value of the code editor.
*/
value?: string;
/**
* The underlying change event of the third-party code editor.
*/
editorEvent?: object;
}
mParameters?: $CodeEditorLiveChangeEventParameters
): this;

@@ -610,2 +592,3 @@ /**

}
export default CodeEditor;

@@ -689,3 +672,3 @@ export interface $CodeEditorSettings extends $ControlSettings {

*/
liveChange?: (oEvent: Event) => void;
liveChange?: (oEvent: Event<$CodeEditorLiveChangeEventParameters>) => void;

@@ -695,4 +678,28 @@ /**

*/
change?: (oEvent: Event) => void;
change?: (oEvent: Event<$CodeEditorChangeEventParameters>) => void;
}
export interface $CodeEditorChangeEventParameters {
/**
* The current value of the code editor.
*/
value?: string;
/**
* The old value of the code editor.
*/
oldValue?: string;
}
export interface $CodeEditorLiveChangeEventParameters {
/**
* The current value of the code editor.
*/
value?: string;
/**
* The underlying change event of the third-party code editor.
*/
editorEvent?: object;
}
}

@@ -699,0 +706,0 @@

@@ -1,2 +0,2 @@

// For Library Version: 1.114.0
// For Library Version: 1.115.0

@@ -119,3 +119,3 @@ declare module "sap/ui/fl/library" {}

*/
export default class TransportDialog extends Dialog {
class TransportDialog extends Dialog {
/**

@@ -128,4 +128,4 @@ * Constructor for a new transport/TransportDialog.

*
* This class does not have its own settings, but all settings applicable to the base type {@link sap.m.Dialog#constructor
* sap.m.Dialog} can be used.
* This class does not have its own settings, but all settings applicable to the base type {@link sap.m.Dialog#constructor sap.m.Dialog }
* can be used.
*/

@@ -145,4 +145,4 @@ constructor(

*
* This class does not have its own settings, but all settings applicable to the base type {@link sap.m.Dialog#constructor
* sap.m.Dialog} can be used.
* This class does not have its own settings, but all settings applicable to the base type {@link sap.m.Dialog#constructor sap.m.Dialog }
* can be used.
*/

@@ -190,2 +190,3 @@ constructor(

}
export default TransportDialog;

@@ -215,3 +216,3 @@ export interface $TransportDialogSettings extends $DialogSettings {}

*/
export default class VariantManagement
class VariantManagement
extends Control

@@ -232,3 +233,3 @@ implements

* See:
* {@link topic:f1430c0337534d469da3a56307ff76af Key User Adaptation: Enable Your App}
* {@link https://ui5.sap.com/#/topic/f1430c0337534d469da3a56307ff76af Key User Adaptation: Enable Your App}
*/

@@ -248,3 +249,3 @@ constructor(

* See:
* {@link topic:f1430c0337534d469da3a56307ff76af Key User Adaptation: Enable Your App}
* {@link https://ui5.sap.com/#/topic/f1430c0337534d469da3a56307ff76af Key User Adaptation: Enable Your App}
*/

@@ -415,3 +416,3 @@ constructor(

*/
fnFunction: (p1: Event) => void,
fnFunction: (p1: Event<$VariantManagementManageEventParameters>) => void,
/**

@@ -437,3 +438,3 @@ * Context object to call the event handler with. Defaults to this `sap.ui.fl.variants.VariantManagement`

*/
fnFunction: (p1: Event) => void,
fnFunction: (p1: Event<$VariantManagementManageEventParameters>) => void,
/**

@@ -465,3 +466,3 @@ * Context object to call the event handler with. Defaults to this `sap.ui.fl.variants.VariantManagement`

*/
fnFunction: (p1: Event) => void,
fnFunction: (p1: Event<$VariantManagementSaveEventParameters>) => void,
/**

@@ -488,3 +489,3 @@ * Context object to call the event handler with. Defaults to this `sap.ui.fl.variants.VariantManagement`

*/
fnFunction: (p1: Event) => void,
fnFunction: (p1: Event<$VariantManagementSaveEventParameters>) => void,
/**

@@ -515,3 +516,3 @@ * Context object to call the event handler with. Defaults to this `sap.ui.fl.variants.VariantManagement`

*/
fnFunction: (p1: Event) => void,
fnFunction: (p1: Event<$VariantManagementSelectEventParameters>) => void,
/**

@@ -537,3 +538,3 @@ * Context object to call the event handler with. Defaults to this `sap.ui.fl.variants.VariantManagement`

*/
fnFunction: (p1: Event) => void,
fnFunction: (p1: Event<$VariantManagementSelectEventParameters>) => void,
/**

@@ -590,3 +591,3 @@ * Context object to call the event handler with. Defaults to this `sap.ui.fl.variants.VariantManagement`

*/
fnFunction: (p1: Event) => void,
fnFunction: (p1: Event<$VariantManagementManageEventParameters>) => void,
/**

@@ -608,3 +609,3 @@ * Context object on which the given function had to be called

*/
fnFunction: (p1: Event) => void,
fnFunction: (p1: Event<$VariantManagementSaveEventParameters>) => void,
/**

@@ -626,3 +627,3 @@ * Context object on which the given function had to be called

*/
fnFunction: (p1: Event) => void,
fnFunction: (p1: Event<$VariantManagementSelectEventParameters>) => void,
/**

@@ -634,3 +635,3 @@ * Context object on which the given function had to be called

/**
* @note - DO NOT USE IN APPLICATIONS (only for related classes in the framework)
* Protected: DO NOT USE IN APPLICATIONS (only for related classes in the framework)
*

@@ -648,3 +649,3 @@ * Fires event {@link #event:cancel cancel} to attached listeners.

/**
* @note - DO NOT USE IN APPLICATIONS (only for related classes in the framework)
* Protected: DO NOT USE IN APPLICATIONS (only for related classes in the framework)
*

@@ -662,3 +663,3 @@ * Fires event {@link #event:initialized initialized} to attached listeners.

/**
* @note - DO NOT USE IN APPLICATIONS (only for related classes in the framework)
* Protected: DO NOT USE IN APPLICATIONS (only for related classes in the framework)
*

@@ -673,24 +674,6 @@ * Fires event {@link #event:manage manage} to attached listeners.

*/
mParameters?: {
/**
* List of changed variants. Each entry contains a 'key' - the variant key and a 'name' - the new title
* of the variant
*/
renamed?: object[];
/**
* List of deleted variant keys
*/
deleted?: string[];
/**
* List of variant keys and the associated Execute on Selection indicator
*/
exe?: object[];
/**
* The default variant key
*/
def?: string;
}
mParameters?: $VariantManagementManageEventParameters
): this;
/**
* @note - DO NOT USE IN APPLICATIONS (only for related classes in the framework)
* Protected: DO NOT USE IN APPLICATIONS (only for related classes in the framework)
*

@@ -705,37 +688,6 @@ * Fires event {@link #event:save save} to attached listeners.

*/
mParameters?: {
/**
* Variant title
*/
name?: string;
/**
* Indicates if an existing variant is overwritten or if a new variant is created.
*/
overwrite?: boolean;
/**
* Variant key
*/
key?: string;
/**
* Apply Automatically indicator
*/
execute?: boolean;
/**
* Indicates the check box state for 'Public'.
*/
public?: boolean;
/**
* The default variant indicator
*/
def?: boolean;
/**
* Indicates the check box state for 'Create Tile'.
* Note:
* This event parameter is used only internally.
*/
tile?: boolean;
}
mParameters?: $VariantManagementSaveEventParameters
): this;
/**
* @note - DO NOT USE IN APPLICATIONS (only for related classes in the framework)
* Protected: DO NOT USE IN APPLICATIONS (only for related classes in the framework)
*

@@ -750,8 +702,3 @@ * Fires event {@link #event:select select} to attached listeners.

*/
mParameters?: {
/**
* Variant key
*/
key?: string;
}
mParameters?: $VariantManagementSelectEventParameters
): this;

@@ -797,4 +744,3 @@ /**

/**
* Returns array of IDs of the elements which are the current targets of the association {@link #getFor
* for}.
* Returns array of IDs of the elements which are the current targets of the association {@link #getFor for}.
*/

@@ -865,3 +811,3 @@ getFor(): ID[];

/**
* @note - DO NOT USE IN APPLICATIONS (only for related classes in the framework)
* Protected: DO NOT USE IN APPLICATIONS (only for related classes in the framework)
*

@@ -1175,2 +1121,3 @@ * Required by the {@link sap.m.IOverflowToolbarContent} interface. Registers invalidations event which

}
export default VariantManagement;

@@ -1277,3 +1224,3 @@ export interface $VariantManagementSettings extends $ControlSettings {

*/
save?: (oEvent: Event) => void;
save?: (oEvent: Event<$VariantManagementSaveEventParameters>) => void;

@@ -1288,3 +1235,3 @@ /**

*/
manage?: (oEvent: Event) => void;
manage?: (oEvent: Event<$VariantManagementManageEventParameters>) => void;

@@ -1294,4 +1241,77 @@ /**

*/
select?: (oEvent: Event) => void;
select?: (oEvent: Event<$VariantManagementSelectEventParameters>) => void;
}
export interface $VariantManagementCancelEventParameters {}
export interface $VariantManagementInitializedEventParameters {}
export interface $VariantManagementManageEventParameters {
/**
* List of changed variants. Each entry contains a 'key' - the variant key and a 'name' - the new title
* of the variant
*/
renamed?: object[];
/**
* List of deleted variant keys
*/
deleted?: string[];
/**
* List of variant keys and the associated Execute on Selection indicator
*/
exe?: object[];
/**
* The default variant key
*/
def?: string;
}
export interface $VariantManagementSaveEventParameters {
/**
* Variant title
*/
name?: string;
/**
* Indicates if an existing variant is overwritten or if a new variant is created.
*/
overwrite?: boolean;
/**
* Variant key
*/
key?: string;
/**
* Apply Automatically indicator
*/
execute?: boolean;
/**
* Indicates the check box state for 'Public'.
*/
public?: boolean;
/**
* The default variant indicator
*/
def?: boolean;
/**
* Indicates the check box state for 'Create Tile'.
* Note:
* This event parameter is used only internally.
*/
tile?: boolean;
}
export interface $VariantManagementSelectEventParameters {
/**
* Variant key
*/
key?: string;
}
}

@@ -1535,2 +1555,4 @@

"sap/ui/fl/apply/_internal/preprocessors/ComponentLifecycleHooks": undefined;
"sap/ui/fl/apply/_internal/preprocessors/ControllerExtension": undefined;

@@ -1537,0 +1559,0 @@

@@ -1,2 +0,2 @@

// For Library Version: 1.109.0
// For Library Version: 1.115.0

@@ -3,0 +3,0 @@ declare module "sap/ui/rta/api/startAdaptation" {

@@ -1,2 +0,2 @@

// For Library Version: 1.113.0
// For Library Version: 1.115.0

@@ -47,3 +47,3 @@ declare module "sap/ui/suite/library" {

*/
export default class TaskCircle extends Control {
class TaskCircle extends Control {
/**

@@ -194,3 +194,3 @@ * Constructor for a new TaskCircle.

/**
* - DO NOT USE IN APPLICATIONS (only for related classes in the framework)
* Protected: DO NOT USE IN APPLICATIONS (only for related classes in the framework)
*

@@ -212,9 +212,7 @@ * Fires event {@link #event:press press} to attached listeners.

/**
* Returns array of IDs of the elements which are the current targets of the association {@link #getAriaDescribedBy
* ariaDescribedBy}.
* Returns array of IDs of the elements which are the current targets of the association {@link #getAriaDescribedBy ariaDescribedBy}.
*/
getAriaDescribedBy(): ID[];
/**
* Returns array of IDs of the elements which are the current targets of the association {@link #getAriaLabelledBy
* ariaLabelledBy}.
* Returns array of IDs of the elements which are the current targets of the association {@link #getAriaLabelledBy ariaLabelledBy}.
*/

@@ -367,2 +365,3 @@ getAriaLabelledBy(): ID[];

}
export default TaskCircle;

@@ -409,2 +408,4 @@ export interface $TaskCircleSettings extends $ControlSettings {

}
export interface $TaskCirclePressEventParameters {}
}

@@ -431,3 +432,3 @@

*/
export default class VerticalProgressIndicator extends Control {
class VerticalProgressIndicator extends Control {
/**

@@ -580,3 +581,3 @@ * Constructor for a new VerticalProgressIndicator.

/**
* - DO NOT USE IN APPLICATIONS (only for related classes in the framework)
* Protected: DO NOT USE IN APPLICATIONS (only for related classes in the framework)
*

@@ -598,9 +599,7 @@ * Fires event {@link #event:press press} to attached listeners.

/**
* Returns array of IDs of the elements which are the current targets of the association {@link #getAriaDescribedBy
* ariaDescribedBy}.
* Returns array of IDs of the elements which are the current targets of the association {@link #getAriaDescribedBy ariaDescribedBy}.
*/
getAriaDescribedBy(): ID[];
/**
* Returns array of IDs of the elements which are the current targets of the association {@link #getAriaLabelledBy
* ariaLabelledBy}.
* Returns array of IDs of the elements which are the current targets of the association {@link #getAriaLabelledBy ariaLabelledBy}.
*/

@@ -660,2 +659,3 @@ getAriaLabelledBy(): ID[];

}
export default VerticalProgressIndicator;

@@ -684,2 +684,4 @@ export interface $VerticalProgressIndicatorSettings extends $ControlSettings {

}
export interface $VerticalProgressIndicatorPressEventParameters {}
}

@@ -686,0 +688,0 @@

@@ -1,2 +0,2 @@

// For Library Version: 1.110.0
// For Library Version: 1.115.0

@@ -207,3 +207,3 @@ declare module "sap/ui/support/library" {

*/
export default class ExecutionScope {
class ExecutionScope {
constructor();

@@ -269,2 +269,3 @@

}
export default ExecutionScope;
}

@@ -289,5 +290,5 @@

* - Then the result can be accessed with methods `sap.ui.support.RuleAnalyzer.getAnalysisHistory`, `sap.ui.support.RuleAnalyzer.getLastAnalysisHistory`
* or `sap.ui.support.RuleAnalyzer.getFormattedAnalysisHistory`.
* or `sap.ui.support.RuleAnalyzer.getFormattedAnalysisHistory`.
*
* For more information, see {@link topic:a34eb58aaf124f538a3ead23a6cab04a Support Assistant API}.
* For more information, see {@link https://ui5.sap.com/#/topic/a34eb58aaf124f538a3ead23a6cab04a Support Assistant API}.
*/

@@ -304,4 +305,3 @@ interface RuleAnalyzer {

/**
* Settings for the new rule. For detailed information about its properties see {@link topic:eaeea19a991d46f29e6d8d8827317d0e
* Rule Property Values}
* Settings for the new rule. For detailed information about its properties see {@link https://ui5.sap.com/#/topic/eaeea19a991d46f29e6d8d8827317d0e Rule Property Values}
*/

@@ -320,3 +320,3 @@ oRule: RuleConfiguration

/**
* The execution scope of the analysis (see {@link topic:e15067d976f24b11907f4c262bd749a0 Execution Scope}).
* The execution scope of the analysis (see {@link https://ui5.sap.com/#/topic/e15067d976f24b11907f4c262bd749a0 Execution Scope}).
*/

@@ -323,0 +323,0 @@ oExecutionScope?: {

@@ -1,2 +0,2 @@

// For Library Version: 1.109.0
// For Library Version: 1.115.0

@@ -19,3 +19,3 @@ declare module "sap/ui/webc/common/library" {}

*/
export default class WebComponent extends Control {
class WebComponent extends Control {
/**

@@ -60,2 +60,3 @@ * Constructs and initializes a Web Component Wrapper with the given `sId` and settings.

}
export default WebComponent;

@@ -72,3 +73,3 @@ export interface $WebComponentSettings extends $ControlSettings {}

*/
export default class WebComponentMetadata extends ElementMetadata {
class WebComponentMetadata extends ElementMetadata {
/**

@@ -106,2 +107,3 @@ * Creates a new metadata object for a WebComponent Wrapper subclass.

}
export default WebComponentMetadata;
}

@@ -108,0 +110,0 @@

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

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc