@brightspace-ui/core 3.176.1 → 3.176.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.
|
@@ -442,7 +442,7 @@ class CollapsiblePanel extends SkeletonMixin(FocusMixin(LitElement)) {
|
|
|
442
442
|
|
|
443
443
|
_handlePanelClick(e) {
|
|
444
444
|
const content = this.shadowRoot.querySelector('.d2l-collapsible-panel-content');
|
|
445
|
-
if (e.target !== content && !isComposedAncestor(content, e.target)) this._toggleExpand();
|
|
445
|
+
if (e.target !== content && e.target.isConnected && !isComposedAncestor(content, e.target)) this._toggleExpand();
|
|
446
446
|
}
|
|
447
447
|
|
|
448
448
|
_handleSummarySlotChange(e) {
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@brightspace-ui/core",
|
|
3
|
-
"version": "3.176.
|
|
3
|
+
"version": "3.176.2",
|
|
4
4
|
"description": "A collection of accessible, free, open-source web components for building Brightspace applications",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"repository": "https://github.com/BrightspaceUI/core.git",
|