@eric-emg/symphiq-components 1.2.54 → 1.2.55

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.
@@ -21602,6 +21602,19 @@ class SymphiqFunnelAnalysisDashboardComponent {
21602
21602
  effect(() => {
21603
21603
  this.searchService.setData(this.allMetrics(), this.insights(), this.allBreakdowns());
21604
21604
  });
21605
+ // Set embedded scroll container when scrollElement input changes
21606
+ effect(() => {
21607
+ const scrollEl = this.scrollElement();
21608
+ const isEmbedded = this.embedded();
21609
+ if (isEmbedded && scrollEl) {
21610
+ console.log('[SCROLL v7] Setting embeddedScrollContainer from input', {
21611
+ scrollHeight: scrollEl.scrollHeight,
21612
+ clientHeight: scrollEl.clientHeight
21613
+ });
21614
+ this.embeddedScrollContainer = scrollEl;
21615
+ this.tooltipService.setScrollContainer(scrollEl);
21616
+ }
21617
+ });
21605
21618
  // Handle scroll events from parent - unified scroll event handler for ALL features
21606
21619
  effect(() => {
21607
21620
  const scrollEvent = this.scrollEvent();