@eric-emg/symphiq-components 1.3.85 → 1.3.86
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.
|
@@ -13561,6 +13561,17 @@ class ProfileContextService {
|
|
|
13561
13561
|
console.log('[ProfileContextService] indexProfile - recommendations with relatedCompetitorIds:', index.recommendations.filter(r => r.relatedCompetitorIds && r.relatedCompetitorIds.length > 0).map(r => ({ id: r.id, relatedCompetitorIds: r.relatedCompetitorIds })));
|
|
13562
13562
|
this.contextIndex.set(index);
|
|
13563
13563
|
}
|
|
13564
|
+
addRecommendations(recommendations) {
|
|
13565
|
+
const currentIndex = this.contextIndex();
|
|
13566
|
+
const existingIds = new Set(currentIndex.recommendations.map(r => r.id));
|
|
13567
|
+
const newRecs = recommendations.filter(r => !existingIds.has(r.id));
|
|
13568
|
+
const mergedRecommendations = [...currentIndex.recommendations, ...newRecs];
|
|
13569
|
+
console.log('[ProfileContextService] addRecommendations - adding', newRecs.length, 'new recommendations, total:', mergedRecommendations.length);
|
|
13570
|
+
this.contextIndex.set({
|
|
13571
|
+
...currentIndex,
|
|
13572
|
+
recommendations: mergedRecommendations
|
|
13573
|
+
});
|
|
13574
|
+
}
|
|
13564
13575
|
getRegions() {
|
|
13565
13576
|
return this.contextIndex().regions;
|
|
13566
13577
|
}
|
|
@@ -26556,7 +26567,7 @@ class ConfidenceLevelCardComponent {
|
|
|
26556
26567
|
i0.ɵɵconditional(ctx.confidenceData().nextDashboardAction && ctx.confidenceData().nextDashboardGrade ? 31 : -1);
|
|
26557
26568
|
i0.ɵɵadvance();
|
|
26558
26569
|
i0.ɵɵconditional(!ctx.confidenceData().currentStepAction && ctx.confidenceData().nextStepAction && ctx.confidenceData().potentialGrade ? 32 : -1);
|
|
26559
|
-
} }, dependencies: [CommonModule, i1$1.NgClass], styles: ["@keyframes _ngcontent-%COMP%_confidence-fade-in-up{0%{opacity:0;transform:translateY(20px)}to{opacity:1;transform:translateY(0)}}@keyframes _ngcontent-%COMP%_pulse-glow{0%,to{opacity:1;transform:scale(1);box-shadow:0 0 20px #10b9814d}50%{opacity:1;transform:scale(1.08);box-shadow:0 0 40px #10b98199}}@keyframes _ngcontent-%COMP%_shimmer{0%{background-position:-200% center}to{background-position:200% center}}@keyframes _ngcontent-%COMP%_grade-change{0%{transform:scale(1);opacity:1}50%{transform:scale(1.1);opacity:.9}to{transform:scale(1);opacity:1}}.confidence-card-animate[_ngcontent-%COMP%]{animation:_ngcontent-%COMP%_confidence-fade-in-up .6s ease-out forwards}.animate-pulse-glow[_ngcontent-%COMP%]{animation:_ngcontent-%COMP%_pulse-glow 2s ease-in-out infinite}.grade-change-animate[_ngcontent-%COMP%]{animation:_ngcontent-%COMP%_grade-change .8s ease-out}
|
|
26570
|
+
} }, dependencies: [CommonModule, i1$1.NgClass], styles: ["@keyframes _ngcontent-%COMP%_confidence-fade-in-up{0%{opacity:0;transform:translateY(20px)}to{opacity:1;transform:translateY(0)}}@keyframes _ngcontent-%COMP%_pulse-glow{0%,to{opacity:1;transform:scale(1);box-shadow:0 0 20px #10b9814d}50%{opacity:1;transform:scale(1.08);box-shadow:0 0 40px #10b98199}}@keyframes _ngcontent-%COMP%_shimmer{0%{background-position:-200% center}to{background-position:200% center}}@keyframes _ngcontent-%COMP%_grade-change{0%{transform:scale(1);opacity:1}50%{transform:scale(1.1);opacity:.9}to{transform:scale(1);opacity:1}}.confidence-card-animate[_ngcontent-%COMP%]{animation:_ngcontent-%COMP%_confidence-fade-in-up .6s ease-out forwards}.animate-pulse-glow[_ngcontent-%COMP%]{animation:_ngcontent-%COMP%_pulse-glow 2s ease-in-out infinite}.grade-change-animate[_ngcontent-%COMP%]{animation:_ngcontent-%COMP%_grade-change .8s ease-out}.confidence-card-animate[_ngcontent-%COMP%], .animate-pulse-glow[_ngcontent-%COMP%], .grade-change-animate[_ngcontent-%COMP%]{animation:none;opacity:1}"], changeDetection: 0 }); }
|
|
26560
26571
|
}
|
|
26561
26572
|
(() => { (typeof ngDevMode === "undefined" || ngDevMode) && i0.ɵsetClassMetadata(ConfidenceLevelCardComponent, [{
|
|
26562
26573
|
type: Component,
|
|
@@ -26677,9 +26688,9 @@ class ConfidenceLevelCardComponent {
|
|
|
26677
26688
|
</div>
|
|
26678
26689
|
</div>
|
|
26679
26690
|
</div>
|
|
26680
|
-
`, styles: ["@keyframes confidence-fade-in-up{0%{opacity:0;transform:translateY(20px)}to{opacity:1;transform:translateY(0)}}@keyframes pulse-glow{0%,to{opacity:1;transform:scale(1);box-shadow:0 0 20px #10b9814d}50%{opacity:1;transform:scale(1.08);box-shadow:0 0 40px #10b98199}}@keyframes shimmer{0%{background-position:-200% center}to{background-position:200% center}}@keyframes grade-change{0%{transform:scale(1);opacity:1}50%{transform:scale(1.1);opacity:.9}to{transform:scale(1);opacity:1}}.confidence-card-animate{animation:confidence-fade-in-up .6s ease-out forwards}.animate-pulse-glow{animation:pulse-glow 2s ease-in-out infinite}.grade-change-animate{animation:grade-change .8s ease-out}
|
|
26691
|
+
`, styles: ["@keyframes confidence-fade-in-up{0%{opacity:0;transform:translateY(20px)}to{opacity:1;transform:translateY(0)}}@keyframes pulse-glow{0%,to{opacity:1;transform:scale(1);box-shadow:0 0 20px #10b9814d}50%{opacity:1;transform:scale(1.08);box-shadow:0 0 40px #10b98199}}@keyframes shimmer{0%{background-position:-200% center}to{background-position:200% center}}@keyframes grade-change{0%{transform:scale(1);opacity:1}50%{transform:scale(1.1);opacity:.9}to{transform:scale(1);opacity:1}}.confidence-card-animate{animation:confidence-fade-in-up .6s ease-out forwards}.animate-pulse-glow{animation:pulse-glow 2s ease-in-out infinite}.grade-change-animate{animation:grade-change .8s ease-out}.confidence-card-animate,.animate-pulse-glow,.grade-change-animate{animation:none;opacity:1}\n"] }]
|
|
26681
26692
|
}], () => [], { viewMode: [{ type: i0.Input, args: [{ isSignal: true, alias: "viewMode", required: false }] }], currentStepId: [{ type: i0.Input, args: [{ isSignal: true, alias: "currentStepId", required: false }] }], focusAreaDetails: [{ type: i0.Input, args: [{ isSignal: true, alias: "focusAreaDetails", required: false }] }], currentFocusAreaDomain: [{ type: i0.Input, args: [{ isSignal: true, alias: "currentFocusAreaDomain", required: false }] }], currentMetric: [{ type: i0.Input, args: [{ isSignal: true, alias: "currentMetric", required: false }] }], targets: [{ type: i0.Input, args: [{ isSignal: true, alias: "targets", required: false }] }], isCurrentStepComplete: [{ type: i0.Input, args: [{ isSignal: true, alias: "isCurrentStepComplete", required: false }] }] }); })();
|
|
26682
|
-
(() => { (typeof ngDevMode === "undefined" || ngDevMode) && i0.ɵsetClassDebugInfo(ConfidenceLevelCardComponent, { className: "ConfidenceLevelCardComponent", filePath: "lib/components/shared/confidence-level-card.component.ts", lineNumber:
|
|
26693
|
+
(() => { (typeof ngDevMode === "undefined" || ngDevMode) && i0.ɵsetClassDebugInfo(ConfidenceLevelCardComponent, { className: "ConfidenceLevelCardComponent", filePath: "lib/components/shared/confidence-level-card.component.ts", lineNumber: 214 }); })();
|
|
26683
26694
|
|
|
26684
26695
|
function ContinueYourJourneyComponent_Conditional_2_Template(rf, ctx) { if (rf & 1) {
|
|
26685
26696
|
i0.ɵɵnamespaceSVG();
|
|
@@ -51689,7 +51700,7 @@ class DashboardHeaderComponent {
|
|
|
51689
51700
|
: 'bg-slate-800 hover:bg-slate-700 text-slate-300 border border-slate-700';
|
|
51690
51701
|
}
|
|
51691
51702
|
static { this.ɵfac = function DashboardHeaderComponent_Factory(__ngFactoryType__) { return new (__ngFactoryType__ || DashboardHeaderComponent)(); }; }
|
|
51692
|
-
static { this.ɵcmp = /*@__PURE__*/ i0.ɵɵdefineComponent({ type: DashboardHeaderComponent, selectors: [["symphiq-dashboard-header"]], inputs: { requestedByUser: [1, "requestedByUser"], createdDate: [1, "createdDate"], title: [1, "title"], subtitle: [1, "subtitle"], viewMode: [1, "viewMode"], viewModeLabel: [1, "viewModeLabel"], currentSection: [1, "currentSection"], currentSubsection: [1, "currentSubsection"], sectionFading: [1, "sectionFading"], subsectionFading: [1, "subsectionFading"], isLoading: [1, "isLoading"], showSearchControl: [1, "showSearchControl"], showViewModeControl: [1, "showViewModeControl"], hasCondensedLeftContent: [1, "hasCondensedLeftContent"], size: [1, "size"], embedded: [1, "embedded"], scrollEvent: [1, "scrollEvent"] }, outputs: { searchClick: "searchClick", viewModeClick: "viewModeClick" }, ngContentSelectors: _c1$m, decls: 30, vars: 29, consts: [[1, "sticky", "top-0", "z-50", "overflow-hidden", 2, "transition", "height 300ms ease-in-out", 3, "ngClass"], [1, "transition-opacity", "duration-300", "ease-in-out", "h-full"], [1, "max-w-7xl", "mx-auto", "px-4", "sm:px-6", "lg:px-8", "py-4", "h-full", "flex", "items-center"], [1, "flex", "items-center", "justify-between", "w-full"], [1, "flex-1", "min-w-0"], [1, "flex", "items-center", "gap-3", "min-w-0"], [1, "truncate", 3, "mouseenter", "mouseleave", "ngClass"], ["title", "Refreshing data...", 1, "animate-spin", "w-4", "h-4", "border-2", "border-blue-500/30", "border-t-blue-500", "rounded-full"], [1, "flex", "
|
|
51703
|
+
static { this.ɵcmp = /*@__PURE__*/ i0.ɵɵdefineComponent({ type: DashboardHeaderComponent, selectors: [["symphiq-dashboard-header"]], inputs: { requestedByUser: [1, "requestedByUser"], createdDate: [1, "createdDate"], title: [1, "title"], subtitle: [1, "subtitle"], viewMode: [1, "viewMode"], viewModeLabel: [1, "viewModeLabel"], currentSection: [1, "currentSection"], currentSubsection: [1, "currentSubsection"], sectionFading: [1, "sectionFading"], subsectionFading: [1, "subsectionFading"], isLoading: [1, "isLoading"], showSearchControl: [1, "showSearchControl"], showViewModeControl: [1, "showViewModeControl"], hasCondensedLeftContent: [1, "hasCondensedLeftContent"], size: [1, "size"], embedded: [1, "embedded"], scrollEvent: [1, "scrollEvent"] }, outputs: { searchClick: "searchClick", viewModeClick: "viewModeClick" }, ngContentSelectors: _c1$m, decls: 30, vars: 29, consts: [[1, "sticky", "top-0", "z-50", "overflow-hidden", 2, "transition", "height 300ms ease-in-out", 3, "ngClass"], [1, "transition-opacity", "duration-300", "ease-in-out", "h-full"], [1, "max-w-7xl", "mx-auto", "px-4", "sm:px-6", "lg:px-8", "py-4", "h-full", "flex", "items-center"], [1, "flex", "items-center", "justify-between", "w-full"], [1, "flex-1", "min-w-0"], [1, "flex", "items-center", "gap-3", "min-w-0"], [1, "truncate", 3, "mouseenter", "mouseleave", "ngClass"], ["title", "Refreshing data...", 1, "animate-spin", "w-4", "h-4", "border-2", "border-blue-500/30", "border-t-blue-500", "rounded-full"], [1, "flex", "items-center", "gap-4"], [1, "truncate", "min-w-0", "flex-1", 3, "ngClass"], [1, "flex", "items-center", "gap-4", "flex-shrink-0"], [3, "isLightMode"], ["type", "button", 1, "cursor-pointer", "flex", "items-center", "gap-2", "px-3", "py-1.5", "rounded-lg", "text-xs", "font-medium", "transition-all", "duration-200", "hover:scale-105", 3, "ngClass"], [1, "flex", "flex-col", "gap-1", "min-w-[180px]"], [1, "absolute", "inset-x-0", "top-0", "h-full", "transition-opacity", "duration-300", "ease-in-out"], [1, "max-w-7xl", "mx-auto", "px-4", "sm:px-6", "lg:px-8", "h-full", "flex", "items-center"], [1, "flex", "items-center", "gap-3", "flex-1", "min-w-0", "mr-4"], [1, "flex-shrink-0", "!mb-0", 3, "ngClass"], [1, "flex", "items-center", "gap-2", "text-sm", "flex-shrink-0"], [3, "isLightMode", "minimized"], ["type", "button", 1, "cursor-pointer", "flex", "items-center", "gap-2", "px-2", "py-1.5", "rounded-lg", "text-xs", "font-medium", "transition-all", "duration-200", "hover:scale-105", 3, "ngClass"], [3, "searchClick", "isLightMode"], ["type", "button", 1, "cursor-pointer", "flex", "items-center", "gap-2", "px-3", "py-1.5", "rounded-lg", "text-xs", "font-medium", "transition-all", "duration-200", "hover:scale-105", 3, "click", "ngClass"], ["fill", "none", "stroke", "currentColor", "viewBox", "0 0 24 24", 1, "w-4", "h-4"], ["stroke-linecap", "round", "stroke-linejoin", "round", "stroke-width", "2", "d", "M15 12a3 3 0 11-6 0 3 3 0 016 0z"], ["stroke-linecap", "round", "stroke-linejoin", "round", "stroke-width", "2", "d", "M2.458 12C3.732 7.943 7.523 5 12 5c4.478 0 8.268 2.943 9.542 7-1.274 4.057-5.064 7-9.542 7-4.477 0-8.268-2.943-9.542-7z"], [1, "text-left", "sm:text-right"], [1, "text-xs"], [1, "text-sm", "font-medium"], [1, "hidden", "sm:inline", 3, "ngClass"], [1, "hidden", "sm:block", "truncate", "min-w-0", 3, "ngClass"], [1, "transition-opacity", "duration-300", 3, "ngClass"], [3, "searchClick", "isLightMode", "minimized"], ["type", "button", 1, "cursor-pointer", "flex", "items-center", "gap-2", "px-2", "py-1.5", "rounded-lg", "text-xs", "font-medium", "transition-all", "duration-200", "hover:scale-105", 3, "click", "ngClass"]], template: function DashboardHeaderComponent_Template(rf, ctx) { if (rf & 1) {
|
|
51693
51704
|
i0.ɵɵprojectionDef(_c0$O);
|
|
51694
51705
|
i0.ɵɵelementStart(0, "header", 0)(1, "div", 1)(2, "div", 2)(3, "div", 3)(4, "div", 4)(5, "div", 5)(6, "h1", 6);
|
|
51695
51706
|
i0.ɵɵlistener("mouseenter", function DashboardHeaderComponent_Template_h1_mouseenter_6_listener($event) { return ctx.onTitleMouseEnter($event); })("mouseleave", function DashboardHeaderComponent_Template_h1_mouseleave_6_listener() { return ctx.onTitleMouseLeave(); });
|
|
@@ -51713,7 +51724,7 @@ class DashboardHeaderComponent {
|
|
|
51713
51724
|
i0.ɵɵconditionalCreate(23, DashboardHeaderComponent_Conditional_23_Template, 4, 3);
|
|
51714
51725
|
i0.ɵɵprojection(24, 1);
|
|
51715
51726
|
i0.ɵɵelementEnd();
|
|
51716
|
-
i0.ɵɵelementStart(25, "div",
|
|
51727
|
+
i0.ɵɵelementStart(25, "div", 8);
|
|
51717
51728
|
i0.ɵɵconditionalCreate(26, DashboardHeaderComponent_Conditional_26_Template, 4, 7, "div", 18);
|
|
51718
51729
|
i0.ɵɵconditionalCreate(27, DashboardHeaderComponent_Conditional_27_Template, 1, 2, "symphiq-search-button", 19);
|
|
51719
51730
|
i0.ɵɵconditionalCreate(28, DashboardHeaderComponent_Conditional_28_Template, 4, 1, "button", 20);
|
|
@@ -51783,11 +51794,11 @@ class DashboardHeaderComponent {
|
|
|
51783
51794
|
<div class="animate-spin w-4 h-4 border-2 border-blue-500/30 border-t-blue-500 rounded-full" title="Refreshing data..."></div>
|
|
51784
51795
|
}
|
|
51785
51796
|
</div>
|
|
51786
|
-
<div class="flex
|
|
51787
|
-
<p [ngClass]="getSubtitleClasses()" class="truncate">
|
|
51797
|
+
<div class="flex items-center gap-4">
|
|
51798
|
+
<p [ngClass]="getSubtitleClasses()" class="truncate min-w-0 flex-1">
|
|
51788
51799
|
{{ subtitle() }}
|
|
51789
51800
|
</p>
|
|
51790
|
-
<div class="flex items-center gap-4">
|
|
51801
|
+
<div class="flex items-center gap-4 flex-shrink-0">
|
|
51791
51802
|
@if (showSearchControl()) {
|
|
51792
51803
|
<symphiq-search-button
|
|
51793
51804
|
[isLightMode]="isLightMode()"
|
|
@@ -107315,18 +107326,18 @@ function SymphiqProfileAnalysisUnifiedDashboardComponent_Conditional_5_Template(
|
|
|
107315
107326
|
i0.ɵɵproperty("viewMode", ctx_r1.viewMode())("currentStepId", ctx_r1.JourneyStepIdEnum.UNIFIED_ANALYSIS)("showNextStepAction", ctx_r1.allGoalsReviewed())("forDemo", ctx_r1.forDemo())("maxAccessibleStepId", ctx_r1.maxAccessibleStepId());
|
|
107316
107327
|
} }
|
|
107317
107328
|
function SymphiqProfileAnalysisUnifiedDashboardComponent_Conditional_6_Conditional_1_Template(rf, ctx) { if (rf & 1) {
|
|
107318
|
-
i0.ɵɵelement(0, "symphiq-loading-card",
|
|
107329
|
+
i0.ɵɵelement(0, "symphiq-loading-card", 17);
|
|
107319
107330
|
} if (rf & 2) {
|
|
107320
107331
|
const ctx_r1 = i0.ɵɵnextContext(2);
|
|
107321
107332
|
i0.ɵɵproperty("viewMode", ctx_r1.viewMode())("backdropBlur", true);
|
|
107322
107333
|
} }
|
|
107323
107334
|
function SymphiqProfileAnalysisUnifiedDashboardComponent_Conditional_6_Conditional_2_Template(rf, ctx) { if (rf & 1) {
|
|
107324
107335
|
const _r3 = i0.ɵɵgetCurrentView();
|
|
107325
|
-
i0.ɵɵelement(0, "symphiq-unified-welcome-banner",
|
|
107326
|
-
i0.ɵɵelementStart(1, "symphiq-unified-goals-grid",
|
|
107336
|
+
i0.ɵɵelement(0, "symphiq-unified-welcome-banner", 18);
|
|
107337
|
+
i0.ɵɵelementStart(1, "symphiq-unified-goals-grid", 19);
|
|
107327
107338
|
i0.ɵɵlistener("goalClick", function SymphiqProfileAnalysisUnifiedDashboardComponent_Conditional_6_Conditional_2_Template_symphiq_unified_goals_grid_goalClick_1_listener($event) { i0.ɵɵrestoreView(_r3); const ctx_r1 = i0.ɵɵnextContext(2); return i0.ɵɵresetView(ctx_r1.onGoalClick($event)); })("sourceBadgeClick", function SymphiqProfileAnalysisUnifiedDashboardComponent_Conditional_6_Conditional_2_Template_symphiq_unified_goals_grid_sourceBadgeClick_1_listener($event) { i0.ɵɵrestoreView(_r3); const ctx_r1 = i0.ɵɵnextContext(2); return i0.ɵɵresetView(ctx_r1.onSourceBadgeClickFromCard($event)); })("relatedMetricsClick", function SymphiqProfileAnalysisUnifiedDashboardComponent_Conditional_6_Conditional_2_Template_symphiq_unified_goals_grid_relatedMetricsClick_1_listener($event) { i0.ɵɵrestoreView(_r3); const ctx_r1 = i0.ɵɵnextContext(2); return i0.ɵɵresetView(ctx_r1.onRelatedMetricsClickFromCard($event)); });
|
|
107328
107339
|
i0.ɵɵelementEnd();
|
|
107329
|
-
i0.ɵɵelementStart(2, "symphiq-collapsible-analysis-section-group",
|
|
107340
|
+
i0.ɵɵelementStart(2, "symphiq-collapsible-analysis-section-group", 20);
|
|
107330
107341
|
i0.ɵɵlistener("unifiedGoalClick", function SymphiqProfileAnalysisUnifiedDashboardComponent_Conditional_6_Conditional_2_Template_symphiq_collapsible_analysis_section_group_unifiedGoalClick_2_listener($event) { i0.ɵɵrestoreView(_r3); const ctx_r1 = i0.ɵɵnextContext(2); return i0.ɵɵresetView(ctx_r1.onGoalClick($event)); })("viewAllPriorityActionsClick", function SymphiqProfileAnalysisUnifiedDashboardComponent_Conditional_6_Conditional_2_Template_symphiq_collapsible_analysis_section_group_viewAllPriorityActionsClick_2_listener() { i0.ɵɵrestoreView(_r3); const ctx_r1 = i0.ɵɵnextContext(2); return i0.ɵɵresetView(ctx_r1.onViewAllPriorityActionsClick()); });
|
|
107331
107342
|
i0.ɵɵelementEnd();
|
|
107332
107343
|
} if (rf & 2) {
|
|
@@ -107339,20 +107350,20 @@ function SymphiqProfileAnalysisUnifiedDashboardComponent_Conditional_6_Condition
|
|
|
107339
107350
|
} }
|
|
107340
107351
|
function SymphiqProfileAnalysisUnifiedDashboardComponent_Conditional_6_Conditional_3_Template(rf, ctx) { if (rf & 1) {
|
|
107341
107352
|
const _r4 = i0.ɵɵgetCurrentView();
|
|
107342
|
-
i0.ɵɵelement(0, "symphiq-unified-welcome-banner",
|
|
107343
|
-
i0.ɵɵelementStart(1, "symphiq-unified-executive-summary",
|
|
107353
|
+
i0.ɵɵelement(0, "symphiq-unified-welcome-banner", 18);
|
|
107354
|
+
i0.ɵɵelementStart(1, "symphiq-unified-executive-summary", 21);
|
|
107344
107355
|
i0.ɵɵlistener("viewAllPriorityActionsClick", function SymphiqProfileAnalysisUnifiedDashboardComponent_Conditional_6_Conditional_3_Template_symphiq_unified_executive_summary_viewAllPriorityActionsClick_1_listener() { i0.ɵɵrestoreView(_r4); const ctx_r1 = i0.ɵɵnextContext(2); return i0.ɵɵresetView(ctx_r1.onViewAllPriorityActionsClick()); });
|
|
107345
107356
|
i0.ɵɵelementEnd();
|
|
107346
|
-
i0.ɵɵelementStart(2, "symphiq-unified-goals-grid",
|
|
107357
|
+
i0.ɵɵelementStart(2, "symphiq-unified-goals-grid", 22);
|
|
107347
107358
|
i0.ɵɵlistener("goalClick", function SymphiqProfileAnalysisUnifiedDashboardComponent_Conditional_6_Conditional_3_Template_symphiq_unified_goals_grid_goalClick_2_listener($event) { i0.ɵɵrestoreView(_r4); const ctx_r1 = i0.ɵɵnextContext(2); return i0.ɵɵresetView(ctx_r1.onGoalClick($event)); })("sourceBadgeClick", function SymphiqProfileAnalysisUnifiedDashboardComponent_Conditional_6_Conditional_3_Template_symphiq_unified_goals_grid_sourceBadgeClick_2_listener($event) { i0.ɵɵrestoreView(_r4); const ctx_r1 = i0.ɵɵnextContext(2); return i0.ɵɵresetView(ctx_r1.onSourceBadgeClickFromCard($event)); })("relatedMetricsClick", function SymphiqProfileAnalysisUnifiedDashboardComponent_Conditional_6_Conditional_3_Template_symphiq_unified_goals_grid_relatedMetricsClick_2_listener($event) { i0.ɵɵrestoreView(_r4); const ctx_r1 = i0.ɵɵnextContext(2); return i0.ɵɵresetView(ctx_r1.onRelatedMetricsClickFromCard($event)); });
|
|
107348
107359
|
i0.ɵɵelementEnd();
|
|
107349
|
-
i0.ɵɵelementStart(3, "symphiq-unified-timeline",
|
|
107360
|
+
i0.ɵɵelementStart(3, "symphiq-unified-timeline", 23);
|
|
107350
107361
|
i0.ɵɵlistener("goalClick", function SymphiqProfileAnalysisUnifiedDashboardComponent_Conditional_6_Conditional_3_Template_symphiq_unified_timeline_goalClick_3_listener($event) { i0.ɵɵrestoreView(_r4); const ctx_r1 = i0.ɵɵnextContext(2); return i0.ɵɵresetView(ctx_r1.onGoalClick($event)); });
|
|
107351
107362
|
i0.ɵɵelementEnd();
|
|
107352
|
-
i0.ɵɵelementStart(4, "symphiq-unified-priority-matrix",
|
|
107363
|
+
i0.ɵɵelementStart(4, "symphiq-unified-priority-matrix", 24);
|
|
107353
107364
|
i0.ɵɵlistener("goalClick", function SymphiqProfileAnalysisUnifiedDashboardComponent_Conditional_6_Conditional_3_Template_symphiq_unified_priority_matrix_goalClick_4_listener($event) { i0.ɵɵrestoreView(_r4); const ctx_r1 = i0.ɵɵnextContext(2); return i0.ɵɵresetView(ctx_r1.onGoalClick($event)); });
|
|
107354
107365
|
i0.ɵɵelementEnd();
|
|
107355
|
-
i0.ɵɵelementStart(5, "symphiq-unified-next-steps",
|
|
107366
|
+
i0.ɵɵelementStart(5, "symphiq-unified-next-steps", 25);
|
|
107356
107367
|
i0.ɵɵlistener("goalClick", function SymphiqProfileAnalysisUnifiedDashboardComponent_Conditional_6_Conditional_3_Template_symphiq_unified_next_steps_goalClick_5_listener($event) { i0.ɵɵrestoreView(_r4); const ctx_r1 = i0.ɵɵnextContext(2); return i0.ɵɵresetView(ctx_r1.onGoalClick($event)); });
|
|
107357
107368
|
i0.ɵɵelementEnd();
|
|
107358
107369
|
} if (rf & 2) {
|
|
@@ -107370,13 +107381,14 @@ function SymphiqProfileAnalysisUnifiedDashboardComponent_Conditional_6_Condition
|
|
|
107370
107381
|
i0.ɵɵproperty("steps", ctx_r1.nextSteps())("viewMode", ctx_r1.viewMode())("goals", ctx_r1.unifiedGoals());
|
|
107371
107382
|
} }
|
|
107372
107383
|
function SymphiqProfileAnalysisUnifiedDashboardComponent_Conditional_6_Template(rf, ctx) { if (rf & 1) {
|
|
107373
|
-
i0.ɵɵelementStart(0, "main",
|
|
107374
|
-
i0.ɵɵconditionalCreate(1, SymphiqProfileAnalysisUnifiedDashboardComponent_Conditional_6_Conditional_1_Template, 1, 2, "symphiq-loading-card",
|
|
107384
|
+
i0.ɵɵelementStart(0, "main", 16);
|
|
107385
|
+
i0.ɵɵconditionalCreate(1, SymphiqProfileAnalysisUnifiedDashboardComponent_Conditional_6_Conditional_1_Template, 1, 2, "symphiq-loading-card", 17);
|
|
107375
107386
|
i0.ɵɵconditionalCreate(2, SymphiqProfileAnalysisUnifiedDashboardComponent_Conditional_6_Conditional_2_Template, 3, 22);
|
|
107376
107387
|
i0.ɵɵconditionalCreate(3, SymphiqProfileAnalysisUnifiedDashboardComponent_Conditional_6_Conditional_3_Template, 6, 24);
|
|
107377
107388
|
i0.ɵɵelementEnd();
|
|
107378
107389
|
} if (rf & 2) {
|
|
107379
107390
|
const ctx_r1 = i0.ɵɵnextContext();
|
|
107391
|
+
i0.ɵɵclassProp("pb-36", ctx_r1.shouldShowProgressFooter());
|
|
107380
107392
|
i0.ɵɵadvance();
|
|
107381
107393
|
i0.ɵɵconditional(ctx_r1.isSimplifiedView() && ctx_r1.isLoading() ? 1 : -1);
|
|
107382
107394
|
i0.ɵɵadvance();
|
|
@@ -107392,7 +107404,7 @@ function SymphiqProfileAnalysisUnifiedDashboardComponent_Conditional_7_Template(
|
|
|
107392
107404
|
} }
|
|
107393
107405
|
function SymphiqProfileAnalysisUnifiedDashboardComponent_Conditional_8_Template(rf, ctx) { if (rf & 1) {
|
|
107394
107406
|
const _r5 = i0.ɵɵgetCurrentView();
|
|
107395
|
-
i0.ɵɵelementStart(0, "symphiq-search-modal",
|
|
107407
|
+
i0.ɵɵelementStart(0, "symphiq-search-modal", 26);
|
|
107396
107408
|
i0.ɵɵlistener("close", function SymphiqProfileAnalysisUnifiedDashboardComponent_Conditional_8_Template_symphiq_search_modal_close_0_listener() { i0.ɵɵrestoreView(_r5); const ctx_r1 = i0.ɵɵnextContext(); return i0.ɵɵresetView(ctx_r1.closeSearch()); });
|
|
107397
107409
|
i0.ɵɵelementEnd();
|
|
107398
107410
|
} if (rf & 2) {
|
|
@@ -107401,7 +107413,7 @@ function SymphiqProfileAnalysisUnifiedDashboardComponent_Conditional_8_Template(
|
|
|
107401
107413
|
} }
|
|
107402
107414
|
function SymphiqProfileAnalysisUnifiedDashboardComponent_Conditional_9_Template(rf, ctx) { if (rf & 1) {
|
|
107403
107415
|
const _r6 = i0.ɵɵgetCurrentView();
|
|
107404
|
-
i0.ɵɵelementStart(0, "symphiq-view-mode-switcher-modal",
|
|
107416
|
+
i0.ɵɵelementStart(0, "symphiq-view-mode-switcher-modal", 27);
|
|
107405
107417
|
i0.ɵɵlistener("close", function SymphiqProfileAnalysisUnifiedDashboardComponent_Conditional_9_Template_symphiq_view_mode_switcher_modal_close_0_listener() { i0.ɵɵrestoreView(_r6); const ctx_r1 = i0.ɵɵnextContext(); return i0.ɵɵresetView(ctx_r1.closeViewModeSwitcher()); })("modeSelected", function SymphiqProfileAnalysisUnifiedDashboardComponent_Conditional_9_Template_symphiq_view_mode_switcher_modal_modeSelected_0_listener($event) { i0.ɵɵrestoreView(_r6); const ctx_r1 = i0.ɵɵnextContext(); return i0.ɵɵresetView(ctx_r1.handleDisplayModeChange($event)); });
|
|
107406
107418
|
i0.ɵɵelementEnd();
|
|
107407
107419
|
} if (rf & 2) {
|
|
@@ -107416,7 +107428,7 @@ function SymphiqProfileAnalysisUnifiedDashboardComponent_Conditional_10_Template
|
|
|
107416
107428
|
} }
|
|
107417
107429
|
function SymphiqProfileAnalysisUnifiedDashboardComponent_Conditional_15_Template(rf, ctx) { if (rf & 1) {
|
|
107418
107430
|
const _r7 = i0.ɵɵgetCurrentView();
|
|
107419
|
-
i0.ɵɵelementStart(0, "symphiq-unified-goals-progress-footer",
|
|
107431
|
+
i0.ɵɵelementStart(0, "symphiq-unified-goals-progress-footer", 28);
|
|
107420
107432
|
i0.ɵɵlistener("integrateGoals", function SymphiqProfileAnalysisUnifiedDashboardComponent_Conditional_15_Template_symphiq_unified_goals_progress_footer_integrateGoals_0_listener($event) { i0.ɵɵrestoreView(_r7); const ctx_r1 = i0.ɵɵnextContext(); return i0.ɵɵresetView(ctx_r1.onIntegrateGoals($event)); });
|
|
107421
107433
|
i0.ɵɵelementEnd();
|
|
107422
107434
|
} if (rf & 2) {
|
|
@@ -107449,6 +107461,7 @@ class SymphiqProfileAnalysisUnifiedDashboardComponent {
|
|
|
107449
107461
|
this.modalService = inject(ModalService);
|
|
107450
107462
|
this.viewModeService = inject(ViewModeService);
|
|
107451
107463
|
this.profileContextService = inject(ProfileContextService);
|
|
107464
|
+
this.profileItemLookupService = inject(ProfileItemLookupService);
|
|
107452
107465
|
this.goalActionStateService = inject(GoalActionStateService);
|
|
107453
107466
|
this.IconSourceEnum = IconSourceEnum;
|
|
107454
107467
|
this.ProfileAnalysisTypeEnum = ProfileAnalysisTypeEnum;
|
|
@@ -107831,6 +107844,7 @@ class SymphiqProfileAnalysisUnifiedDashboardComponent {
|
|
|
107831
107844
|
const recommendations = profileToUse.profileStructured?.recommendations || [];
|
|
107832
107845
|
console.log('[UnifiedDashboard] profileIndexEffect - calling indexProfile with', profileToUse.profileStructured.sections.length, 'sections and', recommendations.length, 'recommendations');
|
|
107833
107846
|
this.profileContextService.indexProfile(profileToUse.profileStructured.sections, recommendations);
|
|
107847
|
+
this.profileItemLookupService.setProfile(profileToUse);
|
|
107834
107848
|
}
|
|
107835
107849
|
else {
|
|
107836
107850
|
console.log('[UnifiedDashboard] profileIndexEffect - NO profile data to index');
|
|
@@ -108083,9 +108097,8 @@ class SymphiqProfileAnalysisUnifiedDashboardComponent {
|
|
|
108083
108097
|
}
|
|
108084
108098
|
}
|
|
108085
108099
|
}
|
|
108086
|
-
|
|
108087
|
-
|
|
108088
|
-
this.profileContextService.indexProfile(profileSections, recommendations);
|
|
108100
|
+
console.log('[SourceAnalysis] openSourceGoalModal - adding', recommendations.length, 'source analysis recommendations');
|
|
108101
|
+
this.profileContextService.addRecommendations(recommendations);
|
|
108089
108102
|
if (goal) {
|
|
108090
108103
|
const currentModalState = this.modalService.getCurrentState();
|
|
108091
108104
|
if (analysisType) {
|
|
@@ -108369,14 +108382,14 @@ class SymphiqProfileAnalysisUnifiedDashboardComponent {
|
|
|
108369
108382
|
static { this.ɵfac = function SymphiqProfileAnalysisUnifiedDashboardComponent_Factory(__ngFactoryType__) { return new (__ngFactoryType__ || SymphiqProfileAnalysisUnifiedDashboardComponent)(); }; }
|
|
108370
108383
|
static { this.ɵcmp = /*@__PURE__*/ i0.ɵɵdefineComponent({ type: SymphiqProfileAnalysisUnifiedDashboardComponent, selectors: [["symphiq-profile-analysis-unified-dashboard"]], hostBindings: function SymphiqProfileAnalysisUnifiedDashboardComponent_HostBindings(rf, ctx) { if (rf & 1) {
|
|
108371
108384
|
i0.ɵɵlistener("scroll", function SymphiqProfileAnalysisUnifiedDashboardComponent_scroll_HostBindingHandler() { return ctx.onScroll(); }, i0.ɵɵresolveWindow);
|
|
108372
|
-
} }, 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"], requestedByUser: [1, "requestedByUser"] }, outputs: { generateGoalsClick: "generateGoalsClick", stepClick: "stepClick", nextStepClick: "nextStepClick", sourceAnalysisRequest: "sourceAnalysisRequest", integrateGoalsClick: "integrateGoalsClick" }, features: [i0.ɵɵNgOnChangesFeature], decls: 16, vars: 33, 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", "viewMode", "viewModeLabel", "isLoading", "requestedByUser", "showSearchControl", "showViewModeControl", "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, "sections", "viewMode", "embedded", "scrollElement"], [3, "isLightMode", "isOpen"], [3, "viewMode", "currentMode", "isOpen"], [3, "viewMode", "itemStatus", "currentStatus", "confettiIntensity", "title"], [3, "priorityActionGoalClick", "priorityActionRecommendationClick", "sourceAnalysisClickRequest", "viewMode", "loadingSourceAnalysisId", "loadedSourceAnalysisIds"], [3, "isLightMode"], [3, "isLightMode", "allInsights", "allMetrics", "allCharts", "allBusinessInsights"], [3, "goalIds", "viewMode"], [3, "nextStepClick", "stepClick", "viewMode", "currentStepId", "showNextStepAction", "forDemo", "maxAccessibleStepId"], ["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", "sourceGoalsCount", "goalIds"], [1, "mb-12", "block", 3, "goalClick", "sourceBadgeClick", "relatedMetricsClick", "goals", "viewMode"], [3, "unifiedGoalClick", "viewAllPriorityActionsClick", "sections", "viewMode", "unifiedExecutiveSummary", "unifiedTimeline", "unifiedPriorityMatrix", "unifiedNextSteps", "unifiedGoals", "shopCounts", "focusAreaCounts", "metricCounts", "storageKey"], [3, "viewAllPriorityActionsClick", "summary", "viewMode", "shopCounts", "focusAreaCounts", "metricCounts"], [3, "goalClick", "sourceBadgeClick", "relatedMetricsClick", "goals", "viewMode"], [3, "goalClick", "timeline", "viewMode", "goals"], [3, "goalClick", "matrix", "viewMode"], [3, "goalClick", "steps", "viewMode", "goals"], [3, "close", "isLightMode", "isOpen"], [3, "close", "modeSelected", "viewMode", "currentMode", "isOpen"], [3, "integrateGoals", "goalIds", "viewMode"]], template: function SymphiqProfileAnalysisUnifiedDashboardComponent_Template(rf, ctx) { if (rf & 1) {
|
|
108385
|
+
} }, 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"], requestedByUser: [1, "requestedByUser"] }, outputs: { generateGoalsClick: "generateGoalsClick", stepClick: "stepClick", nextStepClick: "nextStepClick", sourceAnalysisRequest: "sourceAnalysisRequest", integrateGoalsClick: "integrateGoalsClick" }, features: [i0.ɵɵNgOnChangesFeature], decls: 16, vars: 33, 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", "viewMode", "viewModeLabel", "isLoading", "requestedByUser", "showSearchControl", "showViewModeControl", "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-36"], [3, "sections", "viewMode", "embedded", "scrollElement"], [3, "isLightMode", "isOpen"], [3, "viewMode", "currentMode", "isOpen"], [3, "viewMode", "itemStatus", "currentStatus", "confettiIntensity", "title"], [3, "priorityActionGoalClick", "priorityActionRecommendationClick", "sourceAnalysisClickRequest", "viewMode", "loadingSourceAnalysisId", "loadedSourceAnalysisIds"], [3, "isLightMode"], [3, "isLightMode", "allInsights", "allMetrics", "allCharts", "allBusinessInsights"], [3, "goalIds", "viewMode"], [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", "sourceGoalsCount", "goalIds"], [1, "mb-12", "block", 3, "goalClick", "sourceBadgeClick", "relatedMetricsClick", "goals", "viewMode"], [3, "unifiedGoalClick", "viewAllPriorityActionsClick", "sections", "viewMode", "unifiedExecutiveSummary", "unifiedTimeline", "unifiedPriorityMatrix", "unifiedNextSteps", "unifiedGoals", "shopCounts", "focusAreaCounts", "metricCounts", "storageKey"], [3, "viewAllPriorityActionsClick", "summary", "viewMode", "shopCounts", "focusAreaCounts", "metricCounts"], [3, "goalClick", "sourceBadgeClick", "relatedMetricsClick", "goals", "viewMode"], [3, "goalClick", "timeline", "viewMode", "goals"], [3, "goalClick", "matrix", "viewMode"], [3, "goalClick", "steps", "viewMode", "goals"], [3, "close", "isLightMode", "isOpen"], [3, "close", "modeSelected", "viewMode", "currentMode", "isOpen"], [3, "integrateGoals", "goalIds", "viewMode"]], template: function SymphiqProfileAnalysisUnifiedDashboardComponent_Template(rf, ctx) { if (rf & 1) {
|
|
108373
108386
|
i0.ɵɵelementStart(0, "div", 0);
|
|
108374
108387
|
i0.ɵɵelement(1, "div", 1)(2, "symphiq-scroll-progress-bar", 2);
|
|
108375
108388
|
i0.ɵɵelementStart(3, "div", 3)(4, "symphiq-dashboard-header", 4);
|
|
108376
108389
|
i0.ɵɵlistener("searchClick", function SymphiqProfileAnalysisUnifiedDashboardComponent_Template_symphiq_dashboard_header_searchClick_4_listener() { return ctx.openSearch(); })("viewModeClick", function SymphiqProfileAnalysisUnifiedDashboardComponent_Template_symphiq_dashboard_header_viewModeClick_4_listener() { return ctx.openViewModeSwitcher(); });
|
|
108377
108390
|
i0.ɵɵelementEnd();
|
|
108378
108391
|
i0.ɵɵconditionalCreate(5, SymphiqProfileAnalysisUnifiedDashboardComponent_Conditional_5_Template, 1, 5, "symphiq-journey-progress-indicator", 5);
|
|
108379
|
-
i0.ɵɵconditionalCreate(6, SymphiqProfileAnalysisUnifiedDashboardComponent_Conditional_6_Template, 4,
|
|
108392
|
+
i0.ɵɵconditionalCreate(6, SymphiqProfileAnalysisUnifiedDashboardComponent_Conditional_6_Template, 4, 5, "main", 6);
|
|
108380
108393
|
i0.ɵɵconditionalCreate(7, SymphiqProfileAnalysisUnifiedDashboardComponent_Conditional_7_Template, 1, 4, "symphiq-floating-toc", 7);
|
|
108381
108394
|
i0.ɵɵelementEnd();
|
|
108382
108395
|
i0.ɵɵconditionalCreate(8, SymphiqProfileAnalysisUnifiedDashboardComponent_Conditional_8_Template, 1, 2, "symphiq-search-modal", 8);
|
|
@@ -108508,7 +108521,7 @@ class SymphiqProfileAnalysisUnifiedDashboardComponent {
|
|
|
108508
108521
|
}
|
|
108509
108522
|
|
|
108510
108523
|
@if (shouldShowMain()) {
|
|
108511
|
-
<main class="relative z-10 max-w-7xl mx-auto px-4 sm:px-6 lg:px-8 py-12 space-y-12">
|
|
108524
|
+
<main class="relative z-10 max-w-7xl mx-auto px-4 sm:px-6 lg:px-8 py-12 space-y-12" [class.pb-36]="shouldShowProgressFooter()">
|
|
108512
108525
|
|
|
108513
108526
|
@if (isSimplifiedView() && isLoading()) {
|
|
108514
108527
|
<symphiq-loading-card
|
|
@@ -108695,7 +108708,7 @@ class SymphiqProfileAnalysisUnifiedDashboardComponent {
|
|
|
108695
108708
|
type: HostListener,
|
|
108696
108709
|
args: ['window:scroll']
|
|
108697
108710
|
}] }); })();
|
|
108698
|
-
(() => { (typeof ngDevMode === "undefined" || ngDevMode) && i0.ɵsetClassDebugInfo(SymphiqProfileAnalysisUnifiedDashboardComponent, { className: "SymphiqProfileAnalysisUnifiedDashboardComponent", filePath: "lib/components/profile-analysis-unified-dashboard/symphiq-profile-analysis-unified-dashboard.component.ts", lineNumber:
|
|
108711
|
+
(() => { (typeof ngDevMode === "undefined" || ngDevMode) && i0.ɵsetClassDebugInfo(SymphiqProfileAnalysisUnifiedDashboardComponent, { className: "SymphiqProfileAnalysisUnifiedDashboardComponent", filePath: "lib/components/profile-analysis-unified-dashboard/symphiq-profile-analysis-unified-dashboard.component.ts", lineNumber: 342 }); })();
|
|
108699
108712
|
|
|
108700
108713
|
function SymphiqProfileMetricsAnalysesDashboardComponent_Conditional_5_Template(rf, ctx) { if (rf & 1) {
|
|
108701
108714
|
const _r1 = i0.ɵɵgetCurrentView();
|