Socket
Socket
Sign inDemoInstall

@syncfusion/ej2-popups

Package Overview
Dependencies
Maintainers
3
Versions
227
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@syncfusion/ej2-popups - npm Package Compare versions

Comparing version 23.1.36 to 23.1.38

8

CHANGELOG.md

@@ -9,2 +9,10 @@ # Changelog

- `#I498062` - The console errors with the Tooltip component while dragging a diagram node over another node frequently has been resolved.
## 23.1.36 (2023-09-15)
### Tooltip
#### Bug Fixes
- `#I498062` - The issue with the disabled arrow tip pointer has been resolved.

@@ -11,0 +19,0 @@ - `#I494771` - Provided support to dynamically update the isSticky property value of the Tooltip component.

4

dist/global/index.d.ts
/*!
* filename: index.d.ts
* version : 23.1.36
* Copyright Syncfusion Inc. 2001 - 2020. All rights reserved.
* version : 23.1.38
* Copyright Syncfusion Inc. 2001 - 2023. All rights reserved.
* Use of this code is subject to the terms of our license.

@@ -6,0 +6,0 @@ * A copy of the current license can be obtained at any time by e-mailing

{
"_from": "@syncfusion/ej2-popups@*",
"_id": "@syncfusion/ej2-popups@21.6.0",
"_id": "@syncfusion/ej2-popups@23.1.36",
"_inBundle": false,
"_integrity": "sha512-KDx7/RK6zpYAeKbapTCmAvpmYKbKbFSUEPC/d5BqOVzLYSazlKYmZnbplvCwnubD5Fff2P6iKE1EdvqPoBwXJQ==",
"_integrity": "sha512-IM+OViCVE0ILMQQ2kjLfh4afKD15ZW6Ag61k/56PSiXFRXDcLipXPIopduQlZtNRBJzbPJbUbgMi8IlbHrE0zA==",
"_location": "/@syncfusion/ej2-popups",

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

],
"_resolved": "https://nexus.syncfusion.com/repository/ej2-release/@syncfusion/ej2-popups/-/ej2-popups-21.6.0.tgz",
"_shasum": "94188dbcabe52528d34eed967202e5fd47a08e1a",
"_resolved": "https://nexus.syncfusion.com/repository/ej2-hotfix-new/@syncfusion/ej2-popups/-/ej2-popups-23.1.36.tgz",
"_shasum": "d9cfc0ec41acc6aceb726cff9f0095ee488f97c4",
"_spec": "@syncfusion/ej2-popups@*",

@@ -59,3 +59,3 @@ "_where": "/jenkins/workspace/elease-automation_release_23.1.1/packages/included",

"dependencies": {
"@syncfusion/ej2-base": "~23.1.36",
"@syncfusion/ej2-base": "~23.1.38",
"@syncfusion/ej2-buttons": "~23.1.36"

@@ -96,4 +96,4 @@ },

"typings": "index.d.ts",
"version": "23.1.36",
"version": "23.1.38",
"sideEffects": false
}

@@ -300,3 +300,4 @@ var __extends = (this && this.__extends) || (function () {

Tooltip.prototype.adjustArrow = function (target, position, tooltipPositionX, tooltipPositionY) {
if (this.showTipPointer === false) {
var arrowEle = select('.' + ARROW_TIP, this.tooltipEle);
if (this.showTipPointer === false || arrowEle === null) {
return;

@@ -310,3 +311,2 @@ }

var tooltipHeight = this.tooltipEle.clientHeight;
var arrowEle = select('.' + ARROW_TIP, this.tooltipEle);
var arrowInnerELe = select('.' + ARROW_TIP_INNER, this.tooltipEle);

@@ -726,4 +726,4 @@ var tipWidth = arrowEle.offsetWidth;

this.tooltipEle.style.display = 'block';
if (this.showTipPointer && (newpos.indexOf('Bottom') === 0 || newpos.indexOf('Top') === 0)) {
var arrowEle = select('.' + ARROW_TIP, this.tooltipEle);
var arrowEle = select('.' + ARROW_TIP, this.tooltipEle);
if (this.showTipPointer && arrowEle != null && (newpos.indexOf('Bottom') === 0 || newpos.indexOf('Top') === 0)) {
var arrowleft = parseInt(arrowEle.style.left, 10) - (position.left - elePos.left);

@@ -730,0 +730,0 @@ if (arrowleft < 0) {

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

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