@brightspace-ui/core 1.207.0 → 1.207.1
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.
|
@@ -472,7 +472,6 @@ export const DropdownContentMixin = superclass => class extends LocalizeCoreElem
|
|
|
472
472
|
|| isComposedAncestor(this.__getOpener(), activeElement)) {
|
|
473
473
|
return;
|
|
474
474
|
}
|
|
475
|
-
|
|
476
475
|
this.close();
|
|
477
476
|
}, 0);
|
|
478
477
|
}
|
|
@@ -1023,7 +1022,7 @@ export const DropdownContentMixin = superclass => class extends LocalizeCoreElem
|
|
|
1023
1022
|
}
|
|
1024
1023
|
}
|
|
1025
1024
|
/** Dispatched when user focus enters the dropdown content (trap-focus option only) */
|
|
1026
|
-
this.dispatchEvent(new CustomEvent('d2l-dropdown-focus-enter'));
|
|
1025
|
+
this.dispatchEvent(new CustomEvent('d2l-dropdown-focus-enter', { detail:{ applyFocus: this.__applyFocus } }));
|
|
1027
1026
|
}
|
|
1028
1027
|
|
|
1029
1028
|
async _handleMobileResize() {
|
|
@@ -260,7 +260,7 @@ export const DropdownOpenerMixin = superclass => class extends superclass {
|
|
|
260
260
|
} else {
|
|
261
261
|
this._isOpenedViaClick = true;
|
|
262
262
|
this._isHovering = false;
|
|
263
|
-
this.openDropdown(
|
|
263
|
+
this.openDropdown(false);
|
|
264
264
|
}
|
|
265
265
|
} else this.toggleOpen(false);
|
|
266
266
|
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@brightspace-ui/core",
|
|
3
|
-
"version": "1.207.
|
|
3
|
+
"version": "1.207.1",
|
|
4
4
|
"description": "A collection of accessible, free, open-source web components for building Brightspace applications",
|
|
5
5
|
"repository": "https://github.com/BrightspaceUI/core.git",
|
|
6
6
|
"publishConfig": {
|