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

sprotty-protocol

Package Overview
Dependencies
Maintainers
4
Versions
70
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

sprotty-protocol - npm Package Compare versions

Comparing version 0.11.0-next.18c4d4d.29 to 0.11.0-next.1ce0c38.35

1

lib/actions.d.ts

@@ -285,2 +285,3 @@ /********************************************************************************

const KIND = "open";
function create(elementId: string): OpenAction;
}

@@ -287,0 +288,0 @@ /**

@@ -230,2 +230,9 @@ "use strict";

OpenAction.KIND = 'open';
function create(elementId) {
return {
kind: OpenAction.KIND,
elementId: elementId
};
}
OpenAction.create = create;
})(OpenAction = exports.OpenAction || (exports.OpenAction = {}));

@@ -232,0 +239,0 @@ var LayoutAction;

4

package.json
{
"name": "sprotty-protocol",
"version": "0.11.0-next.18c4d4d.29+18c4d4d",
"version": "0.11.0-next.1ce0c38.35+1ce0c38",
"description": "TypeScript declarations for Sprotty to be used both in browser and Node.js context",

@@ -62,3 +62,3 @@ "license": "(EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0)",

],
"gitHead": "18c4d4d5cbb801347b72625198c7dd4919bba2cb"
"gitHead": "1ce0c38b73e171955985ec4d2702ae3891901532"
}

@@ -301,3 +301,3 @@ /********************************************************************************

*/
export interface ElementAndBounds {
export interface ElementAndBounds {
elementId: string

@@ -311,3 +311,3 @@ newPosition?: Point

*/
export interface ElementAndAlignment {
export interface ElementAndAlignment {
elementId: string

@@ -363,3 +363,3 @@ newAlignment: Point

*/
export interface CollapseExpandAction {
export interface CollapseExpandAction {
kind: typeof CollapseExpandAction.KIND

@@ -385,3 +385,3 @@ expandIds: string[]

*/
export interface CollapseExpandAllAction {
export interface CollapseExpandAllAction {
kind: typeof CollapseExpandAllAction.KIND

@@ -407,2 +407,9 @@ expand: boolean

export const KIND = 'open';
export function create(elementId: string): OpenAction {
return {
kind: KIND,
elementId
};
}
}

@@ -409,0 +416,0 @@

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

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