@brightspace-ui/core 3.223.0 → 3.224.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.
- package/components/table/table-wrapper.js +1 -4
- package/components/tooltip/tooltip.js +449 -1471
- package/package.json +1 -1
|
@@ -9,9 +9,6 @@ import { ifDefined } from 'lit/directives/if-defined.js';
|
|
|
9
9
|
import { isPopoverSupported } from '../popover/popover-mixin.js';
|
|
10
10
|
import { PageableMixin } from '../paging/pageable-mixin.js';
|
|
11
11
|
import { SelectionMixin } from '../selection/selection-mixin.js';
|
|
12
|
-
import { usePopoverMixin as useTooltipPopover } from '../tooltip/tooltip.js';
|
|
13
|
-
|
|
14
|
-
export const isUsingNativePopover = isPopoverSupported && useTooltipPopover;
|
|
15
12
|
|
|
16
13
|
export const tableStyles = css`
|
|
17
14
|
.d2l-table {
|
|
@@ -750,7 +747,7 @@ export class TableWrapper extends PageableMixin(SelectionMixin(LitElement)) {
|
|
|
750
747
|
}
|
|
751
748
|
|
|
752
749
|
_updateStickyAncestor(node, popoverOpened) {
|
|
753
|
-
if (!this.stickyHeaders ||
|
|
750
|
+
if (!this.stickyHeaders || isPopoverSupported) return;
|
|
754
751
|
|
|
755
752
|
node = getComposedParent(node);
|
|
756
753
|
while (node) {
|