@aquera/nile-visualization 0.9.0 → 1.0.0
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.
|
@@ -135,10 +135,9 @@ let NileChart = class NileChart extends NileElement {
|
|
|
135
135
|
/** True when elements are projected into `header-actions` (used to show the header row). */
|
|
136
136
|
this.hasHeaderActionsSlot = false;
|
|
137
137
|
this.handleOutsideClick = (e) => {
|
|
138
|
-
if (!
|
|
138
|
+
if (!e.composedPath().includes(this)) {
|
|
139
139
|
this.menuOpen = false;
|
|
140
140
|
this.chatOpen = false;
|
|
141
|
-
this.chatOpen = false;
|
|
142
141
|
}
|
|
143
142
|
};
|
|
144
143
|
this.resolvedConfig = null;
|