@syncfusion/ej2-popups
Advanced tools
Comparing version 20.3.48 to 20.3.49
@@ -5,2 +5,16 @@ # Changelog | ||
### Tooltip | ||
#### Bug Fixes | ||
- `#I397894` - The issue with "when using custom template variant the anchor that triggers the tooltip when hover is unable to receive keyboard focus" has been resolved. | ||
## 20.3.48 (2022-10-05) | ||
### Dialog | ||
#### Bug Fixes | ||
- `#I387601` - Now, when you call the destroy method to destroy the Dialog control, it properly destroys the close icons instance. | ||
## 20.2.49 (2022-09-13) | ||
@@ -7,0 +21,0 @@ |
/*! | ||
* filename: index.d.ts | ||
* version : 20.3.48 | ||
* version : 20.3.49 | ||
* 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@20.3.47", | ||
"_id": "@syncfusion/ej2-popups@20.3.48", | ||
"_inBundle": false, | ||
"_integrity": "sha512-c7r8vkxFWGL1+BVfut4QKatkGhs907rB9MsGxZtK0dw757R/T6imQ1BgEq3G/kislF7t8MnEF3i+bO6nye4yDA==", | ||
"_integrity": "sha512-qdCkoZsP8cTgsEgu1AbwcaJuP8E26K1UeAhuz284XlARreF45/w+m5d/Fxa7oEYNyzlw38vQt3EmywpyIeRoew==", | ||
"_location": "/@syncfusion/ej2-popups", | ||
@@ -45,4 +45,4 @@ "_phantomChildren": {}, | ||
], | ||
"_resolved": "http://nexus.syncfusion.com/repository/ej2-hotfix-new/@syncfusion/ej2-popups/-/ej2-popups-20.3.47.tgz", | ||
"_shasum": "b6b09833b83f0aca6a9857b176bc0ba5d9946625", | ||
"_resolved": "http://nexus.syncfusion.com/repository/ej2-hotfix-new/@syncfusion/ej2-popups/-/ej2-popups-20.3.48.tgz", | ||
"_shasum": "14d75f34ba50ae50d2a9192a5a77f8083a50f77d", | ||
"_spec": "@syncfusion/ej2-popups@*", | ||
@@ -58,4 +58,4 @@ "_where": "/jenkins/workspace/automation_release_19.1.0.1-ZPMUBNQ6AUYH6YGEFBPVYMEQLRRW2SLD4XCZ6GATNZJFYJ3RIAOA/packages/included", | ||
"dependencies": { | ||
"@syncfusion/ej2-base": "~20.3.48", | ||
"@syncfusion/ej2-buttons": "~20.3.48" | ||
"@syncfusion/ej2-base": "~20.3.49", | ||
"@syncfusion/ej2-buttons": "~20.3.49" | ||
}, | ||
@@ -95,4 +95,4 @@ "deprecated": false, | ||
"typings": "index.d.ts", | ||
"version": "20.3.48", | ||
"version": "20.3.49", | ||
"sideEffects": false | ||
} |
@@ -153,6 +153,6 @@ var __extends = (this && this.__extends) || (function () { | ||
Popup.prototype.destroy = function () { | ||
this.element.classList.remove(CLASSNAMES.ROOT, CLASSNAMES.RTL, CLASSNAMES.OPEN, CLASSNAMES.CLOSE); | ||
if (this.element.classList.contains('e-popup-open')) { | ||
this.unwireEvents(); | ||
} | ||
this.element.classList.remove(CLASSNAMES.ROOT, CLASSNAMES.RTL, CLASSNAMES.OPEN, CLASSNAMES.CLOSE); | ||
_super.prototype.destroy.call(this); | ||
@@ -159,0 +159,0 @@ }; |
@@ -101,2 +101,3 @@ var __extends = (this && this.__extends) || (function () { | ||
addClass([this.element], ROOT); | ||
this.element.setAttribute('tabindex', '0'); | ||
}; | ||
@@ -950,2 +951,3 @@ Tooltip.prototype.formatPosition = function () { | ||
var target = targetList_2[_i]; | ||
target.setAttribute('tabindex', '0'); | ||
EventHandler.add(target, 'focus', this.targetHover, this); | ||
@@ -975,2 +977,3 @@ } | ||
} | ||
target.setAttribute("tabindex", "0"); | ||
} | ||
@@ -1022,2 +1025,3 @@ }; | ||
var target = targetList_3[_i]; | ||
target.removeAttribute('tabindex'); | ||
EventHandler.remove(target, 'focus', this.targetHover); | ||
@@ -1050,2 +1054,3 @@ } | ||
} | ||
target.removeAttribute("tabindex"); | ||
}; | ||
@@ -1052,0 +1057,0 @@ Tooltip.prototype.findTarget = 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
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
3527047
48981