Socket
Socket
Sign inDemoInstall

@syncfusion/ej2-diagrams

Package Overview
Dependencies
7
Maintainers
3
Versions
245
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

Comparing version 21.1.35 to 21.1.37

2

dist/global/index.d.ts
/*!
* filename: index.d.ts
* version : 21.1.35
* version : 21.1.37
* Copyright Syncfusion Inc. 2001 - 2020. All rights reserved.

@@ -5,0 +5,0 @@ * Use of this code is subject to the terms of our license.

@@ -5,3 +5,3 @@ {

"_inBundle": false,
"_integrity": "sha512-TllOhj15FeXRjInK5aEAoX58JSg/zrh885NEkUrTR2XyzHyzVgYNwvnvPpQo/1WzOBdNr47x6rC/5dFVSYKnxQ==",
"_integrity": "sha512-LfcG1lgMn67wx6svycTcQR0Xj0mVgtAxcVSvSpuR+3sLxetH5qliZy4wIzKSMZZ41y0e/g3AiZ1FRPdx7tt+ag==",
"_location": "/@syncfusion/ej2-diagrams",

@@ -27,4 +27,4 @@ "_phantomChildren": {},

],
"_resolved": "https://nexus.syncfusion.com/repository/ej2-release/@syncfusion/ej2-diagrams/-/ej2-diagrams-19.14.9.tgz",
"_shasum": "aeca3a6ceefdb01bfd2634ab4a40038e2e781382",
"_resolved": "https://nexus.syncfusion.com/repository/ej2-hotfix-new/@syncfusion/ej2-diagrams/-/ej2-diagrams-19.14.9.tgz",
"_shasum": "caefe698f61ec9f06f893f158e076141ec1c6bc5",
"_spec": "@syncfusion/ej2-diagrams@*",

@@ -40,9 +40,9 @@ "_where": "/jenkins/workspace/elease-automation_release_21.1.1/packages/included",

"dependencies": {
"@syncfusion/ej2-base": "~21.1.35",
"@syncfusion/ej2-buttons": "~21.1.35",
"@syncfusion/ej2-data": "~21.1.35",
"@syncfusion/ej2-inputs": "~21.1.35",
"@syncfusion/ej2-lists": "~21.1.35",
"@syncfusion/ej2-navigations": "~21.1.35",
"@syncfusion/ej2-popups": "~21.1.35"
"@syncfusion/ej2-base": "~21.1.37",
"@syncfusion/ej2-buttons": "~21.1.37",
"@syncfusion/ej2-data": "~21.1.37",
"@syncfusion/ej2-inputs": "~21.1.37",
"@syncfusion/ej2-lists": "~21.1.37",
"@syncfusion/ej2-navigations": "~21.1.37",
"@syncfusion/ej2-popups": "~21.1.37"
},

@@ -79,4 +79,4 @@ "deprecated": false,

"typings": "index.d.ts",
"version": "21.1.35",
"version": "21.1.37",
"sideEffects": true
}

@@ -222,4 +222,6 @@ import { Connector } from '../objects/connector';

function checkForConnectorSegment(conn, handle, position, diagram) {
var targetPaddingValue = 10 / diagram.scrollSettings.currentZoom;
var sourcePaddingValue = 10 / diagram.scrollSettings.currentZoom;
//(EJ2-70650)-Unable to drag bezier control thumb, when we increase handleSize value
//Added below code for drag the bezier control thumb while increasing handle size (Changing cursor from pointer to drag cursor)
var targetPaddingValue = (handle.handleSize / 2) / diagram.scrollSettings.currentZoom;
var sourcePaddingValue = (handle.handleSize / 2) / diagram.scrollSettings.currentZoom;
if (conn.type === 'Bezier' && diagram.connectorEditingToolModule) {

@@ -226,0 +228,0 @@ for (var i = 0; i < conn.segments.length; i++) {

@@ -376,2 +376,8 @@ import { PointModel } from '../primitives/point-model';

/**
* connect the node's without overlapping in automatic layout
*
* @default 'SamePoint'
*/
connectionPointOrigin?: ConnectionPointOrigin;
/**
* Provides orientation of the diagram layout

@@ -378,0 +384,0 @@ *

@@ -464,5 +464,6 @@ import { Point } from './../primitives/point';

if (options.doWrap || options.textOverflow !== 'Wrap') {
var innerHtmlTextElement = document.getElementById(options.id + '_text');
if (innerHtmlTextElement) {
innerHtmlTextElement.innerHTML = '';
//(EJ2-70658)- Node annotation disappear, while giving same id for annotation in two different diagrams
//Added the below code for removing the extra span element that added when we double click the text annotation node
while (text.firstChild) {
text.removeChild(text.firstChild);
}

@@ -469,0 +470,0 @@ this.setSvgStyle(text, options, diagramId);

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 not supported yet

Sorry, the diff of this file is too big to display

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is too big to display

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is too big to display

Sorry, the diff of this file is not supported yet

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

Packages

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc