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.2.4 to 24.1.41

33

CHANGELOG.md

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

## 23.1.44 (2023-11-07)
### Dialog
#### Bug Fixes
- `#I506296` - Resolved issue where the dialog would disappear or abruptly shift beyond the viewport when dragging and dropping.
## 23.1.43 (2023-10-31)
### Tooltip
#### Bug Fixes
- `#I490793` - Provided support to open or close the `Tooltip` for the default focusable element through keyboard interaction.
## 23.1.38 (2023-09-26)
### Tooltip
#### Bug Fixes
- `#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.
- `#I494771` - Provided support to dynamically update the isSticky property value of the Tooltip component.
## 21.1.35 (2023-03-23)

@@ -40,0 +7,0 @@

2

dist/global/index.d.ts
/*!
* filename: index.d.ts
* version : 23.2.4
* version : 24.1.41
* Copyright Syncfusion Inc. 2001 - 2023. 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@23.1.44",
"_id": "@syncfusion/ej2-popups@21.6.10",
"_inBundle": false,
"_integrity": "sha512-SdRSVhewxAgifiE1dOuGihnkBM/WPMY8TpEmZVHHSobAobNINyVqlwDX+XcBkDFMiyY27sR7IRqY65y8ovNI8Q==",
"_integrity": "sha512-iWd3Db0xV3adJRgyHBEnkddHqWo9m3JssWIFDS4R3wxzvpb0/bVMY26SHnKh6vdbthhyEUVgag1tgOpvWrQu0A==",
"_location": "/@syncfusion/ej2-popups",

@@ -34,2 +34,3 @@ "_phantomChildren": {},

"/@syncfusion/ej2-kanban",
"/@syncfusion/ej2-lists",
"/@syncfusion/ej2-navigations",

@@ -47,6 +48,6 @@ "/@syncfusion/ej2-notifications",

],
"_resolved": "https://nexus.syncfusion.com/repository/ej2-hotfix-new/@syncfusion/ej2-popups/-/ej2-popups-23.1.44.tgz",
"_shasum": "0313590dd1e944040da7181d353d25f70c22afac",
"_resolved": "https://nexus.syncfusion.com/repository/ej2-release/@syncfusion/ej2-popups/-/ej2-popups-21.6.10.tgz",
"_shasum": "40c4494c87c3ee21aa6812b8650a66dfe74847ba",
"_spec": "@syncfusion/ej2-popups@*",
"_where": "/jenkins/workspace/elease-automation_release_23.1.1/packages/included",
"_where": "/jenkins/workspace/elease-automation_release_24.1.1/packages/included",
"author": {

@@ -60,4 +61,4 @@ "name": "Syncfusion Inc."

"dependencies": {
"@syncfusion/ej2-base": "~23.2.4",
"@syncfusion/ej2-buttons": "~23.2.4"
"@syncfusion/ej2-base": "~24.1.41",
"@syncfusion/ej2-buttons": "~24.1.41"
},

@@ -97,4 +98,4 @@ "deprecated": false,

"typings": "index.d.ts",
"version": "23.2.4",
"version": "24.1.41",
"sideEffects": false
}

@@ -568,2 +568,3 @@ import { isNullOrUndefined, classList, createElement, Browser } from '@syncfusion/ej2-base';

spinnerInnerContainer.classList.add(CLS_SPININWRAP);
spinnerInnerContainer.setAttribute('aria-disabled', 'true');
target.appendChild(spinnerContainer);

@@ -570,0 +571,0 @@ spinnerContainer.appendChild(spinnerInnerContainer);

@@ -429,4 +429,4 @@ import { Component, ChildProperty, BaseEventArgs } from '@syncfusion/ej2-base';

private renderCloseIcon;
private addDataTooltipId;
private removeDataTooltipId;
private addDescribedBy;
private removeDescribedBy;
private tapHoldHandler;

@@ -433,0 +433,0 @@ private touchEndHandler;

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

};
Tooltip.prototype.addDataTooltipId = function (target, id) {
attributes(target, { 'data-tooltip-id': id });
Tooltip.prototype.addDescribedBy = function (target, id) {
var describedby = (target.getAttribute('aria-describedby') || '').split(/\s+/);
if (describedby.indexOf(id) < 0) {
describedby.push(id);
}
attributes(target, { 'aria-describedby': describedby.join(' ').trim(), 'data-tooltip-id': id });
};
Tooltip.prototype.removeDataTooltipId = function (target) {
Tooltip.prototype.removeDescribedBy = function (target) {
var id = target.getAttribute('data-tooltip-id');
var describedby = (target.getAttribute('aria-describedby') || '').split(/\s+/);
var index = describedby.indexOf(id);
if (index !== -1) {
describedby.splice(index, 1);
}
target.removeAttribute('data-tooltip-id');
var orgdescribedby = describedby.join(' ').trim();
if (orgdescribedby) {
target.setAttribute('aria-describedby', orgdescribedby);
}
else {
target.removeAttribute('aria-describedby');
}
};

@@ -523,12 +540,2 @@ Tooltip.prototype.tapHoldHandler = function (evt) {

});
if (Object.keys(this.htmlAttributes).length !== 0) {
for (var attr in this.htmlAttributes) {
if (attr === "class") {
this.tooltipEle.classList.add(this.htmlAttributes["" + attr]);
}
else {
this.tooltipEle.setAttribute(attr, this.htmlAttributes["" + attr]);
}
}
}
this.tooltipBeforeRender(target, this);

@@ -540,3 +547,3 @@ this.tooltipAfterRender(target, e, showAnimation, this);

this.adjustArrow(target, this.position, this.tooltipPositionX, this.tooltipPositionY);
this.addDataTooltipId(target, this.ctrlId + '_content');
this.addDescribedBy(target, this.ctrlId + '_content');
this.renderContent(target);

@@ -580,3 +587,3 @@ PopupAnimation.stop(this.tooltipEle);

removeClass([ctrlObj.tooltipEle], HIDE_POPUP);
ctrlObj.addDataTooltipId(target, ctrlObj.ctrlId + '_content');
ctrlObj.addDescribedBy(target, ctrlObj.ctrlId + '_content');
ctrlObj.renderContent(target);

@@ -818,3 +825,3 @@ addClass([ctrlObj.tooltipEle], POPUP_OPEN);

}
this.removeDataTooltipId(target);
this.removeDescribedBy(target);
};

@@ -821,0 +828,0 @@ Tooltip.prototype.clear = function () {

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

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

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