@eric-emg/symphiq-components 1.2.533 → 1.2.534

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.
@@ -81135,17 +81135,35 @@ class StrategyRecommendationsModalContentComponent {
81135
81135
  }
81136
81136
  }
81137
81137
  }
81138
- // Map MetricEnum values to PerformanceMetricInterface objects
81139
- return uniqueMetricEnums
81140
- .map(metricEnum => this.allMetrics().find(m => m.metric === metricEnum))
81141
- .filter(m => m !== undefined);
81138
+ // Map MetricEnum values to PerformanceMetricInterface objects, creating placeholders for missing ones
81139
+ return uniqueMetricEnums.map(metricEnum => {
81140
+ const existingMetric = this.allMetrics().find(m => m.metric === metricEnum);
81141
+ if (existingMetric) {
81142
+ return existingMetric;
81143
+ }
81144
+ // Create placeholder for metrics not in allMetrics()
81145
+ return {
81146
+ metric: metricEnum,
81147
+ title: MetricEnumUtil.title(metricEnum),
81148
+ description: `${MetricEnumUtil.title(metricEnum)} metric data not available in current analysis.`
81149
+ };
81150
+ });
81142
81151
  }
81143
81152
  hasRelatedMetrics(recommendation) {
81144
81153
  return !!(recommendation.directlyAffectedMetric ||
81145
81154
  (recommendation.indirectlyAffectedMetrics && recommendation.indirectlyAffectedMetrics.length > 0));
81146
81155
  }
81147
81156
  getRelatedMetricsCount(recommendation) {
81148
- return this.getRelatedMetrics(recommendation).length;
81157
+ const seenMetricEnums = new Set();
81158
+ if (recommendation.directlyAffectedMetric) {
81159
+ seenMetricEnums.add(recommendation.directlyAffectedMetric);
81160
+ }
81161
+ if (recommendation.indirectlyAffectedMetrics) {
81162
+ for (const metricEnum of recommendation.indirectlyAffectedMetrics) {
81163
+ seenMetricEnums.add(metricEnum);
81164
+ }
81165
+ }
81166
+ return seenMetricEnums.size;
81149
81167
  }
