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 21.1.37 to 21.1.41

16

CHANGELOG.md

@@ -5,2 +5,18 @@ # Changelog

### Tooltip
#### Bug Fixes
- `#I448669` - The issue in Tooltip component while hovering the previous selected item has been resolved.
### Spinner
#### Bug Fixes
- `#I448112` - Now, able to change the Spinner template dynamically.
- `I449008` - Now, Spinner actions on parent element not affecting the child element spinner.
## 21.1.37 (2023-03-29)
### Dialog

@@ -7,0 +23,0 @@

2

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

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

{
"_from": "@syncfusion/ej2-popups@*",
"_id": "@syncfusion/ej2-popups@21.1.35",
"_id": "@syncfusion/ej2-popups@21.1.37",
"_inBundle": false,
"_integrity": "sha512-74EQU51kDCzX+vSoEpwjFqemN3IOGuhjFTJ7yxvd0KlxX6tkYL+diMdSdeQG7S/R/L1pxcY2GK5oLfEYEWXHIQ==",
"_integrity": "sha512-1uCuECmRX1Ieo/AlQXku2C4eXhkRl3DtHQLl9LHkkuoe2sj4aBGnSMP4e6/i6V/fRn20mD70kzqbu/g35I7X+A==",
"_location": "/@syncfusion/ej2-popups",

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

],
"_resolved": "https://nexus.syncfusion.com/repository/ej2-hotfix-new/@syncfusion/ej2-popups/-/ej2-popups-21.1.35.tgz",
"_shasum": "c6241144297467680f5f19b93c60722a7b9b2e27",
"_resolved": "https://nexus.syncfusion.com/repository/ej2-hotfix-new/@syncfusion/ej2-popups/-/ej2-popups-21.1.37.tgz",
"_shasum": "9223bfb7a7a87e88b9c90e8e79d6628e0fefb464",
"_spec": "@syncfusion/ej2-popups@*",

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

"dependencies": {
"@syncfusion/ej2-base": "~21.1.37",
"@syncfusion/ej2-base": "~21.1.40",
"@syncfusion/ej2-buttons": "~21.1.37"

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

"typings": "index.d.ts",
"version": "21.1.37",
"version": "21.1.41",
"sideEffects": false
}

@@ -809,4 +809,10 @@ import { isNullOrUndefined, classList, createElement } from '@syncfusion/ej2-base';

if (container) {
spinnerWrap = container.classList.contains(CLS_SPINWRAP) ? container :
container.querySelector('.' + CLS_SPINWRAP);
if (container.classList.contains(CLS_SPINWRAP)) {
spinnerWrap = container;
}
else {
var spinWrapCollection = void 0;
spinWrapCollection = container.querySelectorAll('.' + CLS_SPINWRAP);
spinnerWrap = Array.from(spinWrapCollection).find(function (wrap) { return wrap.parentElement === container; }) || null;
}
}

@@ -905,2 +911,5 @@ if (container && spinnerWrap) {

}
if (!isNullOrUndefined(spinTemplate)) {
replaceContent(container, spinTemplate, spinCSSClass);
}
}

@@ -921,10 +930,12 @@ }

var svgElement = container.querySelector('svg');
var radius = theme === 'Bootstrap' ? parseFloat(svgElement.style.height) : parseFloat(svgElement.style.height) / 2;
var classNames = svgElement.getAttribute('class');
var svgClassList = classNames.split(/\s/);
if (svgClassList.indexOf('e-spin-material') >= 0) {
var id = svgElement.getAttribute('id');
clearTimeout(globalTimeOut["" + id].timeOut);
if (!isNullOrUndefined(svgElement)) {
var radius = theme === 'Bootstrap' ? parseFloat(svgElement.style.height) : parseFloat(svgElement.style.height) / 2;
var classNames = svgElement.getAttribute('class');
var svgClassList = classNames.split(/\s/);
if (svgClassList.indexOf('e-spin-material') >= 0) {
var id = svgElement.getAttribute('id');
clearTimeout(globalTimeOut["" + id].timeOut);
}
setTheme(theme, container, radius, makeEle);
}
setTheme(theme, container, radius, makeEle);
}

@@ -1229,2 +1229,7 @@ var __extends = (this && this.__extends) || (function () {

this.popupObj = null;
var currentTarget = selectAll('[data-tooltip-id= "' + this.ctrlId + '_content"]', this.element);
for (var _i = 0, currentTarget_1 = currentTarget; _i < currentTarget_1.length; _i++) {
var target = currentTarget_1[_i];
this.restoreElement(target);
}
};

@@ -1231,0 +1236,0 @@ __decorate([

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