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

@logicflow/core

Package Overview
Dependencies
Maintainers
6
Versions
227
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@logicflow/core - npm Package Compare versions

Comparing version 1.2.16 to 1.2.17

2

package.json
{
"name": "@logicflow/core",
"version": "1.2.16",
"version": "1.2.17",
"description": "LogicFlow core, to quickly build flowchart editor",

@@ -5,0 +5,0 @@ "main": "dist/entry.js",

@@ -39,2 +39,3 @@ import EventEmitter from '../event/eventEmitter';

setStep(step: number): void;
setModel(model: IBaseModel): void;
handleMouseDown: (e: MouseEvent) => void;

@@ -41,0 +42,0 @@ handleMouseMove: (e: MouseEvent) => void;

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

import { action, observable, computed, toJS, isObservable, configure } from 'mobx';
export { action, observable, computed, isObservable, toJS, configure, };
import { action, observable, computed, toJS, isObservable, configure, reaction, IReactionDisposer } from 'mobx';
export { action, observable, computed, isObservable, toJS, configure, reaction, IReactionDisposer, };

@@ -5,2 +5,3 @@ import { h, Component } from 'preact';

import { StepDrag } from '../../util/drag';
import { IReactionDisposer } from '../../util/mobx';
declare type IProps = {

@@ -24,3 +25,5 @@ model: BaseNodeModel;

clickTimer: number;
modelDisposer: IReactionDisposer;
constructor(props: any);
componentWillUnmount(): void;
abstract getShape(): any;

@@ -27,0 +30,0 @@ getAnchorShape(anchorData: any): h.JSX.Element;

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