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

@jsplumb/community

Package Overview
Dependencies
Maintainers
1
Versions
47
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@jsplumb/community - npm Package Compare versions

Comparing version 4.0.0-RC40 to 4.0.0-RC41

2

package.json
{
"name": "@jsplumb/community",
"version": "4.0.0-RC40",
"version": "4.0.0-RC41",
"description": "Visual connectivity for webapps. This package contains `community-core` and `browser-ui`, and is equivalent to the way that previous versions of the Community edition were packaged. Note that this package is effectively deprecated, and will not always be available. Try importing `@jsplumb/browser-ui` instead.",

@@ -5,0 +5,0 @@ "main": "js/jsplumb.community.cjs.js",

@@ -6,3 +6,3 @@ import { jsPlumbDefaults, jsPlumbHelperFunctions, Dictionary, Offset, PointArray, Size, jsPlumbElement, TypeDescriptor, JsPlumbInstance, AbstractConnector, Endpoint, Overlay, RedrawResult, PaintStyle, OverlayCapableComponent, Segment, LabelOverlay, Connection, Component, DeleteConnectionOptions } from '@jsplumb/community-core';

import { CollicatOptions, Collicat, Drag } from './collicat';
import { jsPlumbList, jsPlumbListManager, jsPlumbListOptions } from "./lists";
import { JsPlumbList, JsPlumbListManager, JsPlumbListOptions } from "./lists";
export interface UIComponent {

@@ -103,3 +103,3 @@ canvas: HTMLElement;

eventManager: EventManager;
listManager: jsPlumbListManager;
listManager: JsPlumbListManager;
draggingClass: string;

@@ -193,3 +193,3 @@ elementDraggingClass: string;

*/
addList(el: Element, options?: jsPlumbListOptions): jsPlumbList;
addList(el: Element, options?: JsPlumbListOptions): JsPlumbList;
/**

@@ -196,0 +196,0 @@ * Removes a managed list from the instance

@@ -9,3 +9,3 @@ import { BrowserJsPlumbInstance, jsPlumbDOMElement } from "./browser-jsplumb-instance";

}
export interface jsPlumbListOptions {
export interface JsPlumbListOptions {
anchor?: AnchorSpec;

@@ -22,7 +22,7 @@ deriveAnchor?: (edge: SupportedEdge, index: number, ep: Endpoint, conn: Connection) => Anchor;

*/
export declare class jsPlumbListManager {
export declare class JsPlumbListManager {
private instance;
options: ListManagerOptions;
count: number;
lists: Dictionary<jsPlumbList>;
lists: Dictionary<JsPlumbList>;
constructor(instance: BrowserJsPlumbInstance, params?: ListManagerOptions);

@@ -34,3 +34,3 @@ /**

*/
addList(el: Element, options?: jsPlumbListOptions): jsPlumbList;
addList(el: Element, options?: JsPlumbListOptions): JsPlumbList;
/**

@@ -41,3 +41,3 @@ * Destroy any scrollable list associated with the given element.

removeList(el: Element): void;
private findParentList;
findParentList(el: jsPlumbDOMElement): JsPlumbList;
}

@@ -49,3 +49,3 @@ /**

*/
export declare class jsPlumbList {
export declare class JsPlumbList {
private instance;

@@ -55,5 +55,5 @@ private el;

_scrollHandler: Function;
private readonly domElement;
readonly domElement: jsPlumbDOMElement;
private readonly elId;
constructor(instance: BrowserJsPlumbInstance, el: Element, options: jsPlumbListOptions, id: string);
constructor(instance: BrowserJsPlumbInstance, el: Element, options: JsPlumbListOptions, id: string);
/**

@@ -60,0 +60,0 @@ * Derive an anchor to use for the current situation. In contrast to the way we derive an endpoint, here we use `anchor` from the options, if present, as

@@ -28,3 +28,2 @@ export declare function cls(...className: Array<string>): string;

export declare const ATTRIBUTE_TARGET = "jtk-target";
export declare const BEFORE_DETACH = "beforeDetach";
export declare const CHECK_CONDITION = "checkCondition";

@@ -87,2 +86,4 @@ export declare const CHECK_DROP_ALLOWED = "checkDropAllowed";

export declare const IS_GROUP_KEY = "_isJsPlumbGroup";
export declare const INTERCEPT_BEFORE_DROP = "beforeDrop";
export declare const INTERCEPT_BEFORE_DETACH = "beforeDetach";
export declare const JTK_ID = "jtk-id";

@@ -89,0 +90,0 @@ export declare const PROPERTY_POSITION = "position";

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