@eagami/ui 5.40.0 → 5.41.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/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@eagami/ui",
|
|
3
|
-
"version": "5.
|
|
3
|
+
"version": "5.41.0",
|
|
4
4
|
"description": "Lightweight, accessible, themeable Angular UI component library and icon set built on CSS custom properties",
|
|
5
5
|
"author": "Michal Wiraszka <michal@eagami.com>",
|
|
6
6
|
"license": "MIT",
|
package/src/styles/_mixins.scss
CHANGED
package/types/eagami-ui.d.ts
CHANGED
|
@@ -3790,7 +3790,8 @@ declare class TabsComponent {
|
|
|
3790
3790
|
type TooltipPosition = 'top' | 'bottom' | 'left' | 'right';
|
|
3791
3791
|
/**
|
|
3792
3792
|
* Attaches a positioned tooltip to its host element. Shows on hover and
|
|
3793
|
-
* focus, hides on leave/blur or Escape
|
|
3793
|
+
* focus, hides on leave/blur or Escape (a blur while the pointer is still on
|
|
3794
|
+
* the trigger keeps the bubble open), and wires up `aria-describedby` so
|
|
3794
3795
|
* the tooltip text is announced to assistive technology. Accepts either a
|
|
3795
3796
|
* plain string or a `TemplateRef` for styled multi-part content. Binding an
|
|
3796
3797
|
* empty string suppresses the bubble, which is how a host shows one only in
|
|
@@ -3844,10 +3845,13 @@ declare class TooltipDirective implements OnDestroy {
|
|
|
3844
3845
|
private templateView;
|
|
3845
3846
|
private scrollable;
|
|
3846
3847
|
private hideTimer;
|
|
3848
|
+
private pointerInside;
|
|
3847
3849
|
private readonly tooltipId;
|
|
3848
3850
|
private readonly hoverMql;
|
|
3849
3851
|
private readonly showHandler;
|
|
3852
|
+
private readonly pointerLeaveHandler;
|
|
3850
3853
|
private readonly hideHandler;
|
|
3854
|
+
private readonly focusoutHandler;
|
|
3851
3855
|
private readonly bubbleEnterHandler;
|
|
3852
3856
|
private readonly supportsFocusVisible;
|
|
3853
3857
|
private readonly focusHandler;
|