@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.40.0",
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",
@@ -44,7 +44,7 @@
44
44
  &:disabled {
45
45
  opacity: 0.6;
46
46
  background-color: var(--color-bg-muted);
47
- cursor: not-allowed;
47
+ cursor: default;
48
48
  }
49
49
  }
50
50
 
@@ -144,7 +144,7 @@ $target-size-min: 24px;
144
144
  }
145
145
 
146
146
  &:disabled {
147
- cursor: not-allowed;
147
+ cursor: default;
148
148
  opacity: 0.5;
149
149
  }
150
150
  }
@@ -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, and wires up `aria-describedby` so
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;