@eric-emg/symphiq-components 1.2.130 → 1.2.131

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.
@@ -73671,6 +73671,19 @@ class SymphiqProfileAnalysisDashboardComponent {
73671
73671
  modal.setMetricsAndInsights(this.allMetrics(), [], this.allCharts());
73672
73672
  }
73673
73673
  });
73674
+ // Update ProfileItemLookupService when profile changes
73675
+ // This enables competitor and focus area chip lookups in business insights
73676
+ effect(() => {
73677
+ const profileValue = this.profile();
73678
+ console.log('[ProfileAnalysisDashboard] profile effect triggered:', {
73679
+ hasProfile: !!profileValue,
73680
+ hasProfileStructured: !!profileValue?.profileStructured,
73681
+ hasSections: !!profileValue?.profileStructured?.sections
73682
+ });
73683
+ if (profileValue) {
73684
+ this.profileItemLookupService.setProfile(profileValue);
73685
+ }
73686
+ });
73674
73687
  }
73675
73688
  onWindowScroll() {
73676
73689
  this.headerScrollService.handleScroll(this.embedded());