@eric-emg/symphiq-components 1.3.52 → 1.3.54
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.
|
@@ -104699,17 +104699,17 @@ class SymphiqProfileAnalysisUnifiedDashboardComponent {
|
|
|
104699
104699
|
return normalized?.metrics || [];
|
|
104700
104700
|
}, ...(ngDevMode ? [{ debugName: "allMetrics" }] : []));
|
|
104701
104701
|
this.allCharts = computed(() => {
|
|
104702
|
-
const analysis = this.
|
|
104702
|
+
const analysis = this.funnelAnalysis();
|
|
104703
104703
|
if (!analysis)
|
|
104704
104704
|
return [];
|
|
104705
|
-
const normalized = normalizeToV3(analysis);
|
|
104705
|
+
const normalized = normalizeToV3(analysis.performanceOverviewStructured);
|
|
104706
104706
|
return normalized?.charts || [];
|
|
104707
104707
|
}, ...(ngDevMode ? [{ debugName: "allCharts" }] : []));
|
|
104708
104708
|
this.allInsights = computed(() => {
|
|
104709
|
-
const analysis = this.
|
|
104709
|
+
const analysis = this.funnelAnalysis();
|
|
104710
104710
|
if (!analysis)
|
|
104711
104711
|
return [];
|
|
104712
|
-
const normalized = normalizeToV3(analysis);
|
|
104712
|
+
const normalized = normalizeToV3(analysis.performanceOverviewStructured);
|
|
104713
104713
|
return normalized?.insights || [];
|
|
104714
104714
|
}, ...(ngDevMode ? [{ debugName: "allInsights" }] : []));
|
|
104715
104715
|
this.unifiedTimeline = computed(() => {
|