New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket
Sign inDemoInstall
Socket

@sapui5/types

Package Overview
Dependencies
Maintainers
6
Versions
109
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@sapui5/types - npm Package Compare versions

Comparing version 1.131.1 to 1.132.0

2

package.json
{
"name": "@sapui5/types",
"version": "1.131.1",
"version": "1.132.0",
"description": "SAPUI5 TypeScript Definitions",

@@ -5,0 +5,0 @@ "homepage": "https://sap.github.io/ui5-typescript/",

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

// For Library Version: 1.131.0
// For Library Version: 1.132.0

@@ -3,0 +3,0 @@ declare module "sap/apf/library" {}

@@ -219,2 +219,7 @@ // For Library Version: 0.0.1

type?: string | PropertyBindingInfo;
/**
* Visibility of the menu item in the menu list
*/
visible?: boolean | PropertyBindingInfo | `{${string}}`;
}

@@ -221,0 +226,0 @@

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

// For Library Version: 1.131.0
// For Library Version: 1.132.0

@@ -3,0 +3,0 @@ declare module "sap/fe/base/BuildingBlockBase" {

@@ -1,3 +0,3 @@

// For Library Version: 1.131.0
// For Library Version: 1.132.0
declare namespace sap {}

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

// For Library Version: 1.131.0
// For Library Version: 1.132.0

@@ -3,0 +3,0 @@ declare module "sap/fe/core/AppComponent" {

@@ -1,3 +0,3 @@

// For Library Version: 1.131.0
// For Library Version: 1.132.0
declare namespace sap {}

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

// For Library Version: 1.131.0
// For Library Version: 1.132.0

@@ -3,0 +3,0 @@ declare module "sap/fe/navigation/library" {

@@ -1,3 +0,3 @@

// For Library Version: 1.131.0
// For Library Version: 1.132.0
declare namespace sap {}

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

// For Library Version: 1.131.0
// For Library Version: 1.132.0

@@ -3,0 +3,0 @@ declare module "sap/fe/plugins/managecache/library" {}

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

// For Library Version: 1.131.0
// For Library Version: 1.132.0

@@ -3,0 +3,0 @@ declare module "sap/fe/templates/library" {}

@@ -1,3 +0,3 @@

// For Library Version: 1.131.0
// For Library Version: 1.132.0
declare namespace sap {}

@@ -1,3 +0,3 @@

// For Library Version: 1.131.0
// For Library Version: 1.132.0
declare namespace sap {}

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

// For Library Version: 1.131.0
// For Library Version: 1.132.0

@@ -3,0 +3,0 @@ declare module "sap/insights/library" {}

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

// For Library Version: 1.131.1
// For Library Version: 1.132.1

@@ -3,0 +3,0 @@ declare module "sap/ndc/library" {}

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

// For Library Version: 1.131.0
// For Library Version: 1.132.0

@@ -16,3 +16,8 @@ declare module "sap/ovp/library" {}

*/
export default class Component extends AppComponent {
export default class Component
extends AppComponent
implements
/* was: sap.fe.core.buildingBlocks.IBuildingBlockOwnerComponent */ Object
{
__implements__sap_fe_core_buildingBlocks_IBuildingBlockOwnerComponent: boolean;
/**

@@ -19,0 +24,0 @@ * Main class used for Overview Page Application Component

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

// For Library Version: 1.131.0
// For Library Version: 1.132.0

@@ -915,2 +915,6 @@ declare module "sap/rules/ui/library" {

* Constructor for a new AstExpressionLanguage element.
*
* 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.
*/

@@ -1088,2 +1092,4 @@ constructor();

import { ExpressionType } from "sap/rules/ui/library";
import { PropertyBindingInfo } from "sap/ui/base/ManagedObject";

@@ -1101,2 +1107,6 @@

* Constructor for a new ExpressionLanguage element.
*
* 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.
*/

@@ -1223,2 +1233,40 @@ constructor();

/**
* Separates the expression into individual tokens.
*
*
* @returns [oResult] Returns the tokens and their semantic information.
*/
getExpressionMetadata(
/**
* The expression that has to be tokenized.
*/
sExpression?: string
): object;
/**
* Provides a context-sensitive suggestion list that assists the business user with the completion of the
* input of an expression using the rule expression language.
*
*
* @returns [oResult] Returns valid suggestions for the expression that needs to be completed. If tokenizing
* was requested, returns the semantics of the tokens identified in the whole expression.
*/
getSuggestions(
/**
* The rule expression to be completed.
*/
sExpression?: string,
/**
* The expected business data type of the expression.
*/
eType?: ExpressionType | keyof typeof ExpressionType,
/**
* Indicates whether the final expression is a collection.
*/
bCollection?: boolean,
/**
* Indicates whether to return tokenizing sementics.
*/
bToken?: boolean
): object;
/**
* Gets current value of property {@link #getValueHelpCallback valueHelpCallback}.

@@ -1252,2 +1300,11 @@ *

/**
* Sets the expression language data (vocabulary and metadata).
*/
setData(
/**
* Contains the language data
*/
oData?: object
): void;
/**
* Sets a new value for property {@link #getValueHelpCallback valueHelpCallback}.

@@ -1270,2 +1327,30 @@ *

): this;
/**
* Validates a given rule expression according to a specific business data type.
*
*
* @returns [oResult] Sends the validation status. In case of success, returns the actual data type of the
* whole expression). In case of error, returns error details and cursor position of error. If tokenizing
* was requested, returns the semantics of the tokens identified in the whole expression. If value help
* use is identified a promise deferredResult is added to the oResult object. deferredResult is resolved
* with an oResult object that includes validation results also for value help.
*/
validateExpression(
/**
* The expression to be validated.
*/
sExpression?: string,
/**
* The expected data type of the expression.
*/
eType?: ExpressionType | keyof typeof ExpressionType,
/**
* Indicates whether the expression is a collection.
*/
bCollection?: boolean,
/**
* Indicates whether to return tokenizing semantics.
*/
bToken?: boolean
): object;
}

@@ -1272,0 +1357,0 @@ /**

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

// For Library Version: 1.131.1
// For Library Version: 1.132.1

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

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

// For Library Version: 1.131.1
// For Library Version: 1.132.1

@@ -3,0 +3,0 @@ declare namespace sap {

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

// For Library Version: 1.131.1
// For Library Version: 1.132.1

@@ -3,0 +3,0 @@ declare module "sap/ui/export/library" {

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

// For Library Version: 1.131.1
// For Library Version: 1.132.1

@@ -1594,2 +1594,4 @@ declare module "sap/ui/fl/library" {}

"sap/ui/fl/apply/_internal/flexState/communication/FLPAboutInfo": undefined;
"sap/ui/fl/apply/_internal/flexState/compVariants/CompVariantManagementState": undefined;

@@ -1669,2 +1671,4 @@

"sap/ui/fl/initial/api/InitialFlexAPI": undefined;
"sap/ui/fl/interfaces/BaseLoadConnector": undefined;

@@ -1696,2 +1700,4 @@

"sap/ui/fl/variants/VariantManager": undefined;
"sap/ui/fl/variants/VariantModel": undefined;

@@ -1698,0 +1704,0 @@

@@ -1,3 +0,3 @@

// For Library Version: 1.131.0
// For Library Version: 1.132.0
declare namespace sap {}

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

// For Library Version: 1.131.1
// For Library Version: 1.132.1

@@ -109,2 +109,4 @@ declare module "sap/ui/rta/api/startAdaptation" {

"sap/ui/rta/plugin/annotations/AnnotationChangeDialog": undefined;
"sap/ui/rta/service/Action": undefined;

@@ -111,0 +113,0 @@

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

// For Library Version: 1.131.1
// For Library Version: 1.132.1

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

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

// For Library Version: 1.131.1
// For Library Version: 1.132.1

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

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

// For Library Version: 1.131.1
// For Library Version: 1.132.1

@@ -3,0 +3,0 @@ declare module "sap/ui/testrecorder/library" {}

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

// For Library Version: 1.131.1
// For Library Version: 1.132.1

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

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

// For Library Version: 1.131.1
// For Library Version: 1.132.0

@@ -3,0 +3,0 @@ declare namespace sap {

@@ -1,3 +0,3 @@

// For Library Version: 1.131.0
// For Library Version: 1.132.0
declare namespace sap {}

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

// For Library Version: 1.131.0
// For Library Version: 1.132.0

@@ -3,0 +3,0 @@ declare module "sap/zen/commons/library" {}

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

// For Library Version: 1.131.0
// For Library Version: 1.132.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

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