@progress/kendo-charts 2.6.2-dev.202411051559 → 2.6.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/dist/es/chart/chart.js
CHANGED
|
@@ -1458,7 +1458,7 @@ var Chart = (function (Class) {
|
|
|
1458
1458
|
return;
|
|
1459
1459
|
}
|
|
1460
1460
|
|
|
1461
|
-
if (focusState.focusedElement) {
|
|
1461
|
+
if (focusState.focusedElement && focusState.focusedElement.clearFocusFromVisual) {
|
|
1462
1462
|
focusState.focusedElement.clearFocusFromVisual();
|
|
1463
1463
|
this._clearElementActiveDescendant();
|
|
1464
1464
|
}
|
|
@@ -1413,7 +1413,7 @@ class Chart extends Class {
|
|
|
1413
1413
|
return;
|
|
1414
1414
|
}
|
|
1415
1415
|
|
|
1416
|
-
if (focusState.focusedElement) {
|
|
1416
|
+
if (focusState.focusedElement && focusState.focusedElement.clearFocusFromVisual) {
|
|
1417
1417
|
focusState.focusedElement.clearFocusFromVisual();
|
|
1418
1418
|
this._clearElementActiveDescendant();
|
|
1419
1419
|
}
|