@brightspace-ui/core 3.19.0 → 3.19.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.
@@ -380,6 +380,9 @@ export class TableWrapper extends RtlMixin(PageableMixin(SelectionMixin(LitEleme
380
380
 
381
381
  this.addEventListener('d2l-dropdown-open', this._handlePopoverOpen);
382
382
  this.addEventListener('d2l-dropdown-close', this._handlePopoverClose);
383
+ this.addEventListener('d2l-tooltip-show', this._handlePopoverOpen);
384
+ this.addEventListener('d2l-tooltip-hide', this._handlePopoverClose);
385
+
383
386
  }
384
387
 
385
388
  disconnectedCallback() {
@@ -387,6 +390,8 @@ export class TableWrapper extends RtlMixin(PageableMixin(SelectionMixin(LitEleme
387
390
 
388
391
  this.removeEventListener('d2l-dropdown-open', this._handlePopoverOpen);
389
392
  this.removeEventListener('d2l-dropdown-close', this._handlePopoverClose);
393
+ this.removeEventListener('d2l-tooltip-show', this._handlePopoverOpen);
394
+ this.removeEventListener('d2l-tooltip-hide', this._handlePopoverClose);
390
395
 
391
396
  this._controlsMutationObserver?.disconnect();
392
397
  this._controlsScrolledMutationObserver?.disconnect();
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@brightspace-ui/core",
3
- "version": "3.19.0",
3
+ "version": "3.19.1",
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",