@eric-emg/symphiq-components 1.3.63 → 1.3.64
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.
|
@@ -25734,6 +25734,13 @@ class ConfidenceLevelCardComponent {
|
|
|
25734
25734
|
qualitativeStatus: 'Complete Profile',
|
|
25735
25735
|
quantitativeStatus: 'Full Analytics',
|
|
25736
25736
|
description: 'Journey complete! Symphiq has all the context needed to deliver highly accurate, personalized recommendations. As you execute and your business evolves, keep your profiles updated for continued precision.'
|
|
25737
|
+
},
|
|
25738
|
+
'unified-analysis': {
|
|
25739
|
+
grade: 'A+',
|
|
25740
|
+
percentage: 100,
|
|
25741
|
+
qualitativeStatus: 'Shop + Focus Areas + Metrics',
|
|
25742
|
+
quantitativeStatus: 'Full Synthesis',
|
|
25743
|
+
description: 'Maximum synthesis achieved! Symphiq has combined insights from all your source analyses—Shop, Focus Areas, and Metrics—into unified strategic goals. These recommendations represent the most comprehensive, cross-domain insights available for your business.'
|
|
25737
25744
|
}
|
|
25738
25745
|
};
|
|
25739
25746
|
return dataMap[stepId] || dataMap['business-analysis'];
|
|
@@ -25758,7 +25765,7 @@ class ConfidenceLevelCardComponent {
|
|
|
25758
25765
|
this.backgroundOverlayClasses = computed(() => {
|
|
25759
25766
|
const grade = this.confidenceData().grade;
|
|
25760
25767
|
const isDark = !this.isLightMode();
|
|
25761
|
-
if (grade
|
|
25768
|
+
if (grade.startsWith('A')) {
|
|
25762
25769
|
return isDark
|
|
25763
25770
|
? 'bg-gradient-to-br from-emerald-500/30 via-teal-500/20 to-emerald-500/30'
|
|
25764
25771
|
: 'bg-gradient-to-br from-emerald-400/20 via-teal-400/10 to-emerald-400/20';
|
|
@@ -25793,7 +25800,7 @@ class ConfidenceLevelCardComponent {
|
|
|
25793
25800
|
}, ...(ngDevMode ? [{ debugName: "gradeBadgeContainerClasses" }] : []));
|
|
25794
25801
|
this.glowEffectClasses = computed(() => {
|
|
25795
25802
|
const grade = this.confidenceData().grade;
|
|
25796
|
-
if (grade
|
|
25803
|
+
if (grade.startsWith('A')) {
|
|
25797
25804
|
return 'bg-emerald-500';
|
|
25798
25805
|
}
|
|
25799
25806
|
else if (grade.startsWith('B')) {
|
|
@@ -25807,7 +25814,7 @@ class ConfidenceLevelCardComponent {
|
|
|
25807
25814
|
this.gradeBadgeClasses = computed(() => {
|
|
25808
25815
|
const grade = this.confidenceData().grade;
|
|
25809
25816
|
const isDark = !this.isLightMode();
|
|
25810
|
-
if (grade
|
|
25817
|
+
if (grade.startsWith('A')) {
|
|
25811
25818
|
return isDark
|
|
25812
25819
|
? 'bg-gradient-to-br from-emerald-500/30 to-teal-500/30 border-2 border-emerald-500/50 shadow-[0_0_20px_rgba(16,185,129,0.3)]'
|
|
25813
25820
|
: 'bg-gradient-to-br from-emerald-50 to-teal-50 border-2 border-emerald-300/50 shadow-[0_0_20px_rgba(16,185,129,0.2)]';
|
|
@@ -25829,7 +25836,7 @@ class ConfidenceLevelCardComponent {
|
|
|
25829
25836
|
this.gradeLabelClasses = computed(() => {
|
|
25830
25837
|
const grade = this.confidenceData().grade;
|
|
25831
25838
|
const isDark = !this.isLightMode();
|
|
25832
|
-
if (grade
|
|
25839
|
+
if (grade.startsWith('A')) {
|
|
25833
25840
|
return isDark ? 'text-emerald-300' : 'text-emerald-700';
|
|
25834
25841
|
}
|
|
25835
25842
|
else if (grade.startsWith('B')) {
|
|
@@ -25843,7 +25850,7 @@ class ConfidenceLevelCardComponent {
|
|
|
25843
25850
|
this.gradeValueClasses = computed(() => {
|
|
25844
25851
|
const grade = this.confidenceData().grade;
|
|
25845
25852
|
const isDark = !this.isLightMode();
|
|
25846
|
-
if (grade
|
|
25853
|
+
if (grade.startsWith('A')) {
|
|
25847
25854
|
return isDark
|
|
25848
25855
|
? 'bg-gradient-to-b from-emerald-300 to-emerald-500 bg-clip-text text-transparent'
|
|
25849
25856
|
: 'bg-gradient-to-b from-emerald-600 to-emerald-800 bg-clip-text text-transparent';
|
|
@@ -25873,7 +25880,7 @@ class ConfidenceLevelCardComponent {
|
|
|
25873
25880
|
this.progressValueClasses = computed(() => {
|
|
25874
25881
|
const grade = this.confidenceData().grade;
|
|
25875
25882
|
const isDark = !this.isLightMode();
|
|
25876
|
-
if (grade
|
|
25883
|
+
if (grade.startsWith('A')) {
|
|
25877
25884
|
return isDark ? 'text-emerald-400' : 'text-emerald-600';
|
|
25878
25885
|
}
|
|
25879
25886
|
else if (grade.startsWith('B')) {
|
|
@@ -25893,7 +25900,7 @@ class ConfidenceLevelCardComponent {
|
|
|
25893
25900
|
this.progressBarClasses = computed(() => {
|
|
25894
25901
|
const grade = this.confidenceData().grade;
|
|
25895
25902
|
const baseClasses = 'rounded-full overflow-hidden';
|
|
25896
|
-
if (grade
|
|
25903
|
+
if (grade.startsWith('A')) {
|
|
25897
25904
|
return `${baseClasses} bg-gradient-to-r from-emerald-500 via-teal-500 to-emerald-600`;
|
|
25898
25905
|
}
|
|
25899
25906
|
else if (grade.startsWith('B')) {
|
|
@@ -25909,7 +25916,7 @@ class ConfidenceLevelCardComponent {
|
|
|
25909
25916
|
}, ...(ngDevMode ? [{ debugName: "shimmerClasses" }] : []));
|
|
25910
25917
|
this.progressGlowClasses = computed(() => {
|
|
25911
25918
|
const grade = this.confidenceData().grade;
|
|
25912
|
-
if (grade
|
|
25919
|
+
if (grade.startsWith('A')) {
|
|
25913
25920
|
return 'bg-gradient-to-r from-emerald-500 to-teal-500';
|
|
25914
25921
|
}
|
|
25915
25922
|
else if (grade.startsWith('B')) {
|
|
@@ -25980,7 +25987,7 @@ class ConfidenceLevelCardComponent {
|
|
|
25980
25987
|
this.currentStepBadgeClasses = computed(() => {
|
|
25981
25988
|
const grade = this.confidenceData().currentStepGrade;
|
|
25982
25989
|
const isDark = !this.isLightMode();
|
|
25983
|
-
if (grade
|
|
25990
|
+
if (grade?.startsWith('A')) {
|
|
25984
25991
|
return isDark
|
|
25985
25992
|
? 'bg-emerald-500/20 text-emerald-400'
|
|
25986
25993
|
: 'bg-emerald-100 text-emerald-700';
|
|
@@ -26008,7 +26015,7 @@ class ConfidenceLevelCardComponent {
|
|
|
26008
26015
|
this.nextDashboardBadgeClasses = computed(() => {
|
|
26009
26016
|
const grade = this.confidenceData().nextDashboardGrade;
|
|
26010
26017
|
const isDark = !this.isLightMode();
|
|
26011
|
-
if (grade
|
|
26018
|
+
if (grade?.startsWith('A')) {
|
|
26012
26019
|
return isDark
|
|
26013
26020
|
? 'bg-emerald-500/10 text-emerald-500'
|
|
26014
26021
|
: 'bg-emerald-50 text-emerald-600';
|
|
@@ -104269,6 +104276,7 @@ function UnifiedDashboardModalComponent_Conditional_0_Template(rf, ctx) { if (rf
|
|
|
104269
104276
|
class UnifiedDashboardModalComponent {
|
|
104270
104277
|
constructor() {
|
|
104271
104278
|
this.viewMode = input(ViewModeEnum.LIGHT, ...(ngDevMode ? [{ debugName: "viewMode" }] : []));
|
|
104279
|
+
this.loadingSourceAnalysisId = input(...(ngDevMode ? [undefined, { debugName: "loadingSourceAnalysisId" }] : []));
|
|
104272
104280
|
this.priorityActionGoalClick = output();
|
|
104273
104281
|
this.priorityActionRecommendationClick = output();
|
|
104274
104282
|
this.sourceAnalysisClickRequest = output();
|
|
@@ -104405,11 +104413,7 @@ class UnifiedDashboardModalComponent {
|
|
|
104405
104413
|
return data.loadedSourceAnalysisIds.map(id => parseInt(id, 10)).filter(id => !isNaN(id));
|
|
104406
104414
|
}, ...(ngDevMode ? [{ debugName: "loadedSourceAnalysisIdsAsNumbers" }] : []));
|
|
104407
104415
|
this.loadingSourceAnalysisIdAsNumber = computed(() => {
|
|
104408
|
-
|
|
104409
|
-
if (!data?.loadingSourceAnalysisId)
|
|
104410
|
-
return undefined;
|
|
104411
|
-
const num = parseInt(data.loadingSourceAnalysisId, 10);
|
|
104412
|
-
return isNaN(num) ? undefined : num;
|
|
104416
|
+
return this.loadingSourceAnalysisId();
|
|
104413
104417
|
}, ...(ngDevMode ? [{ debugName: "loadingSourceAnalysisIdAsNumber" }] : []));
|
|
104414
104418
|
this.modalDepth = computed(() => {
|
|
104415
104419
|
let depth = 0;
|
|
@@ -104681,7 +104685,7 @@ class UnifiedDashboardModalComponent {
|
|
|
104681
104685
|
let _t;
|
|
104682
104686
|
i0.ɵɵqueryRefresh(_t = i0.ɵɵloadQuery()) && (ctx.modalContent = _t.first);
|
|
104683
104687
|
i0.ɵɵqueryRefresh(_t = i0.ɵɵloadQuery()) && (ctx.modalWrapper = _t.first);
|
|
104684
|
-
} }, inputs: { viewMode: [1, "viewMode"] }, outputs: { priorityActionGoalClick: "priorityActionGoalClick", priorityActionRecommendationClick: "priorityActionRecommendationClick", sourceAnalysisClickRequest: "sourceAnalysisClickRequest" }, decls: 1, vars: 1, consts: [["modalWrapper", ""], ["modalContent", ""], [1, "fixed", "inset-0", "flex", "items-center", "justify-center", "p-4", "overflow-y-auto", 3, "z-index", "visibility"], [1, "fixed", "inset-0", "flex", "items-center", "justify-center", "p-4", "overflow-y-auto"], ["aria-hidden", "true", 1, "fixed", "inset-0", "backdrop-blur-sm", "transition-opacity", "duration-200", 3, "click", "ngClass"], [1, "relative", "w-full", "max-w-6xl", "rounded-2xl", "text-left", "overflow-hidden", "shadow-xl", "border", "backdrop-blur-xl", 3, "click", "ngClass"], [1, "px-6", "py-5", "border-b", "backdrop-blur-sm", 3, "ngClass"], [1, "flex", "items-start", "justify-between"], [1, "flex", "items-start", "gap-3", "flex-1", "min-w-0"], ["type", "button", 1, "mt-0.5", "p-1.5", "rounded-lg", "transition-all", "hover:scale-105", "active:scale-95", "cursor-pointer", "flex-shrink-0", 3, "ngClass"], [1, "flex-1", "min-w-0"], [1, "flex", "items-center", "gap-1.5", "mb-2", "text-xs"], [1, "flex", "items-center", "gap-2", "mb-2"], [1, "text-xl", "font-bold", "leading-tight", 3, "ngClass"], [1, "flex", "items-center", "gap-2", "ml-4", "flex-shrink-0"], [3, "priority", "viewMode"], [3, "timeframe", "viewMode"], ["type", "button", 1, "transition-all", "rounded-lg", "p-1", "hover:scale-110", "active:scale-90", "cursor-pointer", "relative", "ml-4", "flex-shrink-0", 3, "click", "ngClass"], ["fill", "none", "stroke", "currentColor", "viewBox", "0 0 24 24", 1, "w-6", "h-6"], ["stroke-linecap", "round", "stroke-linejoin", "round", "stroke-width", "2", "d", "M6 18L18 6M6 6l12 12"], [1, "px-6", "py-8", "max-h-[80vh]", "overflow-y-auto", "backdrop-blur-sm", 3, "ngClass"], [3, "goal", "allMetrics", "allCharts", "loadedSourceAnalysisIds", "loadingSourceAnalysisId", "viewMode", "currentModalState"], [3, "objectives", "goalTitle", "viewMode"], [3, "goal", "contributingMetrics", "viewMode"], [3, "objective", "viewMode"], [3, "strategy", "viewMode", "allMetrics", "allCharts", "allInsights", "goalTitle", "objectiveTitle", "currentModalState"], [3, "items", "viewMode", "selectedIndex"], ["type", "button", 1, "mt-0.5", "p-1.5", "rounded-lg", "transition-all", "hover:scale-105", "active:scale-95", "cursor-pointer", "flex-shrink-0", 3, "click", "ngClass"], ["fill", "none", "stroke", "currentColor", "viewBox", "0 0 24 24", 1, "w-5", "h-5"], ["stroke-linecap", "round", "stroke-linejoin", "round", "stroke-width", "2", "d", "M15 19l-7-7 7-7"], [1, "font-medium", 3, "ngClass"], ["type", "button", 1, "hover:underline", "cursor-pointer", "transition-colors", 3, "click", "ngClass"], ["fill", "none", "stroke", "currentColor", "viewBox", "0 0 24 24", 1, "w-3", "h-3", "flex-shrink-0", 3, "ngClass"], ["stroke-linecap", "round", "stroke-linejoin", "round", "stroke-width", "2", "d", "M9 5l7 7-7 7"], [1, "text-xs", "font-semibold", "uppercase", "tracking-wider", 3, "ngClass"], [3, "sourceAnalysisClick", "metricClick", "contributingMetricsClick", "showObjectives", "close", "goal", "allMetrics", "allCharts", "loadedSourceAnalysisIds", "loadingSourceAnalysisId", "viewMode", "currentModalState"], [3, "metricClick", "goal", "contributingMetrics", "viewMode"], [3, "goalClick", "recommendationClick", "items", "viewMode", "selectedIndex"]], template: function UnifiedDashboardModalComponent_Template(rf, ctx) { if (rf & 1) {
|
|
104688
|
+
} }, inputs: { viewMode: [1, "viewMode"], loadingSourceAnalysisId: [1, "loadingSourceAnalysisId"] }, outputs: { priorityActionGoalClick: "priorityActionGoalClick", priorityActionRecommendationClick: "priorityActionRecommendationClick", sourceAnalysisClickRequest: "sourceAnalysisClickRequest" }, decls: 1, vars: 1, consts: [["modalWrapper", ""], ["modalContent", ""], [1, "fixed", "inset-0", "flex", "items-center", "justify-center", "p-4", "overflow-y-auto", 3, "z-index", "visibility"], [1, "fixed", "inset-0", "flex", "items-center", "justify-center", "p-4", "overflow-y-auto"], ["aria-hidden", "true", 1, "fixed", "inset-0", "backdrop-blur-sm", "transition-opacity", "duration-200", 3, "click", "ngClass"], [1, "relative", "w-full", "max-w-6xl", "rounded-2xl", "text-left", "overflow-hidden", "shadow-xl", "border", "backdrop-blur-xl", 3, "click", "ngClass"], [1, "px-6", "py-5", "border-b", "backdrop-blur-sm", 3, "ngClass"], [1, "flex", "items-start", "justify-between"], [1, "flex", "items-start", "gap-3", "flex-1", "min-w-0"], ["type", "button", 1, "mt-0.5", "p-1.5", "rounded-lg", "transition-all", "hover:scale-105", "active:scale-95", "cursor-pointer", "flex-shrink-0", 3, "ngClass"], [1, "flex-1", "min-w-0"], [1, "flex", "items-center", "gap-1.5", "mb-2", "text-xs"], [1, "flex", "items-center", "gap-2", "mb-2"], [1, "text-xl", "font-bold", "leading-tight", 3, "ngClass"], [1, "flex", "items-center", "gap-2", "ml-4", "flex-shrink-0"], [3, "priority", "viewMode"], [3, "timeframe", "viewMode"], ["type", "button", 1, "transition-all", "rounded-lg", "p-1", "hover:scale-110", "active:scale-90", "cursor-pointer", "relative", "ml-4", "flex-shrink-0", 3, "click", "ngClass"], ["fill", "none", "stroke", "currentColor", "viewBox", "0 0 24 24", 1, "w-6", "h-6"], ["stroke-linecap", "round", "stroke-linejoin", "round", "stroke-width", "2", "d", "M6 18L18 6M6 6l12 12"], [1, "px-6", "py-8", "max-h-[80vh]", "overflow-y-auto", "backdrop-blur-sm", 3, "ngClass"], [3, "goal", "allMetrics", "allCharts", "loadedSourceAnalysisIds", "loadingSourceAnalysisId", "viewMode", "currentModalState"], [3, "objectives", "goalTitle", "viewMode"], [3, "goal", "contributingMetrics", "viewMode"], [3, "objective", "viewMode"], [3, "strategy", "viewMode", "allMetrics", "allCharts", "allInsights", "goalTitle", "objectiveTitle", "currentModalState"], [3, "items", "viewMode", "selectedIndex"], ["type", "button", 1, "mt-0.5", "p-1.5", "rounded-lg", "transition-all", "hover:scale-105", "active:scale-95", "cursor-pointer", "flex-shrink-0", 3, "click", "ngClass"], ["fill", "none", "stroke", "currentColor", "viewBox", "0 0 24 24", 1, "w-5", "h-5"], ["stroke-linecap", "round", "stroke-linejoin", "round", "stroke-width", "2", "d", "M15 19l-7-7 7-7"], [1, "font-medium", 3, "ngClass"], ["type", "button", 1, "hover:underline", "cursor-pointer", "transition-colors", 3, "click", "ngClass"], ["fill", "none", "stroke", "currentColor", "viewBox", "0 0 24 24", 1, "w-3", "h-3", "flex-shrink-0", 3, "ngClass"], ["stroke-linecap", "round", "stroke-linejoin", "round", "stroke-width", "2", "d", "M9 5l7 7-7 7"], [1, "text-xs", "font-semibold", "uppercase", "tracking-wider", 3, "ngClass"], [3, "sourceAnalysisClick", "metricClick", "contributingMetricsClick", "showObjectives", "close", "goal", "allMetrics", "allCharts", "loadedSourceAnalysisIds", "loadingSourceAnalysisId", "viewMode", "currentModalState"], [3, "metricClick", "goal", "contributingMetrics", "viewMode"], [3, "goalClick", "recommendationClick", "items", "viewMode", "selectedIndex"]], template: function UnifiedDashboardModalComponent_Template(rf, ctx) { if (rf & 1) {
|
|
104685
104689
|
i0.ɵɵconditionalCreate(0, UnifiedDashboardModalComponent_Conditional_0_Template, 27, 32, "div", 2);
|
|
104686
104690
|
} if (rf & 2) {
|
|
104687
104691
|
i0.ɵɵconditional(ctx.isOpen() ? 0 : -1);
|
|
@@ -104904,7 +104908,7 @@ class UnifiedDashboardModalComponent {
|
|
|
104904
104908
|
}
|
|
104905
104909
|
`
|
|
104906
104910
|
}]
|
|
104907
|
-
}], () => [], { viewMode: [{ type: i0.Input, args: [{ isSignal: true, alias: "viewMode", required: false }] }], priorityActionGoalClick: [{ type: i0.Output, args: ["priorityActionGoalClick"] }], priorityActionRecommendationClick: [{ type: i0.Output, args: ["priorityActionRecommendationClick"] }], sourceAnalysisClickRequest: [{ type: i0.Output, args: ["sourceAnalysisClickRequest"] }], modalContent: [{
|
|
104911
|
+
}], () => [], { viewMode: [{ type: i0.Input, args: [{ isSignal: true, alias: "viewMode", required: false }] }], loadingSourceAnalysisId: [{ type: i0.Input, args: [{ isSignal: true, alias: "loadingSourceAnalysisId", required: false }] }], priorityActionGoalClick: [{ type: i0.Output, args: ["priorityActionGoalClick"] }], priorityActionRecommendationClick: [{ type: i0.Output, args: ["priorityActionRecommendationClick"] }], sourceAnalysisClickRequest: [{ type: i0.Output, args: ["sourceAnalysisClickRequest"] }], modalContent: [{
|
|
104908
104912
|
type: ViewChild,
|
|
104909
104913
|
args: ['modalContent']
|
|
104910
104914
|
}], modalWrapper: [{
|
|
@@ -104919,6 +104923,33 @@ function UnifiedWelcomeBannerComponent_Conditional_8_Template(rf, ctx) { if (rf
|
|
|
104919
104923
|
function UnifiedWelcomeBannerComponent_Conditional_9_Template(rf, ctx) { if (rf & 1) {
|
|
104920
104924
|
i0.ɵɵtext(0, " Welcome to Your Unified Analysis ");
|
|
104921
104925
|
} }
|
|
104926
|
+
function UnifiedWelcomeBannerComponent_Conditional_18_Template(rf, ctx) { if (rf & 1) {
|
|
104927
|
+
i0.ɵɵelementStart(0, "div", 12)(1, "div", 17);
|
|
104928
|
+
i0.ɵɵnamespaceSVG();
|
|
104929
|
+
i0.ɵɵelementStart(2, "svg", 18);
|
|
104930
|
+
i0.ɵɵelement(3, "path", 5);
|
|
104931
|
+
i0.ɵɵelementEnd()();
|
|
104932
|
+
i0.ɵɵnamespaceHTML();
|
|
104933
|
+
i0.ɵɵelementStart(4, "div", 6)(5, "p", 19);
|
|
104934
|
+
i0.ɵɵtext(6);
|
|
104935
|
+
i0.ɵɵelementEnd();
|
|
104936
|
+
i0.ɵɵelementStart(7, "p", 20);
|
|
104937
|
+
i0.ɵɵtext(8);
|
|
104938
|
+
i0.ɵɵelementEnd()()();
|
|
104939
|
+
} if (rf & 2) {
|
|
104940
|
+
const ctx_r0 = i0.ɵɵnextContext();
|
|
104941
|
+
i0.ɵɵproperty("ngClass", ctx_r0.synthesisBannerClasses());
|
|
104942
|
+
i0.ɵɵadvance();
|
|
104943
|
+
i0.ɵɵproperty("ngClass", ctx_r0.synthesisBannerIconClasses());
|
|
104944
|
+
i0.ɵɵadvance(4);
|
|
104945
|
+
i0.ɵɵproperty("ngClass", ctx_r0.synthesisBannerTitleClasses());
|
|
104946
|
+
i0.ɵɵadvance();
|
|
104947
|
+
i0.ɵɵtextInterpolate1(" ", ctx_r0.unifiedGoalsCount(), " Unified Goals Synthesized ");
|
|
104948
|
+
i0.ɵɵadvance();
|
|
104949
|
+
i0.ɵɵproperty("ngClass", ctx_r0.synthesisBannerTextClasses());
|
|
104950
|
+
i0.ɵɵadvance();
|
|
104951
|
+
i0.ɵɵtextInterpolate2(" We've combined insights from ", ctx_r0.sourceAnalysesCount(), " source analyses into actionable strategic priorities for ", ctx_r0.businessName(), ". ");
|
|
104952
|
+
} }
|
|
104922
104953
|
class UnifiedWelcomeBannerComponent {
|
|
104923
104954
|
constructor() {
|
|
104924
104955
|
this.viewMode = input(ViewModeEnum.LIGHT, ...(ngDevMode ? [{ debugName: "viewMode" }] : []));
|
|
@@ -104955,9 +104986,17 @@ class UnifiedWelcomeBannerComponent {
|
|
|
104955
104986
|
? 'text-white'
|
|
104956
104987
|
: 'bg-gradient-to-r from-emerald-600 to-cyan-600 bg-clip-text text-transparent', ...(ngDevMode ? [{ debugName: "titleClasses" }] : []));
|
|
104957
104988
|
this.textClasses = computed(() => this.isDark() ? 'text-slate-300' : 'text-slate-700', ...(ngDevMode ? [{ debugName: "textClasses" }] : []));
|
|
104989
|
+
this.synthesisBannerClasses = computed(() => this.isDark()
|
|
104990
|
+
? 'bg-gradient-to-r from-blue-900/40 to-indigo-900/40 border border-blue-700/50'
|
|
104991
|
+
: 'bg-gradient-to-r from-blue-50 to-indigo-50 border border-blue-200', ...(ngDevMode ? [{ debugName: "synthesisBannerClasses" }] : []));
|
|
104992
|
+
this.synthesisBannerIconClasses = computed(() => this.isDark()
|
|
104993
|
+
? 'bg-blue-500/20 text-blue-400'
|
|
104994
|
+
: 'bg-blue-100 text-blue-600', ...(ngDevMode ? [{ debugName: "synthesisBannerIconClasses" }] : []));
|
|
104995
|
+
this.synthesisBannerTitleClasses = computed(() => this.isDark() ? 'text-white' : 'text-slate-900', ...(ngDevMode ? [{ debugName: "synthesisBannerTitleClasses" }] : []));
|
|
104996
|
+
this.synthesisBannerTextClasses = computed(() => this.isDark() ? 'text-slate-300' : 'text-slate-700', ...(ngDevMode ? [{ debugName: "synthesisBannerTextClasses" }] : []));
|
|
104958
104997
|
}
|
|
104959
104998
|
static { this.ɵfac = function UnifiedWelcomeBannerComponent_Factory(__ngFactoryType__) { return new (__ngFactoryType__ || UnifiedWelcomeBannerComponent)(); }; }
|
|
104960
|
-
static { this.ɵcmp = /*@__PURE__*/ i0.ɵɵdefineComponent({ type: UnifiedWelcomeBannerComponent, selectors: [["symphiq-unified-welcome-banner"]], inputs: { viewMode: [1, "viewMode"], businessName: [1, "businessName"], isOnboarded: [1, "isOnboarded"], analysisDate: [1, "analysisDate"], isUnifiedAnalysisComplete: [1, "isUnifiedAnalysisComplete"], sourceAnalysesCount: [1, "sourceAnalysesCount"], unifiedGoalsCount: [1, "unifiedGoalsCount"] }, decls:
|
|
104999
|
+
static { this.ɵcmp = /*@__PURE__*/ i0.ɵɵdefineComponent({ type: UnifiedWelcomeBannerComponent, selectors: [["symphiq-unified-welcome-banner"]], inputs: { viewMode: [1, "viewMode"], businessName: [1, "businessName"], isOnboarded: [1, "isOnboarded"], analysisDate: [1, "analysisDate"], isUnifiedAnalysisComplete: [1, "isUnifiedAnalysisComplete"], sourceAnalysesCount: [1, "sourceAnalysesCount"], unifiedGoalsCount: [1, "unifiedGoalsCount"] }, decls: 23, vars: 16, consts: [[1, "rounded-2xl", "border", "shadow-lg", "overflow-hidden", 3, "ngClass"], [1, "px-8", "py-8", 3, "ngClass"], [1, "flex", "items-start", "gap-6"], [1, "flex-shrink-0", "w-16", "h-16", "rounded-2xl", "flex", "items-center", "justify-center", 3, "ngClass"], ["fill", "none", "stroke", "currentColor", "viewBox", "0 0 24 24", 1, "w-8", "h-8"], ["stroke-linecap", "round", "stroke-linejoin", "round", "stroke-width", "2", "d", "M9 12l2 2 4-4m6 2a9 9 0 11-18 0 9 9 0 0118 0z"], [1, "flex-1"], [1, "text-2xl", "sm:text-3xl", "font-bold", "mb-3", 3, "ngClass"], [1, "grid", "grid-cols-1", "lg:grid-cols-3", "gap-6", "mb-6"], [1, "lg:col-span-2", "space-y-3"], [1, "text-base", "leading-relaxed", 3, "ngClass"], [1, "font-semibold"], [1, "mt-4", "p-4", "rounded-xl", "flex", "items-start", "gap-4", 3, "ngClass"], [1, "lg:col-span-1"], ["currentStepId", "unified-analysis", 3, "viewMode", "isCurrentStepComplete"], [1, "mt-6", "block", 3, "viewMode", "items", "analysisDate"], ["title", "Maximize Your Unified Insights", "onboardedTitle", "Keep Your Unified Goals Current", "description", "To get the most comprehensive unified goals, ensure you've completed your Shop Analysis, Focus Area Analyses, and Metric Analyses. The more context Symphiq has about your business, the more precise and actionable your unified recommendations become.", "onboardedDescription", "As you complete more analyses or update existing ones, your Unified Goals will be refined to reflect your current business context. Regenerate your unified analysis periodically to ensure recommendations stay aligned with your evolving strategy and priorities.", 1, "mt-6", "block", 3, "viewMode", "isOnboarded"], [1, "flex-shrink-0", "p-2", "rounded-lg", 3, "ngClass"], ["fill", "none", "stroke", "currentColor", "viewBox", "0 0 24 24", 1, "w-5", "h-5"], [1, "font-semibold", "text-base", "mb-1", 3, "ngClass"], [1, "text-sm", 3, "ngClass"]], template: function UnifiedWelcomeBannerComponent_Template(rf, ctx) { if (rf & 1) {
|
|
104961
105000
|
i0.ɵɵelementStart(0, "div", 0)(1, "div", 1)(2, "div", 2)(3, "div", 3);
|
|
104962
105001
|
i0.ɵɵnamespaceSVG();
|
|
104963
105002
|
i0.ɵɵelementStart(4, "svg", 4);
|
|
@@ -104974,11 +105013,13 @@ class UnifiedWelcomeBannerComponent {
|
|
|
104974
105013
|
i0.ɵɵtext(16, "Why this matters:");
|
|
104975
105014
|
i0.ɵɵelementEnd();
|
|
104976
105015
|
i0.ɵɵtext(17, " Instead of managing separate recommendations from each analysis, the Unified Analysis consolidates them into actionable goals with clear priorities, timelines, and expected impact. This ensures you focus on what will drive the most value for your business. ");
|
|
105016
|
+
i0.ɵɵelementEnd();
|
|
105017
|
+
i0.ɵɵconditionalCreate(18, UnifiedWelcomeBannerComponent_Conditional_18_Template, 9, 7, "div", 12);
|
|
105018
|
+
i0.ɵɵelementEnd();
|
|
105019
|
+
i0.ɵɵelementStart(19, "div", 13);
|
|
105020
|
+
i0.ɵɵelement(20, "symphiq-confidence-level-card", 14);
|
|
104977
105021
|
i0.ɵɵelementEnd()();
|
|
104978
|
-
i0.ɵɵ
|
|
104979
|
-
i0.ɵɵelement(19, "symphiq-confidence-level-card", 13);
|
|
104980
|
-
i0.ɵɵelementEnd()();
|
|
104981
|
-
i0.ɵɵelement(20, "symphiq-what-youll-see-below", 14)(21, "symphiq-continue-your-journey", 15);
|
|
105022
|
+
i0.ɵɵelement(21, "symphiq-what-youll-see-below", 15)(22, "symphiq-continue-your-journey", 16);
|
|
104982
105023
|
i0.ɵɵelementEnd()()()();
|
|
104983
105024
|
} if (rf & 2) {
|
|
104984
105025
|
i0.ɵɵproperty("ngClass", ctx.containerClasses());
|
|
@@ -104996,7 +105037,9 @@ class UnifiedWelcomeBannerComponent {
|
|
|
104996
105037
|
i0.ɵɵtextInterpolate1(" The Unified Analysis synthesizes insights from all your source analyses\u2014Shop Analysis, Focus Area Analyses, and Metric Analyses\u2014into cohesive strategic goals for ", ctx.businessName(), ". These unified goals represent the highest-priority opportunities identified across your entire business context. ");
|
|
104997
105038
|
i0.ɵɵadvance();
|
|
104998
105039
|
i0.ɵɵproperty("ngClass", ctx.textClasses());
|
|
104999
|
-
i0.ɵɵadvance(
|
|
105040
|
+
i0.ɵɵadvance(4);
|
|
105041
|
+
i0.ɵɵconditional(ctx.unifiedGoalsCount() > 0 ? 18 : -1);
|
|
105042
|
+
i0.ɵɵadvance(2);
|
|
105000
105043
|
i0.ɵɵproperty("viewMode", ctx.viewMode())("isCurrentStepComplete", ctx.isUnifiedAnalysisComplete());
|
|
105001
105044
|
i0.ɵɵadvance();
|
|
105002
105045
|
i0.ɵɵproperty("viewMode", ctx.viewMode())("items", ctx.whatYoullSeeBelowItems)("analysisDate", ctx.formattedAnalysisDate());
|
|
@@ -105038,6 +105081,25 @@ class UnifiedWelcomeBannerComponent {
|
|
|
105038
105081
|
<p [ngClass]="textClasses()" class="text-base leading-relaxed">
|
|
105039
105082
|
<strong class="font-semibold">Why this matters:</strong> Instead of managing separate recommendations from each analysis, the Unified Analysis consolidates them into actionable goals with clear priorities, timelines, and expected impact. This ensures you focus on what will drive the most value for your business.
|
|
105040
105083
|
</p>
|
|
105084
|
+
|
|
105085
|
+
<!-- Synthesis Summary Banner -->
|
|
105086
|
+
@if (unifiedGoalsCount() > 0) {
|
|
105087
|
+
<div [ngClass]="synthesisBannerClasses()" class="mt-4 p-4 rounded-xl flex items-start gap-4">
|
|
105088
|
+
<div [ngClass]="synthesisBannerIconClasses()" class="flex-shrink-0 p-2 rounded-lg">
|
|
105089
|
+
<svg class="w-5 h-5" fill="none" stroke="currentColor" viewBox="0 0 24 24">
|
|
105090
|
+
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M9 12l2 2 4-4m6 2a9 9 0 11-18 0 9 9 0 0118 0z"></path>
|
|
105091
|
+
</svg>
|
|
105092
|
+
</div>
|
|
105093
|
+
<div class="flex-1">
|
|
105094
|
+
<p [ngClass]="synthesisBannerTitleClasses()" class="font-semibold text-base mb-1">
|
|
105095
|
+
{{ unifiedGoalsCount() }} Unified Goals Synthesized
|
|
105096
|
+
</p>
|
|
105097
|
+
<p [ngClass]="synthesisBannerTextClasses()" class="text-sm">
|
|
105098
|
+
We've combined insights from {{ sourceAnalysesCount() }} source analyses into actionable strategic priorities for {{ businessName() }}.
|
|
105099
|
+
</p>
|
|
105100
|
+
</div>
|
|
105101
|
+
</div>
|
|
105102
|
+
}
|
|
105041
105103
|
</div>
|
|
105042
105104
|
|
|
105043
105105
|
<div class="lg:col-span-1">
|
|
@@ -105072,7 +105134,7 @@ class UnifiedWelcomeBannerComponent {
|
|
|
105072
105134
|
`
|
|
105073
105135
|
}]
|
|
105074
105136
|
}], null, { viewMode: [{ type: i0.Input, args: [{ isSignal: true, alias: "viewMode", required: false }] }], businessName: [{ type: i0.Input, args: [{ isSignal: true, alias: "businessName", required: false }] }], isOnboarded: [{ type: i0.Input, args: [{ isSignal: true, alias: "isOnboarded", required: false }] }], analysisDate: [{ type: i0.Input, args: [{ isSignal: true, alias: "analysisDate", required: false }] }], isUnifiedAnalysisComplete: [{ type: i0.Input, args: [{ isSignal: true, alias: "isUnifiedAnalysisComplete", required: false }] }], sourceAnalysesCount: [{ type: i0.Input, args: [{ isSignal: true, alias: "sourceAnalysesCount", required: false }] }], unifiedGoalsCount: [{ type: i0.Input, args: [{ isSignal: true, alias: "unifiedGoalsCount", required: false }] }] }); })();
|
|
105075
|
-
(() => { (typeof ngDevMode === "undefined" || ngDevMode) && i0.ɵsetClassDebugInfo(UnifiedWelcomeBannerComponent, { className: "UnifiedWelcomeBannerComponent", filePath: "lib/components/profile-analysis-unified-dashboard/unified-welcome-banner.component.ts", lineNumber:
|
|
105137
|
+
(() => { (typeof ngDevMode === "undefined" || ngDevMode) && i0.ɵsetClassDebugInfo(UnifiedWelcomeBannerComponent, { className: "UnifiedWelcomeBannerComponent", filePath: "lib/components/profile-analysis-unified-dashboard/unified-welcome-banner.component.ts", lineNumber: 92 }); })();
|
|
105076
105138
|
|
|
105077
105139
|
const _c0$7 = () => [];
|
|
105078
105140
|
const _c1$3 = a0 => ({ name: "flag", source: a0 });
|
|
@@ -105460,13 +105522,7 @@ class SymphiqProfileAnalysisUnifiedDashboardComponent {
|
|
|
105460
105522
|
this.priorityMatrix = computed(() => {
|
|
105461
105523
|
const matrixData = this.analysisData()?.unifiedPriorityMatrix;
|
|
105462
105524
|
const goals = this.unifiedGoals();
|
|
105463
|
-
console.log('[PriorityMatrix] Raw matrixData:', matrixData);
|
|
105464
|
-
console.log('[PriorityMatrix] Goals available:', goals.map(g => ({ id: g.id, title: g.title })));
|
|
105465
105525
|
if (matrixData) {
|
|
105466
|
-
console.log('[PriorityMatrix] quickWins items:', matrixData.quickWins);
|
|
105467
|
-
console.log('[PriorityMatrix] majorProjects items:', matrixData.majorProjects);
|
|
105468
|
-
console.log('[PriorityMatrix] fillIns items:', matrixData.fillIns);
|
|
105469
|
-
console.log('[PriorityMatrix] thankless items:', matrixData.thankless);
|
|
105470
105526
|
const findGoal = (id, quadrant) => {
|
|
105471
105527
|
const found = goals.find(g => g.id === id);
|
|
105472
105528
|
console.log(`[PriorityMatrix] ${quadrant} - Looking for goal id="${id}", found:`, found ? found.title : 'NOT FOUND');
|
|
@@ -106096,7 +106152,7 @@ class SymphiqProfileAnalysisUnifiedDashboardComponent {
|
|
|
106096
106152
|
static { this.ɵfac = function SymphiqProfileAnalysisUnifiedDashboardComponent_Factory(__ngFactoryType__) { return new (__ngFactoryType__ || SymphiqProfileAnalysisUnifiedDashboardComponent)(); }; }
|
|
106097
106153
|
static { this.ɵcmp = /*@__PURE__*/ i0.ɵɵdefineComponent({ type: SymphiqProfileAnalysisUnifiedDashboardComponent, selectors: [["symphiq-profile-analysis-unified-dashboard"]], hostBindings: function SymphiqProfileAnalysisUnifiedDashboardComponent_HostBindings(rf, ctx) { if (rf & 1) {
|
|
106098
106154
|
i0.ɵɵlistener("scroll", function SymphiqProfileAnalysisUnifiedDashboardComponent_scroll_HostBindingHandler() { return ctx.onScroll(); }, i0.ɵɵresolveWindow);
|
|
106099
|
-
} }, inputs: { viewMode: [1, "viewMode"], embedded: [1, "embedded"], isLoading: [1, "isLoading"], profile: [1, "profile"], funnelAnalysis: [1, "funnelAnalysis"], unifiedProfileAnalysis: [1, "unifiedProfileAnalysis"], sourceProfileAnalyses: [1, "sourceProfileAnalyses"], isLoadingSourceAnalysis: [1, "isLoadingSourceAnalysis"], scrollEvent: [1, "scrollEvent"], scrollElement: [1, "scrollElement"], isOnboarded: [1, "isOnboarded"], forDemo: [1, "forDemo"], maxAccessibleStepId: [1, "maxAccessibleStepId"], itemStatus: [1, "itemStatus"], isMarkingAsReviewed: [1, "isMarkingAsReviewed"], requestedByUser: [1, "requestedByUser"] }, outputs: { markAsReviewedClick: "markAsReviewedClick", generateGoalsClick: "generateGoalsClick", stepClick: "stepClick", nextStepClick: "nextStepClick", sourceAnalysisRequest: "sourceAnalysisRequest" }, features: [i0.ɵɵNgOnChangesFeature], decls: 16, vars:
|
|
106155
|
+
} }, inputs: { viewMode: [1, "viewMode"], embedded: [1, "embedded"], isLoading: [1, "isLoading"], profile: [1, "profile"], funnelAnalysis: [1, "funnelAnalysis"], unifiedProfileAnalysis: [1, "unifiedProfileAnalysis"], sourceProfileAnalyses: [1, "sourceProfileAnalyses"], isLoadingSourceAnalysis: [1, "isLoadingSourceAnalysis"], scrollEvent: [1, "scrollEvent"], scrollElement: [1, "scrollElement"], isOnboarded: [1, "isOnboarded"], forDemo: [1, "forDemo"], maxAccessibleStepId: [1, "maxAccessibleStepId"], itemStatus: [1, "itemStatus"], isMarkingAsReviewed: [1, "isMarkingAsReviewed"], requestedByUser: [1, "requestedByUser"] }, outputs: { markAsReviewedClick: "markAsReviewedClick", generateGoalsClick: "generateGoalsClick", stepClick: "stepClick", nextStepClick: "nextStepClick", sourceAnalysisRequest: "sourceAnalysisRequest" }, features: [i0.ɵɵNgOnChangesFeature], decls: 16, vars: 32, consts: [[1, "relative"], [1, "animated-bubbles", 2, "position", "fixed", "top", "0", "left", "0", "right", "0", "bottom", "0", "width", "100vw", "height", "100vh", "z-index", "1", "pointer-events", "none"], [3, "viewMode", "progress", "embedded"], [1, "relative", "z-[51]"], [3, "searchClick", "viewModeClick", "title", "subtitle", "currentSection", "viewMode", "viewModeLabel", "isLoading", "requestedByUser", "showControls", "embedded", "scrollEvent"], [3, "viewMode", "currentStepId", "showNextStepAction", "forDemo", "maxAccessibleStepId"], [1, "relative", "z-10", "max-w-7xl", "mx-auto", "px-4", "sm:px-6", "lg:px-8", "py-12", "space-y-12", 3, "pb-32"], [3, "sections", "viewMode", "embedded", "scrollElement"], [3, "isLightMode", "isOpen"], [3, "viewMode", "currentMode", "isOpen"], [3, "viewMode", "selfContentStatus", "isLoading"], [3, "viewMode", "itemStatus", "currentStatus", "confettiIntensity", "title"], [3, "priorityActionGoalClick", "priorityActionRecommendationClick", "sourceAnalysisClickRequest", "viewMode", "loadingSourceAnalysisId"], [3, "isLightMode"], [3, "isLightMode", "allInsights", "allMetrics", "allCharts"], [3, "nextStepClick", "stepClick", "viewMode", "currentStepId", "showNextStepAction", "forDemo", "maxAccessibleStepId"], [1, "relative", "z-10", "max-w-7xl", "mx-auto", "px-4", "sm:px-6", "lg:px-8", "py-12", "space-y-12"], ["title", "Loading Your Unified Analysis", "subtitle", "Please wait while we prepare your synthesized insights...", "size", "large", 3, "viewMode", "backdropBlur"], [1, "mb-12", "block", 3, "viewMode", "businessName", "isOnboarded", "analysisDate", "isUnifiedAnalysisComplete", "sourceAnalysesCount", "unifiedGoalsCount"], [3, "viewAllPriorityActionsClick", "summary", "viewMode", "shopCounts", "focusAreaCounts", "metricCounts"], ["id", "section-unified-goals", 1, "space-y-6", "scroll-mt-24"], [3, "goalClick", "timeline", "viewMode", "goals"], [3, "goalClick", "matrix", "viewMode"], [3, "goalClick", "steps", "viewMode", "goals"], [3, "viewMode", "sectionIcon"], ["title", "Unified Goals", 3, "icon", "viewMode"], [1, "grid", "gap-6", 2, "grid-template-columns", "repeat(auto-fit, minmax(340px, 1fr))"], [3, "goal", "viewMode"], [3, "goalClick", "sourceBadgeClick", "relatedMetricsClick", "learnMoreClick", "goal", "viewMode"], ["id", "section-executive-summary", 1, "space-y-6", "scroll-mt-24"], [1, "rounded-2xl", "p-8", "shadow-xl", 3, "ngClass"], [1, "space-y-6"], [1, "flex", "items-start", "justify-between", "gap-4"], [1, "flex-1"], [1, "text-2xl", "font-bold", "mb-3", 3, "ngClass"], [1, "text-lg", "leading-relaxed", 3, "ngClass"], [3, "grade", "gradeRationale", "viewMode"], [3, "close", "isLightMode", "isOpen"], [3, "close", "modeSelected", "viewMode", "currentMode", "isOpen"], [3, "markAsReviewed", "viewMode", "selfContentStatus", "isLoading"]], template: function SymphiqProfileAnalysisUnifiedDashboardComponent_Template(rf, ctx) { if (rf & 1) {
|
|
106100
106156
|
i0.ɵɵelementStart(0, "div", 0);
|
|
106101
106157
|
i0.ɵɵelement(1, "div", 1)(2, "symphiq-scroll-progress-bar", 2);
|
|
106102
106158
|
i0.ɵɵelementStart(3, "div", 3)(4, "symphiq-dashboard-header", 4);
|
|
@@ -106139,11 +106195,11 @@ class SymphiqProfileAnalysisUnifiedDashboardComponent {
|
|
|
106139
106195
|
i0.ɵɵadvance();
|
|
106140
106196
|
i0.ɵɵconditional(!ctx.isLoading() && ctx.isGenerating() ? 11 : -1);
|
|
106141
106197
|
i0.ɵɵadvance(2);
|
|
106142
|
-
i0.ɵɵproperty("viewMode", ctx.viewMode());
|
|
106198
|
+
i0.ɵɵproperty("viewMode", ctx.viewMode())("loadingSourceAnalysisId", ctx.loadingSourceAnalysisId());
|
|
106143
106199
|
i0.ɵɵadvance();
|
|
106144
106200
|
i0.ɵɵproperty("isLightMode", ctx.isLightMode());
|
|
106145
106201
|
i0.ɵɵadvance();
|
|
106146
|
-
i0.ɵɵproperty("isLightMode", ctx.isLightMode())("allInsights", i0.ɵɵpureFunction0(
|
|
106202
|
+
i0.ɵɵproperty("isLightMode", ctx.isLightMode())("allInsights", i0.ɵɵpureFunction0(31, _c0$7))("allMetrics", ctx.allMetrics())("allCharts", ctx.allCharts());
|
|
106147
106203
|
} }, dependencies: [CommonModule, i1$1.NgClass, DashboardHeaderComponent,
|
|
106148
106204
|
ScrollProgressBarComponent,
|
|
106149
106205
|
SearchModalComponent,
|
|
@@ -106410,6 +106466,7 @@ class SymphiqProfileAnalysisUnifiedDashboardComponent {
|
|
|
106410
106466
|
|
|
106411
106467
|
<symphiq-unified-dashboard-modal
|
|
106412
106468
|
[viewMode]="viewMode()"
|
|
106469
|
+
[loadingSourceAnalysisId]="loadingSourceAnalysisId()"
|
|
106413
106470
|
(priorityActionGoalClick)="onPriorityActionGoalClick($event)"
|
|
106414
106471
|
(priorityActionRecommendationClick)="onPriorityActionRecommendationClick($event)"
|
|
106415
106472
|
(sourceAnalysisClickRequest)="handleSourceAnalysisClickFromModal($event)"
|
|
@@ -106428,7 +106485,7 @@ class SymphiqProfileAnalysisUnifiedDashboardComponent {
|
|
|
106428
106485
|
type: HostListener,
|
|
106429
106486
|
args: ['window:scroll']
|
|
106430
106487
|
}] }); })();
|
|
106431
|
-
(() => { (typeof ngDevMode === "undefined" || ngDevMode) && i0.ɵsetClassDebugInfo(SymphiqProfileAnalysisUnifiedDashboardComponent, { className: "SymphiqProfileAnalysisUnifiedDashboardComponent", filePath: "lib/components/profile-analysis-unified-dashboard/symphiq-profile-analysis-unified-dashboard.component.ts", lineNumber:
|
|
106488
|
+
(() => { (typeof ngDevMode === "undefined" || ngDevMode) && i0.ɵsetClassDebugInfo(SymphiqProfileAnalysisUnifiedDashboardComponent, { className: "SymphiqProfileAnalysisUnifiedDashboardComponent", filePath: "lib/components/profile-analysis-unified-dashboard/symphiq-profile-analysis-unified-dashboard.component.ts", lineNumber: 343 }); })();
|
|
106432
106489
|
|
|
106433
106490
|
function SymphiqProfileMetricsAnalysesDashboardComponent_Conditional_5_Template(rf, ctx) { if (rf & 1) {
|
|
106434
106491
|
const _r1 = i0.ɵɵgetCurrentView();
|