81150
81168
  openRelatedMetricsModal(recommendation) {
81151
81169
  const metrics = this.getRelatedMetrics(recommendation);
@@ -97297,12 +97315,12 @@ class FocusAreaWelcomeBannerComponent {
97297
97315
  const _c0$7 = ["funnelModalComponent"];
97298
97316
  const _forTrack0$6 = ($index, $item) => $item.id;
97299
97317
  function SymphiqProfileAnalysisFocusAreaDashboardComponent_Conditional_7_Conditional_2_Template(rf, ctx) { if (rf & 1) {
97300
- i0.ɵɵelementStart(0, "div", 22)(1, "div", 23);
97301
- i0.ɵɵelement(2, "symphiq-indeterminate-spinner", 24);
97302
- i0.ɵɵelementStart(3, "div", 25)(4, "h3", 26);
97318
+ i0.ɵɵelementStart(0, "div", 23)(1, "div", 24);
97319
+ i0.ɵɵelement(2, "symphiq-indeterminate-spinner", 25);
97320
+ i0.ɵɵelementStart(3, "div", 26)(4, "h3", 27);
97303
97321
  i0.ɵɵtext(5, " Loading Your Focus Area Analysis ");
97304
97322
  i0.ɵɵelementEnd();
97305
- i0.ɵɵelementStart(6, "p", 27);
97323
+ i0.ɵɵelementStart(6, "p", 28);
97306
97324
  i0.ɵɵtext(7, " Please wait while we prepare your personalized insights... ");
97307
97325
  i0.ɵɵelementEnd()()()();
97308
97326
  } if (rf & 2) {
@@ -97316,10 +97334,10 @@ function SymphiqProfileAnalysisFocusAreaDashboardComponent_Conditional_7_Conditi
97316
97334
  i0.ɵɵproperty("ngClass", ctx_r1.isLightMode() ? "text-slate-600" : "text-slate-400");
97317
97335
  } }
97318
97336
  function SymphiqProfileAnalysisFocusAreaDashboardComponent_Conditional_7_Template(rf, ctx) { if (rf & 1) {
97319
- i0.ɵɵelementStart(0, "div", 20);
97320
- i0.ɵɵelement(1, "symphiq-focus-area-welcome-banner", 21);
97337
+ i0.ɵɵelementStart(0, "div", 21);
97338
+ i0.ɵɵelement(1, "symphiq-focus-area-welcome-banner", 22);
97321
97339
  i0.ɵɵelementEnd();
97322
- i0.ɵɵconditionalCreate(2, SymphiqProfileAnalysisFocusAreaDashboardComponent_Conditional_7_Conditional_2_Template, 8, 4, "div", 22);
97340
+ i0.ɵɵconditionalCreate(2, SymphiqProfileAnalysisFocusAreaDashboardComponent_Conditional_7_Conditional_2_Template, 8, 4, "div", 23);
97323
97341
  } if (rf & 2) {
97324
97342
  const ctx_r1 = i0.ɵɵnextContext();
97325
97343
  i0.ɵɵadvance();
@@ -97328,8 +97346,8 @@ function SymphiqProfileAnalysisFocusAreaDashboardComponent_Conditional_7_Templat
97328
97346
  i0.ɵɵconditional(ctx_r1.isLoading() ? 2 : -1);
97329
97347
  } }
97330
97348
  function SymphiqProfileAnalysisFocusAreaDashboardComponent_Conditional_8_Conditional_0_Conditional_1_Template(rf, ctx) { if (rf & 1) {
97331
- i0.ɵɵelementStart(0, "div", 29);
97332
- i0.ɵɵelement(1, "symphiq-content-generation-progress", 31);
97349
+ i0.ɵɵelementStart(0, "div", 30);
97350
+ i0.ɵɵelement(1, "symphiq-content-generation-progress", 32);
97333
97351
  i0.ɵɵelementEnd();
97334
97352
  } if (rf & 2) {
97335
97353
  const ctx_r1 = i0.ɵɵnextContext(3);
@@ -97339,7 +97357,7 @@ function SymphiqProfileAnalysisFocusAreaDashboardComponent_Conditional_8_Conditi
97339
97357
  } }
97340
97358
  function SymphiqProfileAnalysisFocusAreaDashboardComponent_Conditional_8_Conditional_0_Conditional_2_Template(rf, ctx) { if (rf & 1) {
97341
97359
  const _r3 = i0.ɵɵgetCurrentView();
97342
- i0.ɵɵelementStart(0, "symphiq-strategic-goals-tiled-grid", 32);
97360
+ i0.ɵɵelementStart(0, "symphiq-strategic-goals-tiled-grid", 33);
97343
97361
  i0.ɵɵlistener("viewMoreClick", function SymphiqProfileAnalysisFocusAreaDashboardComponent_Conditional_8_Conditional_0_Conditional_2_Template_symphiq_strategic_goals_tiled_grid_viewMoreClick_0_listener($event) { i0.ɵɵrestoreView(_r3); const ctx_r1 = i0.ɵɵnextContext(3); return i0.ɵɵresetView(ctx_r1.openGoalModal($event)); });
97344
97362
  i0.ɵɵelementEnd();
97345
97363
  } if (rf & 2) {
@@ -97347,8 +97365,8 @@ function SymphiqProfileAnalysisFocusAreaDashboardComponent_Conditional_8_Conditi
97347
97365
  i0.ɵɵproperty("goals", ctx_r1.strategicRoadmapGoals())("viewMode", ctx_r1.viewMode());
97348
97366
  } }
97349
97367
  function SymphiqProfileAnalysisFocusAreaDashboardComponent_Conditional_8_Conditional_0_Template(rf, ctx) { if (rf & 1) {
97350
- i0.ɵɵelementStart(0, "div", 28);
97351
- i0.ɵɵconditionalCreate(1, SymphiqProfileAnalysisFocusAreaDashboardComponent_Conditional_8_Conditional_0_Conditional_1_Template, 2, 3, "div", 29)(2, SymphiqProfileAnalysisFocusAreaDashboardComponent_Conditional_8_Conditional_0_Conditional_2_Template, 1, 2, "symphiq-strategic-goals-tiled-grid", 30);
97368
+ i0.ɵɵelementStart(0, "div", 29);
97369
+ i0.ɵɵconditionalCreate(1, SymphiqProfileAnalysisFocusAreaDashboardComponent_Conditional_8_Conditional_0_Conditional_1_Template, 2, 3, "div", 30)(2, SymphiqProfileAnalysisFocusAreaDashboardComponent_Conditional_8_Conditional_0_Conditional_2_Template, 1, 2, "symphiq-strategic-goals-tiled-grid", 31);
97352
97370
  i0.ɵɵelementEnd();
97353
97371
  } if (rf & 2) {
97354
97372
  const ctx_r1 = i0.ɵɵnextContext(2);
@@ -97357,7 +97375,7 @@ function SymphiqProfileAnalysisFocusAreaDashboardComponent_Conditional_8_Conditi
97357
97375
  } }
97358
97376
  function SymphiqProfileAnalysisFocusAreaDashboardComponent_Conditional_8_Conditional_1_Template(rf, ctx) { if (rf & 1) {
97359
97377
  i0.ɵɵelementStart(0, "div");
97360
- i0.ɵɵelement(1, "symphiq-collapsible-analysis-section-group", 33);
97378
+ i0.ɵɵelement(1, "symphiq-collapsible-analysis-section-group", 34);
97361
97379
  i0.ɵɵelementEnd();
97362
97380
  } if (rf & 2) {
97363
97381
  const ctx_r1 = i0.ɵɵnextContext(2);
@@ -97365,7 +97383,7 @@ function SymphiqProfileAnalysisFocusAreaDashboardComponent_Conditional_8_Conditi
97365
97383
  i0.ɵɵproperty("sections", ctx_r1.nonStrategicSections())("viewMode", ctx_r1.viewMode())("focusAreaExecutiveSummary", ctx_r1.focusAreaExecutiveSummary())("allGoals", ctx_r1.allGoals())("allMetrics", ctx_r1.allMetrics())("allCharts", ctx_r1.allCharts())("allInsights", ctx_r1.allInsights())("businessProfile", ctx_r1.profile());
97366
97384
  } }
97367
97385
  function SymphiqProfileAnalysisFocusAreaDashboardComponent_Conditional_8_Template(rf, ctx) { if (rf & 1) {
97368
- i0.ɵɵconditionalCreate(0, SymphiqProfileAnalysisFocusAreaDashboardComponent_Conditional_8_Conditional_0_Template, 3, 1, "div", 28);
97386
+ i0.ɵɵconditionalCreate(0, SymphiqProfileAnalysisFocusAreaDashboardComponent_Conditional_8_Conditional_0_Template, 3, 1, "div", 29);
97369
97387
  i0.ɵɵconditionalCreate(1, SymphiqProfileAnalysisFocusAreaDashboardComponent_Conditional_8_Conditional_1_Template, 2, 8, "div");
97370
97388
  } if (rf & 2) {
97371
97389
  const ctx_r1 = i0.ɵɵnextContext();
@@ -97375,7 +97393,7 @@ function SymphiqProfileAnalysisFocusAreaDashboardComponent_Conditional_8_Templat
97375
97393
  } }
97376
97394
  function SymphiqProfileAnalysisFocusAreaDashboardComponent_Conditional_9_Conditional_0_Template(rf, ctx) { if (rf & 1) {
97377
97395
  const _r4 = i0.ɵɵgetCurrentView();
97378
- i0.ɵɵelementStart(0, "symphiq-focus-area-executive-summary", 36);
97396
+ i0.ɵɵelementStart(0, "symphiq-focus-area-executive-summary", 37);
97379
97397
  i0.ɵɵlistener("topPrioritiesClick", function SymphiqProfileAnalysisFocusAreaDashboardComponent_Conditional_9_Conditional_0_Template_symphiq_focus_area_executive_summary_topPrioritiesClick_0_listener() { i0.ɵɵrestoreView(_r4); const ctx_r1 = i0.ɵɵnextContext(2); return i0.ɵɵresetView(ctx_r1.handleTopPrioritiesClick()); })("priorityDetailClick", function SymphiqProfileAnalysisFocusAreaDashboardComponent_Conditional_9_Conditional_0_Template_symphiq_focus_area_executive_summary_priorityDetailClick_0_listener($event) { i0.ɵɵrestoreView(_r4); const ctx_r1 = i0.ɵɵnextContext(2); return i0.ɵɵresetView(ctx_r1.handlePriorityDetailClick($event)); });
97380
97398
  i0.ɵɵelementEnd();
97381
97399
  } if (rf & 2) {
@@ -97383,21 +97401,21 @@ function SymphiqProfileAnalysisFocusAreaDashboardComponent_Conditional_9_Conditi
97383
97401
  i0.ɵɵproperty("viewMode", ctx_r1.viewMode())("summary", ctx)("allGoals", ctx_r1.allGoals());
97384
97402
  } }
97385
97403
  function SymphiqProfileAnalysisFocusAreaDashboardComponent_Conditional_9_Conditional_1_Conditional_0_Template(rf, ctx) { if (rf & 1) {
97386
- i0.ɵɵelement(0, "symphiq-section-divider", 37);
97404
+ i0.ɵɵelement(0, "symphiq-section-divider", 38);
97387
97405
  } if (rf & 2) {
97388
97406
  const sectionList_r5 = i0.ɵɵnextContext();
97389
97407
  const ctx_r1 = i0.ɵɵnextContext(2);
97390
97408
  i0.ɵɵproperty("viewMode", ctx_r1.viewMode())("sectionIcon", sectionList_r5[0].icon);
97391
97409
  } }
97392
97410
  function SymphiqProfileAnalysisFocusAreaDashboardComponent_Conditional_9_Conditional_1_Template(rf, ctx) { if (rf & 1) {
97393
- i0.ɵɵconditionalCreate(0, SymphiqProfileAnalysisFocusAreaDashboardComponent_Conditional_9_Conditional_1_Conditional_0_Template, 1, 2, "symphiq-section-divider", 37);
97411
+ i0.ɵɵconditionalCreate(0, SymphiqProfileAnalysisFocusAreaDashboardComponent_Conditional_9_Conditional_1_Conditional_0_Template, 1, 2, "symphiq-section-divider", 38);
97394
97412
  } if (rf & 2) {
97395
97413
  const sectionList_r5 = ctx;
97396
97414
  i0.ɵɵconditional(sectionList_r5.length > 0 && sectionList_r5[0].icon ? 0 : -1);
97397
97415
  } }
97398
97416
  function SymphiqProfileAnalysisFocusAreaDashboardComponent_Conditional_9_Conditional_2_For_2_Conditional_2_Template(rf, ctx) { if (rf & 1) {
97399
- i0.ɵɵelementStart(0, "div", 40);
97400
- i0.ɵɵelement(1, "symphiq-icon", 45);
97417
+ i0.ɵɵelementStart(0, "div", 41);
97418
+ i0.ɵɵelement(1, "symphiq-icon", 46);
97401
97419
  i0.ɵɵelementEnd();
97402
97420
  } if (rf & 2) {
97403
97421
  const section_r6 = i0.ɵɵnextContext().$implicit;
@@ -97407,8 +97425,8 @@ function SymphiqProfileAnalysisFocusAreaDashboardComponent_Conditional_9_Conditi
97407
97425
  i0.ɵɵproperty("icon", section_r6.icon);
97408
97426
  } }
97409
97427
  function SymphiqProfileAnalysisFocusAreaDashboardComponent_Conditional_9_Conditional_2_For_2_Conditional_6_Conditional_1_Template(rf, ctx) { if (rf & 1) {
97410
- i0.ɵɵelementStart(0, "div", 47);
97411
- i0.ɵɵelement(1, "symphiq-napkin-visual-placeholder", 49);
97428
+ i0.ɵɵelementStart(0, "div", 48);
97429
+ i0.ɵɵelement(1, "symphiq-napkin-visual-placeholder", 50);
97412
97430
  i0.ɵɵelementEnd();
97413
97431
  } if (rf & 2) {
97414
97432
  const section_r6 = i0.ɵɵnextContext(2).$implicit;
@@ -97417,7 +97435,7 @@ function SymphiqProfileAnalysisFocusAreaDashboardComponent_Conditional_9_Conditi
97417
97435
  i0.ɵɵproperty("visual", section_r6.visual)("viewMode", ctx_r1.viewMode());
97418
97436
  } }
97419
97437
  function SymphiqProfileAnalysisFocusAreaDashboardComponent_Conditional_9_Conditional_2_For_2_Conditional_6_Conditional_2_Template(rf, ctx) { if (rf & 1) {
97420
- i0.ɵɵelementStart(0, "div", 50)(1, "p", 51);
97438
+ i0.ɵɵelementStart(0, "div", 51)(1, "p", 52);
97421
97439
  i0.ɵɵtext(2);
97422
97440
  i0.ɵɵelementEnd()();
97423
97441
  } if (rf & 2) {
@@ -97430,9 +97448,9 @@ function SymphiqProfileAnalysisFocusAreaDashboardComponent_Conditional_9_Conditi
97430
97448
  i0.ɵɵtextInterpolate1(" ", section_r6.description, " ");
97431
97449
  } }
97432
97450
  function SymphiqProfileAnalysisFocusAreaDashboardComponent_Conditional_9_Conditional_2_For_2_Conditional_6_Template(rf, ctx) { if (rf & 1) {
97433
- i0.ɵɵelementStart(0, "div", 46);
97434
- i0.ɵɵconditionalCreate(1, SymphiqProfileAnalysisFocusAreaDashboardComponent_Conditional_9_Conditional_2_For_2_Conditional_6_Conditional_1_Template, 2, 2, "div", 47);
97435
- i0.ɵɵconditionalCreate(2, SymphiqProfileAnalysisFocusAreaDashboardComponent_Conditional_9_Conditional_2_For_2_Conditional_6_Conditional_2_Template, 3, 6, "div", 48);
97451
+ i0.ɵɵelementStart(0, "div", 47);
97452
+ i0.ɵɵconditionalCreate(1, SymphiqProfileAnalysisFocusAreaDashboardComponent_Conditional_9_Conditional_2_For_2_Conditional_6_Conditional_1_Template, 2, 2, "div", 48);
97453
+ i0.ɵɵconditionalCreate(2, SymphiqProfileAnalysisFocusAreaDashboardComponent_Conditional_9_Conditional_2_For_2_Conditional_6_Conditional_2_Template, 3, 6, "div", 49);
97436
97454
  i0.ɵɵelementEnd();
97437
97455
  } if (rf & 2) {
97438
97456
  const ctx_r6 = i0.ɵɵnextContext();
@@ -97445,7 +97463,7 @@ function SymphiqProfileAnalysisFocusAreaDashboardComponent_Conditional_9_Conditi
97445
97463
  i0.ɵɵconditional(section_r6.description ? 2 : -1);
97446
97464
  } }
97447
97465
  function SymphiqProfileAnalysisFocusAreaDashboardComponent_Conditional_9_Conditional_2_For_2_Conditional_8_Template(rf, ctx) { if (rf & 1) {
97448
- i0.ɵɵelement(0, "symphiq-section-divider", 37);
97466
+ i0.ɵɵelement(0, "symphiq-section-divider", 38);
97449
97467
  } if (rf & 2) {
97450
97468
  const ɵ$index_63_r8 = i0.ɵɵnextContext().$index;
97451
97469
  const sectionList_r9 = i0.ɵɵnextContext();
@@ -97453,15 +97471,15 @@ function SymphiqProfileAnalysisFocusAreaDashboardComponent_Conditional_9_Conditi
97453
97471
  i0.ɵɵproperty("viewMode", ctx_r1.viewMode())("sectionIcon", sectionList_r9[ɵ$index_63_r8 + 1].icon);
97454
97472
  } }
97455
97473
  function SymphiqProfileAnalysisFocusAreaDashboardComponent_Conditional_9_Conditional_2_For_2_Template(rf, ctx) { if (rf & 1) {
97456
- i0.ɵɵelementStart(0, "div", 38)(1, "div", 39);
97457
- i0.ɵɵconditionalCreate(2, SymphiqProfileAnalysisFocusAreaDashboardComponent_Conditional_9_Conditional_2_For_2_Conditional_2_Template, 2, 2, "div", 40);
97458
- i0.ɵɵelementStart(3, "div", 41)(4, "h3", 42);
97474
+ i0.ɵɵelementStart(0, "div", 39)(1, "div", 40);
97475
+ i0.ɵɵconditionalCreate(2, SymphiqProfileAnalysisFocusAreaDashboardComponent_Conditional_9_Conditional_2_For_2_Conditional_2_Template, 2, 2, "div", 41);
97476
+ i0.ɵɵelementStart(3, "div", 42)(4, "h3", 43);
97459
97477
  i0.ɵɵtext(5);
97460
97478
  i0.ɵɵelementEnd()()();
97461
- i0.ɵɵconditionalCreate(6, SymphiqProfileAnalysisFocusAreaDashboardComponent_Conditional_9_Conditional_2_For_2_Conditional_6_Template, 3, 4, "div", 43);
97462
- i0.ɵɵelement(7, "symphiq-profile-section-content", 44);
97479
+ i0.ɵɵconditionalCreate(6, SymphiqProfileAnalysisFocusAreaDashboardComponent_Conditional_9_Conditional_2_For_2_Conditional_6_Template, 3, 4, "div", 44);
97480
+ i0.ɵɵelement(7, "symphiq-profile-section-content", 45);
97463
97481
  i0.ɵɵelementEnd();
97464
- i0.ɵɵconditionalCreate(8, SymphiqProfileAnalysisFocusAreaDashboardComponent_Conditional_9_Conditional_2_For_2_Conditional_8_Template, 1, 2, "symphiq-section-divider", 37);
97482
+ i0.ɵɵconditionalCreate(8, SymphiqProfileAnalysisFocusAreaDashboardComponent_Conditional_9_Conditional_2_For_2_Conditional_8_Template, 1, 2, "symphiq-section-divider", 38);
97465
97483
  } if (rf & 2) {
97466
97484
  const section_r6 = ctx.$implicit;
97467
97485
  const ɵ$index_63_r8 = ctx.$index;
@@ -97482,7 +97500,7 @@ function SymphiqProfileAnalysisFocusAreaDashboardComponent_Conditional_9_Conditi
97482
97500
  i0.ɵɵconditional(!(ɵ$index_63_r8 === ɵ$count_63_r10 - 1) ? 8 : -1);
97483
97501
  } }
97484
97502
  function SymphiqProfileAnalysisFocusAreaDashboardComponent_Conditional_9_Conditional_2_Template(rf, ctx) { if (rf & 1) {
97485
- i0.ɵɵelementStart(0, "section", 35);
97503
+ i0.ɵɵelementStart(0, "section", 36);
97486
97504
  i0.ɵɵrepeaterCreate(1, SymphiqProfileAnalysisFocusAreaDashboardComponent_Conditional_9_Conditional_2_For_2_Template, 9, 15, null, null, _forTrack0$6);
97487
97505
  i0.ɵɵelementEnd();
97488
97506
  } if (rf & 2) {
@@ -97490,9 +97508,9 @@ function SymphiqProfileAnalysisFocusAreaDashboardComponent_Conditional_9_Conditi
97490
97508
  i0.ɵɵrepeater(ctx);
97491
97509
  } }
97492
97510
  function SymphiqProfileAnalysisFocusAreaDashboardComponent_Conditional_9_Template(rf, ctx) { if (rf & 1) {
97493
- i0.ɵɵconditionalCreate(0, SymphiqProfileAnalysisFocusAreaDashboardComponent_Conditional_9_Conditional_0_Template, 1, 3, "symphiq-focus-area-executive-summary", 34);
97511
+ i0.ɵɵconditionalCreate(0, SymphiqProfileAnalysisFocusAreaDashboardComponent_Conditional_9_Conditional_0_Template, 1, 3, "symphiq-focus-area-executive-summary", 35);
97494
97512
  i0.ɵɵconditionalCreate(1, SymphiqProfileAnalysisFocusAreaDashboardComponent_Conditional_9_Conditional_1_Template, 1, 1);
97495
- i0.ɵɵconditionalCreate(2, SymphiqProfileAnalysisFocusAreaDashboardComponent_Conditional_9_Conditional_2_Template, 3, 0, "section", 35);
97513
+ i0.ɵɵconditionalCreate(2, SymphiqProfileAnalysisFocusAreaDashboardComponent_Conditional_9_Conditional_2_Template, 3, 0, "section", 36);
97496
97514
  } if (rf & 2) {
97497
97515
  let tmp_2_0;
97498
97516
  let tmp_3_0;
@@ -98020,7 +98038,7 @@ class SymphiqProfileAnalysisFocusAreaDashboardComponent {
98020
98038
  i0.ɵɵqueryRefresh(_t = i0.ɵɵloadQuery()) && (ctx.funnelModalComponent = _t.first);
98021
98039
  } }, hostBindings: function SymphiqProfileAnalysisFocusAreaDashboardComponent_HostBindings(rf, ctx) { if (rf & 1) {
98022
98040
  i0.ɵɵlistener("scroll", function SymphiqProfileAnalysisFocusAreaDashboardComponent_scroll_HostBindingHandler($event) { return ctx.onWindowScroll($event); }, i0.ɵɵresolveWindow);
98023
- } }, inputs: { viewMode: [1, "viewMode"], profileAnalysis: [1, "profileAnalysis"], funnelAnalysis: [1, "funnelAnalysis"], profile: [1, "profile"], isLoading: [1, "isLoading"], requestedByUser: [1, "requestedByUser"], embedded: [1, "embedded"], scrollEvent: [1, "scrollEvent"], scrollElement: [1, "scrollElement"], focusAreaDetails: [1, "focusAreaDetails"], itemStatusProfileAnalysis: [1, "itemStatusProfileAnalysis"], isMarkingAsReviewed: [1, "isMarkingAsReviewed"] }, outputs: { nextStepClick: "nextStepClick", markAsReviewedClick: "markAsReviewedClick" }, features: [i0.ɵɵNgOnChangesFeature], decls: 27, vars: 48, consts: [["funnelModalComponent", ""], [1, "relative", 3, "ngClass"], [1, "animated-bubbles", 2, "position", "fixed", "top", "0", "left", "0", "right", "0", "bottom", "0", "width", "100vw", "height", "100vh", "z-index", "1", "pointer-events", "none"], [1, "h-full", "transition-all", "duration-200", "ease-out", 3, "ngClass"], [1, "relative", "z-[51]"], [3, "searchClick", "viewModeClick", "title", "subtitle", "currentSection", "viewMode", "viewModeLabel", "isLoading", "requestedByUser", "createdDate", "showControls"], [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, "close", "isOpen", "isLightMode"], [3, "close", "modeSelected", "isOpen", "currentMode", "viewMode"], [3, "isLightMode", "allMetrics", "allInsights", "allBusinessInsights", "allCharts"], [3, "goal", "viewMode", "isInModal", "allMetrics", "allCharts", "allInsights", "currentModalState", "businessProfile"], [3, "goal", "viewMode"], [3, "objective", "goalTitle", "viewMode"], [3, "strategy", "objectiveTitle", "goalTitle", "viewMode", "expandedRecommendationId", "allMetrics", "allCharts", "allInsights", "allBusinessInsights", "currentModalState"], [3, "category", "viewMode", "scrollToSection"], [3, "strength", "viewMode", "allFunnelStrengths", "currentModalState"], [3, "gap", "viewMode", "allGoals", "allWeaknesses", "currentModalState"], [3, "opportunity", "viewMode", "allStrengths", "currentModalState"], [3, "markAsReviewedClick", "viewMode", "reviewStatus", "selfContentStatus", "isMarkingAsReviewed"], [1, "mb-12"], [3, "viewMode", "focusAreaDomain", "focusAreaName"], [1, "rounded-2xl", "border", "shadow-lg", "p-8", "backdrop-blur-sm", 3, "ngClass"], [1, "flex", "flex-col", "items-center", "justify-center", "space-y-4"], ["size", "large", 3, "viewMode"], [1, "text-center"], [1, "text-lg", "font-semibold", "mb-1", 3, "ngClass"], [1, "text-sm", 3, "ngClass"], [1, "mb-8"], [1, "rounded-2xl", "border", "shadow-lg", "overflow-hidden", 3, "ngClass"], [3, "goals", "viewMode"], ["title", "Generating Your Focus Area Analysis", "subtitle", "We're analyzing your data to create your personalized analysis. It will appear when ready.", 3, "itemStatus", "viewMode"], [3, "viewMoreClick", "goals", "viewMode"], [3, "sections", "viewMode", "focusAreaExecutiveSummary", "allGoals", "allMetrics", "allCharts", "allInsights", "businessProfile"], [3, "viewMode", "summary", "allGoals"], [1, "space-y-8"], [3, "topPrioritiesClick", "priorityDetailClick", "viewMode", "summary", "allGoals"], [3, "viewMode", "sectionIcon"], [1, "rounded-xl", "p-8", "scroll-mt-24", 3, "id", "ngClass"], [1, "flex", "items-start", "gap-3", "mb-6"], [1, "flex-shrink-0", "w-12", "h-12", "rounded-xl", "flex", "items-center", "justify-center", 3, "ngClass"], [1, "flex-1"], [1, "text-2xl", "font-bold", 3, "ngClass"], [1, "mb-6", "flex", "flex-col", "lg:flex-row", "gap-6", "items-start", 3, "lg:flex-row-reverse"], [3, "section", "viewMode", "sectionIndex", "allGoals", "allMetrics", "allCharts", "allInsights", "businessProfile"], ["size", "w-6 h-6", 3, "icon"], [1, "mb-6", "flex", "flex-col", "lg:flex-row", "gap-6", "items-start"], [1, "w-full", "lg:w-2/3"], [1, "w-full", 3, "lg:w-1/3", "lg:w-full"], [3, "visual", "viewMode"], [1, "w-full"], [1, "text-sm", "leading-relaxed", "whitespace-pre-line", 3, "ngClass"]], template: function SymphiqProfileAnalysisFocusAreaDashboardComponent_Template(rf, ctx) { if (rf & 1) {
98041
+ } }, inputs: { viewMode: [1, "viewMode"], profileAnalysis: [1, "profileAnalysis"], funnelAnalysis: [1, "funnelAnalysis"], profile: [1, "profile"], isLoading: [1, "isLoading"], requestedByUser: [1, "requestedByUser"], embedded: [1, "embedded"], scrollEvent: [1, "scrollEvent"], scrollElement: [1, "scrollElement"], focusAreaDetails: [1, "focusAreaDetails"], itemStatusProfileAnalysis: [1, "itemStatusProfileAnalysis"], isMarkingAsReviewed: [1, "isMarkingAsReviewed"] }, outputs: { nextStepClick: "nextStepClick", markAsReviewedClick: "markAsReviewedClick" }, features: [i0.ɵɵNgOnChangesFeature], decls: 28, vars: 49, consts: [["funnelModalComponent", ""], [1, "relative", 3, "ngClass"], [1, "animated-bubbles", 2, "position", "fixed", "top", "0", "left", "0", "right", "0", "bottom", "0", "width", "100vw", "height", "100vh", "z-index", "1", "pointer-events", "none"], [1, "h-full", "transition-all", "duration-200", "ease-out", 3, "ngClass"], [1, "relative", "z-[51]"], [3, "searchClick", "viewModeClick", "title", "subtitle", "currentSection", "viewMode", "viewModeLabel", "isLoading", "requestedByUser", "createdDate", "showControls"], [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, "close", "isOpen", "isLightMode"], [3, "close", "modeSelected", "isOpen", "currentMode", "viewMode"], [3, "isLightMode", "allMetrics", "allInsights", "allBusinessInsights", "allCharts"], [3, "goal", "viewMode", "isInModal", "allMetrics", "allCharts", "allInsights", "currentModalState", "businessProfile"], [3, "goal", "viewMode"], [3, "objective", "goalTitle", "viewMode"], [3, "strategy", "objectiveTitle", "goalTitle", "viewMode", "expandedRecommendationId", "allMetrics", "allCharts", "allInsights", "allBusinessInsights", "currentModalState"], [3, "category", "viewMode", "scrollToSection"], [3, "strength", "viewMode", "allFunnelStrengths", "currentModalState"], [3, "gap", "viewMode", "allGoals", "allWeaknesses", "currentModalState"], [3, "opportunity", "viewMode", "allStrengths", "currentModalState"], [3, "isLightMode"], [3, "markAsReviewedClick", "viewMode", "reviewStatus", "selfContentStatus", "isMarkingAsReviewed"], [1, "mb-12"], [3, "viewMode", "focusAreaDomain", "focusAreaName"], [1, "rounded-2xl", "border", "shadow-lg", "p-8", "backdrop-blur-sm", 3, "ngClass"], [1, "flex", "flex-col", "items-center", "justify-center", "space-y-4"], ["size", "large", 3, "viewMode"], [1, "text-center"], [1, "text-lg", "font-semibold", "mb-1", 3, "ngClass"], [1, "text-sm", 3, "ngClass"], [1, "mb-8"], [1, "rounded-2xl", "border", "shadow-lg", "overflow-hidden", 3, "ngClass"], [3, "goals", "viewMode"], ["title", "Generating Your Focus Area Analysis", "subtitle", "We're analyzing your data to create your personalized analysis. It will appear when ready.", 3, "itemStatus", "viewMode"], [3, "viewMoreClick", "goals", "viewMode"], [3, "sections", "viewMode", "focusAreaExecutiveSummary", "allGoals", "allMetrics", "allCharts", "allInsights", "businessProfile"], [3, "viewMode", "summary", "allGoals"], [1, "space-y-8"], [3, "topPrioritiesClick", "priorityDetailClick", "viewMode", "summary", "allGoals"], [3, "viewMode", "sectionIcon"], [1, "rounded-xl", "p-8", "scroll-mt-24", 3, "id", "ngClass"], [1, "flex", "items-start", "gap-3", "mb-6"], [1, "flex-shrink-0", "w-12", "h-12", "rounded-xl", "flex", "items-center", "justify-center", 3, "ngClass"], [1, "flex-1"], [1, "text-2xl", "font-bold", 3, "ngClass"], [1, "mb-6", "flex", "flex-col", "lg:flex-row", "gap-6", "items-start", 3, "lg:flex-row-reverse"], [3, "section", "viewMode", "sectionIndex", "allGoals", "allMetrics", "allCharts", "allInsights", "businessProfile"], ["size", "w-6 h-6", 3, "icon"], [1, "mb-6", "flex", "flex-col", "lg:flex-row", "gap-6", "items-start"], [1, "w-full", "lg:w-2/3"], [1, "w-full", 3, "lg:w-1/3", "lg:w-full"], [3, "visual", "viewMode"], [1, "w-full"], [1, "text-sm", "leading-relaxed", "whitespace-pre-line", 3, "ngClass"]], template: function SymphiqProfileAnalysisFocusAreaDashboardComponent_Template(rf, ctx) { if (rf & 1) {
98024
98042
  const _r1 = i0.ɵɵgetCurrentView();
98025
98043
  i0.ɵɵelementStart(0, "div", 1);
98026
98044
  i0.ɵɵelement(1, "div", 2);
@@ -98053,11 +98071,11 @@ class SymphiqProfileAnalysisFocusAreaDashboardComponent {
98053
98071
  i0.ɵɵconditionalCreate(21, SymphiqProfileAnalysisFocusAreaDashboardComponent_Conditional_21_Template, 1, 5, "symphiq-gap-detail-modal-content", 17);
98054
98072
  i0.ɵɵconditionalCreate(22, SymphiqProfileAnalysisFocusAreaDashboardComponent_Conditional_22_Template, 1, 4, "symphiq-opportunity-detail-modal-content", 18);
98055
98073
  i0.ɵɵelementEnd();
98056
- i0.ɵɵelement(23, "symphiq-funnel-analysis-modal", null, 0);
98057
- i0.ɵɵelementStart(25, "symphiq-mark-as-reviewed-footer", 19);
98058
- i0.ɵɵlistener("markAsReviewedClick", function SymphiqProfileAnalysisFocusAreaDashboardComponent_Template_symphiq_mark_as_reviewed_footer_markAsReviewedClick_25_listener() { i0.ɵɵrestoreView(_r1); return i0.ɵɵresetView(ctx.handleMarkAsReviewedClick()); });
98074
+ i0.ɵɵelement(23, "symphiq-funnel-analysis-modal", null, 0)(25, "symphiq-business-analysis-modal", 19);
98075
+ i0.ɵɵelementStart(26, "symphiq-mark-as-reviewed-footer", 20);
98076
+ i0.ɵɵlistener("markAsReviewedClick", function SymphiqProfileAnalysisFocusAreaDashboardComponent_Template_symphiq_mark_as_reviewed_footer_markAsReviewedClick_26_listener() { i0.ɵɵrestoreView(_r1); return i0.ɵɵresetView(ctx.handleMarkAsReviewedClick()); });
98059
98077
  i0.ɵɵelementEnd();
98060
- i0.ɵɵelement(26, "symphiq-tooltip-container");
98078
+ i0.ɵɵelement(27, "symphiq-tooltip-container");
98061
98079
  i0.ɵɵelementEnd()();
98062
98080
  } if (rf & 2) {
98063
98081
  let tmp_14_0;
@@ -98069,8 +98087,8 @@ class SymphiqProfileAnalysisFocusAreaDashboardComponent {
98069
98087
  let tmp_37_0;
98070
98088
  let tmp_38_0;
98071
98089
  let tmp_39_0;
98072
- let tmp_41_0;
98073
98090
  let tmp_42_0;
98091
+ let tmp_43_0;
98074
98092
  i0.ɵɵclassProp("min-h-screen", !ctx.embedded());
98075
98093
  i0.ɵɵproperty("ngClass", ctx.getContainerClasses());
98076
98094
  i0.ɵɵadvance();
@@ -98117,7 +98135,9 @@ class SymphiqProfileAnalysisFocusAreaDashboardComponent {
98117
98135
  i0.ɵɵadvance();
98118
98136
  i0.ɵɵconditional((tmp_39_0 = ctx.modalType() === "opportunity-detail" && ctx.getOpportunityDetailData()) ? 22 : -1, tmp_39_0);
98119
98137
  i0.ɵɵadvance(3);
98120
- i0.ɵɵproperty("viewMode", ctx.viewMode())("reviewStatus", (tmp_41_0 = ctx.profileAnalysis()) == null ? null : tmp_41_0.reviewStatus)("selfContentStatus", (tmp_42_0 = ctx.profileAnalysis()) == null ? null : tmp_42_0.selfContentStatus)("isMarkingAsReviewed", ctx.isMarkingAsReviewed());
98138
+ i0.ɵɵproperty("isLightMode", ctx.isLightMode());
98139
+ i0.ɵɵadvance();
98140
+ i0.ɵɵproperty("viewMode", ctx.viewMode())("reviewStatus", (tmp_42_0 = ctx.profileAnalysis()) == null ? null : tmp_42_0.reviewStatus)("selfContentStatus", (tmp_43_0 = ctx.profileAnalysis()) == null ? null : tmp_43_0.selfContentStatus)("isMarkingAsReviewed", ctx.isMarkingAsReviewed());
98121
98141
  } }, dependencies: [CommonModule, i1$1.NgClass, DashboardHeaderComponent,
98122
98142
  SearchModalComponent,
98123
98143
  ViewModeSwitcherModalComponent,
@@ -98130,6 +98150,7 @@ class SymphiqProfileAnalysisFocusAreaDashboardComponent {
98130
98150
  ProfileSectionContentComponent,
98131
98151
  ProfileAnalysisModalComponent,
98132
98152
  ModalComponent,
98153
+ BusinessAnalysisModalComponent,
98133
98154
  GoalCardComponent,
98134
98155
  GoalObjectivesModalContentComponent,
98135
98156
  ObjectiveStrategiesModalContentComponent,
@@ -98165,6 +98186,7 @@ class SymphiqProfileAnalysisFocusAreaDashboardComponent {
98165
98186
  ProfileSectionContentComponent,
98166
98187
  ProfileAnalysisModalComponent,
98167
98188
  ModalComponent,
98189
+ BusinessAnalysisModalComponent,
98168
98190
  GoalCardComponent,
98169
98191
  GoalObjectivesModalContentComponent,
98170
98192
  ObjectiveStrategiesModalContentComponent,
@@ -98182,341 +98204,346 @@ class SymphiqProfileAnalysisFocusAreaDashboardComponent {
98182
98204
  MarkAsReviewedFooterComponent
98183
98205
  ],
98184
98206
  changeDetection: ChangeDetectionStrategy.OnPush,
98185
- template: `
98186
- <div [ngClass]="getContainerClasses()" [class.min-h-screen]="!embedded()" class="relative">
98187
- <div class="animated-bubbles" [class.light-mode]="isLightMode()"
98188
- style="position: fixed; top: 0; left: 0; right: 0; bottom: 0; width: 100vw; height: 100vh; z-index: 1; pointer-events: none;"></div>
98189
-
98190
- <!-- Scroll Progress Bar -->
98191
- <div
98192
- [class]="embedded() ? 'sticky top-0 left-0 right-0 h-1 z-[60] bg-slate-200/30' : 'fixed top-0 left-0 right-0 h-1 z-[60] bg-slate-200/30'">
98193
- <div
98194
- [style.width.%]="scrollProgress()"
98195
- [ngClass]="isLightMode() ? 'bg-gradient-to-r from-blue-500 to-purple-500' : 'bg-gradient-to-r from-blue-400 to-purple-400'"
98196
- class="h-full transition-all duration-200 ease-out">
98197
- </div>
98198
- </div>
98199
-
98200
- <div class="relative z-[51]">
98201
- <!-- Dashboard Header -->
98202
- <symphiq-dashboard-header
98203
- [title]="getAnalysisSubtitle()"
98204
- [subtitle]="''"
98205
- [currentSection]="'Focus Area'"
98206
- [viewMode]="viewMode()"
98207
- [viewModeLabel]="displayModeLabel()"
98208
- [isLoading]="isLoading()"
98209
- [requestedByUser]="requestedByUser()"
98210
- [createdDate]="profileAnalysis()?.selfContentCompletedDate"
98211
- [showControls]="shouldShowHeaderControls()"
98212
- (searchClick)="openSearch()"
98213
- (viewModeClick)="openViewModeSwitcher()"
98214
- />
98215
-
98216
- <!-- Main Content -->
98217
- <main class="relative z-10 max-w-7xl mx-auto px-4 sm:px-6 lg:px-8 py-12 space-y-12"
98218
- [class.pb-32]="shouldShowReviewFooter()">
98219
-
98220
- <!-- Welcome Banner (Simplified View Only) -->
98221
- @if (isSimplifiedView()) {
98222
- <div class="mb-12">
98223
- <symphiq-focus-area-welcome-banner
98224
- [viewMode]="viewMode()"
98225
- [focusAreaDomain]="focusAreaDomain()"
98226
- [focusAreaName]="focusAreaName()"
98227
- />
98228
- </div>
98229
-
98230
- <!-- Loading Card -->
98231
- @if (isLoading()) {
98232
- <div [ngClass]="isLightMode() ? 'bg-white/80 border-slate-200' : 'bg-slate-800/80 border-slate-700'"
98233
- class="rounded-2xl border shadow-lg p-8 backdrop-blur-sm">
98234
- <div class="flex flex-col items-center justify-center space-y-4">
98235
- <symphiq-indeterminate-spinner [viewMode]="viewMode()" size="large" />
98236
- <div class="text-center">
98237
- <h3 [ngClass]="isLightMode() ? 'text-slate-900' : 'text-white'" class="text-lg font-semibold mb-1">
98238
- Loading Your Focus Area Analysis
98239
- </h3>
98240
- <p [ngClass]="isLightMode() ? 'text-slate-600' : 'text-slate-400'" class="text-sm">
98241
- Please wait while we prepare your personalized insights...
98242
- </p>
98243
- </div>
98244
- </div>
98245
- </div>
98246
- }
98247
- }
98248
-
98249
- <!-- Simplified View Content -->
98250
- @if (isSimplifiedView()) {
98251
- <!-- Strategic Insights & Goals -->
98252
- @if (profileAnalysis()) {
98253
- <div class="mb-8">
98254
- @if (isProfileAnalysisGenerating()) {
98255
- <div [ngClass]="getProgressCardClasses()" class="rounded-2xl border shadow-lg overflow-hidden">
98256
- <symphiq-content-generation-progress
98257
- [itemStatus]="itemStatusProfileAnalysis()"
98258
- [viewMode]="viewMode()"
98259
- title="Generating Your Focus Area Analysis"
98260
- subtitle="We're analyzing your data to create your personalized analysis. It will appear when ready."
98261
- />
98262
- </div>
98263
- } @else {
98264
- <symphiq-strategic-goals-tiled-grid
98265
- [goals]="strategicRoadmapGoals()"
98266
- [viewMode]="viewMode()"
98267
- (viewMoreClick)="openGoalModal($event)"
98268
- />
98269
- }
98270
- </div>
98271
- }
98272
-
98273
- <!-- Supporting Business Context -->
98274
- @if (nonStrategicSections().length > 0) {
98275
- <div>
98276
- <symphiq-collapsible-analysis-section-group
98277
- [sections]="nonStrategicSections()"
98278
- [viewMode]="viewMode()"
98279
- [focusAreaExecutiveSummary]="focusAreaExecutiveSummary()"
98280
- [allGoals]="allGoals()"
98281
- [allMetrics]="allMetrics()"
98282
- [allCharts]="allCharts()"
98283
- [allInsights]="allInsights()"
98284
- [businessProfile]="profile()"
98285
- />
98286
- </div>
98287
- }
98288
- }
98289
-
98290
- <!-- Compact & Expanded View Content -->
98291
- @if (!isSimplifiedView()) {
98292
- <!-- Focus Area Executive Summary -->
98293
- @if (focusAreaExecutiveSummary(); as summary) {
98294
- <symphiq-focus-area-executive-summary
98295
- [viewMode]="viewMode()"
98296
- [summary]="summary"
98297
- [allGoals]="allGoals()"
98298
- (topPrioritiesClick)="handleTopPrioritiesClick()"
98299
- (priorityDetailClick)="handlePriorityDetailClick($event)"
98300
- />
98301
- }
98302
-
98303
- <!-- Divider Before First Section -->
98304
- @if (sections(); as sectionList) {
98305
- @if (sectionList.length > 0 && sectionList[0].icon) {
98306
- <symphiq-section-divider
98307
- [viewMode]="viewMode()"
98308
- [sectionIcon]="sectionList[0].icon"
98309
- />
98310
- }
98311
- }
98312
-
98313
- <!-- Profile Analysis Sections -->
98314
- @if (sections(); as sectionList) {
98315
- <section class="space-y-8">
98316
- @for (section of sectionList; track section.id; let idx = $index; let last = $last) {
98317
- <div [id]="'section-' + section.id" [ngClass]="getSectionCardClasses()"
98318
- class="rounded-xl p-8 scroll-mt-24">
98319
- <!-- Icon and Title -->
98320
- <div class="flex items-start gap-3 mb-6">
98321
- @if (section.icon) {
98322
- <div [ngClass]="getSectionIconClasses()"
98323
- class="flex-shrink-0 w-12 h-12 rounded-xl flex items-center justify-center">
98324
- <symphiq-icon [icon]="section.icon" size="w-6 h-6"></symphiq-icon>
98325
- </div>
98326
- }
98327
- <div class="flex-1">
98328
- <h3 [ngClass]="getSectionTitleClasses()" class="text-2xl font-bold">
98329
- {{ section.title }}
98330
- </h3>
98331
- </div>
98332
- </div>
98333
-
98334
- <!-- Description and Visual Side-by-Side -->
98335
- @if (section.description || (section.visual && section.visual.enabled)) {
98336
- <div class="mb-6 flex flex-col lg:flex-row gap-6 items-start"
98337
- [class.lg:flex-row-reverse]="idx % 2 === 0">
98338
- @if (section.visual && section.visual.enabled) {
98339
- <div class="w-full lg:w-2/3">
98340
- <symphiq-napkin-visual-placeholder
98341
- [visual]="section.visual"
98342
- [viewMode]="viewMode()"
98343
- />
98344
- </div>
98345
- }
98346
- @if (section.description) {
98347
- <div class="w-full"
98348
- [class.lg:w-1/3]="section.visual && section.visual.enabled" [class.lg:w-full]="!section.visual || !section.visual.enabled">
98349
- <p [ngClass]="getSectionDescriptionClasses()"
98350
- class="text-sm leading-relaxed whitespace-pre-line">
98351
- {{ section.description }}
98352
- </p>
98353
- </div>
98354
- }
98355
- </div>
98356
- }
98357
-
98358
- <!-- Section Content -->
98359
- <symphiq-profile-section-content
98360
- [section]="section"
98361
- [viewMode]="viewMode()"
98362
- [sectionIndex]="idx"
98363
- [allGoals]="allGoals()"
98364
- [allMetrics]="allMetrics()"
98365
- [allCharts]="allCharts()"
98366
- [allInsights]="allInsights()"
98367
- [businessProfile]="profile()"
98368
- />
98369
- </div>
98370
-
98371
- <!-- Section Divider (between sections) -->
98372
- @if (!last) {
98373
- <symphiq-section-divider
98374
- [viewMode]="viewMode()"
98375
- [sectionIcon]="sectionList[idx + 1].icon"
98376
- />
98377
- }
98378
- }
98379
- </section>
98380
- }
98381
- }
98382
-
98383
- </main>
98384
-
98385
- <!-- Table of Contents (Compact & Expanded Views) -->
98386
- @if (!isSimplifiedView() && sections()) {
98387
- <symphiq-floating-toc
98388
- [sections]="tocSections()"
98389
- [viewMode]="viewMode()"
98390
- [embedded]="embedded()"
98391
- [scrollElement]="scrollElement() ?? undefined"
98392
- />
98393
- }
98394
-
98395
- <!-- Section Navigation Dots (Compact & Expanded Views) -->
98396
- @if (!isSimplifiedView() && sections()) {
98397
- <symphiq-section-navigation
98398
- [sections]="tocSections()"
98399
- [viewMode]="viewMode()"
98400
- [embedded]="embedded()"
98401
- [scrollElement]="scrollElement() ?? undefined"
98402
- />
98403
- }
98404
-
98405
- <!-- Search Modal -->
98406
- <symphiq-search-modal
98407
- [isOpen]="isSearchOpen()"
98408
- [isLightMode]="isLightMode()"
98409
- (close)="closeSearch()"
98410
- />
98411
-
98412
- <!-- View Mode Switcher Modal -->
98413
- <symphiq-view-mode-switcher-modal
98414
- [isOpen]="isViewModeSwitcherOpen()"
98415
- [currentMode]="currentDisplayMode()"
98416
- [viewMode]="viewMode()"
98417
- (close)="closeViewModeSwitcher()"
98418
- (modeSelected)="handleDisplayModeChange($event)"
98419
- />
98420
-
98421
- <!-- Profile Analysis Modal -->
98422
- <symphiq-profile-analysis-modal
98423
- [isLightMode]="isLightMode()"
98424
- [allMetrics]="allMetrics()"
98425
- [allInsights]="allInsights()"
98426
- [allBusinessInsights]="allBusinessInsights()"
98427
- [allCharts]="allCharts()"
98428
- >
98429
- @if (modalType() === 'goal-detail' && getGoalDetailData(); as data) {
98430
- <symphiq-goal-card
98431
- [goal]="data.goal"
98432
- [viewMode]="data.viewMode"
98433
- [isInModal]="true"
98434
- [allMetrics]="allMetrics()"
98435
- [allCharts]="allCharts()"
98436
- [allInsights]="allInsights()"
98437
- [currentModalState]="getCurrentModalState()"
98438
- [businessProfile]="profile()"
98439
- />
98440
- }
98441
- @if (modalType() === 'goal-objectives' && getGoalDetailData(); as data) {
98442
- <symphiq-goal-objectives-modal-content
98443
- [goal]="data.goal"
98444
- [viewMode]="data.viewMode"
98445
- />
98446
- }
98447
- @if (modalType() === 'objective-strategies' && getObjectiveStrategiesData(); as data) {
98448
- <symphiq-objective-strategies-modal-content
98449
- [objective]="data.objective"
98450
- [goalTitle]="data.goalTitle"
98451
- [viewMode]="data.viewMode"
98452
- />
98453
- }
98454
- @if (modalType() === 'strategy-recommendations' && getStrategyRecommendationsData(); as data) {
98455
- <symphiq-strategy-recommendations-modal-content
98456
- [strategy]="data.strategy"
98457
- [objectiveTitle]="data.objectiveTitle"
98458
- [goalTitle]="data.goalTitle"
98459
- [viewMode]="data.viewMode"
98460
- [expandedRecommendationId]="data.expandedRecommendationId"
98461
- [allMetrics]="allMetrics()"
98462
- [allCharts]="allCharts()"
98463
- [allInsights]="allInsights()"
98464
- [allBusinessInsights]="allBusinessInsights()"
98465
- [currentModalState]="getCurrentModalState()"
98466
- />
98467
- }
98468
- @if (modalType() === 'category-detail' && getCategoryDetailData(); as data) {
98469
- <symphiq-category-detail-modal-content
98470
- [category]="data.category"
98471
- [viewMode]="data.viewMode"
98472
- [scrollToSection]="data.scrollToSection"
98473
- />
98474
- }
98475
- @if (modalType() === 'strength-detail' && getStrengthDetailData(); as data) {
98476
- <symphiq-strength-detail-modal-content
98477
- [strength]="data.strength"
98478
- [viewMode]="data.viewMode"
98479
- [allFunnelStrengths]="funnelStrengths()"
98480
- [currentModalState]="getCurrentModalState()"
98481
- />
98482
- }
98483
- @if (modalType() === 'gap-detail' && getGapDetailData(); as data) {
98484
- <symphiq-gap-detail-modal-content
98485
- [gap]="data.gap"
98486
- [viewMode]="data.viewMode"
98487
- [allGoals]="allGoals()"
98488
- [allWeaknesses]="funnelWeaknesses()"
98489
- [currentModalState]="getCurrentModalState()"
98490
- />
98491
- }
98492
- @if (modalType() === 'opportunity-detail' && getOpportunityDetailData(); as data) {
98493
- <symphiq-opportunity-detail-modal-content
98494
- [opportunity]="data.opportunity"
98495
- [viewMode]="data.viewMode"
98496
- [allStrengths]="funnelStrengths()"
98497
- [currentModalState]="getCurrentModalState()"
98498
- />
98499
- }
98500
- </symphiq-profile-analysis-modal>
98501
-
98502
- <!-- Funnel Analysis Modal -->
98503
- <symphiq-funnel-analysis-modal
98504
- #funnelModalComponent
98505
- />
98506
-
98507
- <!-- Mark as Reviewed Sticky Footer -->
98508
- <symphiq-mark-as-reviewed-footer
98509
- [viewMode]="viewMode()"
98510
- [reviewStatus]="profileAnalysis()?.reviewStatus"
98511
- [selfContentStatus]="profileAnalysis()?.selfContentStatus"
98512
- [isMarkingAsReviewed]="isMarkingAsReviewed()"
98513
- (markAsReviewedClick)="handleMarkAsReviewedClick()"
98514
- />
98515
-
98516
- <!-- Tooltip Container -->
98517
- <symphiq-tooltip-container />
98518
- </div>
98519
- </div>
98207
+ template: `
98208
+ <div [ngClass]="getContainerClasses()" [class.min-h-screen]="!embedded()" class="relative">
98209
+ <div class="animated-bubbles" [class.light-mode]="isLightMode()"
98210
+ style="position: fixed; top: 0; left: 0; right: 0; bottom: 0; width: 100vw; height: 100vh; z-index: 1; pointer-events: none;"></div>
98211
+
98212
+ <!-- Scroll Progress Bar -->
98213
+ <div
98214
+ [class]="embedded() ? 'sticky top-0 left-0 right-0 h-1 z-[60] bg-slate-200/30' : 'fixed top-0 left-0 right-0 h-1 z-[60] bg-slate-200/30'">
98215
+ <div
98216
+ [style.width.%]="scrollProgress()"
98217
+ [ngClass]="isLightMode() ? 'bg-gradient-to-r from-blue-500 to-purple-500' : 'bg-gradient-to-r from-blue-400 to-purple-400'"
98218
+ class="h-full transition-all duration-200 ease-out">
98219
+ </div>
98220
+ </div>
98221
+
98222
+ <div class="relative z-[51]">
98223
+ <!-- Dashboard Header -->
98224
+ <symphiq-dashboard-header
98225
+ [title]="getAnalysisSubtitle()"
98226
+ [subtitle]="''"
98227
+ [currentSection]="'Focus Area'"
98228
+ [viewMode]="viewMode()"
98229
+ [viewModeLabel]="displayModeLabel()"
98230
+ [isLoading]="isLoading()"
98231
+ [requestedByUser]="requestedByUser()"
98232
+ [createdDate]="profileAnalysis()?.selfContentCompletedDate"
98233
+ [showControls]="shouldShowHeaderControls()"
98234
+ (searchClick)="openSearch()"
98235
+ (viewModeClick)="openViewModeSwitcher()"
98236
+ />
98237
+
98238
+ <!-- Main Content -->
98239
+ <main class="relative z-10 max-w-7xl mx-auto px-4 sm:px-6 lg:px-8 py-12 space-y-12"
98240
+ [class.pb-32]="shouldShowReviewFooter()">
98241
+
98242
+ <!-- Welcome Banner (Simplified View Only) -->
98243
+ @if (isSimplifiedView()) {
98244
+ <div class="mb-12">
98245
+ <symphiq-focus-area-welcome-banner
98246
+ [viewMode]="viewMode()"
98247
+ [focusAreaDomain]="focusAreaDomain()"
98248
+ [focusAreaName]="focusAreaName()"
98249
+ />
98250
+ </div>
98251
+
98252
+ <!-- Loading Card -->
98253
+ @if (isLoading()) {
98254
+ <div [ngClass]="isLightMode() ? 'bg-white/80 border-slate-200' : 'bg-slate-800/80 border-slate-700'"
98255
+ class="rounded-2xl border shadow-lg p-8 backdrop-blur-sm">
98256
+ <div class="flex flex-col items-center justify-center space-y-4">
98257
+ <symphiq-indeterminate-spinner [viewMode]="viewMode()" size="large" />
98258
+ <div class="text-center">
98259
+ <h3 [ngClass]="isLightMode() ? 'text-slate-900' : 'text-white'" class="text-lg font-semibold mb-1">
98260
+ Loading Your Focus Area Analysis
98261
+ </h3>
98262
+ <p [ngClass]="isLightMode() ? 'text-slate-600' : 'text-slate-400'" class="text-sm">
98263
+ Please wait while we prepare your personalized insights...
98264
+ </p>
98265
+ </div>
98266
+ </div>
98267
+ </div>
98268
+ }
98269
+ }
98270
+
98271
+ <!-- Simplified View Content -->
98272
+ @if (isSimplifiedView()) {
98273
+ <!-- Strategic Insights & Goals -->
98274
+ @if (profileAnalysis()) {
98275
+ <div class="mb-8">
98276
+ @if (isProfileAnalysisGenerating()) {
98277
+ <div [ngClass]="getProgressCardClasses()" class="rounded-2xl border shadow-lg overflow-hidden">
98278
+ <symphiq-content-generation-progress
98279
+ [itemStatus]="itemStatusProfileAnalysis()"
98280
+ [viewMode]="viewMode()"
98281
+ title="Generating Your Focus Area Analysis"
98282
+ subtitle="We're analyzing your data to create your personalized analysis. It will appear when ready."
98283
+ />
98284
+ </div>
98285
+ } @else {
98286
+ <symphiq-strategic-goals-tiled-grid
98287
+ [goals]="strategicRoadmapGoals()"
98288
+ [viewMode]="viewMode()"
98289
+ (viewMoreClick)="openGoalModal($event)"
98290
+ />
98291
+ }
98292
+ </div>
98293
+ }
98294
+
98295
+ <!-- Supporting Business Context -->
98296
+ @if (nonStrategicSections().length > 0) {
98297
+ <div>
98298
+ <symphiq-collapsible-analysis-section-group
98299
+ [sections]="nonStrategicSections()"
98300
+ [viewMode]="viewMode()"
98301
+ [focusAreaExecutiveSummary]="focusAreaExecutiveSummary()"
98302
+ [allGoals]="allGoals()"
98303
+ [allMetrics]="allMetrics()"
98304
+ [allCharts]="allCharts()"
98305
+ [allInsights]="allInsights()"
98306
+ [businessProfile]="profile()"
98307
+ />
98308
+ </div>
98309
+ }
98310
+ }
98311
+
98312
+ <!-- Compact & Expanded View Content -->
98313
+ @if (!isSimplifiedView()) {
98314
+ <!-- Focus Area Executive Summary -->
98315
+ @if (focusAreaExecutiveSummary(); as summary) {
98316
+ <symphiq-focus-area-executive-summary
98317
+ [viewMode]="viewMode()"
98318
+ [summary]="summary"
98319
+ [allGoals]="allGoals()"
98320
+ (topPrioritiesClick)="handleTopPrioritiesClick()"
98321
+ (priorityDetailClick)="handlePriorityDetailClick($event)"
98322
+ />
98323
+ }
98324
+
98325
+ <!-- Divider Before First Section -->
98326
+ @if (sections(); as sectionList) {
98327
+ @if (sectionList.length > 0 && sectionList[0].icon) {
98328
+ <symphiq-section-divider
98329
+ [viewMode]="viewMode()"
98330
+ [sectionIcon]="sectionList[0].icon"
98331
+ />
98332
+ }
98333
+ }
98334
+
98335
+ <!-- Profile Analysis Sections -->
98336
+ @if (sections(); as sectionList) {
98337
+ <section class="space-y-8">
98338
+ @for (section of sectionList; track section.id; let idx = $index; let last = $last) {
98339
+ <div [id]="'section-' + section.id" [ngClass]="getSectionCardClasses()"
98340
+ class="rounded-xl p-8 scroll-mt-24">
98341
+ <!-- Icon and Title -->
98342
+ <div class="flex items-start gap-3 mb-6">
98343
+ @if (section.icon) {
98344
+ <div [ngClass]="getSectionIconClasses()"
98345
+ class="flex-shrink-0 w-12 h-12 rounded-xl flex items-center justify-center">
98346
+ <symphiq-icon [icon]="section.icon" size="w-6 h-6"></symphiq-icon>
98347
+ </div>
98348
+ }
98349
+ <div class="flex-1">
98350
+ <h3 [ngClass]="getSectionTitleClasses()" class="text-2xl font-bold">
98351
+ {{ section.title }}
98352
+ </h3>
98353
+ </div>
98354
+ </div>
98355
+
98356
+ <!-- Description and Visual Side-by-Side -->
98357
+ @if (section.description || (section.visual && section.visual.enabled)) {
98358
+ <div class="mb-6 flex flex-col lg:flex-row gap-6 items-start"
98359
+ [class.lg:flex-row-reverse]="idx % 2 === 0">
98360
+ @if (section.visual && section.visual.enabled) {
98361
+ <div class="w-full lg:w-2/3">
98362
+ <symphiq-napkin-visual-placeholder
98363
+ [visual]="section.visual"
98364
+ [viewMode]="viewMode()"
98365
+ />
98366
+ </div>
98367
+ }
98368
+ @if (section.description) {
98369
+ <div class="w-full"
98370
+ [class.lg:w-1/3]="section.visual && section.visual.enabled" [class.lg:w-full]="!section.visual || !section.visual.enabled">
98371
+ <p [ngClass]="getSectionDescriptionClasses()"
98372
+ class="text-sm leading-relaxed whitespace-pre-line">
98373
+ {{ section.description }}
98374
+ </p>
98375
+ </div>
98376
+ }
98377
+ </div>
98378
+ }
98379
+
98380
+ <!-- Section Content -->
98381
+ <symphiq-profile-section-content
98382
+ [section]="section"
98383
+ [viewMode]="viewMode()"
98384
+ [sectionIndex]="idx"
98385
+ [allGoals]="allGoals()"
98386
+ [allMetrics]="allMetrics()"
98387
+ [allCharts]="allCharts()"
98388
+ [allInsights]="allInsights()"
98389
+ [businessProfile]="profile()"
98390
+ />
98391
+ </div>
98392
+
98393
+ <!-- Section Divider (between sections) -->
98394
+ @if (!last) {
98395
+ <symphiq-section-divider
98396
+ [viewMode]="viewMode()"
98397
+ [sectionIcon]="sectionList[idx + 1].icon"
98398
+ />
98399
+ }
98400
+ }
98401
+ </section>
98402
+ }
98403
+ }
98404
+
98405
+ </main>
98406
+
98407
+ <!-- Table of Contents (Compact & Expanded Views) -->
98408
+ @if (!isSimplifiedView() && sections()) {
98409
+ <symphiq-floating-toc
98410
+ [sections]="tocSections()"
98411
+ [viewMode]="viewMode()"
98412
+ [embedded]="embedded()"
98413
+ [scrollElement]="scrollElement() ?? undefined"
98414
+ />
98415
+ }
98416
+
98417
+ <!-- Section Navigation Dots (Compact & Expanded Views) -->
98418
+ @if (!isSimplifiedView() && sections()) {
98419
+ <symphiq-section-navigation
98420
+ [sections]="tocSections()"
98421
+ [viewMode]="viewMode()"
98422
+ [embedded]="embedded()"
98423
+ [scrollElement]="scrollElement() ?? undefined"
98424
+ />
98425
+ }
98426
+
98427
+ <!-- Search Modal -->
98428
+ <symphiq-search-modal
98429
+ [isOpen]="isSearchOpen()"
98430
+ [isLightMode]="isLightMode()"
98431
+ (close)="closeSearch()"
98432
+ />
98433
+
98434
+ <!-- View Mode Switcher Modal -->
98435
+ <symphiq-view-mode-switcher-modal
98436
+ [isOpen]="isViewModeSwitcherOpen()"
98437
+ [currentMode]="currentDisplayMode()"
98438
+ [viewMode]="viewMode()"
98439
+ (close)="closeViewModeSwitcher()"
98440
+ (modeSelected)="handleDisplayModeChange($event)"
98441
+ />
98442
+
98443
+ <!-- Profile Analysis Modal -->
98444
+ <symphiq-profile-analysis-modal
98445
+ [isLightMode]="isLightMode()"
98446
+ [allMetrics]="allMetrics()"
98447
+ [allInsights]="allInsights()"
98448
+ [allBusinessInsights]="allBusinessInsights()"
98449
+ [allCharts]="allCharts()"
98450
+ >
98451
+ @if (modalType() === 'goal-detail' && getGoalDetailData(); as data) {
98452
+ <symphiq-goal-card
98453
+ [goal]="data.goal"
98454
+ [viewMode]="data.viewMode"
98455
+ [isInModal]="true"
98456
+ [allMetrics]="allMetrics()"
98457
+ [allCharts]="allCharts()"
98458
+ [allInsights]="allInsights()"
98459
+ [currentModalState]="getCurrentModalState()"
98460
+ [businessProfile]="profile()"
98461
+ />
98462
+ }
98463
+ @if (modalType() === 'goal-objectives' && getGoalDetailData(); as data) {
98464
+ <symphiq-goal-objectives-modal-content
98465
+ [goal]="data.goal"
98466
+ [viewMode]="data.viewMode"
98467
+ />
98468
+ }
98469
+ @if (modalType() === 'objective-strategies' && getObjectiveStrategiesData(); as data) {
98470
+ <symphiq-objective-strategies-modal-content
98471
+ [objective]="data.objective"
98472
+ [goalTitle]="data.goalTitle"
98473
+ [viewMode]="data.viewMode"
98474
+ />
98475
+ }
98476
+ @if (modalType() === 'strategy-recommendations' && getStrategyRecommendationsData(); as data) {
98477
+ <symphiq-strategy-recommendations-modal-content
98478
+ [strategy]="data.strategy"
98479
+ [objectiveTitle]="data.objectiveTitle"
98480
+ [goalTitle]="data.goalTitle"
98481
+ [viewMode]="data.viewMode"
98482
+ [expandedRecommendationId]="data.expandedRecommendationId"
98483
+ [allMetrics]="allMetrics()"
98484
+ [allCharts]="allCharts()"
98485
+ [allInsights]="allInsights()"
98486
+ [allBusinessInsights]="allBusinessInsights()"
98487
+ [currentModalState]="getCurrentModalState()"
98488
+ />
98489
+ }
98490
+ @if (modalType() === 'category-detail' && getCategoryDetailData(); as data) {
98491
+ <symphiq-category-detail-modal-content
98492
+ [category]="data.category"
98493
+ [viewMode]="data.viewMode"
98494
+ [scrollToSection]="data.scrollToSection"
98495
+ />
98496
+ }
98497
+ @if (modalType() === 'strength-detail' && getStrengthDetailData(); as data) {
98498
+ <symphiq-strength-detail-modal-content
98499
+ [strength]="data.strength"
98500
+ [viewMode]="data.viewMode"
98501
+ [allFunnelStrengths]="funnelStrengths()"
98502
+ [currentModalState]="getCurrentModalState()"
98503
+ />
98504
+ }
98505
+ @if (modalType() === 'gap-detail' && getGapDetailData(); as data) {
98506
+ <symphiq-gap-detail-modal-content
98507
+ [gap]="data.gap"
98508
+ [viewMode]="data.viewMode"
98509
+ [allGoals]="allGoals()"
98510
+ [allWeaknesses]="funnelWeaknesses()"
98511
+ [currentModalState]="getCurrentModalState()"
98512
+ />
98513
+ }
98514
+ @if (modalType() === 'opportunity-detail' && getOpportunityDetailData(); as data) {
98515
+ <symphiq-opportunity-detail-modal-content
98516
+ [opportunity]="data.opportunity"
98517
+ [viewMode]="data.viewMode"
98518
+ [allStrengths]="funnelStrengths()"
98519
+ [currentModalState]="getCurrentModalState()"
98520
+ />
98521
+ }
98522
+ </symphiq-profile-analysis-modal>
98523
+
98524
+ <!-- Funnel Analysis Modal -->
98525
+ <symphiq-funnel-analysis-modal
98526
+ #funnelModalComponent
98527
+ />
98528
+
98529
+ <!-- Business Analysis Modal (for visualization) -->
98530
+ <symphiq-business-analysis-modal
98531
+ [isLightMode]="isLightMode()"
98532
+ />
98533
+
98534
+ <!-- Mark as Reviewed Sticky Footer -->
98535
+ <symphiq-mark-as-reviewed-footer
98536
+ [viewMode]="viewMode()"
98537
+ [reviewStatus]="profileAnalysis()?.reviewStatus"
98538
+ [selfContentStatus]="profileAnalysis()?.selfContentStatus"
98539
+ [isMarkingAsReviewed]="isMarkingAsReviewed()"
98540
+ (markAsReviewedClick)="handleMarkAsReviewedClick()"
98541
+ />
98542
+
98543
+ <!-- Tooltip Container -->
98544
+ <symphiq-tooltip-container />
98545
+ </div>
98546
+ </div>
98520
98547
  `
98521
98548
  }]
98522
98549
  }], null, { funnelModalComponent: [{
@@ -98526,7 +98553,7 @@ class SymphiqProfileAnalysisFocusAreaDashboardComponent {
98526
98553
  type: HostListener,
98527
98554
  args: ['window:scroll', ['$event']]
98528
98555
  }] }); })();
98529
- (() => { (typeof ngDevMode === "undefined" || ngDevMode) && i0.ɵsetClassDebugInfo(SymphiqProfileAnalysisFocusAreaDashboardComponent, { className: "SymphiqProfileAnalysisFocusAreaDashboardComponent", filePath: "lib/components/profile-analysis-focus-area-dashboard/symphiq-profile-analysis-focus-area-dashboard.component.ts", lineNumber: 481 }); })();
98556
+ (() => { (typeof ngDevMode === "undefined" || ngDevMode) && i0.ɵsetClassDebugInfo(SymphiqProfileAnalysisFocusAreaDashboardComponent, { className: "SymphiqProfileAnalysisFocusAreaDashboardComponent", filePath: "lib/components/profile-analysis-focus-area-dashboard/symphiq-profile-analysis-focus-area-dashboard.component.ts", lineNumber: 488 }); })();
98530
98557
 
98531
98558
  function SymphiqProfileMetricsAnalysesDashboardComponent_Conditional_6_Template(rf, ctx) { if (rf & 1) {
98532
98559
  const _r1 = i0.ɵɵgetCurrentView();
@@ -99631,12 +99658,12 @@ class SymphiqProfileMetricDashboardComponent {
99631
99658
  const _c0$5 = ["funnelModalComponent"];
99632
99659
  const _forTrack0$5 = ($index, $item) => $item.id;
99633
99660
  function SymphiqProfileAnalysisMetricDashboardComponent_Conditional_7_Conditional_2_Template(rf, ctx) { if (rf & 1) {
99634
- i0.ɵɵelementStart(0, "div", 22)(1, "div", 23);
99635
- i0.ɵɵelement(2, "symphiq-indeterminate-spinner", 24);
99636
- i0.ɵɵelementStart(3, "div", 25)(4, "h3", 26);
99661
+ i0.ɵɵelementStart(0, "div", 23)(1, "div", 24);
99662
+ i0.ɵɵelement(2, "symphiq-indeterminate-spinner", 25);
99663
+ i0.ɵɵelementStart(3, "div", 26)(4, "h3", 27);
99637
99664
  i0.ɵɵtext(5, " Loading Your Metric Analysis ");
99638
99665
  i0.ɵɵelementEnd();
99639
- i0.ɵɵelementStart(6, "p", 27);
99666
+ i0.ɵɵelementStart(6, "p", 28);
99640
99667
  i0.ɵɵtext(7, " Please wait while we prepare your personalized insights... ");
99641
99668
  i0.ɵɵelementEnd()()()();
99642
99669
  } if (rf & 2) {
@@ -99650,10 +99677,10 @@ function SymphiqProfileAnalysisMetricDashboardComponent_Conditional_7_Conditiona
99650
99677
  i0.ɵɵproperty("ngClass", ctx_r1.isLightMode() ? "text-slate-600" : "text-slate-400");
99651
99678
  } }
99652
99679
  function SymphiqProfileAnalysisMetricDashboardComponent_Conditional_7_Template(rf, ctx) { if (rf & 1) {
99653
- i0.ɵɵelementStart(0, "div", 20);
99654
- i0.ɵɵelement(1, "symphiq-metric-welcome-banner", 21);
99680
+ i0.ɵɵelementStart(0, "div", 21);
99681
+ i0.ɵɵelement(1, "symphiq-metric-welcome-banner", 22);
99655
99682
  i0.ɵɵelementEnd();
99656
- i0.ɵɵconditionalCreate(2, SymphiqProfileAnalysisMetricDashboardComponent_Conditional_7_Conditional_2_Template, 8, 4, "div", 22);
99683
+ i0.ɵɵconditionalCreate(2, SymphiqProfileAnalysisMetricDashboardComponent_Conditional_7_Conditional_2_Template, 8, 4, "div", 23);
99657
99684
  } if (rf & 2) {
99658
99685
  const ctx_r1 = i0.ɵɵnextContext();
99659
99686
  i0.ɵɵadvance();
@@ -99662,8 +99689,8 @@ function SymphiqProfileAnalysisMetricDashboardComponent_Conditional_7_Template(r
99662
99689
  i0.ɵɵconditional(ctx_r1.isLoading() ? 2 : -1);
99663
99690
  } }
99664
99691
  function SymphiqProfileAnalysisMetricDashboardComponent_Conditional_8_Conditional_0_Conditional_1_Template(rf, ctx) { if (rf & 1) {
99665
- i0.ɵɵelementStart(0, "div", 29);
99666
- i0.ɵɵelement(1, "symphiq-content-generation-progress", 31);
99692
+ i0.ɵɵelementStart(0, "div", 30);
99693
+ i0.ɵɵelement(1, "symphiq-content-generation-progress", 32);
99667
99694
  i0.ɵɵelementEnd();
99668
99695
  } if (rf & 2) {
99669
99696
  const ctx_r1 = i0.ɵɵnextContext(3);
@@ -99673,7 +99700,7 @@ function SymphiqProfileAnalysisMetricDashboardComponent_Conditional_8_Conditiona
99673
99700
  } }
99674
99701
  function SymphiqProfileAnalysisMetricDashboardComponent_Conditional_8_Conditional_0_Conditional_2_Template(rf, ctx) { if (rf & 1) {
99675
99702
  const _r3 = i0.ɵɵgetCurrentView();
99676
- i0.ɵɵelementStart(0, "symphiq-strategic-goals-tiled-grid", 32);
99703
+ i0.ɵɵelementStart(0, "symphiq-strategic-goals-tiled-grid", 33);
99677
99704
  i0.ɵɵlistener("viewMoreClick", function SymphiqProfileAnalysisMetricDashboardComponent_Conditional_8_Conditional_0_Conditional_2_Template_symphiq_strategic_goals_tiled_grid_viewMoreClick_0_listener($event) { i0.ɵɵrestoreView(_r3); const ctx_r1 = i0.ɵɵnextContext(3); return i0.ɵɵresetView(ctx_r1.openGoalModal($event)); });
99678
99705
  i0.ɵɵelementEnd();
99679
99706
  } if (rf & 2) {
@@ -99681,8 +99708,8 @@ function SymphiqProfileAnalysisMetricDashboardComponent_Conditional_8_Conditiona
99681
99708
  i0.ɵɵproperty("goals", ctx_r1.strategicRoadmapGoals())("viewMode", ctx_r1.viewMode());
99682
99709
  } }
99683
99710
  function SymphiqProfileAnalysisMetricDashboardComponent_Conditional_8_Conditional_0_Template(rf, ctx) { if (rf & 1) {
99684
- i0.ɵɵelementStart(0, "div", 28);
99685
- i0.ɵɵconditionalCreate(1, SymphiqProfileAnalysisMetricDashboardComponent_Conditional_8_Conditional_0_Conditional_1_Template, 2, 3, "div", 29)(2, SymphiqProfileAnalysisMetricDashboardComponent_Conditional_8_Conditional_0_Conditional_2_Template, 1, 2, "symphiq-strategic-goals-tiled-grid", 30);
99711
+ i0.ɵɵelementStart(0, "div", 29);
99712
+ i0.ɵɵconditionalCreate(1, SymphiqProfileAnalysisMetricDashboardComponent_Conditional_8_Conditional_0_Conditional_1_Template, 2, 3, "div", 30)(2, SymphiqProfileAnalysisMetricDashboardComponent_Conditional_8_Conditional_0_Conditional_2_Template, 1, 2, "symphiq-strategic-goals-tiled-grid", 31);
99686
99713
  i0.ɵɵelementEnd();
99687
99714
  } if (rf & 2) {
99688
99715
  const ctx_r1 = i0.ɵɵnextContext(2);
@@ -99691,7 +99718,7 @@ function SymphiqProfileAnalysisMetricDashboardComponent_Conditional_8_Conditiona
99691
99718
  } }
99692
99719
  function SymphiqProfileAnalysisMetricDashboardComponent_Conditional_8_Conditional_1_Template(rf, ctx) { if (rf & 1) {
99693
99720
  i0.ɵɵelementStart(0, "div");
99694
- i0.ɵɵelement(1, "symphiq-collapsible-analysis-section-group", 33);
99721
+ i0.ɵɵelement(1, "symphiq-collapsible-analysis-section-group", 34);
99695
99722
  i0.ɵɵelementEnd();
99696
99723
  } if (rf & 2) {
99697
99724
  const ctx_r1 = i0.ɵɵnextContext(2);
@@ -99699,7 +99726,7 @@ function SymphiqProfileAnalysisMetricDashboardComponent_Conditional_8_Conditiona
99699
99726
  i0.ɵɵproperty("sections", ctx_r1.nonStrategicSections())("viewMode", ctx_r1.viewMode())("metricExecutiveSummary", ctx_r1.metricExecutiveSummary())("metricName", ctx_r1.metricName())("allGoals", ctx_r1.allGoals())("allMetrics", ctx_r1.allMetrics())("allCharts", ctx_r1.allCharts())("allInsights", ctx_r1.allInsights())("businessProfile", ctx_r1.profile());
99700
99727
  } }
99701
99728
  function SymphiqProfileAnalysisMetricDashboardComponent_Conditional_8_Template(rf, ctx) { if (rf & 1) {
99702
- i0.ɵɵconditionalCreate(0, SymphiqProfileAnalysisMetricDashboardComponent_Conditional_8_Conditional_0_Template, 3, 1, "div", 28);
99729
+ i0.ɵɵconditionalCreate(0, SymphiqProfileAnalysisMetricDashboardComponent_Conditional_8_Conditional_0_Template, 3, 1, "div", 29);
99703
99730
  i0.ɵɵconditionalCreate(1, SymphiqProfileAnalysisMetricDashboardComponent_Conditional_8_Conditional_1_Template, 2, 9, "div");
99704
99731
  } if (rf & 2) {
99705
99732
  const ctx_r1 = i0.ɵɵnextContext();
@@ -99709,7 +99736,7 @@ function SymphiqProfileAnalysisMetricDashboardComponent_Conditional_8_Template(r
99709
99736
  } }
99710
99737
  function SymphiqProfileAnalysisMetricDashboardComponent_Conditional_9_Conditional_0_Template(rf, ctx) { if (rf & 1) {
99711
99738
  const _r4 = i0.ɵɵgetCurrentView();
99712
- i0.ɵɵelementStart(0, "symphiq-metric-executive-summary", 36);
99739
+ i0.ɵɵelementStart(0, "symphiq-metric-executive-summary", 37);
99713
99740
  i0.ɵɵlistener("topPrioritiesClick", function SymphiqProfileAnalysisMetricDashboardComponent_Conditional_9_Conditional_0_Template_symphiq_metric_executive_summary_topPrioritiesClick_0_listener() { i0.ɵɵrestoreView(_r4); const ctx_r1 = i0.ɵɵnextContext(2); return i0.ɵɵresetView(ctx_r1.handleTopPrioritiesClick()); })("priorityDetailClick", function SymphiqProfileAnalysisMetricDashboardComponent_Conditional_9_Conditional_0_Template_symphiq_metric_executive_summary_priorityDetailClick_0_listener($event) { i0.ɵɵrestoreView(_r4); const ctx_r1 = i0.ɵɵnextContext(2); return i0.ɵɵresetView(ctx_r1.handlePriorityDetailClick($event)); });
99714
99741
  i0.ɵɵelementEnd();
99715
99742
  } if (rf & 2) {
@@ -99717,21 +99744,21 @@ function SymphiqProfileAnalysisMetricDashboardComponent_Conditional_9_Conditiona
99717
99744
  i0.ɵɵproperty("viewMode", ctx_r1.viewMode())("summary", ctx)("metricName", ctx_r1.metricName())("allGoals", ctx_r1.allGoals());
99718
99745
  } }
99719
99746
  function SymphiqProfileAnalysisMetricDashboardComponent_Conditional_9_Conditional_1_Conditional_0_Template(rf, ctx) { if (rf & 1) {
99720
- i0.ɵɵelement(0, "symphiq-section-divider", 37);
99747
+ i0.ɵɵelement(0, "symphiq-section-divider", 38);
99721
99748
  } if (rf & 2) {
99722
99749
  const sectionList_r5 = i0.ɵɵnextContext();
99723
99750
  const ctx_r1 = i0.ɵɵnextContext(2);
99724
99751
  i0.ɵɵproperty("viewMode", ctx_r1.viewMode())("sectionIcon", sectionList_r5[0].icon);
99725
99752
  } }
99726
99753
  function SymphiqProfileAnalysisMetricDashboardComponent_Conditional_9_Conditional_1_Template(rf, ctx) { if (rf & 1) {
99727
- i0.ɵɵconditionalCreate(0, SymphiqProfileAnalysisMetricDashboardComponent_Conditional_9_Conditional_1_Conditional_0_Template, 1, 2, "symphiq-section-divider", 37);
99754
+ i0.ɵɵconditionalCreate(0, SymphiqProfileAnalysisMetricDashboardComponent_Conditional_9_Conditional_1_Conditional_0_Template, 1, 2, "symphiq-section-divider", 38);
99728
99755
  } if (rf & 2) {
99729
99756
  const sectionList_r5 = ctx;
99730
99757
  i0.ɵɵconditional(sectionList_r5.length > 0 && sectionList_r5[0].icon ? 0 : -1);
99731
99758
  } }
99732
99759
  function SymphiqProfileAnalysisMetricDashboardComponent_Conditional_9_Conditional_2_For_2_Conditional_2_Template(rf, ctx) { if (rf & 1) {
99733
- i0.ɵɵelementStart(0, "div", 40);
99734
- i0.ɵɵelement(1, "symphiq-icon", 45);
99760
+ i0.ɵɵelementStart(0, "div", 41);
99761
+ i0.ɵɵelement(1, "symphiq-icon", 46);
99735
99762
  i0.ɵɵelementEnd();
99736
99763
  } if (rf & 2) {
99737
99764
  const section_r6 = i0.ɵɵnextContext().$implicit;
@@ -99741,8 +99768,8 @@ function SymphiqProfileAnalysisMetricDashboardComponent_Conditional_9_Conditiona
99741
99768
  i0.ɵɵproperty("icon", section_r6.icon);
99742
99769
  } }
99743
99770
  function SymphiqProfileAnalysisMetricDashboardComponent_Conditional_9_Conditional_2_For_2_Conditional_6_Conditional_1_Template(rf, ctx) { if (rf & 1) {
99744
- i0.ɵɵelementStart(0, "div", 47);
99745
- i0.ɵɵelement(1, "symphiq-napkin-visual-placeholder", 49);
99771
+ i0.ɵɵelementStart(0, "div", 48);
99772
+ i0.ɵɵelement(1, "symphiq-napkin-visual-placeholder", 50);
99746
99773
  i0.ɵɵelementEnd();
99747
99774
  } if (rf & 2) {
99748
99775
  const section_r6 = i0.ɵɵnextContext(2).$implicit;
@@ -99751,7 +99778,7 @@ function SymphiqProfileAnalysisMetricDashboardComponent_Conditional_9_Conditiona
99751
99778
  i0.ɵɵproperty("visual", section_r6.visual)("viewMode", ctx_r1.viewMode());
99752
99779
  } }
99753
99780
  function SymphiqProfileAnalysisMetricDashboardComponent_Conditional_9_Conditional_2_For_2_Conditional_6_Conditional_2_Template(rf, ctx) { if (rf & 1) {
99754
- i0.ɵɵelementStart(0, "div", 50)(1, "p", 51);
99781
+ i0.ɵɵelementStart(0, "div", 51)(1, "p", 52);
99755
99782
  i0.ɵɵtext(2);
99756
99783
  i0.ɵɵelementEnd()();
99757
99784
  } if (rf & 2) {
@@ -99764,9 +99791,9 @@ function SymphiqProfileAnalysisMetricDashboardComponent_Conditional_9_Conditiona
99764
99791
  i0.ɵɵtextInterpolate1(" ", section_r6.description, " ");
99765
99792
  } }
99766
99793
  function SymphiqProfileAnalysisMetricDashboardComponent_Conditional_9_Conditional_2_For_2_Conditional_6_Template(rf, ctx) { if (rf & 1) {
99767
- i0.ɵɵelementStart(0, "div", 46);
99768
- i0.ɵɵconditionalCreate(1, SymphiqProfileAnalysisMetricDashboardComponent_Conditional_9_Conditional_2_For_2_Conditional_6_Conditional_1_Template, 2, 2, "div", 47);
99769
- i0.ɵɵconditionalCreate(2, SymphiqProfileAnalysisMetricDashboardComponent_Conditional_9_Conditional_2_For_2_Conditional_6_Conditional_2_Template, 3, 6, "div", 48);
99794
+ i0.ɵɵelementStart(0, "div", 47);
99795
+ i0.ɵɵconditionalCreate(1, SymphiqProfileAnalysisMetricDashboardComponent_Conditional_9_Conditional_2_For_2_Conditional_6_Conditional_1_Template, 2, 2, "div", 48);
99796
+ i0.ɵɵconditionalCreate(2, SymphiqProfileAnalysisMetricDashboardComponent_Conditional_9_Conditional_2_For_2_Conditional_6_Conditional_2_Template, 3, 6, "div", 49);
99770
99797
  i0.ɵɵelementEnd();
99771
99798
  } if (rf & 2) {
99772
99799
  const ctx_r6 = i0.ɵɵnextContext();
@@ -99779,7 +99806,7 @@ function SymphiqProfileAnalysisMetricDashboardComponent_Conditional_9_Conditiona
99779
99806
  i0.ɵɵconditional(section_r6.description ? 2 : -1);
99780
99807
  } }
99781
99808
  function SymphiqProfileAnalysisMetricDashboardComponent_Conditional_9_Conditional_2_For_2_Conditional_8_Template(rf, ctx) { if (rf & 1) {
99782
- i0.ɵɵelement(0, "symphiq-section-divider", 37);
99809
+ i0.ɵɵelement(0, "symphiq-section-divider", 38);
99783
99810
  } if (rf & 2) {
99784
99811
  const ɵ$index_63_r8 = i0.ɵɵnextContext().$index;
99785
99812
  const sectionList_r9 = i0.ɵɵnextContext();
@@ -99787,15 +99814,15 @@ function SymphiqProfileAnalysisMetricDashboardComponent_Conditional_9_Conditiona
99787
99814
  i0.ɵɵproperty("viewMode", ctx_r1.viewMode())("sectionIcon", sectionList_r9[ɵ$index_63_r8 + 1].icon);
99788
99815
  } }
99789
99816
  function SymphiqProfileAnalysisMetricDashboardComponent_Conditional_9_Conditional_2_For_2_Template(rf, ctx) { if (rf & 1) {
99790
- i0.ɵɵelementStart(0, "div", 38)(1, "div", 39);
99791
- i0.ɵɵconditionalCreate(2, SymphiqProfileAnalysisMetricDashboardComponent_Conditional_9_Conditional_2_For_2_Conditional_2_Template, 2, 2, "div", 40);
99792
- i0.ɵɵelementStart(3, "div", 41)(4, "h3", 42);
99817
+ i0.ɵɵelementStart(0, "div", 39)(1, "div", 40);
99818
+ i0.ɵɵconditionalCreate(2, SymphiqProfileAnalysisMetricDashboardComponent_Conditional_9_Conditional_2_For_2_Conditional_2_Template, 2, 2, "div", 41);
99819
+ i0.ɵɵelementStart(3, "div", 42)(4, "h3", 43);
99793
99820
  i0.ɵɵtext(5);
99794
99821
  i0.ɵɵelementEnd()()();
99795
- i0.ɵɵconditionalCreate(6, SymphiqProfileAnalysisMetricDashboardComponent_Conditional_9_Conditional_2_For_2_Conditional_6_Template, 3, 4, "div", 43);
99796
- i0.ɵɵelement(7, "symphiq-profile-section-content", 44);
99822
+ i0.ɵɵconditionalCreate(6, SymphiqProfileAnalysisMetricDashboardComponent_Conditional_9_Conditional_2_For_2_Conditional_6_Template, 3, 4, "div", 44);
99823
+ i0.ɵɵelement(7, "symphiq-profile-section-content", 45);
99797
99824
  i0.ɵɵelementEnd();
99798
- i0.ɵɵconditionalCreate(8, SymphiqProfileAnalysisMetricDashboardComponent_Conditional_9_Conditional_2_For_2_Conditional_8_Template, 1, 2, "symphiq-section-divider", 37);
99825
+ i0.ɵɵconditionalCreate(8, SymphiqProfileAnalysisMetricDashboardComponent_Conditional_9_Conditional_2_For_2_Conditional_8_Template, 1, 2, "symphiq-section-divider", 38);
99799
99826
  } if (rf & 2) {
99800
99827
  const section_r6 = ctx.$implicit;
99801
99828
  const ɵ$index_63_r8 = ctx.$index;
@@ -99816,7 +99843,7 @@ function SymphiqProfileAnalysisMetricDashboardComponent_Conditional_9_Conditiona
99816
99843
  i0.ɵɵconditional(!(ɵ$index_63_r8 === ɵ$count_63_r10 - 1) ? 8 : -1);
99817
99844
  } }
99818
99845
  function SymphiqProfileAnalysisMetricDashboardComponent_Conditional_9_Conditional_2_Template(rf, ctx) { if (rf & 1) {
99819
- i0.ɵɵelementStart(0, "section", 35);
99846
+ i0.ɵɵelementStart(0, "section", 36);
99820
99847
  i0.ɵɵrepeaterCreate(1, SymphiqProfileAnalysisMetricDashboardComponent_Conditional_9_Conditional_2_For_2_Template, 9, 15, null, null, _forTrack0$5);
99821
99848
  i0.ɵɵelementEnd();
99822
99849
  } if (rf & 2) {
@@ -99824,9 +99851,9 @@ function SymphiqProfileAnalysisMetricDashboardComponent_Conditional_9_Conditiona
99824
99851
  i0.ɵɵrepeater(ctx);
99825
99852
  } }
99826
99853
  function SymphiqProfileAnalysisMetricDashboardComponent_Conditional_9_Template(rf, ctx) { if (rf & 1) {
99827
- i0.ɵɵconditionalCreate(0, SymphiqProfileAnalysisMetricDashboardComponent_Conditional_9_Conditional_0_Template, 1, 4, "symphiq-metric-executive-summary", 34);
99854
+ i0.ɵɵconditionalCreate(0, SymphiqProfileAnalysisMetricDashboardComponent_Conditional_9_Conditional_0_Template, 1, 4, "symphiq-metric-executive-summary", 35);
99828
99855
  i0.ɵɵconditionalCreate(1, SymphiqProfileAnalysisMetricDashboardComponent_Conditional_9_Conditional_1_Template, 1, 1);
99829
- i0.ɵɵconditionalCreate(2, SymphiqProfileAnalysisMetricDashboardComponent_Conditional_9_Conditional_2_Template, 3, 0, "section", 35);
99856
+ i0.ɵɵconditionalCreate(2, SymphiqProfileAnalysisMetricDashboardComponent_Conditional_9_Conditional_2_Template, 3, 0, "section", 36);
99830
99857
  } if (rf & 2) {
99831
99858
  let tmp_2_0;
99832
99859
  let tmp_3_0;
@@ -100363,7 +100390,7 @@ class SymphiqProfileAnalysisMetricDashboardComponent {
100363
100390
  i0.ɵɵqueryRefresh(_t = i0.ɵɵloadQuery()) && (ctx.funnelModalComponent = _t.first);
100364
100391
  } }, hostBindings: function SymphiqProfileAnalysisMetricDashboardComponent_HostBindings(rf, ctx) { if (rf & 1) {
100365
100392
  i0.ɵɵlistener("scroll", function SymphiqProfileAnalysisMetricDashboardComponent_scroll_HostBindingHandler($event) { return ctx.onWindowScroll($event); }, i0.ɵɵresolveWindow);
100366
- } }, inputs: { viewMode: [1, "viewMode"], profileAnalysis: [1, "profileAnalysis"], funnelAnalysis: [1, "funnelAnalysis"], profile: [1, "profile"], isLoading: [1, "isLoading"], requestedByUser: [1, "requestedByUser"], embedded: [1, "embedded"], scrollEvent: [1, "scrollEvent"], scrollElement: [1, "scrollElement"], funnelMetric: [1, "funnelMetric"], itemStatusProfileAnalysis: [1, "itemStatusProfileAnalysis"], isMarkingAsReviewed: [1, "isMarkingAsReviewed"] }, outputs: { nextStepClick: "nextStepClick", markAsReviewedClick: "markAsReviewedClick" }, features: [i0.ɵɵNgOnChangesFeature], decls: 27, vars: 48, consts: [["funnelModalComponent", ""], [1, "relative", 3, "ngClass"], [1, "animated-bubbles", 2, "position", "fixed", "top", "0", "left", "0", "right", "0", "bottom", "0", "width", "100vw", "height", "100vh", "z-index", "1", "pointer-events", "none"], [1, "h-full", "transition-all", "duration-200", "ease-out", 3, "ngClass"], [1, "relative", "z-[51]"], [3, "searchClick", "viewModeClick", "title", "subtitle", "currentSection", "viewMode", "viewModeLabel", "isLoading", "requestedByUser", "createdDate", "showControls"], [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, "close", "isOpen", "isLightMode"], [3, "close", "modeSelected", "isOpen", "currentMode", "viewMode"], [3, "isLightMode", "allMetrics", "allInsights", "allBusinessInsights", "allCharts"], [3, "goal", "viewMode", "isInModal", "allMetrics", "allCharts", "allInsights", "currentModalState", "businessProfile"], [3, "goal", "viewMode"], [3, "objective", "goalTitle", "viewMode"], [3, "strategy", "objectiveTitle", "goalTitle", "viewMode", "expandedRecommendationId", "allMetrics", "allCharts", "allInsights", "allBusinessInsights", "currentModalState"], [3, "category", "viewMode", "scrollToSection"], [3, "strength", "viewMode", "allFunnelStrengths", "currentModalState"], [3, "gap", "viewMode", "allGoals", "allWeaknesses", "currentModalState"], [3, "opportunity", "viewMode", "allStrengths", "currentModalState"], [3, "markAsReviewedClick", "viewMode", "reviewStatus", "selfContentStatus", "isMarkingAsReviewed"], [1, "mb-12"], [3, "viewMode", "metricName", "isOnboarded"], [1, "rounded-2xl", "border", "shadow-lg", "p-8", "backdrop-blur-sm", 3, "ngClass"], [1, "flex", "flex-col", "items-center", "justify-center", "space-y-4"], ["size", "large", 3, "viewMode"], [1, "text-center"], [1, "text-lg", "font-semibold", "mb-1", 3, "ngClass"], [1, "text-sm", 3, "ngClass"], [1, "mb-8"], [1, "rounded-2xl", "border", "shadow-lg", "overflow-hidden", 3, "ngClass"], [3, "goals", "viewMode"], ["title", "Generating Your Metric Analysis", "subtitle", "We're analyzing your data to create your personalized analysis. It will appear when ready.", 3, "itemStatus", "viewMode"], [3, "viewMoreClick", "goals", "viewMode"], [3, "sections", "viewMode", "metricExecutiveSummary", "metricName", "allGoals", "allMetrics", "allCharts", "allInsights", "businessProfile"], [3, "viewMode", "summary", "metricName", "allGoals"], [1, "space-y-8"], [3, "topPrioritiesClick", "priorityDetailClick", "viewMode", "summary", "metricName", "allGoals"], [3, "viewMode", "sectionIcon"], [1, "rounded-xl", "p-8", "scroll-mt-24", 3, "id", "ngClass"], [1, "flex", "items-start", "gap-3", "mb-6"], [1, "flex-shrink-0", "w-12", "h-12", "rounded-xl", "flex", "items-center", "justify-center", 3, "ngClass"], [1, "flex-1"], [1, "text-2xl", "font-bold", 3, "ngClass"], [1, "mb-6", "flex", "flex-col", "lg:flex-row", "gap-6", "items-start", 3, "lg:flex-row-reverse"], [3, "section", "viewMode", "sectionIndex", "allGoals", "allMetrics", "allCharts", "allInsights", "businessProfile"], ["size", "w-6 h-6", 3, "icon"], [1, "mb-6", "flex", "flex-col", "lg:flex-row", "gap-6", "items-start"], [1, "w-full", "lg:w-2/3"], [1, "w-full", 3, "lg:w-1/3", "lg:w-full"], [3, "visual", "viewMode"], [1, "w-full"], [1, "text-sm", "leading-relaxed", "whitespace-pre-line", 3, "ngClass"]], template: function SymphiqProfileAnalysisMetricDashboardComponent_Template(rf, ctx) { if (rf & 1) {
100393
+ } }, inputs: { viewMode: [1, "viewMode"], profileAnalysis: [1, "profileAnalysis"], funnelAnalysis: [1, "funnelAnalysis"], profile: [1, "profile"], isLoading: [1, "isLoading"], requestedByUser: [1, "requestedByUser"], embedded: [1, "embedded"], scrollEvent: [1, "scrollEvent"], scrollElement: [1, "scrollElement"], funnelMetric: [1, "funnelMetric"], itemStatusProfileAnalysis: [1, "itemStatusProfileAnalysis"], isMarkingAsReviewed: [1, "isMarkingAsReviewed"] }, outputs: { nextStepClick: "nextStepClick", markAsReviewedClick: "markAsReviewedClick" }, features: [i0.ɵɵNgOnChangesFeature], decls: 28, vars: 49, consts: [["funnelModalComponent", ""], [1, "relative", 3, "ngClass"], [1, "animated-bubbles", 2, "position", "fixed", "top", "0", "left", "0", "right", "0", "bottom", "0", "width", "100vw", "height", "100vh", "z-index", "1", "pointer-events", "none"], [1, "h-full", "transition-all", "duration-200", "ease-out", 3, "ngClass"], [1, "relative", "z-[51]"], [3, "searchClick", "viewModeClick", "title", "subtitle", "currentSection", "viewMode", "viewModeLabel", "isLoading", "requestedByUser", "createdDate", "showControls"], [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, "close", "isOpen", "isLightMode"], [3, "close", "modeSelected", "isOpen", "currentMode", "viewMode"], [3, "isLightMode", "allMetrics", "allInsights", "allBusinessInsights", "allCharts"], [3, "goal", "viewMode", "isInModal", "allMetrics", "allCharts", "allInsights", "currentModalState", "businessProfile"], [3, "goal", "viewMode"], [3, "objective", "goalTitle", "viewMode"], [3, "strategy", "objectiveTitle", "goalTitle", "viewMode", "expandedRecommendationId", "allMetrics", "allCharts", "allInsights", "allBusinessInsights", "currentModalState"], [3, "category", "viewMode", "scrollToSection"], [3, "strength", "viewMode", "allFunnelStrengths", "currentModalState"], [3, "gap", "viewMode", "allGoals", "allWeaknesses", "currentModalState"], [3, "opportunity", "viewMode", "allStrengths", "currentModalState"], [3, "isLightMode"], [3, "markAsReviewedClick", "viewMode", "reviewStatus", "selfContentStatus", "isMarkingAsReviewed"], [1, "mb-12"], [3, "viewMode", "metricName", "isOnboarded"], [1, "rounded-2xl", "border", "shadow-lg", "p-8", "backdrop-blur-sm", 3, "ngClass"], [1, "flex", "flex-col", "items-center", "justify-center", "space-y-4"], ["size", "large", 3, "viewMode"], [1, "text-center"], [1, "text-lg", "font-semibold", "mb-1", 3, "ngClass"], [1, "text-sm", 3, "ngClass"], [1, "mb-8"], [1, "rounded-2xl", "border", "shadow-lg", "overflow-hidden", 3, "ngClass"], [3, "goals", "viewMode"], ["title", "Generating Your Metric Analysis", "subtitle", "We're analyzing your data to create your personalized analysis. It will appear when ready.", 3, "itemStatus", "viewMode"], [3, "viewMoreClick", "goals", "viewMode"], [3, "sections", "viewMode", "metricExecutiveSummary", "metricName", "allGoals", "allMetrics", "allCharts", "allInsights", "businessProfile"], [3, "viewMode", "summary", "metricName", "allGoals"], [1, "space-y-8"], [3, "topPrioritiesClick", "priorityDetailClick", "viewMode", "summary", "metricName", "allGoals"], [3, "viewMode", "sectionIcon"], [1, "rounded-xl", "p-8", "scroll-mt-24", 3, "id", "ngClass"], [1, "flex", "items-start", "gap-3", "mb-6"], [1, "flex-shrink-0", "w-12", "h-12", "rounded-xl", "flex", "items-center", "justify-center", 3, "ngClass"], [1, "flex-1"], [1, "text-2xl", "font-bold", 3, "ngClass"], [1, "mb-6", "flex", "flex-col", "lg:flex-row", "gap-6", "items-start", 3, "lg:flex-row-reverse"], [3, "section", "viewMode", "sectionIndex", "allGoals", "allMetrics", "allCharts", "allInsights", "businessProfile"], ["size", "w-6 h-6", 3, "icon"], [1, "mb-6", "flex", "flex-col", "lg:flex-row", "gap-6", "items-start"], [1, "w-full", "lg:w-2/3"], [1, "w-full", 3, "lg:w-1/3", "lg:w-full"], [3, "visual", "viewMode"], [1, "w-full"], [1, "text-sm", "leading-relaxed", "whitespace-pre-line", 3, "ngClass"]], template: function SymphiqProfileAnalysisMetricDashboardComponent_Template(rf, ctx) { if (rf & 1) {
100367
100394
  const _r1 = i0.ɵɵgetCurrentView();
100368
100395
  i0.ɵɵelementStart(0, "div", 1);
100369
100396
  i0.ɵɵelement(1, "div", 2);
@@ -100396,11 +100423,11 @@ class SymphiqProfileAnalysisMetricDashboardComponent {
100396
100423
  i0.ɵɵconditionalCreate(21, SymphiqProfileAnalysisMetricDashboardComponent_Conditional_21_Template, 1, 5, "symphiq-gap-detail-modal-content", 17);
100397
100424
  i0.ɵɵconditionalCreate(22, SymphiqProfileAnalysisMetricDashboardComponent_Conditional_22_Template, 1, 4, "symphiq-opportunity-detail-modal-content", 18);
100398
100425
  i0.ɵɵelementEnd();
100399
- i0.ɵɵelement(23, "symphiq-funnel-analysis-modal", null, 0);
100400
- i0.ɵɵelementStart(25, "symphiq-mark-as-reviewed-footer", 19);
100401
- i0.ɵɵlistener("markAsReviewedClick", function SymphiqProfileAnalysisMetricDashboardComponent_Template_symphiq_mark_as_reviewed_footer_markAsReviewedClick_25_listener() { i0.ɵɵrestoreView(_r1); return i0.ɵɵresetView(ctx.handleMarkAsReviewedClick()); });
100426
+ i0.ɵɵelement(23, "symphiq-funnel-analysis-modal", null, 0)(25, "symphiq-business-analysis-modal", 19);
100427
+ i0.ɵɵelementStart(26, "symphiq-mark-as-reviewed-footer", 20);
100428
+ i0.ɵɵlistener("markAsReviewedClick", function SymphiqProfileAnalysisMetricDashboardComponent_Template_symphiq_mark_as_reviewed_footer_markAsReviewedClick_26_listener() { i0.ɵɵrestoreView(_r1); return i0.ɵɵresetView(ctx.handleMarkAsReviewedClick()); });
100402
100429
  i0.ɵɵelementEnd();
100403
- i0.ɵɵelement(26, "symphiq-tooltip-container");
100430
+ i0.ɵɵelement(27, "symphiq-tooltip-container");
100404
100431
  i0.ɵɵelementEnd()();
100405
100432
  } if (rf & 2) {
100406
100433
  let tmp_14_0;
@@ -100412,8 +100439,8 @@ class SymphiqProfileAnalysisMetricDashboardComponent {
100412
100439
  let tmp_37_0;
100413
100440
  let tmp_38_0;
100414
100441
  let tmp_39_0;
100415
- let tmp_41_0;
100416
100442
  let tmp_42_0;
100443
+ let tmp_43_0;
100417
100444
  i0.ɵɵclassProp("min-h-screen", !ctx.embedded());
100418
100445
  i0.ɵɵproperty("ngClass", ctx.getContainerClasses());
100419
100446
  i0.ɵɵadvance();
@@ -100460,7 +100487,9 @@ class SymphiqProfileAnalysisMetricDashboardComponent {
100460
100487
  i0.ɵɵadvance();
100461
100488
  i0.ɵɵconditional((tmp_39_0 = ctx.modalType() === "opportunity-detail" && ctx.getOpportunityDetailData()) ? 22 : -1, tmp_39_0);
100462
100489
  i0.ɵɵadvance(3);
100463
- i0.ɵɵproperty("viewMode", ctx.viewMode())("reviewStatus", (tmp_41_0 = ctx.profileAnalysis()) == null ? null : tmp_41_0.reviewStatus)("selfContentStatus", (tmp_42_0 = ctx.profileAnalysis()) == null ? null : tmp_42_0.selfContentStatus)("isMarkingAsReviewed", ctx.isMarkingAsReviewed());
100490
+ i0.ɵɵproperty("isLightMode", ctx.isLightMode());
100491
+ i0.ɵɵadvance();
100492
+ i0.ɵɵproperty("viewMode", ctx.viewMode())("reviewStatus", (tmp_42_0 = ctx.profileAnalysis()) == null ? null : tmp_42_0.reviewStatus)("selfContentStatus", (tmp_43_0 = ctx.profileAnalysis()) == null ? null : tmp_43_0.selfContentStatus)("isMarkingAsReviewed", ctx.isMarkingAsReviewed());
100464
100493
  } }, dependencies: [CommonModule, i1$1.NgClass, DashboardHeaderComponent,
100465
100494
  SearchModalComponent,
100466
100495
  ViewModeSwitcherModalComponent,
@@ -100473,6 +100502,7 @@ class SymphiqProfileAnalysisMetricDashboardComponent {
100473
100502
  ProfileSectionContentComponent,
100474
100503
  ProfileAnalysisModalComponent,
100475
100504
  ModalComponent,
100505
+ BusinessAnalysisModalComponent,
100476
100506
  GoalCardComponent,
100477
100507
  GoalObjectivesModalContentComponent,
100478
100508
  ObjectiveStrategiesModalContentComponent,
@@ -100508,6 +100538,7 @@ class SymphiqProfileAnalysisMetricDashboardComponent {
100508
100538
  ProfileSectionContentComponent,
100509
100539
  ProfileAnalysisModalComponent,
100510
100540
  ModalComponent,
100541
+ BusinessAnalysisModalComponent,
100511
100542
  GoalCardComponent,
100512
100543
  GoalObjectivesModalContentComponent,
100513
100544
  ObjectiveStrategiesModalContentComponent,
@@ -100849,6 +100880,11 @@ class SymphiqProfileAnalysisMetricDashboardComponent {
100849
100880
  #funnelModalComponent
100850
100881
  />
100851
100882
 
100883
+ <!-- Business Analysis Modal (for visualization) -->
100884
+ <symphiq-business-analysis-modal
100885
+ [isLightMode]="isLightMode()"
100886
+ />
100887
+
100852
100888
  <!-- Mark as Reviewed Sticky Footer -->
100853
100889
  <symphiq-mark-as-reviewed-footer
100854
100890
  [viewMode]="viewMode()"
@@ -100871,7 +100907,7 @@ class SymphiqProfileAnalysisMetricDashboardComponent {
100871
100907
  type: HostListener,
100872
100908
  args: ['window:scroll', ['$event']]
100873
100909
  }] }); })();
100874
- (() => { (typeof ngDevMode === "undefined" || ngDevMode) && i0.ɵsetClassDebugInfo(SymphiqProfileAnalysisMetricDashboardComponent, { className: "SymphiqProfileAnalysisMetricDashboardComponent", filePath: "lib/components/profile-analysis-metric-dashboard/symphiq-profile-analysis-metric-dashboard.component.ts", lineNumber: 481 }); })();
100910
+ (() => { (typeof ngDevMode === "undefined" || ngDevMode) && i0.ɵsetClassDebugInfo(SymphiqProfileAnalysisMetricDashboardComponent, { className: "SymphiqProfileAnalysisMetricDashboardComponent", filePath: "lib/components/profile-analysis-metric-dashboard/symphiq-profile-analysis-metric-dashboard.component.ts", lineNumber: 488 }); })();
100875
100911
 
100876
100912
  const _forTrack0$4 = ($index, $item) => $item.id;
100877
100913
  function ShopProfileCategoryListComponent_For_2_Template(rf, ctx) { if (rf & 1) {