@eric-emg/symphiq-components 1.2.62 → 1.2.63

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.
@@ -11192,7 +11192,9 @@ class TooltipContainerComponent {
11192
11192
  const padding = 10;
11193
11193
  const bounds = this.viewportBounds();
11194
11194
  // Calculate effective viewport boundaries
11195
- const effectiveLeft = bounds?.left ?? 0;
11195
+ // Only use actual window edges (0 and window.innerWidth) for constraints
11196
+ // Don't let container bounds force tooltips away from edges
11197
+ const effectiveLeft = 0;
11196
11198
  const effectiveRight = bounds?.right ?? window.innerWidth;
11197
11199
  // Handle 'auto' positioning with mouse coordinates
11198
11200
  if (position === 'auto' && mousePos) {
@@ -11258,7 +11260,8 @@ class TooltipContainerComponent {
11258
11260
  const padding = 10;
11259
11261
  const bounds = this.viewportBounds();
11260
11262
  // Calculate effective viewport boundaries
11261
- const effectiveTop = bounds?.top ?? 0;
11263
+ // Use actual window edges for constraints
11264
+ const effectiveTop = 0;
11262
11265
  const effectiveBottom = bounds?.bottom ?? window.innerHeight;
11263
11266
  // Estimate tooltip height based on type
11264
11267
  let estimatedHeight = 100;