@eric-emg/symphiq-components 1.3.77 → 1.3.79

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.
@@ -524,7 +524,13 @@ class ModalService {
524
524
  }
525
525
  navigateToObjectiveStrategies(objective, goalTitle, viewMode) {
526
526
  const currentState = this.modalState.value;
527
- const data = { objective, goalTitle, viewMode };
527
+ let sourceAnalysisType;
528
+ let sourceTypeTitle;
529
+ if (currentState.data && 'sourceAnalysisType' in currentState.data) {
530
+ sourceAnalysisType = currentState.data.sourceAnalysisType;
531
+ sourceTypeTitle = currentState.data.sourceTypeTitle;
532
+ }
533
+ const data = { objective, goalTitle, viewMode, sourceAnalysisType, sourceTypeTitle };
528
534
  const currentStack = currentState.navigationStack || [];
529
535
  let newStack = currentStack;
530
536
  if ((currentState.type === 'goal-objectives' || currentState.type === 'unified-goal-objectives' || currentState.type === 'objective-strategies' || currentState.type === 'strategy-recommendations') && currentState.data) {
@@ -548,7 +554,13 @@ class ModalService {
548
554
  }
549
555
  navigateToStrategyRecommendations(strategy, objectiveTitle, goalTitle, viewMode, expandedRecommendationId) {
550
556
  const currentState = this.modalState.value;
551
- const data = { strategy, objectiveTitle, goalTitle, viewMode, expandedRecommendationId };
557
+ let sourceAnalysisType;
558
+ let sourceTypeTitle;
559
+ if (currentState.data && 'sourceAnalysisType' in currentState.data) {
560
+ sourceAnalysisType = currentState.data.sourceAnalysisType;
561
+ sourceTypeTitle = currentState.data.sourceTypeTitle;
562
+ }
563
+ const data = { strategy, objectiveTitle, goalTitle, viewMode, expandedRecommendationId, sourceAnalysisType, sourceTypeTitle };
552
564
  const currentStack = currentState.navigationStack || [];
553
565
  let newStack = currentStack;
554
566
  if ((currentState.type === 'goal-objectives' || currentState.type === 'unified-goal-objectives' || currentState.type === 'objective-strategies' || currentState.type === 'strategy-recommendations') && currentState.data) {
@@ -1030,12 +1042,13 @@ class ModalService {
1030
1042
  navigationStack: newStack
1031
1043
  });
1032
1044
  }
1033
- openUnifiedGoalModal(goal, allMetrics, allCharts, loadedSourceAnalysisIds, viewMode, loadingSourceAnalysisId, previousState, allInsights) {
1045
+ openUnifiedGoalModal(goal, allMetrics, allCharts, loadedSourceAnalysisIds, viewMode, loadingSourceAnalysisId, previousState, allInsights, allBusinessInsights) {
1034
1046
  const data = {
1035
1047
  goal,
1036
1048
  allMetrics,
1037
1049
  allCharts,
1038
1050
  allInsights,
1051
+ allBusinessInsights,
1039
1052
  loadedSourceAnalysisIds,
1040
1053
  loadingSourceAnalysisId,
1041
1054
  viewMode
@@ -1108,12 +1121,14 @@ class ModalService {
1108
1121
  navigationStack
1109
1122
  });
1110
1123
  }
1111
- navigateToUnifiedGoalObjectives(goal, allMetrics, allCharts, viewMode) {
1124
+ navigateToUnifiedGoalObjectives(goal, allMetrics, allCharts, viewMode, allInsights, allBusinessInsights) {
1112
1125
  const currentState = this.modalState.value;
1113
1126
  const data = {
1114
1127
  goal,
1115
1128
  allMetrics,
1116
1129
  allCharts,
1130
+ allInsights,
1131
+ allBusinessInsights,
1117
1132
  viewMode
1118
1133
  };
1119
1134
  const currentStack = currentState.navigationStack || [];
@@ -3837,6 +3852,108 @@ class DataLoaderService {
3837
3852
  args: [{ providedIn: 'root' }]
3838
3853
  }], () => [{ type: i1.HttpClient }], null); })();
3839
3854
 
3855
+ var GoalActionStateEnum;
3856
+ (function (GoalActionStateEnum) {
3857
+ GoalActionStateEnum["PLAN"] = "PLAN";
3858
+ GoalActionStateEnum["POTENTIAL"] = "POTENTIAL";
3859
+ GoalActionStateEnum["SKIP"] = "SKIP";
3860
+ })(GoalActionStateEnum || (GoalActionStateEnum = {}));
3861
+ const STORAGE_KEY = 'symphiq-unified-goal-action-states';
3862
+ class GoalActionStateService {
3863
+ constructor() {
3864
+ this.statesSignal = signal({}, ...(ngDevMode ? [{ debugName: "statesSignal" }] : []));
3865
+ this.stateChangesSubject = new BehaviorSubject({});
3866
+ this.lastChangedGoalIdSignal = signal(null, ...(ngDevMode ? [{ debugName: "lastChangedGoalIdSignal" }] : []));
3867
+ this.states = this.statesSignal.asReadonly();
3868
+ this.stateChanges$ = this.stateChangesSubject.asObservable();
3869
+ this.lastChangedGoalId = this.lastChangedGoalIdSignal.asReadonly();
3870
+ this.loadFromStorage();
3871
+ }
3872
+ getState(goalId) {
3873
+ return this.statesSignal()[goalId];
3874
+ }
3875
+ setState(goalId, state) {
3876
+ const current = this.statesSignal();
3877
+ const updated = { ...current, [goalId]: state };
3878
+ this.statesSignal.set(updated);
3879
+ this.saveToStorage(updated);
3880
+ this.stateChangesSubject.next(updated);
3881
+ this.lastChangedGoalIdSignal.set(goalId);
3882
+ }
3883
+ clearLastChangedGoalId() {
3884
+ this.lastChangedGoalIdSignal.set(null);
3885
+ }
3886
+ getAllStates() {
3887
+ return this.statesSignal();
3888
+ }
3889
+ getStatesByGoalIds(ids) {
3890
+ const all = this.statesSignal();
3891
+ const filtered = {};
3892
+ for (const id of ids) {
3893
+ if (all[id] !== undefined) {
3894
+ filtered[id] = all[id];
3895
+ }
3896
+ }
3897
+ return filtered;
3898
+ }
3899
+ clearState(goalId) {
3900
+ const current = this.statesSignal();
3901
+ const { [goalId]: _, ...rest } = current;
3902
+ this.statesSignal.set(rest);
3903
+ this.saveToStorage(rest);
3904
+ this.stateChangesSubject.next(rest);
3905
+ }
3906
+ clearAllStates() {
3907
+ this.statesSignal.set({});
3908
+ this.saveToStorage({});
3909
+ this.stateChangesSubject.next({});
3910
+ }
3911
+ getCompletedCount(goalIds) {
3912
+ const states = this.statesSignal();
3913
+ return goalIds.filter(id => states[id] !== undefined).length;
3914
+ }
3915
+ allGoalsHaveState(goalIds) {
3916
+ if (goalIds.length === 0)
3917
+ return false;
3918
+ const states = this.statesSignal();
3919
+ return goalIds.every(id => states[id] !== undefined);
3920
+ }
3921
+ getOutput(goalIds) {
3922
+ return {
3923
+ goalStates: this.getStatesByGoalIds(goalIds),
3924
+ completedCount: this.getCompletedCount(goalIds),
3925
+ totalCount: goalIds.length
3926
+ };
3927
+ }
3928
+ loadFromStorage() {
3929
+ try {
3930
+ const saved = localStorage.getItem(STORAGE_KEY);
3931
+ if (saved) {
3932
+ const parsed = JSON.parse(saved);
3933
+ this.statesSignal.set(parsed);
3934
+ this.stateChangesSubject.next(parsed);
3935
+ }
3936
+ }
3937
+ catch {
3938
+ }
3939
+ }
3940
+ saveToStorage(states) {
3941
+ try {
3942
+ localStorage.setItem(STORAGE_KEY, JSON.stringify(states));
3943
+ }
3944
+ catch {
3945
+ }
3946
+ }
3947
+ static { this.ɵfac = function GoalActionStateService_Factory(__ngFactoryType__) { return new (__ngFactoryType__ || GoalActionStateService)(); }; }
3948
+ static { this.ɵprov = /*@__PURE__*/ i0.ɵɵdefineInjectable({ token: GoalActionStateService, factory: GoalActionStateService.ɵfac, providedIn: 'root' }); }
3949
+ }
3950
+ (() => { (typeof ngDevMode === "undefined" || ngDevMode) && i0.ɵsetClassMetadata(GoalActionStateService, [{
3951
+ type: Injectable,
3952
+ args: [{
3953
+ providedIn: 'root'
3954
+ }]
3955
+ }], () => [], null); })();
3956
+
3840
3957
  const _c0$1r = a0 => ["skeleton-loader", "rounded-lg", "relative", "overflow-hidden", a0];
3841
3958
  const _c1$N = a0 => ["skeleton-shimmer-overlay", "absolute", "inset-0", "bg-gradient-to-r", a0];
3842
3959
  class SkeletonLoaderComponent {
@@ -4557,7 +4674,7 @@ class CompetitiveScoreService {
4557
4674
  }]
4558
4675
  }], null, null); })();
4559
4676
 
4560
- const _forTrack0$1j = ($index, $item) => $item.category;
4677
+ const _forTrack0$1l = ($index, $item) => $item.category;
4561
4678
  function CompetitivePositioningSummaryComponent_Conditional_1_For_47_Conditional_12_Template(rf, ctx) { if (rf & 1) {
4562
4679
  i0.ɵɵelementStart(0, "div", 15);
4563
4680
  i0.ɵɵelement(1, "div", 37);
@@ -4716,7 +4833,7 @@ function CompetitivePositioningSummaryComponent_Conditional_1_Template(rf, ctx)
4716
4833
  i0.ɵɵelementEnd()();
4717
4834
  i0.ɵɵnamespaceHTML();
4718
4835
  i0.ɵɵelementStart(43, "div", 24)(44, "div", 25)(45, "div", 26);
4719
- i0.ɵɵrepeaterCreate(46, CompetitivePositioningSummaryComponent_Conditional_1_For_47_Template, 15, 12, "div", 27, _forTrack0$1j);
4836
+ i0.ɵɵrepeaterCreate(46, CompetitivePositioningSummaryComponent_Conditional_1_For_47_Template, 15, 12, "div", 27, _forTrack0$1l);
4720
4837
  i0.ɵɵelementEnd()()()();
4721
4838
  i0.ɵɵelementStart(48, "div", 28)(49, "button", 29);
4722
4839
  i0.ɵɵlistener("click", function CompetitivePositioningSummaryComponent_Conditional_1_Template_button_click_49_listener() { i0.ɵɵrestoreView(_r1); const ctx_r1 = i0.ɵɵnextContext(); return i0.ɵɵresetView(ctx_r1.scrollToCompetitive.emit()); });
@@ -4925,7 +5042,7 @@ function CompetitivePositioningSummaryComponent_Conditional_2_Template(rf, ctx)
4925
5042
  i0.ɵɵelementStart(32, "div", 50)(33, "h4", 51);
4926
5043
  i0.ɵɵtext(34, "By Funnel Stage");
4927
5044
  i0.ɵɵelementEnd();
4928
- i0.ɵɵrepeaterCreate(35, CompetitivePositioningSummaryComponent_Conditional_2_For_36_Template, 12, 11, "div", 52, _forTrack0$1j);
5045
+ i0.ɵɵrepeaterCreate(35, CompetitivePositioningSummaryComponent_Conditional_2_For_36_Template, 12, 11, "div", 52, _forTrack0$1l);
4929
5046
  i0.ɵɵelementEnd();
4930
5047
  i0.ɵɵelementStart(37, "div", 28)(38, "button", 53);
4931
5048
  i0.ɵɵlistener("click", function CompetitivePositioningSummaryComponent_Conditional_2_Template_button_click_38_listener() { i0.ɵɵrestoreView(_r4); const ctx_r1 = i0.ɵɵnextContext(); return i0.ɵɵresetView(ctx_r1.scrollToCompetitive.emit()); });
@@ -9594,7 +9711,7 @@ class MetricCardComponent {
9594
9711
  const _c0$1n = () => [1, 2, 3];
9595
9712
  const _c1$L = (a0, a1, a2) => [a0, a1, a2];
9596
9713
  const _c2$u = (a0, a1) => [a0, a1];
9597
- const _forTrack0$1i = ($index, $item) => $item.metric;
9714
+ const _forTrack0$1k = ($index, $item) => $item.metric;
9598
9715
  const _forTrack1$d = ($index, $item) => $item.metric.dimensionValue;
9599
9716
  function BreakdownSectionComponent_Conditional_0_For_7_For_4_Template(rf, ctx) { if (rf & 1) {
9600
9717
  i0.ɵɵelementStart(0, "div", 7);
@@ -9916,7 +10033,7 @@ function BreakdownSectionComponent_Conditional_1_Template(rf, ctx) { if (rf & 1)
9916
10033
  i0.ɵɵelementEnd()();
9917
10034
  i0.ɵɵconditionalCreate(6, BreakdownSectionComponent_Conditional_1_Conditional_6_Template, 3, 0, "div", 11);
9918
10035
  i0.ɵɵelementStart(7, "div", 12);
9919
- i0.ɵɵrepeaterCreate(8, BreakdownSectionComponent_Conditional_1_For_9_Template, 28, 18, "div", 13, _forTrack0$1i);
10036
+ i0.ɵɵrepeaterCreate(8, BreakdownSectionComponent_Conditional_1_For_9_Template, 28, 18, "div", 13, _forTrack0$1k);
9920
10037
  i0.ɵɵelementEnd()();
9921
10038
  } if (rf & 2) {
9922
10039
  const ctx_r0 = i0.ɵɵnextContext();
@@ -11300,7 +11417,7 @@ class ChartCardComponent {
11300
11417
  }], null, { chart: [{ type: i0.Input, args: [{ isSignal: true, alias: "chart", required: true }] }], viewMode: [{ type: i0.Input, args: [{ isSignal: true, alias: "viewMode", required: false }] }], isLightMode: [{ type: i0.Input, args: [{ isSignal: true, alias: "isLightMode", required: false }] }], chartClick: [{ type: i0.Output, args: ["chartClick"] }] }); }); })();
11301
11418
  (() => { (typeof ngDevMode === "undefined" || ngDevMode) && i0.ɵsetClassDebugInfo(ChartCardComponent, { className: "ChartCardComponent", filePath: "lib/components/shared/chart-card.component.ts", lineNumber: 108 }); })();
11302
11419
 
11303
- const _forTrack0$1h = ($index, $item) => $item.id;
11420
+ const _forTrack0$1j = ($index, $item) => $item.id;
11304
11421
  function FunnelStrengthsListModalContentComponent_Conditional_1_Template(rf, ctx) { if (rf & 1) {
11305
11422
  i0.ɵɵelementStart(0, "div", 1);
11306
11423
  i0.ɵɵnamespaceSVG();
@@ -11414,7 +11531,7 @@ function FunnelStrengthsListModalContentComponent_Conditional_2_For_2_Template(r
11414
11531
  } }
11415
11532
  function FunnelStrengthsListModalContentComponent_Conditional_2_Template(rf, ctx) { if (rf & 1) {
11416
11533
  i0.ɵɵelementStart(0, "div", 2);
11417
- i0.ɵɵrepeaterCreate(1, FunnelStrengthsListModalContentComponent_Conditional_2_For_2_Template, 30, 22, "button", 7, _forTrack0$1h);
11534
+ i0.ɵɵrepeaterCreate(1, FunnelStrengthsListModalContentComponent_Conditional_2_For_2_Template, 30, 22, "button", 7, _forTrack0$1j);
11418
11535
  i0.ɵɵelementEnd();
11419
11536
  } if (rf & 2) {
11420
11537
  const ctx_r0 = i0.ɵɵnextContext();
@@ -11624,7 +11741,7 @@ class FunnelStrengthsListModalContentComponent {
11624
11741
  }], null, { strengths: [{ type: i0.Input, args: [{ isSignal: true, alias: "strengths", required: true }] }], isLightMode: [{ type: i0.Input, args: [{ isSignal: true, alias: "isLightMode", required: true }] }] }); })();
11625
11742
  (() => { (typeof ngDevMode === "undefined" || ngDevMode) && i0.ɵsetClassDebugInfo(FunnelStrengthsListModalContentComponent, { className: "FunnelStrengthsListModalContentComponent", filePath: "lib/components/funnel-analysis-dashboard/funnel-strengths-list-modal-content.component.ts", lineNumber: 93 }); })();
11626
11743
 
11627
- const _forTrack0$1g = ($index, $item) => $item.severity;
11744
+ const _forTrack0$1i = ($index, $item) => $item.severity;
11628
11745
  const _forTrack1$c = ($index, $item) => $item.id;
11629
11746
  function FunnelWeaknessesListModalContentComponent_Conditional_1_Template(rf, ctx) { if (rf & 1) {
11630
11747
  i0.ɵɵelementStart(0, "div", 1);
@@ -11803,7 +11920,7 @@ function FunnelWeaknessesListModalContentComponent_Conditional_2_For_2_Template(
11803
11920
  } }
11804
11921
  function FunnelWeaknessesListModalContentComponent_Conditional_2_Template(rf, ctx) { if (rf & 1) {
11805
11922
  i0.ɵɵelementStart(0, "div", 2);
11806
- i0.ɵɵrepeaterCreate(1, FunnelWeaknessesListModalContentComponent_Conditional_2_For_2_Template, 9, 7, "div", null, _forTrack0$1g);
11923
+ i0.ɵɵrepeaterCreate(1, FunnelWeaknessesListModalContentComponent_Conditional_2_For_2_Template, 9, 7, "div", null, _forTrack0$1i);
11807
11924
  i0.ɵɵelementEnd();
11808
11925
  } if (rf & 2) {
11809
11926
  const ctx_r0 = i0.ɵɵnextContext();
@@ -13578,7 +13695,7 @@ class ProfileItemLookupService {
13578
13695
  }], null, null); })();
13579
13696
 
13580
13697
  const _c0$1k = a0 => ({ name: "chevron-right", source: a0 });
13581
- const _forTrack0$1f = ($index, $item) => $item.id;
13698
+ const _forTrack0$1h = ($index, $item) => $item.id;
13582
13699
  function RelatedAreaChipsComponent_Conditional_0_For_2_Template(rf, ctx) { if (rf & 1) {
13583
13700
  const _r1 = i0.ɵɵgetCurrentView();
13584
13701
  i0.ɵɵelementStart(0, "button", 2);
@@ -13599,7 +13716,7 @@ function RelatedAreaChipsComponent_Conditional_0_For_2_Template(rf, ctx) { if (r
13599
13716
  } }
13600
13717
  function RelatedAreaChipsComponent_Conditional_0_Template(rf, ctx) { if (rf & 1) {
13601
13718
  i0.ɵɵelementStart(0, "div", 0);
13602
- i0.ɵɵrepeaterCreate(1, RelatedAreaChipsComponent_Conditional_0_For_2_Template, 4, 5, "button", 1, _forTrack0$1f);
13719
+ i0.ɵɵrepeaterCreate(1, RelatedAreaChipsComponent_Conditional_0_For_2_Template, 4, 5, "button", 1, _forTrack0$1h);
13603
13720
  i0.ɵɵelementEnd();
13604
13721
  } if (rf & 2) {
13605
13722
  const ctx_r2 = i0.ɵɵnextContext();
@@ -13824,7 +13941,7 @@ class CompetitorChipListComponent {
13824
13941
  }], null, { relatedCompetitorIds: [{ type: i0.Input, args: [{ isSignal: true, alias: "relatedCompetitorIds", required: false }] }], competitors: [{ type: i0.Input, args: [{ isSignal: true, alias: "competitors", required: false }] }], label: [{ type: i0.Input, args: [{ isSignal: true, alias: "label", required: false }] }], viewMode: [{ type: i0.Input, args: [{ isSignal: true, alias: "viewMode", required: false }] }], isDark: [{ type: i0.Input, args: [{ isSignal: true, alias: "isDark", required: false }] }], inModalContext: [{ type: i0.Input, args: [{ isSignal: true, alias: "inModalContext", required: false }] }] }); })();
13825
13942
  (() => { (typeof ngDevMode === "undefined" || ngDevMode) && i0.ɵsetClassDebugInfo(CompetitorChipListComponent, { className: "CompetitorChipListComponent", filePath: "lib/components/business-analysis-dashboard/shared/competitor-chip-list.component.ts", lineNumber: 37 }); })();
13826
13943
 
13827
- const _forTrack0$1e = ($index, $item) => $item.id;
13944
+ const _forTrack0$1g = ($index, $item) => $item.id;
13828
13945
  function CompetitorContextSectionComponent_Conditional_0_Conditional_8_Template(rf, ctx) { if (rf & 1) {
13829
13946
  const _r1 = i0.ɵɵgetCurrentView();
13830
13947
  i0.ɵɵelementStart(0, "button", 8);
@@ -13907,7 +14024,7 @@ function CompetitorContextSectionComponent_Conditional_0_Template(rf, ctx) { if
13907
14024
  i0.ɵɵconditionalCreate(8, CompetitorContextSectionComponent_Conditional_0_Conditional_8_Template, 5, 4, "button", 4);
13908
14025
  i0.ɵɵelementEnd();
13909
14026
  i0.ɵɵelementStart(9, "div", 5)(10, "div", 6);
13910
- i0.ɵɵrepeaterCreate(11, CompetitorContextSectionComponent_Conditional_0_For_12_Template, 10, 6, "button", 7, _forTrack0$1e);
14027
+ i0.ɵɵrepeaterCreate(11, CompetitorContextSectionComponent_Conditional_0_For_12_Template, 10, 6, "button", 7, _forTrack0$1g);
13911
14028
  i0.ɵɵelementEnd()()();
13912
14029
  } if (rf & 2) {
13913
14030
  const ctx_r1 = i0.ɵɵnextContext();
@@ -14098,7 +14215,7 @@ class CompetitorContextSectionComponent {
14098
14215
  (() => { (typeof ngDevMode === "undefined" || ngDevMode) && i0.ɵsetClassDebugInfo(CompetitorContextSectionComponent, { className: "CompetitorContextSectionComponent", filePath: "lib/components/business-analysis-dashboard/cards/competitor-context-section.component.ts", lineNumber: 86 }); })();
14099
14216
 
14100
14217
  const _c0$1i = a0 => ({ name: "chevron-right", source: a0 });
14101
- const _forTrack0$1d = ($index, $item) => $item.id;
14218
+ const _forTrack0$1f = ($index, $item) => $item.id;
14102
14219
  function RelatedRecommendationChipsComponent_Conditional_0_For_3_Template(rf, ctx) { if (rf & 1) {
14103
14220
  const _r1 = i0.ɵɵgetCurrentView();
14104
14221
  i0.ɵɵelementStart(0, "button", 4);
@@ -14141,7 +14258,7 @@ function RelatedRecommendationChipsComponent_Conditional_0_Conditional_4_Templat
14141
14258
  } }
14142
14259
  function RelatedRecommendationChipsComponent_Conditional_0_Template(rf, ctx) { if (rf & 1) {
14143
14260
  i0.ɵɵelementStart(0, "div", 0)(1, "div", 1);
14144
- i0.ɵɵrepeaterCreate(2, RelatedRecommendationChipsComponent_Conditional_0_For_3_Template, 5, 6, "button", 2, _forTrack0$1d);
14261
+ i0.ɵɵrepeaterCreate(2, RelatedRecommendationChipsComponent_Conditional_0_For_3_Template, 5, 6, "button", 2, _forTrack0$1f);
14145
14262
  i0.ɵɵelementEnd();
14146
14263
  i0.ɵɵconditionalCreate(4, RelatedRecommendationChipsComponent_Conditional_0_Conditional_4_Template, 5, 4, "button", 3);
14147
14264
  i0.ɵɵelementEnd();
@@ -14597,7 +14714,7 @@ class RelatedFunnelInsightsSectionComponent {
14597
14714
  }], null, { insightCount: [{ type: i0.Input, args: [{ isSignal: true, alias: "insightCount", required: true }] }], viewMode: [{ type: i0.Input, args: [{ isSignal: true, alias: "viewMode", required: false }] }], insightsClicked: [{ type: i0.Output, args: ["insightsClicked"] }] }); })();
14598
14715
  (() => { (typeof ngDevMode === "undefined" || ngDevMode) && i0.ɵsetClassDebugInfo(RelatedFunnelInsightsSectionComponent, { className: "RelatedFunnelInsightsSectionComponent", filePath: "lib/components/business-analysis-dashboard/shared/related-funnel-insights-section.component.ts", lineNumber: 47 }); })();
14599
14716
 
14600
- const _forTrack0$1c = ($index, $item) => $item.order;
14717
+ const _forTrack0$1e = ($index, $item) => $item.order;
14601
14718
  function RecommendationCardComponent_Conditional_3_Template(rf, ctx) { if (rf & 1) {
14602
14719
  i0.ɵɵelementStart(0, "div", 9);
14603
14720
  i0.ɵɵelement(1, "symphiq-icon", 11);
@@ -14950,7 +15067,7 @@ function RecommendationCardComponent_Conditional_13_Conditional_12_Conditional_6
14950
15067
  } }
14951
15068
  function RecommendationCardComponent_Conditional_13_Conditional_12_Conditional_6_Template(rf, ctx) { if (rf & 1) {
14952
15069
  i0.ɵɵelementStart(0, "div", 37);
14953
- i0.ɵɵrepeaterCreate(1, RecommendationCardComponent_Conditional_13_Conditional_12_Conditional_6_For_2_Template, 13, 9, "div", 41, _forTrack0$1c);
15070
+ i0.ɵɵrepeaterCreate(1, RecommendationCardComponent_Conditional_13_Conditional_12_Conditional_6_For_2_Template, 13, 9, "div", 41, _forTrack0$1e);
14954
15071
  i0.ɵɵelementEnd();
14955
15072
  } if (rf & 2) {
14956
15073
  const ctx_r0 = i0.ɵɵnextContext(3);
@@ -15788,7 +15905,7 @@ const ModalComponent_Conditional_0_Conditional_16_Conditional_4_Defer_2_DepsFn =
15788
15905
  const ModalComponent_Conditional_0_Conditional_16_Conditional_5_Defer_2_DepsFn = () => [Promise.resolve().then(function () { return barChart_component; }).then(m => m.BarChartComponent)];
15789
15906
  const ModalComponent_Conditional_0_Conditional_16_Conditional_6_Defer_2_DepsFn = () => [Promise.resolve().then(function () { return pieChart_component; }).then(m => m.PieChartComponent)];
15790
15907
  const ModalComponent_Conditional_0_Conditional_16_Conditional_7_Defer_2_DepsFn = () => [Promise.resolve().then(function () { return areaChart_component; }).then(m => m.AreaChartComponent)];
15791
- const _forTrack0$1b = ($index, $item) => $item.id || $index;
15908
+ const _forTrack0$1d = ($index, $item) => $item.id || $index;
15792
15909
  function ModalComponent_Conditional_0_Conditional_6_Template(rf, ctx) { if (rf & 1) {
15793
15910
  const _r3 = i0.ɵɵgetCurrentView();
15794
15911
  i0.ɵɵelementStart(0, "button", 10);
@@ -16173,7 +16290,7 @@ function ModalComponent_Conditional_0_Conditional_19_For_3_Template(rf, ctx) { i
16173
16290
  function ModalComponent_Conditional_0_Conditional_19_Template(rf, ctx) { if (rf & 1) {
16174
16291
  i0.ɵɵelementStart(0, "div", 19);
16175
16292
  i0.ɵɵconditionalCreate(1, ModalComponent_Conditional_0_Conditional_19_Conditional_1_Template, 2, 2, "p", 54);
16176
- i0.ɵɵrepeaterCreate(2, ModalComponent_Conditional_0_Conditional_19_For_3_Template, 2, 5, "div", null, _forTrack0$1b);
16293
+ i0.ɵɵrepeaterCreate(2, ModalComponent_Conditional_0_Conditional_19_For_3_Template, 2, 5, "div", null, _forTrack0$1d);
16177
16294
  i0.ɵɵelementEnd();
16178
16295
  } if (rf & 2) {
16179
16296
  const ctx_r1 = i0.ɵɵnextContext(2);
@@ -20469,7 +20586,7 @@ class NarrativeTooltipComponent {
20469
20586
  }], null, { content: [{ type: i0.Input, args: [{ isSignal: true, alias: "content", required: true }] }], isLightMode: [{ type: i0.Input, args: [{ isSignal: true, alias: "isLightMode", required: false }] }] }); })();
20470
20587
  (() => { (typeof ngDevMode === "undefined" || ngDevMode) && i0.ɵsetClassDebugInfo(NarrativeTooltipComponent, { className: "NarrativeTooltipComponent", filePath: "lib/components/funnel-analysis-dashboard/tooltip/narrative-tooltip.component.ts", lineNumber: 27 }); })();
20471
20588
 
20472
- const _forTrack0$1a = ($index, $item) => $item.metric.name;
20589
+ const _forTrack0$1c = ($index, $item) => $item.metric.name;
20473
20590
  function CompetitiveStatusTooltipComponent_Conditional_6_For_6_Template(rf, ctx) { if (rf & 1) {
20474
20591
  i0.ɵɵelementStart(0, "div", 7)(1, "div", 8)(2, "div", 9);
20475
20592
  i0.ɵɵelement(3, "div", 10);
@@ -20513,7 +20630,7 @@ function CompetitiveStatusTooltipComponent_Conditional_6_Template(rf, ctx) { if
20513
20630
  i0.ɵɵtext(3);
20514
20631
  i0.ɵɵelementEnd();
20515
20632
  i0.ɵɵelementStart(4, "div", 5);
20516
- i0.ɵɵrepeaterCreate(5, CompetitiveStatusTooltipComponent_Conditional_6_For_6_Template, 13, 12, "div", 6, _forTrack0$1a);
20633
+ i0.ɵɵrepeaterCreate(5, CompetitiveStatusTooltipComponent_Conditional_6_For_6_Template, 13, 12, "div", 6, _forTrack0$1c);
20517
20634
  i0.ɵɵelementEnd()();
20518
20635
  } if (rf & 2) {
20519
20636
  const ctx_r1 = i0.ɵɵnextContext();
@@ -20772,7 +20889,7 @@ class CompetitiveStatusTooltipComponent {
20772
20889
  }], null, { content: [{ type: i0.Input, args: [{ isSignal: true, alias: "content", required: true }] }], isLightMode: [{ type: i0.Input, args: [{ isSignal: true, alias: "isLightMode", required: false }] }], currencySymbol: [{ type: i0.Input, args: [{ isSignal: true, alias: "currencySymbol", required: false }] }] }); })();
20773
20890
  (() => { (typeof ngDevMode === "undefined" || ngDevMode) && i0.ɵsetClassDebugInfo(CompetitiveStatusTooltipComponent, { className: "CompetitiveStatusTooltipComponent", filePath: "lib/components/funnel-analysis-dashboard/tooltip/competitive-status-tooltip.component.ts", lineNumber: 60 }); })();
20774
20891
 
20775
- const _forTrack0$19 = ($index, $item) => $item.name;
20892
+ const _forTrack0$1b = ($index, $item) => $item.name;
20776
20893
  function FunnelStageCompetitiveTooltipComponent_Conditional_8_For_7_Template(rf, ctx) { if (rf & 1) {
20777
20894
  i0.ɵɵelementStart(0, "div", 9)(1, "div", 10)(2, "span", 11);
20778
20895
  i0.ɵɵtext(3);
@@ -20812,7 +20929,7 @@ function FunnelStageCompetitiveTooltipComponent_Conditional_8_Template(rf, ctx)
20812
20929
  i0.ɵɵtext(4);
20813
20930
  i0.ɵɵelementEnd()();
20814
20931
  i0.ɵɵelementStart(5, "div", 8);
20815
- i0.ɵɵrepeaterCreate(6, FunnelStageCompetitiveTooltipComponent_Conditional_8_For_7_Template, 11, 9, "div", 9, _forTrack0$19);
20932
+ i0.ɵɵrepeaterCreate(6, FunnelStageCompetitiveTooltipComponent_Conditional_8_For_7_Template, 11, 9, "div", 9, _forTrack0$1b);
20816
20933
  i0.ɵɵelementEnd()();
20817
20934
  } if (rf & 2) {
20818
20935
  const ctx_r1 = i0.ɵɵnextContext();
@@ -20862,7 +20979,7 @@ function FunnelStageCompetitiveTooltipComponent_Conditional_9_Template(rf, ctx)
20862
20979
  i0.ɵɵtext(4);
20863
20980
  i0.ɵɵelementEnd()();
20864
20981
  i0.ɵɵelementStart(5, "div", 8);
20865
- i0.ɵɵrepeaterCreate(6, FunnelStageCompetitiveTooltipComponent_Conditional_9_For_7_Template, 11, 9, "div", 9, _forTrack0$19);
20982
+ i0.ɵɵrepeaterCreate(6, FunnelStageCompetitiveTooltipComponent_Conditional_9_For_7_Template, 11, 9, "div", 9, _forTrack0$1b);
20866
20983
  i0.ɵɵelementEnd()();
20867
20984
  } if (rf & 2) {
20868
20985
  const ctx_r1 = i0.ɵɵnextContext();
@@ -20912,7 +21029,7 @@ function FunnelStageCompetitiveTooltipComponent_Conditional_10_Template(rf, ctx)
20912
21029
  i0.ɵɵtext(4);
20913
21030
  i0.ɵɵelementEnd()();
20914
21031
  i0.ɵɵelementStart(5, "div", 8);
20915
- i0.ɵɵrepeaterCreate(6, FunnelStageCompetitiveTooltipComponent_Conditional_10_For_7_Template, 11, 9, "div", 9, _forTrack0$19);
21032
+ i0.ɵɵrepeaterCreate(6, FunnelStageCompetitiveTooltipComponent_Conditional_10_For_7_Template, 11, 9, "div", 9, _forTrack0$1b);
20916
21033
  i0.ɵɵelementEnd()();
20917
21034
  } if (rf & 2) {
20918
21035
  const ctx_r1 = i0.ɵɵnextContext();
@@ -22200,7 +22317,7 @@ class MobileFABComponent {
22200
22317
  }], null, { isLightMode: [{ type: i0.Input, args: [{ isSignal: true, alias: "isLightMode", required: false }] }], isCompactMode: [{ type: i0.Input, args: [{ isSignal: true, alias: "isCompactMode", required: false }] }], isExpanded: [{ type: i0.Input, args: [{ isSignal: true, alias: "isExpanded", required: false }] }], expandedChange: [{ type: i0.Output, args: ["expandedChange"] }], scrollToTop: [{ type: i0.Output, args: ["scrollToTop"] }], toggleView: [{ type: i0.Output, args: ["toggleView"] }] }); })();
22201
22318
  (() => { (typeof ngDevMode === "undefined" || ngDevMode) && i0.ɵsetClassDebugInfo(MobileFABComponent, { className: "MobileFABComponent", filePath: "lib/components/funnel-analysis-dashboard/mobile-fab.component.ts", lineNumber: 75 }); })();
22202
22319
 
22203
- const _forTrack0$18 = ($index, $item) => $item.id;
22320
+ const _forTrack0$1a = ($index, $item) => $item.id;
22204
22321
  function MobileBottomNavComponent_For_3_Template(rf, ctx) { if (rf & 1) {
22205
22322
  const _r1 = i0.ɵɵgetCurrentView();
22206
22323
  i0.ɵɵelementStart(0, "button", 3);
@@ -22258,7 +22375,7 @@ class MobileBottomNavComponent {
22258
22375
  static { this.ɵfac = function MobileBottomNavComponent_Factory(__ngFactoryType__) { return new (__ngFactoryType__ || MobileBottomNavComponent)(); }; }
22259
22376
  static { this.ɵcmp = /*@__PURE__*/ i0.ɵɵdefineComponent({ type: MobileBottomNavComponent, selectors: [["symphiq-mobile-bottom-nav"]], inputs: { isLightMode: [1, "isLightMode"], sections: [1, "sections"], activeSection: [1, "activeSection"] }, outputs: { navigate: "navigate" }, decls: 4, vars: 1, consts: [[1, "fixed", "bottom-0", "left-0", "right-0", "z-50", "lg:hidden", "border-t", "backdrop-blur-md", 3, "ngClass"], [1, "flex", "items-center", "justify-around", "px-2", "py-3"], [1, "flex", "flex-col", "items-center", "gap-1", "px-3", "py-2", "rounded-lg", "transition-all", "duration-200", "active:scale-95", "min-w-[64px]", 3, "ngClass"], [1, "flex", "flex-col", "items-center", "gap-1", "px-3", "py-2", "rounded-lg", "transition-all", "duration-200", "active:scale-95", "min-w-[64px]", 3, "click", "ngClass"], [1, "w-6", "h-6", 3, "innerHTML"], [1, "text-xs", "font-medium"]], template: function MobileBottomNavComponent_Template(rf, ctx) { if (rf & 1) {
22260
22377
  i0.ɵɵelementStart(0, "div", 0)(1, "div", 1);
22261
- i0.ɵɵrepeaterCreate(2, MobileBottomNavComponent_For_3_Template, 4, 3, "button", 2, _forTrack0$18);
22378
+ i0.ɵɵrepeaterCreate(2, MobileBottomNavComponent_For_3_Template, 4, 3, "button", 2, _forTrack0$1a);
22262
22379
  i0.ɵɵelementEnd()();
22263
22380
  } if (rf & 2) {
22264
22381
  i0.ɵɵproperty("ngClass", ctx.containerClass());
@@ -22463,7 +22580,7 @@ class SearchService {
22463
22580
  }], null, null); })();
22464
22581
 
22465
22582
  const _c0$1g = ["searchInput"];
22466
- const _forTrack0$17 = ($index, $item) => $item.id;
22583
+ const _forTrack0$19 = ($index, $item) => $item.id;
22467
22584
  function SearchBarComponent_Conditional_0_Conditional_10_Template(rf, ctx) { if (rf & 1) {
22468
22585
  const _r3 = i0.ɵɵgetCurrentView();
22469
22586
  i0.ɵɵelementStart(0, "button", 18);
@@ -22556,7 +22673,7 @@ function SearchBarComponent_Conditional_0_Conditional_14_For_2_Template(rf, ctx)
22556
22673
  } }
22557
22674
  function SearchBarComponent_Conditional_0_Conditional_14_Template(rf, ctx) { if (rf & 1) {
22558
22675
  i0.ɵɵelementStart(0, "div", 15);
22559
- i0.ɵɵrepeaterCreate(1, SearchBarComponent_Conditional_0_Conditional_14_For_2_Template, 16, 12, "button", 19, _forTrack0$17);
22676
+ i0.ɵɵrepeaterCreate(1, SearchBarComponent_Conditional_0_Conditional_14_For_2_Template, 16, 12, "button", 19, _forTrack0$19);
22560
22677
  i0.ɵɵelementEnd();
22561
22678
  } if (rf & 2) {
22562
22679
  const ctx_r1 = i0.ɵɵnextContext(2);
@@ -23047,7 +23164,7 @@ class SearchHighlightDirective {
23047
23164
  }]
23048
23165
  }], () => [], { symphiqSearchHighlight: [{ type: i0.Input, args: [{ isSignal: true, alias: "libSymphiqSearchHighlight", required: false }] }], highlightId: [{ type: i0.Input, args: [{ isSignal: true, alias: "highlightId", required: false }] }] }); })();
23049
23166
 
23050
- const _forTrack0$16 = ($index, $item) => $item.value;
23167
+ const _forTrack0$18 = ($index, $item) => $item.value;
23051
23168
  const _forTrack1$b = ($index, $item) => $item.performanceItemId;
23052
23169
  function CompetitiveScorecardComponent_For_12_Template(rf, ctx) { if (rf & 1) {
23053
23170
  i0.ɵɵelementStart(0, "div", 7);
@@ -23422,7 +23539,7 @@ class CompetitiveScorecardComponent {
23422
23539
  i0.ɵɵtext(9);
23423
23540
  i0.ɵɵelementEnd()()();
23424
23541
  i0.ɵɵelementStart(10, "div", 6);
23425
- i0.ɵɵrepeaterCreate(11, CompetitiveScorecardComponent_For_12_Template, 4, 7, "div", 7, _forTrack0$16);
23542
+ i0.ɵɵrepeaterCreate(11, CompetitiveScorecardComponent_For_12_Template, 4, 7, "div", 7, _forTrack0$18);
23426
23543
  i0.ɵɵelementEnd();
23427
23544
  i0.ɵɵelementStart(13, "div", 8)(14, "table", 9)(15, "thead")(16, "tr", 10)(17, "th", 11);
23428
23545
  i0.ɵɵtext(18, "Metric");
@@ -24055,7 +24172,7 @@ class SectionDividerComponent {
24055
24172
  }], null, { viewMode: [{ type: i0.Input, args: [{ isSignal: true, alias: "viewMode", required: false }] }], animationDelay: [{ type: i0.Input, args: [{ isSignal: true, alias: "animationDelay", required: false }] }], sectionIcon: [{ type: i0.Input, args: [{ isSignal: true, alias: "sectionIcon", required: false }] }], subsections: [{ type: i0.Input, args: [{ isSignal: true, alias: "subsections", required: false }] }] }); })();
24056
24173
  (() => { (typeof ngDevMode === "undefined" || ngDevMode) && i0.ɵsetClassDebugInfo(SectionDividerComponent, { className: "SectionDividerComponent", filePath: "lib/components/shared/section-divider.component.ts", lineNumber: 36 }); })();
24057
24174
 
24058
- const _forTrack0$15 = ($index, $item) => $item.id;
24175
+ const _forTrack0$17 = ($index, $item) => $item.id;
24059
24176
  function FloatingTocComponent_Conditional_15_Template(rf, ctx) { if (rf & 1) {
24060
24177
  i0.ɵɵnamespaceSVG();
24061
24178
  i0.ɵɵelement(0, "path", 8);
@@ -24107,7 +24224,7 @@ function FloatingTocComponent_For_19_Conditional_7_For_2_Template(rf, ctx) { if
24107
24224
  } }
24108
24225
  function FloatingTocComponent_For_19_Conditional_7_Template(rf, ctx) { if (rf & 1) {
24109
24226
  i0.ɵɵelementStart(0, "div", 17);
24110
- i0.ɵɵrepeaterCreate(1, FloatingTocComponent_For_19_Conditional_7_For_2_Template, 4, 4, "button", 19, _forTrack0$15);
24227
+ i0.ɵɵrepeaterCreate(1, FloatingTocComponent_For_19_Conditional_7_For_2_Template, 4, 4, "button", 19, _forTrack0$17);
24111
24228
  i0.ɵɵelementEnd();
24112
24229
  } if (rf & 2) {
24113
24230
  const section_r2 = i0.ɵɵnextContext().$implicit;
@@ -24497,7 +24614,7 @@ class FloatingTocComponent {
24497
24614
  i0.ɵɵelementEnd()()();
24498
24615
  i0.ɵɵnamespaceHTML();
24499
24616
  i0.ɵɵelementStart(17, "nav", 9);
24500
- i0.ɵɵrepeaterCreate(18, FloatingTocComponent_For_19_Template, 8, 6, "div", 10, _forTrack0$15);
24617
+ i0.ɵɵrepeaterCreate(18, FloatingTocComponent_For_19_Template, 8, 6, "div", 10, _forTrack0$17);
24501
24618
  i0.ɵɵelementEnd();
24502
24619
  i0.ɵɵelementStart(20, "div", 11)(21, "button", 7);
24503
24620
  i0.ɵɵlistener("click", function FloatingTocComponent_Template_button_click_21_listener() { return ctx.scrollToTop(); });
@@ -24651,7 +24768,7 @@ class FloatingTocComponent {
24651
24768
  }], null, { sections: [{ type: i0.Input, args: [{ isSignal: true, alias: "sections", required: false }] }], viewMode: [{ type: i0.Input, args: [{ isSignal: true, alias: "viewMode", required: false }] }], embedded: [{ type: i0.Input, args: [{ isSignal: true, alias: "embedded", required: false }] }], containerElement: [{ type: i0.Input, args: [{ isSignal: true, alias: "containerElement", required: false }] }], scrollElement: [{ type: i0.Input, args: [{ isSignal: true, alias: "scrollElement", required: false }] }], parentHeaderOffset: [{ type: i0.Input, args: [{ isSignal: true, alias: "parentHeaderOffset", required: false }] }] }); })();
24652
24769
  (() => { (typeof ngDevMode === "undefined" || ngDevMode) && i0.ɵsetClassDebugInfo(FloatingTocComponent, { className: "FloatingTocComponent", filePath: "lib/components/business-analysis-dashboard/floating-toc.component.ts", lineNumber: 125 }); })();
24653
24770
 
24654
- const _forTrack0$14 = ($index, $item) => $item.id;
24771
+ const _forTrack0$16 = ($index, $item) => $item.id;
24655
24772
  function JourneyProgressIndicatorComponent_For_5_Conditional_2_Template(rf, ctx) { if (rf & 1) {
24656
24773
  i0.ɵɵnamespaceSVG();
24657
24774
  i0.ɵɵelementStart(0, "svg", 22);
@@ -24884,7 +25001,7 @@ function JourneyProgressIndicatorComponent_Conditional_23_Template(rf, ctx) { if
24884
25001
  i0.ɵɵtext(2, "Journey Progress");
24885
25002
  i0.ɵɵelementEnd();
24886
25003
  i0.ɵɵelementStart(3, "div", 44);
24887
- i0.ɵɵrepeaterCreate(4, JourneyProgressIndicatorComponent_Conditional_23_For_5_Template, 14, 8, "div", 45, _forTrack0$14);
25004
+ i0.ɵɵrepeaterCreate(4, JourneyProgressIndicatorComponent_Conditional_23_For_5_Template, 14, 8, "div", 45, _forTrack0$16);
24888
25005
  i0.ɵɵelementEnd()();
24889
25006
  } if (rf & 2) {
24890
25007
  const ctx_r2 = i0.ɵɵnextContext();
@@ -25334,7 +25451,7 @@ class JourneyProgressIndicatorComponent {
25334
25451
  static { this.ɵfac = function JourneyProgressIndicatorComponent_Factory(__ngFactoryType__) { return new (__ngFactoryType__ || JourneyProgressIndicatorComponent)(); }; }
25335
25452
  static { this.ɵcmp = /*@__PURE__*/ i0.ɵɵdefineComponent({ type: JourneyProgressIndicatorComponent, selectors: [["symphiq-journey-progress-indicator"]], inputs: { viewMode: [1, "viewMode"], currentStepId: [1, "currentStepId"], showNextStepAction: [1, "showNextStepAction"], forDemo: [1, "forDemo"], maxAccessibleStepId: [1, "maxAccessibleStepId"] }, outputs: { nextStepClick: "nextStepClick", stepClick: "stepClick" }, decls: 25, vars: 14, consts: [[1, "sticky", "z-40", "border-b", "pt-8", "pb-6", "px-6", "transition-all", "duration-200", "overflow-visible", 3, "ngClass"], [1, "max-w-7xl", "mx-auto", "overflow-visible"], [1, "hidden", "lg:flex", "items-start", "justify-between", "overflow-visible"], [1, "flex-1", "flex", "items-start", "justify-start", "overflow-visible"], ["type", "button", 1, "px-4", "py-2", "rounded-lg", "font-medium", "text-sm", "transition-all", "duration-200", "flex-shrink-0", "flex", "items-center", "gap-2", "whitespace-nowrap", "ml-4", "mt-0", 3, "disabled", "ngClass", "cursor-pointer", "cursor-not-allowed", "opacity-50", "hover:scale-105"], [1, "lg:hidden"], [1, "flex", "items-center", "justify-between", "gap-4"], [1, "flex-1", "flex", "items-center", "gap-3"], [1, "w-10", "h-10", "min-w-[2.5rem]", "min-h-[2.5rem]", "rounded-full", "flex", "items-center", "justify-center", "flex-shrink-0", 3, "ngClass"], ["fill", "currentColor", "viewBox", "0 0 20 20", 1, "w-5", "h-5"], [1, "w-3", "h-3", "min-w-[0.75rem]", "min-h-[0.75rem]", "rounded-full", "animate-pulse", 3, "ngClass"], [1, "text-sm", "font-bold", 3, "ngClass"], [1, "flex-1", "text-left"], [1, "flex", "items-center", "gap-1.5", "relative", 3, "mouseenter", "mouseleave", "click"], [1, "text-xs", "cursor-pointer", 3, "ngClass"], [1, "p-0.5", "rounded-full", "cursor-pointer", 3, "ngClass"], ["fill", "none", "stroke", "currentColor", "viewBox", "0 0 24 24", 1, "w-3", "h-3"], ["stroke-linecap", "round", "stroke-linejoin", "round", "stroke-width", "2", "d", "M13 16h-1v-4h-1m1-4h.01M21 12a9 9 0 11-18 0 9 9 0 0118 0z"], [1, "absolute", "top-full", "left-0", "mt-2", "w-80", "max-w-[calc(100vw-2rem)]", "p-4", "rounded-lg", "shadow-xl", "z-50", 3, "ngClass"], ["type", "button", 1, "px-3", "py-1.5", "rounded-lg", "font-medium", "text-xs", "transition-all", "duration-200", "flex-shrink-0", "flex", "items-center", "gap-1.5", "whitespace-nowrap", 3, "disabled", "ngClass", "cursor-pointer", "cursor-not-allowed", "opacity-50", "hover:scale-105"], [1, "flex", "flex-col", "items-center", "relative", "step-column", "overflow-visible", "flex-shrink-0", 3, "mouseenter", "mouseleave", "click"], [1, "w-8", "h-8", "min-w-[2rem]", "min-h-[2rem]", "rounded-full", "flex", "items-center", "justify-center", "flex-shrink-0", "step-circle", "relative", "z-10", "mb-1.5", 3, "ngClass"], ["fill", "currentColor", "viewBox", "0 0 20 20", 1, "w-4", "h-4"], [1, "w-2.5", "h-2.5", "min-w-[0.625rem]", "min-h-[0.625rem]", "rounded-full", "animate-pulse", 3, "ngClass"], [1, "w-2", "h-2", "min-w-[0.5rem]", "min-h-[0.5rem]", "rounded-full", 3, "ngClass"], [1, "text-xs", "font-bold", 3, "ngClass"], [1, "text-[10px]", "text-center", "leading-tight", "whitespace-nowrap", "max-w-[64px]", "overflow-hidden", "text-ellipsis", 3, "ngClass"], [1, "absolute", "rounded-lg", "shadow-2xl", "z-50", "pointer-events-none", 3, "ngClass", "expanded-card-right", "expanded-card-left", "top", "left", "right"], [1, "flex-1", "h-0.5", "transition-all", "duration-200", "mt-[16px]", 3, "ngClass"], ["fill-rule", "evenodd", "d", "M16.707 5.293a1 1 0 010 1.414l-8 8a1 1 0 01-1.414 0l-4-4a1 1 0 011.414-1.414L8 12.586l7.293-7.293a1 1 0 011.414 0z", "clip-rule", "evenodd"], [1, "absolute", "rounded-lg", "shadow-2xl", "z-50", "pointer-events-none", 3, "ngClass"], [1, "flex", "items-start", "px-4", "py-3", "expanded-content"], [1, "flex", "items-start", "gap-2", "w-full"], [1, "text-xs", "font-bold", "flex-shrink-0", "mt-0.5", 3, "ngClass"], [1, "flex", "flex-col", "gap-1", "flex-1"], [1, "text-sm", "font-bold", "leading-tight", 3, "ngClass"], [1, "text-xs", "leading-relaxed", "description-fade", 3, "ngClass"], ["type", "button", 1, "px-4", "py-2", "rounded-lg", "font-medium", "text-sm", "transition-all", "duration-200", "flex-shrink-0", "flex", "items-center", "gap-2", "whitespace-nowrap", "ml-4", "mt-0", 3, "click", "disabled", "ngClass"], ["fill", "none", "viewBox", "0 0 24 24", 1, "w-4", "h-4", "animate-spin"], ["cx", "12", "cy", "12", "r", "10", "stroke", "currentColor", "stroke-width", "4", 1, "opacity-25"], ["fill", "currentColor", "d", "M4 12a8 8 0 018-8V0C5.373 0 0 5.373 0 12h4zm2 5.291A7.962 7.962 0 014 12H0c0 3.042 1.135 5.824 3 7.938l3-2.647z", 1, "opacity-75"], ["fill", "none", "stroke", "currentColor", "viewBox", "0 0 24 24", 1, "w-4", "h-4"], ["stroke-linecap", "round", "stroke-linejoin", "round", "stroke-width", "2", "d", "M13 7l5 5m0 0l-5 5m5-5H6"], [1, "text-sm", "font-bold", "mb-3", 3, "ngClass"], [1, "space-y-2"], [1, "flex", "items-start", "gap-2"], [1, "w-6", "h-6", "min-w-[1.5rem]", "min-h-[1.5rem]", "rounded-full", "flex", "items-center", "justify-center", "flex-shrink-0", 3, "ngClass"], ["fill", "currentColor", "viewBox", "0 0 20 20", 1, "w-3", "h-3"], [1, "w-2", "h-2", "min-w-[0.5rem]", "min-h-[0.5rem]", "rounded-full", "animate-pulse", 3, "ngClass"], [1, "w-1.5", "h-1.5", "min-w-[0.375rem]", "min-h-[0.375rem]", "rounded-full", 3, "ngClass"], [1, "text-[10px]", "font-bold", 3, "ngClass"], [1, "flex-1", "min-w-0"], [1, "flex", "items-center", "gap-2"], [1, "text-xs", "font-medium", 3, "ngClass"], [1, "text-[10px]", "mt-0.5", 3, "ngClass"], ["type", "button", 1, "px-3", "py-1.5", "rounded-lg", "font-medium", "text-xs", "transition-all", "duration-200", "flex-shrink-0", "flex", "items-center", "gap-1.5", "whitespace-nowrap", 3, "click", "disabled", "ngClass"], ["fill", "none", "viewBox", "0 0 24 24", 1, "w-3.5", "h-3.5", "animate-spin"], ["fill", "none", "stroke", "currentColor", "viewBox", "0 0 24 24", 1, "w-3.5", "h-3.5"]], template: function JourneyProgressIndicatorComponent_Template(rf, ctx) { if (rf & 1) {
25336
25453
  i0.ɵɵelementStart(0, "div", 0)(1, "div", 1)(2, "div", 2)(3, "div", 3);
25337
- i0.ɵɵrepeaterCreate(4, JourneyProgressIndicatorComponent_For_5_Template, 10, 10, null, null, _forTrack0$14);
25454
+ i0.ɵɵrepeaterCreate(4, JourneyProgressIndicatorComponent_For_5_Template, 10, 10, null, null, _forTrack0$16);
25338
25455
  i0.ɵɵelementEnd();
25339
25456
  i0.ɵɵconditionalCreate(6, JourneyProgressIndicatorComponent_Conditional_6_Template, 3, 11, "button", 4);
25340
25457
  i0.ɵɵelementEnd();
@@ -26682,7 +26799,7 @@ class ContinueYourJourneyComponent {
26682
26799
  }], null, { viewMode: [{ type: i0.Input, args: [{ isSignal: true, alias: "viewMode", required: false }] }], colorScheme: [{ type: i0.Input, args: [{ isSignal: true, alias: "colorScheme", required: false }] }], isOnboarded: [{ type: i0.Input, args: [{ isSignal: true, alias: "isOnboarded", required: false }] }], title: [{ type: i0.Input, args: [{ isSignal: true, alias: "title", required: false }] }], onboardedTitle: [{ type: i0.Input, args: [{ isSignal: true, alias: "onboardedTitle", required: false }] }], description: [{ type: i0.Input, args: [{ isSignal: true, alias: "description", required: false }] }], onboardedDescription: [{ type: i0.Input, args: [{ isSignal: true, alias: "onboardedDescription", required: false }] }] }); })();
26683
26800
  (() => { (typeof ngDevMode === "undefined" || ngDevMode) && i0.ɵsetClassDebugInfo(ContinueYourJourneyComponent, { className: "ContinueYourJourneyComponent", filePath: "lib/components/shared/continue-your-journey.component.ts", lineNumber: 32 }); })();
26684
26801
 
26685
- const _forTrack0$13 = ($index, $item) => $item.title;
26802
+ const _forTrack0$15 = ($index, $item) => $item.title;
26686
26803
  function WhatYoullSeeBelowComponent_For_8_Template(rf, ctx) { if (rf & 1) {
26687
26804
  i0.ɵɵelementStart(0, "li", 6);
26688
26805
  i0.ɵɵnamespaceSVG();
@@ -26753,7 +26870,7 @@ class WhatYoullSeeBelowComponent {
26753
26870
  i0.ɵɵtext(5, " What You'll See Below ");
26754
26871
  i0.ɵɵelementEnd();
26755
26872
  i0.ɵɵelementStart(6, "ul", 5);
26756
- i0.ɵɵrepeaterCreate(7, WhatYoullSeeBelowComponent_For_8_Template, 7, 2, "li", 6, _forTrack0$13);
26873
+ i0.ɵɵrepeaterCreate(7, WhatYoullSeeBelowComponent_For_8_Template, 7, 2, "li", 6, _forTrack0$15);
26757
26874
  i0.ɵɵconditionalCreate(9, WhatYoullSeeBelowComponent_Conditional_9_Template, 7, 2, "li", 6);
26758
26875
  i0.ɵɵelementEnd()()();
26759
26876
  } if (rf & 2) {
@@ -27977,7 +28094,7 @@ class ViewModeSwitcherModalComponent {
27977
28094
  const _c0$1e = a0 => ({ name: "check-badge", source: a0 });
27978
28095
  const _c1$J = a0 => ({ name: "check-circle", source: a0 });
27979
28096
  const _c2$t = a0 => ({ name: "chevron-right", source: a0 });
27980
- const _forTrack0$12 = ($index, $item) => $item.area;
28097
+ const _forTrack0$14 = ($index, $item) => $item.area;
27981
28098
  function KeyStrengthsListModalContentComponent_Conditional_1_Template(rf, ctx) { if (rf & 1) {
27982
28099
  i0.ɵɵelementStart(0, "div", 1);
27983
28100
  i0.ɵɵelement(1, "symphiq-icon", 3);
@@ -28046,7 +28163,7 @@ function KeyStrengthsListModalContentComponent_Conditional_2_For_2_Template(rf,
28046
28163
  } }
28047
28164
  function KeyStrengthsListModalContentComponent_Conditional_2_Template(rf, ctx) { if (rf & 1) {
28048
28165
  i0.ɵɵelementStart(0, "div", 2);
28049
- i0.ɵɵrepeaterCreate(1, KeyStrengthsListModalContentComponent_Conditional_2_For_2_Template, 15, 18, "button", 6, _forTrack0$12);
28166
+ i0.ɵɵrepeaterCreate(1, KeyStrengthsListModalContentComponent_Conditional_2_For_2_Template, 15, 18, "button", 6, _forTrack0$14);
28050
28167
  i0.ɵɵelementEnd();
28051
28168
  } if (rf & 2) {
28052
28169
  const ctx_r0 = i0.ɵɵnextContext();
@@ -28210,7 +28327,7 @@ const _c0$1d = a0 => ({ name: "shield-check", source: a0 });
28210
28327
  const _c1$I = a0 => ({ name: "exclamation-triangle", source: a0 });
28211
28328
  const _c2$s = a0 => ({ name: "document-text", source: a0 });
28212
28329
  const _c3$k = a0 => ({ name: "chevron-right", source: a0 });
28213
- const _forTrack0$11 = ($index, $item) => $item.area;
28330
+ const _forTrack0$13 = ($index, $item) => $item.area;
28214
28331
  function CriticalGapsListModalContentComponent_Conditional_1_Template(rf, ctx) { if (rf & 1) {
28215
28332
  i0.ɵɵelementStart(0, "div", 1);
28216
28333
  i0.ɵɵelement(1, "symphiq-icon", 3);
@@ -28295,7 +28412,7 @@ function CriticalGapsListModalContentComponent_Conditional_2_For_2_Template(rf,
28295
28412
  } }
28296
28413
  function CriticalGapsListModalContentComponent_Conditional_2_Template(rf, ctx) { if (rf & 1) {
28297
28414
  i0.ɵɵelementStart(0, "div", 2);
28298
- i0.ɵɵrepeaterCreate(1, CriticalGapsListModalContentComponent_Conditional_2_For_2_Template, 23, 25, "button", 6, _forTrack0$11);
28415
+ i0.ɵɵrepeaterCreate(1, CriticalGapsListModalContentComponent_Conditional_2_For_2_Template, 23, 25, "button", 6, _forTrack0$13);
28299
28416
  i0.ɵɵelementEnd();
28300
28417
  } if (rf & 2) {
28301
28418
  const ctx_r0 = i0.ɵɵnextContext();
@@ -28524,7 +28641,7 @@ class CriticalGapsListModalContentComponent {
28524
28641
 
28525
28642
  const _c0$1c = a0 => ({ name: "check-circle", source: a0 });
28526
28643
  const _c1$H = a0 => ({ name: "chat-bubble-left-right", source: a0 });
28527
- const _forTrack0$10 = ($index, $item) => $item.questionId;
28644
+ const _forTrack0$12 = ($index, $item) => $item.questionId;
28528
28645
  function KeyStrengthDetailModalContentComponent_Conditional_13_For_6_Conditional_8_Template(rf, ctx) { if (rf & 1) {
28529
28646
  i0.ɵɵelementStart(0, "div", 19)(1, "span", 20);
28530
28647
  i0.ɵɵtext(2);
@@ -28571,7 +28688,7 @@ function KeyStrengthDetailModalContentComponent_Conditional_13_Template(rf, ctx)
28571
28688
  i0.ɵɵtext(3, " Supporting Evidence ");
28572
28689
  i0.ɵɵelementEnd();
28573
28690
  i0.ɵɵelementStart(4, "div", 12);
28574
- i0.ɵɵrepeaterCreate(5, KeyStrengthDetailModalContentComponent_Conditional_13_For_6_Template, 9, 10, "div", 13, _forTrack0$10);
28691
+ i0.ɵɵrepeaterCreate(5, KeyStrengthDetailModalContentComponent_Conditional_13_For_6_Template, 9, 10, "div", 13, _forTrack0$12);
28575
28692
  i0.ɵɵelementEnd()();
28576
28693
  } if (rf & 2) {
28577
28694
  const ctx_r1 = i0.ɵɵnextContext();
@@ -28766,7 +28883,7 @@ class KeyStrengthDetailModalContentComponent {
28766
28883
  const _c0$1b = a0 => ({ name: "exclamation-triangle", source: a0 });
28767
28884
  const _c1$G = a0 => ({ name: "document-text", source: a0 });
28768
28885
  const _c2$r = a0 => ({ name: "chat-bubble-left-right", source: a0 });
28769
- const _forTrack0$$ = ($index, $item) => $item.questionId;
28886
+ const _forTrack0$11 = ($index, $item) => $item.questionId;
28770
28887
  function CriticalGapDetailModalContentComponent_Conditional_20_For_6_Conditional_8_Template(rf, ctx) { if (rf & 1) {
28771
28888
  i0.ɵɵelementStart(0, "div", 23)(1, "p", 25);
28772
28889
  i0.ɵɵtext(2, " Gap Identified: ");
@@ -28834,7 +28951,7 @@ function CriticalGapDetailModalContentComponent_Conditional_20_Template(rf, ctx)
28834
28951
  i0.ɵɵtext(3, " Supporting Evidence ");
28835
28952
  i0.ɵɵelementEnd();
28836
28953
  i0.ɵɵelementStart(4, "div", 17);
28837
- i0.ɵɵrepeaterCreate(5, CriticalGapDetailModalContentComponent_Conditional_20_For_6_Template, 10, 11, "div", 18, _forTrack0$$);
28954
+ i0.ɵɵrepeaterCreate(5, CriticalGapDetailModalContentComponent_Conditional_20_For_6_Template, 10, 11, "div", 18, _forTrack0$11);
28838
28955
  i0.ɵɵelementEnd()();
28839
28956
  } if (rf & 2) {
28840
28957
  const ctx_r1 = i0.ɵɵnextContext();
@@ -30343,7 +30460,7 @@ class GoalDetailModalContentComponent {
30343
30460
  }], null, { goal: [{ type: i0.Input, args: [{ isSignal: true, alias: "goal", required: true }] }], viewMode: [{ type: i0.Input, args: [{ isSignal: true, alias: "viewMode", required: true }] }], allInsights: [{ type: i0.Input, args: [{ isSignal: true, alias: "allInsights", required: false }] }], allMetrics: [{ type: i0.Input, args: [{ isSignal: true, alias: "allMetrics", required: false }] }], allBusinessInsights: [{ type: i0.Input, args: [{ isSignal: true, alias: "allBusinessInsights", required: false }] }], allCharts: [{ type: i0.Input, args: [{ isSignal: true, alias: "allCharts", required: false }] }], showObjectives: [{ type: i0.Output, args: ["showObjectives"] }] }); })();
30344
30461
  (() => { (typeof ngDevMode === "undefined" || ngDevMode) && i0.ɵsetClassDebugInfo(GoalDetailModalContentComponent, { className: "GoalDetailModalContentComponent", filePath: "lib/components/profile-analysis-shop-dashboard/modals/goal-detail-modal-content.component.ts", lineNumber: 65 }); })();
30345
30462
 
30346
- const _forTrack0$_ = ($index, $item) => $item.id || $index;
30463
+ const _forTrack0$10 = ($index, $item) => $item.id || $index;
30347
30464
  function GoalObjectivesModalContentComponent_For_2_Conditional_10_Template(rf, ctx) { if (rf & 1) {
30348
30465
  i0.ɵɵelementStart(0, "p", 9);
30349
30466
  i0.ɵɵtext(1);
@@ -30601,7 +30718,7 @@ class GoalObjectivesModalContentComponent {
30601
30718
  static { this.ɵfac = function GoalObjectivesModalContentComponent_Factory(__ngFactoryType__) { return new (__ngFactoryType__ || GoalObjectivesModalContentComponent)(); }; }
30602
30719
  static { this.ɵcmp = /*@__PURE__*/ i0.ɵɵdefineComponent({ type: GoalObjectivesModalContentComponent, selectors: [["symphiq-goal-objectives-modal-content"]], inputs: { objectives: [1, "objectives"], goalTitle: [1, "goalTitle"], viewMode: [1, "viewMode"] }, decls: 3, vars: 0, consts: [[1, "space-y-6"], [1, "rounded-lg", "p-5", "transition-all", "duration-200", 3, "ngClass"], [1, "flex", "items-start", "gap-3"], [3, "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", "M9 5H7a2 2 0 00-2 2v12a2 2 0 002 2h10a2 2 0 002-2V7a2 2 0 00-2-2h-2M9 5a2 2 0 002 2h2a2 2 0 002-2M9 5a2 2 0 012-2h2a2 2 0 012 2m-6 9l2 2 4-4"], [1, "flex-1", "min-w-0"], [1, "text-xs", "font-semibold", "uppercase", "tracking-wider", "mb-1", 3, "ngClass"], [1, "font-semibold", "text-base", "mb-2", 3, "ngClass"], [1, "text-sm", "mb-3", 3, "ngClass"], [1, "p-3", "rounded-lg", "mb-3", 3, "ngClass"], [1, "grid", "grid-cols-2", "gap-3", "mb-3"], [1, "w-full", "px-5", "py-4", "rounded-lg", "border-2", "transition-all", "duration-200", "hover:scale-[1.01]", "active:scale-[0.99]", "cursor-pointer", "group", 3, "ngClass"], [1, "flex", "items-start", "gap-2"], ["fill", "none", "stroke", "currentColor", "viewBox", "0 0 24 24", 1, "w-4", "h-4", "flex-shrink-0", "mt-0.5", 3, "ngClass"], ["stroke-linecap", "round", "stroke-linejoin", "round", "stroke-width", "2", "d", "M9 19v-6a2 2 0 00-2-2H5a2 2 0 00-2 2v6a2 2 0 002 2h2a2 2 0 002-2zm0 0V9a2 2 0 012-2h2a2 2 0 012 2v10m-6 0a2 2 0 002 2h2a2 2 0 002-2m0 0V5a2 2 0 012-2h2a2 2 0 012 2v14a2 2 0 01-2 2h-2a2 2 0 01-2-2z"], [1, "flex-1"], [1, "text-xs", "font-medium", "mb-1", 3, "ngClass"], [1, "text-sm", "font-semibold", 3, "ngClass"], [1, "p-3", "rounded-lg", 3, "ngClass"], [1, "text-sm", 3, "ngClass"], [1, "w-full", "px-5", "py-4", "rounded-lg", "border-2", "transition-all", "duration-200", "hover:scale-[1.01]", "active:scale-[0.99]", "cursor-pointer", "group", 3, "click", "ngClass"], [1, "flex", "items-center", "justify-between"], [1, "flex", "items-center", "gap-3"], [1, "w-10", "h-10", "rounded-lg", "flex", "items-center", "justify-center", 3, "ngClass"], ["fill", "none", "stroke", "currentColor", "viewBox", "0 0 24 24", 1, "w-5", "h-5", 3, "ngClass"], ["stroke-linecap", "round", "stroke-linejoin", "round", "stroke-width", "2", "d", "M13 10V3L4 14h7v7l9-11h-7z"], [1, "text-left"], [1, "text-xs", 3, "ngClass"], ["fill", "none", "stroke", "currentColor", "viewBox", "0 0 24 24", 1, "w-5", "h-5", "transition-transform", "group-hover:translate-x-1", 3, "ngClass"], ["stroke-linecap", "round", "stroke-linejoin", "round", "stroke-width", "2", "d", "M9 5l7 7-7 7"]], template: function GoalObjectivesModalContentComponent_Template(rf, ctx) { if (rf & 1) {
30603
30720
  i0.ɵɵelementStart(0, "div", 0);
30604
- i0.ɵɵrepeaterCreate(1, GoalObjectivesModalContentComponent_For_2_Template, 14, 9, "div", 1, _forTrack0$_);
30721
+ i0.ɵɵrepeaterCreate(1, GoalObjectivesModalContentComponent_For_2_Template, 14, 9, "div", 1, _forTrack0$10);
30605
30722
  i0.ɵɵelementEnd();
30606
30723
  } if (rf & 2) {
30607
30724
  i0.ɵɵadvance();
@@ -31164,7 +31281,7 @@ const _c0$1a = a0 => ({ name: "check-badge", source: a0 });
31164
31281
  const _c1$F = a0 => ({ name: "check-circle", source: a0 });
31165
31282
  const _c2$q = a0 => ({ name: "chevron-right", source: a0 });
31166
31283
  const _c3$j = a0 => ({ name: "chart-bar", source: a0 });
31167
- const _forTrack0$Z = ($index, $item) => $item.capability;
31284
+ const _forTrack0$$ = ($index, $item) => $item.capability;
31168
31285
  function FocusAreaStrengthsListModalContentComponent_Conditional_1_Template(rf, ctx) { if (rf & 1) {
31169
31286
  i0.ɵɵelementStart(0, "div", 1);
31170
31287
  i0.ɵɵelement(1, "symphiq-icon", 3);
@@ -31279,7 +31396,7 @@ function FocusAreaStrengthsListModalContentComponent_Conditional_2_For_2_Templat
31279
31396
  } }
31280
31397
  function FocusAreaStrengthsListModalContentComponent_Conditional_2_Template(rf, ctx) { if (rf & 1) {
31281
31398
  i0.ɵɵelementStart(0, "div", 2);
31282
- i0.ɵɵrepeaterCreate(1, FocusAreaStrengthsListModalContentComponent_Conditional_2_For_2_Template, 16, 18, "button", 6, _forTrack0$Z);
31399
+ i0.ɵɵrepeaterCreate(1, FocusAreaStrengthsListModalContentComponent_Conditional_2_For_2_Template, 16, 18, "button", 6, _forTrack0$$);
31283
31400
  i0.ɵɵelementEnd();
31284
31401
  } if (rf & 2) {
31285
31402
  const ctx_r0 = i0.ɵɵnextContext();
@@ -31486,7 +31603,7 @@ class FocusAreaStrengthsListModalContentComponent {
31486
31603
  const _c0$19 = a0 => ({ name: "exclamation-triangle", source: a0 });
31487
31604
  const _c1$E = a0 => ({ name: "exclamation-circle", source: a0 });
31488
31605
  const _c2$p = a0 => ({ name: "chevron-right", source: a0 });
31489
- function _forTrack0$Y($index, $item) { return this.getGapTitle($item); }
31606
+ function _forTrack0$_($index, $item) { return this.getGapTitle($item); }
31490
31607
  function FocusAreaGapsListModalContentComponent_Conditional_1_Template(rf, ctx) { if (rf & 1) {
31491
31608
  i0.ɵɵelementStart(0, "div", 1);
31492
31609
  i0.ɵɵelement(1, "symphiq-icon", 3);
@@ -31603,7 +31720,7 @@ function FocusAreaGapsListModalContentComponent_Conditional_2_For_2_Template(rf,
31603
31720
  } }
31604
31721
  function FocusAreaGapsListModalContentComponent_Conditional_2_Template(rf, ctx) { if (rf & 1) {
31605
31722
  i0.ɵɵelementStart(0, "div", 2);
31606
- i0.ɵɵrepeaterCreate(1, FocusAreaGapsListModalContentComponent_Conditional_2_For_2_Template, 15, 18, "button", 6, _forTrack0$Y, true);
31723
+ i0.ɵɵrepeaterCreate(1, FocusAreaGapsListModalContentComponent_Conditional_2_For_2_Template, 15, 18, "button", 6, _forTrack0$_, true);
31607
31724
  i0.ɵɵelementEnd();
31608
31725
  } if (rf & 2) {
31609
31726
  const ctx_r0 = i0.ɵɵnextContext();
@@ -31880,7 +31997,7 @@ class FocusAreaGapsListModalContentComponent {
31880
31997
  const _c0$18 = a0 => ({ name: "light-bulb", source: a0 });
31881
31998
  const _c1$D = a0 => ({ name: "chevron-right", source: a0 });
31882
31999
  const _c2$o = a0 => ({ name: "chart-bar", source: a0 });
31883
- const _forTrack0$X = ($index, $item) => $item.opportunity;
32000
+ const _forTrack0$Z = ($index, $item) => $item.opportunity;
31884
32001
  function FocusAreaOpportunitiesListModalContentComponent_Conditional_1_Template(rf, ctx) { if (rf & 1) {
31885
32002
  i0.ɵɵelementStart(0, "div", 1);
31886
32003
  i0.ɵɵelement(1, "symphiq-icon", 3);
@@ -31971,7 +32088,7 @@ function FocusAreaOpportunitiesListModalContentComponent_Conditional_2_For_2_Tem
31971
32088
  } }
31972
32089
  function FocusAreaOpportunitiesListModalContentComponent_Conditional_2_Template(rf, ctx) { if (rf & 1) {
31973
32090
  i0.ɵɵelementStart(0, "div", 2);
31974
- i0.ɵɵrepeaterCreate(1, FocusAreaOpportunitiesListModalContentComponent_Conditional_2_For_2_Template, 11, 11, "button", 6, _forTrack0$X);
32091
+ i0.ɵɵrepeaterCreate(1, FocusAreaOpportunitiesListModalContentComponent_Conditional_2_For_2_Template, 11, 11, "button", 6, _forTrack0$Z);
31975
32092
  i0.ɵɵelementEnd();
31976
32093
  } if (rf & 2) {
31977
32094
  const ctx_r0 = i0.ɵɵnextContext();
@@ -32148,7 +32265,7 @@ class FocusAreaOpportunitiesListModalContentComponent {
32148
32265
 
32149
32266
  const _c0$17 = a0 => ({ name: "chevron-right", source: a0 });
32150
32267
  const _c1$C = a0 => ({ name: "chat-bubble-left-right", source: a0 });
32151
- const _forTrack0$W = ($index, $item) => $item.performanceItemId;
32268
+ const _forTrack0$Y = ($index, $item) => $item.performanceItemId;
32152
32269
  function FocusAreaStrengthDetailModalContentComponent_Conditional_1_Template(rf, ctx) { if (rf & 1) {
32153
32270
  i0.ɵɵelementStart(0, "div")(1, "p", 2);
32154
32271
  i0.ɵɵtext(2);
@@ -32218,7 +32335,7 @@ function FocusAreaStrengthDetailModalContentComponent_Conditional_4_Template(rf,
32218
32335
  i0.ɵɵtext(2);
32219
32336
  i0.ɵɵelementEnd();
32220
32337
  i0.ɵɵelementStart(3, "div", 9);
32221
- i0.ɵɵrepeaterCreate(4, FocusAreaStrengthDetailModalContentComponent_Conditional_4_For_5_Template, 4, 5, "button", 10, _forTrack0$W);
32338
+ i0.ɵɵrepeaterCreate(4, FocusAreaStrengthDetailModalContentComponent_Conditional_4_For_5_Template, 4, 5, "button", 10, _forTrack0$Y);
32222
32339
  i0.ɵɵelementEnd()();
32223
32340
  } if (rf & 2) {
32224
32341
  const ctx_r0 = i0.ɵɵnextContext();
@@ -32867,7 +32984,7 @@ class FocusAreaGapDetailModalContentComponent {
32867
32984
 
32868
32985
  const _c0$15 = a0 => ({ name: "chevron-right", source: a0 });
32869
32986
  const _c1$B = () => [];
32870
- const _forTrack0$V = ($index, $item) => $item.performanceItemId;
32987
+ const _forTrack0$X = ($index, $item) => $item.performanceItemId;
32871
32988
  function FocusAreaOpportunityDetailModalContentComponent_Conditional_1_Template(rf, ctx) { if (rf & 1) {
32872
32989
  i0.ɵɵelementStart(0, "div")(1, "p", 2);
32873
32990
  i0.ɵɵtext(2);
@@ -32919,7 +33036,7 @@ function FocusAreaOpportunityDetailModalContentComponent_Conditional_3_Template(
32919
33036
  i0.ɵɵtext(2);
32920
33037
  i0.ɵɵelementEnd();
32921
33038
  i0.ɵɵelementStart(3, "div", 6);
32922
- i0.ɵɵrepeaterCreate(4, FocusAreaOpportunityDetailModalContentComponent_Conditional_3_For_5_Template, 4, 5, "button", 7, _forTrack0$V);
33039
+ i0.ɵɵrepeaterCreate(4, FocusAreaOpportunityDetailModalContentComponent_Conditional_3_For_5_Template, 4, 5, "button", 7, _forTrack0$X);
32923
33040
  i0.ɵɵelementEnd()();
32924
33041
  } if (rf & 2) {
32925
33042
  const ctx_r0 = i0.ɵɵnextContext();
@@ -38052,7 +38169,7 @@ const _c4$9 = a0 => ({ name: "academic-cap", source: a0 });
38052
38169
  const _c5$6 = a0 => ({ name: "information-circle", source: a0 });
38053
38170
  const _c6$2 = a0 => ({ name: "signal", source: a0 });
38054
38171
  const _c7$1 = a0 => ({ name: "wrench-screwdriver", source: a0 });
38055
- const _forTrack0$U = ($index, $item) => $item.name;
38172
+ const _forTrack0$W = ($index, $item) => $item.name;
38056
38173
  function ProductCategoryCardComponent_Conditional_9_Template(rf, ctx) { if (rf & 1) {
38057
38174
  i0.ɵɵelementStart(0, "p", 8);
38058
38175
  i0.ɵɵtext(1);
@@ -38183,7 +38300,7 @@ function ProductCategoryCardComponent_Conditional_16_Template(rf, ctx) { if (rf
38183
38300
  i0.ɵɵelementStart(6, "symphiq-visualization-container", 21);
38184
38301
  i0.ɵɵlistener("visualizationClick", function ProductCategoryCardComponent_Conditional_16_Template_symphiq_visualization_container_visualizationClick_6_listener($event) { i0.ɵɵrestoreView(_r4); const ctx_r0 = i0.ɵɵnextContext(); return i0.ɵɵresetView(ctx_r0.openHorizontalBarModal($event)); });
38185
38302
  i0.ɵɵelementStart(7, "div", 22);
38186
- i0.ɵɵrepeaterCreate(8, ProductCategoryCardComponent_Conditional_16_For_9_Template, 2, 5, "div", 23, _forTrack0$U);
38303
+ i0.ɵɵrepeaterCreate(8, ProductCategoryCardComponent_Conditional_16_For_9_Template, 2, 5, "div", 23, _forTrack0$W);
38187
38304
  i0.ɵɵelementEnd()()()();
38188
38305
  } if (rf & 2) {
38189
38306
  const ctx_r0 = i0.ɵɵnextContext();
@@ -43169,7 +43286,7 @@ const ProfileAnalysisModalComponent_Conditional_0_Conditional_30_Conditional_6_D
43169
43286
  const _c3$b = a0 => ({ name: "arrow-left", source: a0 });
43170
43287
  const _c4$7 = a0 => ({ name: "chevron-right", source: a0 });
43171
43288
  const _c5$4 = () => [];
43172
- const _forTrack0$T = ($index, $item) => $item.performanceItemId || $index;
43289
+ const _forTrack0$V = ($index, $item) => $item.performanceItemId || $index;
43173
43290
  const _forTrack1$a = ($index, $item) => $item.id || $index;
43174
43291
  const _forTrack2$2 = ($index, $item) => $item.metric || $index;
43175
43292
  function ProfileAnalysisModalComponent_Conditional_0_Conditional_7_For_5_Conditional_0_Conditional_0_Template(rf, ctx) { if (rf & 1) {
@@ -43402,7 +43519,7 @@ function ProfileAnalysisModalComponent_Conditional_0_Conditional_20_For_3_Templa
43402
43519
  function ProfileAnalysisModalComponent_Conditional_0_Conditional_20_Template(rf, ctx) { if (rf & 1) {
43403
43520
  i0.ɵɵelementStart(0, "div", 20);
43404
43521
  i0.ɵɵconditionalCreate(1, ProfileAnalysisModalComponent_Conditional_0_Conditional_20_Conditional_1_Template, 2, 2, "p", 53);
43405
- i0.ɵɵrepeaterCreate(2, ProfileAnalysisModalComponent_Conditional_0_Conditional_20_For_3_Template, 13, 10, "div", 54, _forTrack0$T);
43522
+ i0.ɵɵrepeaterCreate(2, ProfileAnalysisModalComponent_Conditional_0_Conditional_20_For_3_Template, 13, 10, "div", 54, _forTrack0$V);
43406
43523
  i0.ɵɵelementEnd();
43407
43524
  } if (rf & 2) {
43408
43525
  const data_r12 = ctx;
@@ -43482,7 +43599,7 @@ function ProfileAnalysisModalComponent_Conditional_0_Conditional_21_For_3_Templa
43482
43599
  function ProfileAnalysisModalComponent_Conditional_0_Conditional_21_Template(rf, ctx) { if (rf & 1) {
43483
43600
  i0.ɵɵelementStart(0, "div", 20);
43484
43601
  i0.ɵɵconditionalCreate(1, ProfileAnalysisModalComponent_Conditional_0_Conditional_21_Conditional_1_Template, 2, 2, "p", 53);
43485
- i0.ɵɵrepeaterCreate(2, ProfileAnalysisModalComponent_Conditional_0_Conditional_21_For_3_Template, 13, 10, "div", 54, _forTrack0$T);
43602
+ i0.ɵɵrepeaterCreate(2, ProfileAnalysisModalComponent_Conditional_0_Conditional_21_For_3_Template, 13, 10, "div", 54, _forTrack0$V);
43486
43603
  i0.ɵɵelementEnd();
43487
43604
  } if (rf & 2) {
43488
43605
  const data_r15 = ctx;
@@ -43667,7 +43784,7 @@ function ProfileAnalysisModalComponent_Conditional_0_Conditional_26_Conditional_
43667
43784
  i0.ɵɵproperty("metric", metric_r39)("isLightMode", ctx_r1.isLightMode())("animationKey", $index_r40);
43668
43785
  } }
43669
43786
  function ProfileAnalysisModalComponent_Conditional_0_Conditional_26_Conditional_2_Template(rf, ctx) { if (rf & 1) {
43670
- i0.ɵɵrepeaterCreate(0, ProfileAnalysisModalComponent_Conditional_0_Conditional_26_Conditional_2_For_1_Template, 2, 3, "div", null, _forTrack0$T);
43787
+ i0.ɵɵrepeaterCreate(0, ProfileAnalysisModalComponent_Conditional_0_Conditional_26_Conditional_2_For_1_Template, 2, 3, "div", null, _forTrack0$V);
43671
43788
  } if (rf & 2) {
43672
43789
  const data_r33 = i0.ɵɵnextContext();
43673
43790
  i0.ɵɵrepeater(data_r33.metrics);
@@ -44710,7 +44827,7 @@ class ProfileAnalysisModalComponent {
44710
44827
  'critical-gaps-list', 'key-strength-detail', 'critical-gap-detail', 'top-priorities-list',
44711
44828
  'top-priority-detail', 'focus-area-strengths-list', 'focus-area-gaps-list',
44712
44829
  'focus-area-opportunities-list', 'focus-area-strength-detail', 'focus-area-gap-detail',
44713
- 'focus-area-opportunity-detail', 'metrics-list', 'metric', 'item-detail', null
44830
+ 'focus-area-opportunity-detail', 'metrics-list', 'metric', 'insight', 'item-detail', null
44714
44831
  ];
44715
44832
  // Only update previousState if this modal handles the type
44716
44833
  // This prevents z-index conflicts when other modals open on top
@@ -44718,13 +44835,20 @@ class ProfileAnalysisModalComponent {
44718
44835
  this.previousState.set(state.previousState || null);
44719
44836
  }
44720
44837
  // Check if this modal was opened with profile context (from Profile Analysis dashboard)
44838
+ const profileContextTypes = [
44839
+ 'focus-area-strengths-list', 'focus-area-strength-detail',
44840
+ 'focus-area-gaps-list', 'focus-area-gap-detail',
44841
+ 'focus-area-opportunities-list', 'focus-area-opportunity-detail',
44842
+ 'top-priorities-list', 'top-priority-detail',
44843
+ 'key-strengths-list', 'key-strength-detail',
44844
+ 'critical-gaps-list', 'critical-gap-detail',
44845
+ 'recommendation-insights-list', 'goal-insights-list',
44846
+ 'strategy-recommendations', 'objective-strategies', 'goal-objectives', 'goal-detail',
44847
+ 'recommendation-business-insights-list', 'goal-business-insights-list'
44848
+ ];
44721
44849
  const hasProfileContext = state.previousState &&
44722
- ['focus-area-strengths-list', 'focus-area-strength-detail',
44723
- 'focus-area-gaps-list', 'focus-area-gap-detail',
44724
- 'focus-area-opportunities-list', 'focus-area-opportunity-detail',
44725
- 'top-priorities-list', 'top-priority-detail',
44726
- 'key-strengths-list', 'key-strength-detail',
44727
- 'critical-gaps-list', 'critical-gap-detail'].includes(state.previousState.type || '');
44850
+ profileContextTypes.includes(state.previousState.type || '') ||
44851
+ state.navigationStack?.some(s => profileContextTypes.includes(s.type || ''));
44728
44852
  // Delegate funnel-related types to Funnel Analysis Modal ONLY if no profile context
44729
44853
  // Note: 'metric' is NOT delegated - it should be handled by ProfileAnalysisModalComponent
44730
44854
  const funnelTypes = ['insight', 'chart', 'charts-list', 'funnel-strengths-list', 'funnel-weaknesses-list', 'funnel-strength-detail', 'funnel-weakness-detail'];
@@ -44776,10 +44900,11 @@ class ProfileAnalysisModalComponent {
44776
44900
  this.modalData.set(data);
44777
44901
  this.modalTitle.set(data.goal.title || 'Goal');
44778
44902
  this.modalType.set('goal-detail');
44779
- const isFromUnifiedModal = state.previousState?.type?.startsWith('unified-goal-');
44780
- this.openModalFresh(isFromUnifiedModal);
44903
+ const unifiedFlowTypes = ['unified-goal-detail', 'unified-goal-objectives', 'unified-goal-related-metrics', 'objective-strategies', 'strategy-recommendations', 'priority-actions-list'];
44904
+ const isFromUnifiedModal = state.previousState?.type && unifiedFlowTypes.includes(state.previousState.type) ||
44905
+ state.navigationStack?.some(s => s.type && unifiedFlowTypes.includes(s.type));
44906
+ this.openModalFresh(!!isFromUnifiedModal);
44781
44907
  const stack = state.navigationStack || [];
44782
- console.log('[ProfileAnalysisModal] goal-detail opened, navigationStack:', stack.length, 'items', stack.map(s => s.type));
44783
44908
  this.navigationStack.set(stack);
44784
44909
  }
44785
44910
  else if (state.type === 'goal-objectives' && state.data) {
@@ -45052,6 +45177,16 @@ class ProfileAnalysisModalComponent {
45052
45177
  this.navigationStack.set(stack);
45053
45178
  this.currentCharts.set([]);
45054
45179
  }
45180
+ else if (state.type === 'insight' && state.data) {
45181
+ const insight = state.data;
45182
+ this.modalData.set(insight);
45183
+ this.modalTitle.set(insight.title || 'Insight Details');
45184
+ this.modalType.set('insight');
45185
+ this.openModalFresh();
45186
+ const stack = state.navigationStack || [];
45187
+ this.navigationStack.set(stack);
45188
+ this.currentCharts.set(state.charts || []);
45189
+ }
45055
45190
  else if (state.type === null) {
45056
45191
  this.isOpen.set(false);
45057
45192
  setTimeout(() => {
@@ -45506,8 +45641,11 @@ class ProfileAnalysisModalComponent {
45506
45641
  openModalFresh(skipAnimation = false) {
45507
45642
  if (!this.isOpen()) {
45508
45643
  if (skipAnimation) {
45509
- this.moveModalToBody();
45510
- this.modalReady.set(true);
45644
+ this.modalReady.set(false);
45645
+ setTimeout(() => {
45646
+ this.moveModalToBody();
45647
+ this.modalReady.set(true);
45648
+ }, 0);
45511
45649
  }
45512
45650
  else {
45513
45651
  this.isFreshOpen.set(true);
@@ -46469,7 +46607,7 @@ const _c0$R = a0 => ({ name: "list-bullet", source: a0 });
46469
46607
  const _c1$o = a0 => ({ name: "arrow-right", source: a0 });
46470
46608
  const _c2$e = a0 => ({ name: "check-circle", source: a0 });
46471
46609
  const _c3$9 = a0 => ({ name: "exclamation-circle", source: a0 });
46472
- const _forTrack0$S = ($index, $item) => $item.order;
46610
+ const _forTrack0$U = ($index, $item) => $item.order;
46473
46611
  function RecommendationActionStepsModalComponent_Conditional_1_Template(rf, ctx) { if (rf & 1) {
46474
46612
  i0.ɵɵelementStart(0, "div", 1)(1, "div", 5);
46475
46613
  i0.ɵɵelement(2, "symphiq-icon", 6);
@@ -46623,7 +46761,7 @@ class RecommendationActionStepsModalComponent {
46623
46761
  i0.ɵɵelementStart(0, "div", 0);
46624
46762
  i0.ɵɵconditionalCreate(1, RecommendationActionStepsModalComponent_Conditional_1_Template, 8, 7, "div", 1);
46625
46763
  i0.ɵɵelementStart(2, "div", 2);
46626
- i0.ɵɵrepeaterCreate(3, RecommendationActionStepsModalComponent_For_4_Template, 13, 11, "div", 3, _forTrack0$S);
46764
+ i0.ɵɵrepeaterCreate(3, RecommendationActionStepsModalComponent_For_4_Template, 13, 11, "div", 3, _forTrack0$U);
46627
46765
  i0.ɵɵelementEnd();
46628
46766
  i0.ɵɵconditionalCreate(5, RecommendationActionStepsModalComponent_Conditional_5_Template, 4, 5, "div", 4);
46629
46767
  i0.ɵɵelementEnd();
@@ -48743,7 +48881,7 @@ const _c2$d = () => [1, 2, 3, 4, 5, 6];
48743
48881
  const _c3$8 = () => [1, 2, 3];
48744
48882
  const _c4$5 = () => [1, 2, 3, 4];
48745
48883
  const _c5$2 = () => [1, 2];
48746
- const _forTrack0$R = ($index, $item) => $item.value;
48884
+ const _forTrack0$T = ($index, $item) => $item.value;
48747
48885
  function SymphiqFunnelAnalysisDashboardComponent_Conditional_6_For_6_Template(rf, ctx) { if (rf & 1) {
48748
48886
  i0.ɵɵelementStart(0, "option", 25);
48749
48887
  i0.ɵɵtext(1);
@@ -48763,7 +48901,7 @@ function SymphiqFunnelAnalysisDashboardComponent_Conditional_6_Template(rf, ctx)
48763
48901
  i0.ɵɵlistener("click", function SymphiqFunnelAnalysisDashboardComponent_Conditional_6_Template_div_click_3_listener($event) { i0.ɵɵrestoreView(_r2); return i0.ɵɵresetView($event.stopPropagation()); })("mousedown", function SymphiqFunnelAnalysisDashboardComponent_Conditional_6_Template_div_mousedown_3_listener($event) { i0.ɵɵrestoreView(_r2); return i0.ɵɵresetView($event.stopPropagation()); })("pointerdown", function SymphiqFunnelAnalysisDashboardComponent_Conditional_6_Template_div_pointerdown_3_listener($event) { i0.ɵɵrestoreView(_r2); return i0.ɵɵresetView($event.stopPropagation()); });
48764
48902
  i0.ɵɵelementStart(4, "select", 24);
48765
48903
  i0.ɵɵlistener("ngModelChange", function SymphiqFunnelAnalysisDashboardComponent_Conditional_6_Template_select_ngModelChange_4_listener($event) { i0.ɵɵrestoreView(_r2); const ctx_r2 = i0.ɵɵnextContext(); return i0.ɵɵresetView(ctx_r2.changeSectionFilter($event)); });
48766
- i0.ɵɵrepeaterCreate(5, SymphiqFunnelAnalysisDashboardComponent_Conditional_6_For_6_Template, 2, 2, "option", 25, _forTrack0$R);
48904
+ i0.ɵɵrepeaterCreate(5, SymphiqFunnelAnalysisDashboardComponent_Conditional_6_For_6_Template, 2, 2, "option", 25, _forTrack0$T);
48767
48905
  i0.ɵɵelementEnd()()();
48768
48906
  } if (rf & 2) {
48769
48907
  const ctx_r2 = i0.ɵɵnextContext();
@@ -48815,7 +48953,7 @@ function SymphiqFunnelAnalysisDashboardComponent_Conditional_10_Template(rf, ctx
48815
48953
  i0.ɵɵlistener("click", function SymphiqFunnelAnalysisDashboardComponent_Conditional_10_Template_div_click_0_listener($event) { i0.ɵɵrestoreView(_r5); return i0.ɵɵresetView($event.stopPropagation()); })("mousedown", function SymphiqFunnelAnalysisDashboardComponent_Conditional_10_Template_div_mousedown_0_listener($event) { i0.ɵɵrestoreView(_r5); return i0.ɵɵresetView($event.stopPropagation()); })("pointerdown", function SymphiqFunnelAnalysisDashboardComponent_Conditional_10_Template_div_pointerdown_0_listener($event) { i0.ɵɵrestoreView(_r5); return i0.ɵɵresetView($event.stopPropagation()); });
48816
48954
  i0.ɵɵelementStart(1, "select", 29);
48817
48955
  i0.ɵɵlistener("ngModelChange", function SymphiqFunnelAnalysisDashboardComponent_Conditional_10_Template_select_ngModelChange_1_listener($event) { i0.ɵɵrestoreView(_r5); const ctx_r2 = i0.ɵɵnextContext(); return i0.ɵɵresetView(ctx_r2.changeSectionFilter($event)); });
48818
- i0.ɵɵrepeaterCreate(2, SymphiqFunnelAnalysisDashboardComponent_Conditional_10_For_3_Template, 2, 2, "option", 25, _forTrack0$R);
48956
+ i0.ɵɵrepeaterCreate(2, SymphiqFunnelAnalysisDashboardComponent_Conditional_10_For_3_Template, 2, 2, "option", 25, _forTrack0$T);
48819
48957
  i0.ɵɵelementEnd()();
48820
48958
  } if (rf & 2) {
48821
48959
  const ctx_r2 = i0.ɵɵnextContext();
@@ -49609,7 +49747,7 @@ function SymphiqFunnelAnalysisDashboardComponent_Conditional_17_Conditional_4_Te
49609
49747
  i0.ɵɵconditionalCreate(14, SymphiqFunnelAnalysisDashboardComponent_Conditional_17_Conditional_4_Conditional_14_Template, 2, 0, "div", 107);
49610
49748
  i0.ɵɵelementStart(15, "select", 108);
49611
49749
  i0.ɵɵlistener("ngModelChange", function SymphiqFunnelAnalysisDashboardComponent_Conditional_17_Conditional_4_Template_select_ngModelChange_15_listener($event) { i0.ɵɵrestoreView(_r26); const ctx_r2 = i0.ɵɵnextContext(2); return i0.ɵɵresetView(ctx_r2.changeCategoryFilter($event)); });
49612
- i0.ɵɵrepeaterCreate(16, SymphiqFunnelAnalysisDashboardComponent_Conditional_17_Conditional_4_For_17_Template, 2, 1, null, null, _forTrack0$R);
49750
+ i0.ɵɵrepeaterCreate(16, SymphiqFunnelAnalysisDashboardComponent_Conditional_17_Conditional_4_For_17_Template, 2, 1, null, null, _forTrack0$T);
49613
49751
  i0.ɵɵelementEnd();
49614
49752
  i0.ɵɵelementStart(18, "button", 109);
49615
49753
  i0.ɵɵlistener("click", function SymphiqFunnelAnalysisDashboardComponent_Conditional_17_Conditional_4_Template_button_click_18_listener() { i0.ɵɵrestoreView(_r26); const ctx_r2 = i0.ɵɵnextContext(2); return i0.ɵɵresetView(ctx_r2.toggleSortOrder()); });
@@ -49623,7 +49761,7 @@ function SymphiqFunnelAnalysisDashboardComponent_Conditional_17_Conditional_4_Te
49623
49761
  i0.ɵɵtext(23, "Sort");
49624
49762
  i0.ɵɵelementEnd()()()();
49625
49763
  i0.ɵɵelementStart(24, "div", 113)(25, "div", 114);
49626
- i0.ɵɵrepeaterCreate(26, SymphiqFunnelAnalysisDashboardComponent_Conditional_17_Conditional_4_For_27_Template, 1, 1, null, null, _forTrack0$R);
49764
+ i0.ɵɵrepeaterCreate(26, SymphiqFunnelAnalysisDashboardComponent_Conditional_17_Conditional_4_For_27_Template, 1, 1, null, null, _forTrack0$T);
49627
49765
  i0.ɵɵelementEnd()()();
49628
49766
  i0.ɵɵconditionalCreate(28, SymphiqFunnelAnalysisDashboardComponent_Conditional_17_Conditional_4_Conditional_28_Template, 3, 1, "div", 115)(29, SymphiqFunnelAnalysisDashboardComponent_Conditional_17_Conditional_4_Conditional_29_Template, 4, 5, "div", 116);
49629
49767
  i0.ɵɵelementEnd()();
@@ -49800,7 +49938,7 @@ function SymphiqFunnelAnalysisDashboardComponent_Conditional_17_Conditional_5_Te
49800
49938
  i0.ɵɵconditionalCreate(12, SymphiqFunnelAnalysisDashboardComponent_Conditional_17_Conditional_5_Conditional_12_Template, 2, 0, "div", 107);
49801
49939
  i0.ɵɵelementStart(13, "select", 150);
49802
49940
  i0.ɵɵlistener("ngModelChange", function SymphiqFunnelAnalysisDashboardComponent_Conditional_17_Conditional_5_Template_select_ngModelChange_13_listener($event) { i0.ɵɵrestoreView(_r36); const ctx_r2 = i0.ɵɵnextContext(2); return i0.ɵɵresetView(ctx_r2.changeBreakdownFilter($event)); });
49803
- i0.ɵɵrepeaterCreate(14, SymphiqFunnelAnalysisDashboardComponent_Conditional_17_Conditional_5_For_15_Template, 2, 1, null, null, _forTrack0$R);
49941
+ i0.ɵɵrepeaterCreate(14, SymphiqFunnelAnalysisDashboardComponent_Conditional_17_Conditional_5_For_15_Template, 2, 1, null, null, _forTrack0$T);
49804
49942
  i0.ɵɵelementEnd()()();
49805
49943
  i0.ɵɵconditionalCreate(16, SymphiqFunnelAnalysisDashboardComponent_Conditional_17_Conditional_5_Conditional_16_Template, 3, 1, "div", 80)(17, SymphiqFunnelAnalysisDashboardComponent_Conditional_17_Conditional_5_Conditional_17_Template, 4, 5, "div", 151);
49806
49944
  i0.ɵɵelementEnd()();
@@ -49911,7 +50049,7 @@ function SymphiqFunnelAnalysisDashboardComponent_Conditional_17_Conditional_6_Te
49911
50049
  i0.ɵɵconditionalCreate(13, SymphiqFunnelAnalysisDashboardComponent_Conditional_17_Conditional_6_Conditional_13_Template, 2, 0, "div", 107);
49912
50050
  i0.ɵɵelementStart(14, "select", 108);
49913
50051
  i0.ɵɵlistener("ngModelChange", function SymphiqFunnelAnalysisDashboardComponent_Conditional_17_Conditional_6_Template_select_ngModelChange_14_listener($event) { i0.ɵɵrestoreView(_r40); const ctx_r2 = i0.ɵɵnextContext(2); return i0.ɵɵresetView(ctx_r2.changeCompetitiveFilter($event)); });
49914
- i0.ɵɵrepeaterCreate(15, SymphiqFunnelAnalysisDashboardComponent_Conditional_17_Conditional_6_For_16_Template, 2, 1, null, null, _forTrack0$R);
50052
+ i0.ɵɵrepeaterCreate(15, SymphiqFunnelAnalysisDashboardComponent_Conditional_17_Conditional_6_For_16_Template, 2, 1, null, null, _forTrack0$T);
49915
50053
  i0.ɵɵelementEnd()()();
49916
50054
  i0.ɵɵconditionalCreate(17, SymphiqFunnelAnalysisDashboardComponent_Conditional_17_Conditional_6_Conditional_17_Template, 6, 5, "div", 80)(18, SymphiqFunnelAnalysisDashboardComponent_Conditional_17_Conditional_6_Conditional_18_Template, 1, 6, "symphiq-competitive-intelligence-view", 77);
49917
50055
  i0.ɵɵelementEnd()();
@@ -52433,7 +52571,7 @@ function getTrendClasses(trendPercent, viewMode) {
52433
52571
  }
52434
52572
  }
52435
52573
 
52436
- const _forTrack0$Q = ($index, $item) => $item.metric.performanceItemId;
52574
+ const _forTrack0$S = ($index, $item) => $item.metric.performanceItemId;
52437
52575
  function SymphiqFunnelAnalysisPreviewComponent_Conditional_12_Template(rf, ctx) { if (rf & 1) {
52438
52576
  i0.ɵɵelementStart(0, "div", 17)(1, "p", 18);
52439
52577
  i0.ɵɵtext(2);
@@ -53045,7 +53183,7 @@ class SymphiqFunnelAnalysisPreviewComponent {
53045
53183
  i0.ɵɵconditionalCreate(12, SymphiqFunnelAnalysisPreviewComponent_Conditional_12_Template, 3, 7, "div", 9);
53046
53184
  i0.ɵɵconditionalCreate(13, SymphiqFunnelAnalysisPreviewComponent_Conditional_13_Template, 18, 23, "div", 10);
53047
53185
  i0.ɵɵelementStart(14, "div", 11);
53048
- i0.ɵɵrepeaterCreate(15, SymphiqFunnelAnalysisPreviewComponent_For_16_Template, 10, 17, "div", 12, _forTrack0$Q);
53186
+ i0.ɵɵrepeaterCreate(15, SymphiqFunnelAnalysisPreviewComponent_For_16_Template, 10, 17, "div", 12, _forTrack0$S);
53049
53187
  i0.ɵɵelementEnd();
53050
53188
  i0.ɵɵconditionalCreate(17, SymphiqFunnelAnalysisPreviewComponent_Conditional_17_Template, 9, 11, "div", 9);
53051
53189
  i0.ɵɵconditionalCreate(18, SymphiqFunnelAnalysisPreviewComponent_Conditional_18_Template, 14, 19, "div", 9);
@@ -53288,7 +53426,7 @@ class SymphiqFunnelAnalysisPreviewComponent {
53288
53426
  }], () => [], { analysisInput: [{ type: i0.Input, args: [{ isSignal: true, alias: "funnelAnalysis", required: false }] }], viewMode: [{ type: i0.Input, args: [{ isSignal: true, alias: "viewMode", required: false }] }], scrollElement: [{ type: i0.Input, args: [{ isSignal: true, alias: "scrollElement", required: false }] }], onViewAnalysis: [{ type: i0.Output, args: ["onViewAnalysis"] }] }); })();
53289
53427
  (() => { (typeof ngDevMode === "undefined" || ngDevMode) && i0.ɵsetClassDebugInfo(SymphiqFunnelAnalysisPreviewComponent, { className: "SymphiqFunnelAnalysisPreviewComponent", filePath: "lib/components/funnel-analysis-preview/symphiq-funnel-analysis-preview.component.ts", lineNumber: 228 }); })();
53290
53428
 
53291
- const _forTrack0$P = ($index, $item) => $item.id;
53429
+ const _forTrack0$R = ($index, $item) => $item.id;
53292
53430
  function SymphiqWelcomeDashboardComponent_For_50_Template(rf, ctx) { if (rf & 1) {
53293
53431
  i0.ɵɵelementStart(0, "div", 27)(1, "div", 32)(2, "div", 33)(3, "span", 34);
53294
53432
  i0.ɵɵtext(4);
@@ -53517,7 +53655,7 @@ class SymphiqWelcomeDashboardComponent {
53517
53655
  i0.ɵɵtext(47, " Your Onboarding Journey ");
53518
53656
  i0.ɵɵelementEnd();
53519
53657
  i0.ɵɵelementStart(48, "div", 26);
53520
- i0.ɵɵrepeaterCreate(49, SymphiqWelcomeDashboardComponent_For_50_Template, 9, 3, "div", 27, _forTrack0$P);
53658
+ i0.ɵɵrepeaterCreate(49, SymphiqWelcomeDashboardComponent_For_50_Template, 9, 3, "div", 27, _forTrack0$R);
53521
53659
  i0.ɵɵelementEnd()()();
53522
53660
  i0.ɵɵelementStart(51, "div", 28);
53523
53661
  i0.ɵɵnamespaceSVG();
@@ -53701,7 +53839,7 @@ class SymphiqWelcomeDashboardComponent {
53701
53839
  }] }); })();
53702
53840
  (() => { (typeof ngDevMode === "undefined" || ngDevMode) && i0.ɵsetClassDebugInfo(SymphiqWelcomeDashboardComponent, { className: "SymphiqWelcomeDashboardComponent", filePath: "lib/components/welcome-dashboard/symphiq-welcome-dashboard.component.ts", lineNumber: 163 }); })();
53703
53841
 
53704
- const _forTrack0$O = ($index, $item) => $item.status;
53842
+ const _forTrack0$Q = ($index, $item) => $item.status;
53705
53843
  function FocusAreaQuestionComponent_Conditional_6_Template(rf, ctx) { if (rf & 1) {
53706
53844
  i0.ɵɵelementStart(0, "span", 5);
53707
53845
  i0.ɵɵtext(1, " Not answered yet ");
@@ -53914,7 +54052,7 @@ class FocusAreaQuestionComponent {
53914
54052
  i0.ɵɵtext(8);
53915
54053
  i0.ɵɵelementEnd()();
53916
54054
  i0.ɵɵelementStart(9, "div", 7);
53917
- i0.ɵɵrepeaterCreate(10, FocusAreaQuestionComponent_For_11_Template, 10, 8, "label", 8, _forTrack0$O);
54055
+ i0.ɵɵrepeaterCreate(10, FocusAreaQuestionComponent_For_11_Template, 10, 8, "label", 8, _forTrack0$Q);
53918
54056
  i0.ɵɵelementEnd();
53919
54057
  i0.ɵɵelementStart(12, "div", 9)(13, "div", 10)(14, "div", 11)(15, "label", 12);
53920
54058
  i0.ɵɵtext(16, " Marketing automation tools used ");
@@ -54049,7 +54187,7 @@ class FocusAreaQuestionComponent {
54049
54187
  }], null, { focusAreaDomain: [{ type: i0.Input, args: [{ isSignal: true, alias: "focusAreaDomain", required: true }] }], selectedStatus: [{ type: i0.Input, args: [{ isSignal: true, alias: "selectedStatus", required: false }] }], selectedTools: [{ type: i0.Input, args: [{ isSignal: true, alias: "selectedTools", required: false }] }], viewMode: [{ type: i0.Input, args: [{ isSignal: true, alias: "viewMode", required: false }] }], title: [{ type: i0.Input, args: [{ isSignal: true, alias: "title", required: true }] }], description: [{ type: i0.Input, args: [{ isSignal: true, alias: "description", required: true }] }], statusChange: [{ type: i0.Output, args: ["statusChange"] }], toolsClick: [{ type: i0.Output, args: ["toolsClick"] }] }); })();
54050
54188
  (() => { (typeof ngDevMode === "undefined" || ngDevMode) && i0.ɵsetClassDebugInfo(FocusAreaQuestionComponent, { className: "FocusAreaQuestionComponent", filePath: "lib/components/create-account-dashboard/focus-area-question.component.ts", lineNumber: 106 }); })();
54051
54189
 
54052
- const _forTrack0$N = ($index, $item) => $item.tool;
54190
+ const _forTrack0$P = ($index, $item) => $item.tool;
54053
54191
  function FocusAreaToolsModalComponent_Conditional_0_Conditional_10_For_5_Template(rf, ctx) { if (rf & 1) {
54054
54192
  const _r3 = i0.ɵɵgetCurrentView();
54055
54193
  i0.ɵɵelementStart(0, "label", 18)(1, "input", 19);
@@ -54073,7 +54211,7 @@ function FocusAreaToolsModalComponent_Conditional_0_Conditional_10_Template(rf,
54073
54211
  i0.ɵɵtext(2, " Select tools from the list: ");
54074
54212
  i0.ɵɵelementEnd();
54075
54213
  i0.ɵɵelementStart(3, "div", 17);
54076
- i0.ɵɵrepeaterCreate(4, FocusAreaToolsModalComponent_Conditional_0_Conditional_10_For_5_Template, 4, 4, "label", 18, _forTrack0$N);
54214
+ i0.ɵɵrepeaterCreate(4, FocusAreaToolsModalComponent_Conditional_0_Conditional_10_For_5_Template, 4, 4, "label", 18, _forTrack0$P);
54077
54215
  i0.ɵɵelementEnd()();
54078
54216
  } if (rf & 2) {
54079
54217
  const ctx_r1 = i0.ɵɵnextContext(2);
@@ -54367,7 +54505,7 @@ class FocusAreaToolsModalComponent {
54367
54505
  (() => { (typeof ngDevMode === "undefined" || ngDevMode) && i0.ɵsetClassDebugInfo(FocusAreaToolsModalComponent, { className: "FocusAreaToolsModalComponent", filePath: "lib/components/create-account-dashboard/focus-area-tools-modal.component.ts", lineNumber: 149 }); })();
54368
54506
 
54369
54507
  const _c0$N = ["shopNameInput"];
54370
- const _forTrack0$M = ($index, $item) => $item.focusArea.focusAreaDomain;
54508
+ const _forTrack0$O = ($index, $item) => $item.focusArea.focusAreaDomain;
54371
54509
  const _forTrack1$9 = ($index, $item) => $item.domain;
54372
54510
  function SymphiqCreateAccountDashboardComponent_Conditional_8_Template(rf, ctx) { if (rf & 1) {
54373
54511
  i0.ɵɵelementStart(0, "div", 8);
@@ -54704,7 +54842,7 @@ function SymphiqCreateAccountDashboardComponent_Conditional_9_Conditional_3_Cond
54704
54842
  i0.ɵɵtext(3);
54705
54843
  i0.ɵɵelementEnd();
54706
54844
  i0.ɵɵelementStart(4, "div", 52);
54707
- i0.ɵɵrepeaterCreate(5, SymphiqCreateAccountDashboardComponent_Conditional_9_Conditional_3_Conditional_12_For_6_Template, 7, 5, "div", 53, _forTrack0$M);
54845
+ i0.ɵɵrepeaterCreate(5, SymphiqCreateAccountDashboardComponent_Conditional_9_Conditional_3_Conditional_12_For_6_Template, 7, 5, "div", 53, _forTrack0$O);
54708
54846
  i0.ɵɵelementEnd()();
54709
54847
  } if (rf & 2) {
54710
54848
  const ctx_r0 = i0.ɵɵnextContext(3);
@@ -54734,7 +54872,7 @@ function SymphiqCreateAccountDashboardComponent_Conditional_9_Conditional_3_Cond
54734
54872
  i0.ɵɵtext(3);
54735
54873
  i0.ɵɵelementEnd();
54736
54874
  i0.ɵɵelementStart(4, "div", 62);
54737
- i0.ɵɵrepeaterCreate(5, SymphiqCreateAccountDashboardComponent_Conditional_9_Conditional_3_Conditional_13_For_6_Template, 3, 3, "div", 63, _forTrack0$M);
54875
+ i0.ɵɵrepeaterCreate(5, SymphiqCreateAccountDashboardComponent_Conditional_9_Conditional_3_Conditional_13_For_6_Template, 3, 3, "div", 63, _forTrack0$O);
54738
54876
  i0.ɵɵelementEnd()();
54739
54877
  } if (rf & 2) {
54740
54878
  const ctx_r0 = i0.ɵɵnextContext(3);
@@ -54764,7 +54902,7 @@ function SymphiqCreateAccountDashboardComponent_Conditional_9_Conditional_3_Cond
54764
54902
  i0.ɵɵtext(3);
54765
54903
  i0.ɵɵelementEnd();
54766
54904
  i0.ɵɵelementStart(4, "div", 65);
54767
- i0.ɵɵrepeaterCreate(5, SymphiqCreateAccountDashboardComponent_Conditional_9_Conditional_3_Conditional_14_For_6_Template, 3, 3, "div", 66, _forTrack0$M);
54905
+ i0.ɵɵrepeaterCreate(5, SymphiqCreateAccountDashboardComponent_Conditional_9_Conditional_3_Conditional_14_For_6_Template, 3, 3, "div", 66, _forTrack0$O);
54768
54906
  i0.ɵɵelementEnd()();
54769
54907
  } if (rf & 2) {
54770
54908
  const ctx_r0 = i0.ɵɵnextContext(3);
@@ -56355,7 +56493,7 @@ class ConnectGaWelcomeBannerComponent {
56355
56493
  }], null, { viewMode: [{ type: i0.Input, args: [{ isSignal: true, alias: "viewMode", required: false }] }], isOnboarded: [{ type: i0.Input, args: [{ isSignal: true, alias: "isOnboarded", required: false }] }] }); })();
56356
56494
  (() => { (typeof ngDevMode === "undefined" || ngDevMode) && i0.ɵsetClassDebugInfo(ConnectGaWelcomeBannerComponent, { className: "ConnectGaWelcomeBannerComponent", filePath: "lib/components/connect-ga-dashboard/connect-ga-welcome-banner.component.ts", lineNumber: 70 }); })();
56357
56495
 
56358
- const _forTrack0$L = ($index, $item) => $item.property.id;
56496
+ const _forTrack0$N = ($index, $item) => $item.property.id;
56359
56497
  function SymphiqConnectGaDashboardComponent_Conditional_8_Template(rf, ctx) { if (rf & 1) {
56360
56498
  i0.ɵɵelementStart(0, "div", 8)(1, "div", 10)(2, "div", 11);
56361
56499
  i0.ɵɵelement(3, "symphiq-indeterminate-spinner", 12);
@@ -56584,7 +56722,7 @@ function SymphiqConnectGaDashboardComponent_Conditional_10_Conditional_14_For_2_
56584
56722
  function SymphiqConnectGaDashboardComponent_Conditional_10_Conditional_14_Template(rf, ctx) { if (rf & 1) {
56585
56723
  const _r5 = i0.ɵɵgetCurrentView();
56586
56724
  i0.ɵɵelementStart(0, "div", 53);
56587
- i0.ɵɵrepeaterCreate(1, SymphiqConnectGaDashboardComponent_Conditional_10_Conditional_14_For_2_Template, 11, 8, "label", 54, _forTrack0$L);
56725
+ i0.ɵɵrepeaterCreate(1, SymphiqConnectGaDashboardComponent_Conditional_10_Conditional_14_For_2_Template, 11, 8, "label", 54, _forTrack0$N);
56588
56726
  i0.ɵɵelementEnd();
56589
56727
  i0.ɵɵelement(3, "div", 55);
56590
56728
  i0.ɵɵelementStart(4, "button", 56);
@@ -58415,7 +58553,7 @@ class TargetChangeBadgeComponent {
58415
58553
  }], () => [{ type: i0.ElementRef }], { viewMode: [{ type: i0.Input, args: [{ isSignal: true, alias: "viewMode", required: false }] }], percentageChange: [{ type: i0.Input, args: [{ isSignal: true, alias: "percentageChange", required: false }] }], metric: [{ type: i0.Input, args: [{ isSignal: true, alias: "metric", required: false }] }], priorYear: [{ type: i0.Input, args: [{ isSignal: true, alias: "priorYear", required: false }] }], isCompact: [{ type: i0.Input, args: [{ isSignal: true, alias: "isCompact", required: false }] }] }); })();
58416
58554
  (() => { (typeof ngDevMode === "undefined" || ngDevMode) && i0.ɵsetClassDebugInfo(TargetChangeBadgeComponent, { className: "TargetChangeBadgeComponent", filePath: "lib/components/revenue-calculator-dashboard/target-change-badge.component.ts", lineNumber: 27 }); })();
58417
58555
 
58418
- const _forTrack0$K = ($index, $item) => $item.stageMetric.metric;
58556
+ const _forTrack0$M = ($index, $item) => $item.stageMetric.metric;
58419
58557
  const _forTrack1$8 = ($index, $item) => $item.calc.metric;
58420
58558
  function FunnelMetricsVisualizationComponent_For_4_Conditional_6_Template(rf, ctx) { if (rf & 1) {
58421
58559
  i0.ɵɵelementStart(0, "button", 7);
@@ -58871,7 +59009,7 @@ class FunnelMetricsVisualizationComponent {
58871
59009
  i0.ɵɵelementStart(0, "div", 0);
58872
59010
  i0.ɵɵelement(1, "symphiq-tooltip-container");
58873
59011
  i0.ɵɵelementStart(2, "div", 1);
58874
- i0.ɵɵrepeaterCreate(3, FunnelMetricsVisualizationComponent_For_4_Template, 28, 15, "div", 2, _forTrack0$K);
59012
+ i0.ɵɵrepeaterCreate(3, FunnelMetricsVisualizationComponent_For_4_Template, 28, 15, "div", 2, _forTrack0$M);
58875
59013
  i0.ɵɵelementEnd()();
58876
59014
  } if (rf & 2) {
58877
59015
  i0.ɵɵadvance(3);
@@ -60770,7 +60908,7 @@ class ProgressToTargetChartComponent {
60770
60908
  }] }); })();
60771
60909
  (() => { (typeof ngDevMode === "undefined" || ngDevMode) && i0.ɵsetClassDebugInfo(ProgressToTargetChartComponent, { className: "ProgressToTargetChartComponent", filePath: "lib/components/revenue-calculator-dashboard/progress-to-target-chart.component.ts", lineNumber: 67 }); })();
60772
60910
 
60773
- const _forTrack0$J = ($index, $item) => $item.metric.metric;
60911
+ const _forTrack0$L = ($index, $item) => $item.metric.metric;
60774
60912
  function MetricReportModalComponent_Conditional_0_Conditional_9_Template(rf, ctx) { if (rf & 1) {
60775
60913
  i0.ɵɵelement(0, "symphiq-current-data-indicator", 9);
60776
60914
  } if (rf & 2) {
@@ -60914,7 +61052,7 @@ function MetricReportModalComponent_Conditional_0_Conditional_63_Template(rf, ct
60914
61052
  i0.ɵɵtext(12, "Improve by");
60915
61053
  i0.ɵɵelementEnd()()();
60916
61054
  i0.ɵɵelementStart(13, "tbody");
60917
- i0.ɵɵrepeaterCreate(14, MetricReportModalComponent_Conditional_0_Conditional_63_For_15_Template, 15, 7, "tr", 46, _forTrack0$J);
61055
+ i0.ɵɵrepeaterCreate(14, MetricReportModalComponent_Conditional_0_Conditional_63_For_15_Template, 15, 7, "tr", 46, _forTrack0$L);
60918
61056
  i0.ɵɵelementEnd()()()();
60919
61057
  } if (rf & 2) {
60920
61058
  const ctx_r1 = i0.ɵɵnextContext(2);
@@ -62487,7 +62625,7 @@ class UserDisplayComponent {
62487
62625
 
62488
62626
  const _c0$J = ["absoluteInputRef"];
62489
62627
  const _c1$k = ["percentageInputRef"];
62490
- const _forTrack0$I = ($index, $item) => $item.history.id;
62628
+ const _forTrack0$K = ($index, $item) => $item.history.id;
62491
62629
  function EditMetricTargetModalComponent_Conditional_0_Conditional_24_Template(rf, ctx) { if (rf & 1) {
62492
62630
  const _r3 = i0.ɵɵgetCurrentView();
62493
62631
  i0.ɵɵelementStart(0, "div", 16);
@@ -62903,7 +63041,7 @@ function EditMetricTargetModalComponent_Conditional_0_Conditional_34_Template(rf
62903
63041
  i0.ɵɵtext(8, "Amount set");
62904
63042
  i0.ɵɵelementEnd()();
62905
63043
  i0.ɵɵelementStart(9, "div", 65);
62906
- i0.ɵɵrepeaterCreate(10, EditMetricTargetModalComponent_Conditional_0_Conditional_34_For_11_Template, 7, 6, "div", 66, _forTrack0$I);
63044
+ i0.ɵɵrepeaterCreate(10, EditMetricTargetModalComponent_Conditional_0_Conditional_34_For_11_Template, 7, 6, "div", 66, _forTrack0$K);
62907
63045
  i0.ɵɵelementEnd()()();
62908
63046
  } if (rf & 2) {
62909
63047
  const ctx_r1 = i0.ɵɵnextContext(2);
@@ -68001,7 +68139,7 @@ class FloatingBackButtonComponent {
68001
68139
  (() => { (typeof ngDevMode === "undefined" || ngDevMode) && i0.ɵsetClassDebugInfo(FloatingBackButtonComponent, { className: "FloatingBackButtonComponent", filePath: "lib/components/business-analysis-dashboard/floating-back-button.component.ts", lineNumber: 70 }); })();
68002
68140
 
68003
68141
  const _c0$F = ["searchInput"];
68004
- const _forTrack0$H = ($index, $item) => $item.result.id;
68142
+ const _forTrack0$J = ($index, $item) => $item.result.id;
68005
68143
  function SearchModalComponent_Conditional_0_Conditional_10_Template(rf, ctx) { if (rf & 1) {
68006
68144
  const _r3 = i0.ɵɵgetCurrentView();
68007
68145
  i0.ɵɵelementStart(0, "button", 18);
@@ -68125,7 +68263,7 @@ function SearchModalComponent_Conditional_0_Conditional_14_For_2_Template(rf, ct
68125
68263
  } }
68126
68264
  function SearchModalComponent_Conditional_0_Conditional_14_Template(rf, ctx) { if (rf & 1) {
68127
68265
  i0.ɵɵelementStart(0, "div", 15);
68128
- i0.ɵɵrepeaterCreate(1, SearchModalComponent_Conditional_0_Conditional_14_For_2_Template, 17, 13, "button", 19, _forTrack0$H);
68266
+ i0.ɵɵrepeaterCreate(1, SearchModalComponent_Conditional_0_Conditional_14_For_2_Template, 17, 13, "button", 19, _forTrack0$J);
68129
68267
  i0.ɵɵelementEnd();
68130
68268
  } if (rf & 2) {
68131
68269
  const ctx_r1 = i0.ɵɵnextContext(2);
@@ -69114,7 +69252,7 @@ class SimplifiedRecommendationCardComponent {
69114
69252
  (() => { (typeof ngDevMode === "undefined" || ngDevMode) && i0.ɵsetClassDebugInfo(SimplifiedRecommendationCardComponent, { className: "SimplifiedRecommendationCardComponent", filePath: "lib/components/business-analysis-dashboard/simplified-recommendation-card.component.ts", lineNumber: 121 }); })();
69115
69253
 
69116
69254
  const _c0$E = () => [0, 1, 2];
69117
- const _forTrack0$G = ($index, $item) => $item.id;
69255
+ const _forTrack0$I = ($index, $item) => $item.id;
69118
69256
  function RecommendationsTiledGridComponent_Conditional_12_Template(rf, ctx) { if (rf & 1) {
69119
69257
  i0.ɵɵelementStart(0, "div", 9);
69120
69258
  i0.ɵɵtext(1);
@@ -69138,7 +69276,7 @@ function RecommendationsTiledGridComponent_Conditional_14_For_2_Template(rf, ctx
69138
69276
  } }
69139
69277
  function RecommendationsTiledGridComponent_Conditional_14_Template(rf, ctx) { if (rf & 1) {
69140
69278
  i0.ɵɵelementStart(0, "div", 11);
69141
- i0.ɵɵrepeaterCreate(1, RecommendationsTiledGridComponent_Conditional_14_For_2_Template, 1, 3, "symphiq-simplified-recommendation-card", 13, _forTrack0$G);
69279
+ i0.ɵɵrepeaterCreate(1, RecommendationsTiledGridComponent_Conditional_14_For_2_Template, 1, 3, "symphiq-simplified-recommendation-card", 13, _forTrack0$I);
69142
69280
  i0.ɵɵelementEnd();
69143
69281
  } if (rf & 2) {
69144
69282
  const ctx_r0 = i0.ɵɵnextContext();
@@ -69430,7 +69568,7 @@ class RecommendationsTiledGridComponent {
69430
69568
  }], null, { recommendations: [{ type: i0.Input, args: [{ isSignal: true, alias: "recommendations", required: false }] }], viewMode: [{ type: i0.Input, args: [{ isSignal: true, alias: "viewMode", required: false }] }], isLoading: [{ type: i0.Input, args: [{ isSignal: true, alias: "isLoading", required: false }] }], viewMoreClick: [{ type: i0.Output, args: ["viewMoreClick"] }] }); })();
69431
69569
  (() => { (typeof ngDevMode === "undefined" || ngDevMode) && i0.ɵsetClassDebugInfo(RecommendationsTiledGridComponent, { className: "RecommendationsTiledGridComponent", filePath: "lib/components/business-analysis-dashboard/recommendations-tiled-grid.component.ts", lineNumber: 92 }); })();
69432
69570
 
69433
- const _forTrack0$F = ($index, $item) => $item.section.id;
69571
+ const _forTrack0$H = ($index, $item) => $item.section.id;
69434
69572
  function CollapsibleSectionGroupComponent_For_23_Conditional_3_Template(rf, ctx) { if (rf & 1) {
69435
69573
  i0.ɵɵelementStart(0, "div", 20);
69436
69574
  i0.ɵɵelement(1, "symphiq-icon", 30);
@@ -69702,7 +69840,7 @@ class CollapsibleSectionGroupComponent {
69702
69840
  i0.ɵɵtext(20, " The information below was gathered from your website and competitor research. While recommendations above are based on this initial analysis, connecting your GA4 data will provide quantitative insights that dramatically improve recommendation accuracy. ");
69703
69841
  i0.ɵɵelementEnd()()();
69704
69842
  i0.ɵɵelementStart(21, "div", 16);
69705
- i0.ɵɵrepeaterCreate(22, CollapsibleSectionGroupComponent_For_23_Template, 15, 17, "div", 17, _forTrack0$F);
69843
+ i0.ɵɵrepeaterCreate(22, CollapsibleSectionGroupComponent_For_23_Template, 15, 17, "div", 17, _forTrack0$H);
69706
69844
  i0.ɵɵelementEnd()()();
69707
69845
  } if (rf & 2) {
69708
69846
  i0.ɵɵproperty("ngClass", ctx.containerClasses());
@@ -71220,7 +71358,7 @@ class MetricWelcomeBannerComponent {
71220
71358
  (() => { (typeof ngDevMode === "undefined" || ngDevMode) && i0.ɵsetClassDebugInfo(MetricWelcomeBannerComponent, { className: "MetricWelcomeBannerComponent", filePath: "lib/components/profile-analysis-shop-dashboard/metric-welcome-banner.component.ts", lineNumber: 63 }); })();
71221
71359
 
71222
71360
  const _c0$C = a0 => ({ name: "chevron-right", source: a0 });
71223
- const _forTrack0$E = ($index, $item) => $item.id;
71361
+ const _forTrack0$G = ($index, $item) => $item.id;
71224
71362
  function RelatedGoalChipsComponent_Conditional_0_For_2_Template(rf, ctx) { if (rf & 1) {
71225
71363
  const _r1 = i0.ɵɵgetCurrentView();
71226
71364
  i0.ɵɵelementStart(0, "button", 2);
@@ -71241,7 +71379,7 @@ function RelatedGoalChipsComponent_Conditional_0_For_2_Template(rf, ctx) { if (r
71241
71379
  } }
71242
71380
  function RelatedGoalChipsComponent_Conditional_0_Template(rf, ctx) { if (rf & 1) {
71243
71381
  i0.ɵɵelementStart(0, "div", 0);
71244
- i0.ɵɵrepeaterCreate(1, RelatedGoalChipsComponent_Conditional_0_For_2_Template, 4, 5, "button", 1, _forTrack0$E);
71382
+ i0.ɵɵrepeaterCreate(1, RelatedGoalChipsComponent_Conditional_0_For_2_Template, 4, 5, "button", 1, _forTrack0$G);
71245
71383
  i0.ɵɵelementEnd();
71246
71384
  } if (rf & 2) {
71247
71385
  const ctx_r2 = i0.ɵɵnextContext();
@@ -71410,7 +71548,7 @@ const _c7 = a0 => ({ name: "light-bulb", source: a0 });
71410
71548
  const _c8 = a0 => ({ name: "clock", source: a0 });
71411
71549
  const _c9 = a0 => [a0];
71412
71550
  const _c10 = () => [];
71413
- const _forTrack0$D = ($index, $item) => $item.index;
71551
+ const _forTrack0$F = ($index, $item) => $item.index;
71414
71552
  function MetricExecutiveSummaryComponent_Conditional_11_Template(rf, ctx) { if (rf & 1) {
71415
71553
  i0.ɵɵelement(0, "symphiq-grade-badge", 9);
71416
71554
  } if (rf & 2) {
@@ -71717,7 +71855,7 @@ function MetricExecutiveSummaryComponent_Conditional_31_Template(rf, ctx) { if (
71717
71855
  i0.ɵɵtext(2, "Quick Wins");
71718
71856
  i0.ɵɵelementEnd();
71719
71857
  i0.ɵɵelementStart(3, "div", 48);
71720
- i0.ɵɵrepeaterCreate(4, MetricExecutiveSummaryComponent_Conditional_31_For_5_Template, 14, 11, "div", 49, _forTrack0$D);
71858
+ i0.ɵɵrepeaterCreate(4, MetricExecutiveSummaryComponent_Conditional_31_For_5_Template, 14, 11, "div", 49, _forTrack0$F);
71721
71859
  i0.ɵɵelementEnd()();
71722
71860
  } if (rf & 2) {
71723
71861
  const ctx_r0 = i0.ɵɵnextContext();
@@ -73971,7 +74109,7 @@ class CapabilityMatrixCardComponent {
73971
74109
  }], () => [], { capability: [{ type: i0.Input, args: [{ isSignal: true, alias: "capability", required: false }] }], viewMode: [{ type: i0.Input, args: [{ isSignal: true, alias: "viewMode", required: false }] }], allGoals: [{ type: i0.Input, args: [{ isSignal: true, alias: "allGoals", required: false }] }] }); })();
73972
74110
  (() => { (typeof ngDevMode === "undefined" || ngDevMode) && i0.ɵsetClassDebugInfo(CapabilityMatrixCardComponent, { className: "CapabilityMatrixCardComponent", filePath: "lib/components/profile-analysis-shop-dashboard/cards/capability-matrix-card.component.ts", lineNumber: 118 }); })();
73973
74111
 
73974
- const _forTrack0$C = ($index, $item) => $item.competitorId || $index;
74112
+ const _forTrack0$E = ($index, $item) => $item.competitorId || $index;
73975
74113
  function CompetitiveComparisonCardComponent_Conditional_8_Conditional_1_Template(rf, ctx) { if (rf & 1) {
73976
74114
  i0.ɵɵelementStart(0, "span", 15);
73977
74115
  i0.ɵɵtext(1);
@@ -74084,7 +74222,7 @@ function CompetitiveComparisonCardComponent_Conditional_13_Template(rf, ctx) { i
74084
74222
  i0.ɵɵelementStart(0, "div", 12)(1, "h6", 21);
74085
74223
  i0.ɵɵtext(2, " Competitor Positions ");
74086
74224
  i0.ɵɵelementEnd();
74087
- i0.ɵɵrepeaterCreate(3, CompetitiveComparisonCardComponent_Conditional_13_For_4_Template, 7, 6, "div", 22, _forTrack0$C);
74225
+ i0.ɵɵrepeaterCreate(3, CompetitiveComparisonCardComponent_Conditional_13_For_4_Template, 7, 6, "div", 22, _forTrack0$E);
74088
74226
  i0.ɵɵelementEnd();
74089
74227
  } if (rf & 2) {
74090
74228
  const ctx_r1 = i0.ɵɵnextContext();
@@ -74473,7 +74611,7 @@ class CompetitiveComparisonCardComponent {
74473
74611
  (() => { (typeof ngDevMode === "undefined" || ngDevMode) && i0.ɵsetClassDebugInfo(CompetitiveComparisonCardComponent, { className: "CompetitiveComparisonCardComponent", filePath: "lib/components/profile-analysis-shop-dashboard/cards/competitive-comparison-card.component.ts", lineNumber: 126 }); })();
74474
74612
 
74475
74613
  const _c0$y = a0 => ({ name: "chevron-right", source: a0 });
74476
- const _forTrack0$B = ($index, $item) => $item.id;
74614
+ const _forTrack0$D = ($index, $item) => $item.id;
74477
74615
  function PhaseTimelineCardComponent_Conditional_8_For_7_Template(rf, ctx) { if (rf & 1) {
74478
74616
  const _r1 = i0.ɵɵgetCurrentView();
74479
74617
  i0.ɵɵelementStart(0, "button", 15);
@@ -74502,7 +74640,7 @@ function PhaseTimelineCardComponent_Conditional_8_Template(rf, ctx) { if (rf & 1
74502
74640
  i0.ɵɵelementEnd();
74503
74641
  i0.ɵɵnamespaceHTML();
74504
74642
  i0.ɵɵelementStart(5, "div", 13);
74505
- i0.ɵɵrepeaterCreate(6, PhaseTimelineCardComponent_Conditional_8_For_7_Template, 4, 5, "button", 14, _forTrack0$B);
74643
+ i0.ɵɵrepeaterCreate(6, PhaseTimelineCardComponent_Conditional_8_For_7_Template, 4, 5, "button", 14, _forTrack0$D);
74506
74644
  i0.ɵɵelementEnd()();
74507
74645
  } if (rf & 2) {
74508
74646
  const ctx_r2 = i0.ɵɵnextContext();
@@ -74539,7 +74677,7 @@ function PhaseTimelineCardComponent_Conditional_9_Template(rf, ctx) { if (rf & 1
74539
74677
  i0.ɵɵelementEnd();
74540
74678
  i0.ɵɵnamespaceHTML();
74541
74679
  i0.ɵɵelementStart(5, "div", 18);
74542
- i0.ɵɵrepeaterCreate(6, PhaseTimelineCardComponent_Conditional_9_For_7_Template, 4, 5, "button", 14, _forTrack0$B);
74680
+ i0.ɵɵrepeaterCreate(6, PhaseTimelineCardComponent_Conditional_9_For_7_Template, 4, 5, "button", 14, _forTrack0$D);
74543
74681
  i0.ɵɵelementEnd()();
74544
74682
  } if (rf & 2) {
74545
74683
  const ctx_r2 = i0.ɵɵnextContext();
@@ -75553,7 +75691,7 @@ class OperationalCategoryCardComponent {
75553
75691
 
75554
75692
  const _c0$w = a0 => ({ name: "arrow-trending-up", source: a0 });
75555
75693
  const _c1$g = a0 => ({ name: "chat-bubble-left-right", source: a0 });
75556
- const _forTrack0$A = ($index, $item) => $item.questionId;
75694
+ const _forTrack0$C = ($index, $item) => $item.questionId;
75557
75695
  function KeyDriverCardComponent_Conditional_12_For_6_Template(rf, ctx) { if (rf & 1) {
75558
75696
  i0.ɵɵelementStart(0, "div", 13)(1, "p", 14);
75559
75697
  i0.ɵɵtext(2);
@@ -75573,7 +75711,7 @@ function KeyDriverCardComponent_Conditional_12_Template(rf, ctx) { if (rf & 1) {
75573
75711
  i0.ɵɵelementStart(3, "span", 12);
75574
75712
  i0.ɵɵtext(4, " Supporting Profile Insights ");
75575
75713
  i0.ɵɵelementEnd()();
75576
- i0.ɵɵrepeaterCreate(5, KeyDriverCardComponent_Conditional_12_For_6_Template, 3, 3, "div", 13, _forTrack0$A);
75714
+ i0.ɵɵrepeaterCreate(5, KeyDriverCardComponent_Conditional_12_For_6_Template, 3, 3, "div", 13, _forTrack0$C);
75577
75715
  i0.ɵɵelementEnd();
75578
75716
  } if (rf & 2) {
75579
75717
  const ctx_r1 = i0.ɵɵnextContext();
@@ -75763,7 +75901,7 @@ class KeyDriverCardComponent {
75763
75901
 
75764
75902
  const _c0$v = a0 => ({ name: "exclamation-triangle", source: a0 });
75765
75903
  const _c1$f = a0 => ({ name: "chat-bubble-left-right", source: a0 });
75766
- const _forTrack0$z = ($index, $item) => $item.questionId;
75904
+ const _forTrack0$B = ($index, $item) => $item.questionId;
75767
75905
  function BottleneckCardComponent_Conditional_12_For_6_Template(rf, ctx) { if (rf & 1) {
75768
75906
  i0.ɵɵelementStart(0, "div", 13)(1, "p", 14);
75769
75907
  i0.ɵɵtext(2);
@@ -75783,7 +75921,7 @@ function BottleneckCardComponent_Conditional_12_Template(rf, ctx) { if (rf & 1)
75783
75921
  i0.ɵɵelementStart(3, "span", 12);
75784
75922
  i0.ɵɵtext(4, " Supporting Profile Insights ");
75785
75923
  i0.ɵɵelementEnd()();
75786
- i0.ɵɵrepeaterCreate(5, BottleneckCardComponent_Conditional_12_For_6_Template, 3, 3, "div", 13, _forTrack0$z);
75924
+ i0.ɵɵrepeaterCreate(5, BottleneckCardComponent_Conditional_12_For_6_Template, 3, 3, "div", 13, _forTrack0$B);
75787
75925
  i0.ɵɵelementEnd();
75788
75926
  } if (rf & 2) {
75789
75927
  const ctx_r1 = i0.ɵɵnextContext();
@@ -75992,7 +76130,7 @@ const _c0$u = a0 => ({ name: "arrow-right", source: a0 });
75992
76130
  const _c1$e = a0 => ({ name: "arrow-left", source: a0 });
75993
76131
  const _c2$b = a0 => ({ name: "arrows-right-left", source: a0 });
75994
76132
  const _c3$6 = a0 => ({ name: "scale", source: a0 });
75995
- const _forTrack0$y = ($index, $item) => $item.metric;
76133
+ const _forTrack0$A = ($index, $item) => $item.metric;
75996
76134
  function MetricRelationshipsCardComponent_Conditional_1_For_8_Template(rf, ctx) { if (rf & 1) {
75997
76135
  const _r1 = i0.ɵɵgetCurrentView();
75998
76136
  i0.ɵɵelementStart(0, "button", 8);
@@ -76017,7 +76155,7 @@ function MetricRelationshipsCardComponent_Conditional_1_Template(rf, ctx) { if (
76017
76155
  i0.ɵɵtext(5, " Directly Influences ");
76018
76156
  i0.ɵɵelementEnd()();
76019
76157
  i0.ɵɵelementStart(6, "div", 6);
76020
- i0.ɵɵrepeaterCreate(7, MetricRelationshipsCardComponent_Conditional_1_For_8_Template, 4, 2, "button", 7, _forTrack0$y);
76158
+ i0.ɵɵrepeaterCreate(7, MetricRelationshipsCardComponent_Conditional_1_For_8_Template, 4, 2, "button", 7, _forTrack0$A);
76021
76159
  i0.ɵɵelementEnd()();
76022
76160
  } if (rf & 2) {
76023
76161
  const ctx_r2 = i0.ɵɵnextContext();
@@ -76055,7 +76193,7 @@ function MetricRelationshipsCardComponent_Conditional_2_Template(rf, ctx) { if (
76055
76193
  i0.ɵɵtext(5, " Directly Influenced By ");
76056
76194
  i0.ɵɵelementEnd()();
76057
76195
  i0.ɵɵelementStart(6, "div", 6);
76058
- i0.ɵɵrepeaterCreate(7, MetricRelationshipsCardComponent_Conditional_2_For_8_Template, 4, 2, "button", 7, _forTrack0$y);
76196
+ i0.ɵɵrepeaterCreate(7, MetricRelationshipsCardComponent_Conditional_2_For_8_Template, 4, 2, "button", 7, _forTrack0$A);
76059
76197
  i0.ɵɵelementEnd()();
76060
76198
  } if (rf & 2) {
76061
76199
  const ctx_r2 = i0.ɵɵnextContext();
@@ -76101,7 +76239,7 @@ function MetricRelationshipsCardComponent_Conditional_3_Template(rf, ctx) { if (
76101
76239
  i0.ɵɵtext(5, " Trade-offs ");
76102
76240
  i0.ɵɵelementEnd()();
76103
76241
  i0.ɵɵelementStart(6, "div", 11);
76104
- i0.ɵɵrepeaterCreate(7, MetricRelationshipsCardComponent_Conditional_3_For_8_Template, 7, 9, "div", 12, _forTrack0$y);
76242
+ i0.ɵɵrepeaterCreate(7, MetricRelationshipsCardComponent_Conditional_3_For_8_Template, 7, 9, "div", 12, _forTrack0$A);
76105
76243
  i0.ɵɵelementEnd()();
76106
76244
  } if (rf & 2) {
76107
76245
  const ctx_r2 = i0.ɵɵnextContext();
@@ -76341,7 +76479,7 @@ class MetricRelationshipsCardComponent {
76341
76479
 
76342
76480
  const _c0$t = a0 => ({ name: "chevron-right", source: a0 });
76343
76481
  const _c1$d = a0 => ({ name: "link", source: a0 });
76344
- const _forTrack0$x = ($index, $item) => $item.id;
76482
+ const _forTrack0$z = ($index, $item) => $item.id;
76345
76483
  function RelatedMetricCardComponent_Conditional_18_Conditional_5_For_2_Template(rf, ctx) { if (rf & 1) {
76346
76484
  const _r1 = i0.ɵɵgetCurrentView();
76347
76485
  i0.ɵɵelementStart(0, "button", 18);
@@ -76362,7 +76500,7 @@ function RelatedMetricCardComponent_Conditional_18_Conditional_5_For_2_Template(
76362
76500
  } }
76363
76501
  function RelatedMetricCardComponent_Conditional_18_Conditional_5_Template(rf, ctx) { if (rf & 1) {
76364
76502
  i0.ɵɵelementStart(0, "div", 16);
76365
- i0.ɵɵrepeaterCreate(1, RelatedMetricCardComponent_Conditional_18_Conditional_5_For_2_Template, 4, 5, "button", 17, _forTrack0$x);
76503
+ i0.ɵɵrepeaterCreate(1, RelatedMetricCardComponent_Conditional_18_Conditional_5_For_2_Template, 4, 5, "button", 17, _forTrack0$z);
76366
76504
  i0.ɵɵelementEnd();
76367
76505
  } if (rf & 2) {
76368
76506
  const ctx_r2 = i0.ɵɵnextContext(2);
@@ -76675,7 +76813,7 @@ class RelatedMetricCardComponent {
76675
76813
  }], null, { metric: [{ type: i0.Input, args: [{ isSignal: true, alias: "metric", required: true }] }], relationship: [{ type: i0.Input, args: [{ isSignal: true, alias: "relationship", required: true }] }], relationshipDescription: [{ type: i0.Input, args: [{ isSignal: true, alias: "relationshipDescription", required: true }] }], priority: [{ type: i0.Input, args: [{ isSignal: true, alias: "priority", required: true }] }], sharedGoalIds: [{ type: i0.Input, args: [{ isSignal: true, alias: "sharedGoalIds", required: false }] }], viewMode: [{ type: i0.Input, args: [{ isSignal: true, alias: "viewMode", required: false }] }], allGoals: [{ type: i0.Input, args: [{ isSignal: true, alias: "allGoals", required: false }] }], cardClicked: [{ type: i0.Output, args: ["cardClicked"] }] }); })();
76676
76814
  (() => { (typeof ngDevMode === "undefined" || ngDevMode) && i0.ɵsetClassDebugInfo(RelatedMetricCardComponent, { className: "RelatedMetricCardComponent", filePath: "lib/components/profile-analysis-shop-dashboard/cards/related-metric-card.component.ts", lineNumber: 97 }); })();
76677
76815
 
76678
- const _forTrack0$w = ($index, $item) => $item.metric;
76816
+ const _forTrack0$y = ($index, $item) => $item.metric;
76679
76817
  function RelatedMetricsListComponent_Conditional_1_For_14_Template(rf, ctx) { if (rf & 1) {
76680
76818
  const _r1 = i0.ɵɵgetCurrentView();
76681
76819
  i0.ɵɵelementStart(0, "symphiq-related-metric-card", 12);
@@ -76703,7 +76841,7 @@ function RelatedMetricsListComponent_Conditional_1_Template(rf, ctx) { if (rf &
76703
76841
  i0.ɵɵtext(11);
76704
76842
  i0.ɵɵelementEnd()();
76705
76843
  i0.ɵɵelementStart(12, "div", 10);
76706
- i0.ɵɵrepeaterCreate(13, RelatedMetricsListComponent_Conditional_1_For_14_Template, 1, 7, "symphiq-related-metric-card", 11, _forTrack0$w);
76844
+ i0.ɵɵrepeaterCreate(13, RelatedMetricsListComponent_Conditional_1_For_14_Template, 1, 7, "symphiq-related-metric-card", 11, _forTrack0$y);
76707
76845
  i0.ɵɵelementEnd()();
76708
76846
  } if (rf & 2) {
76709
76847
  const ctx_r1 = i0.ɵɵnextContext();
@@ -76749,7 +76887,7 @@ function RelatedMetricsListComponent_Conditional_2_Template(rf, ctx) { if (rf &
76749
76887
  i0.ɵɵtext(11);
76750
76888
  i0.ɵɵelementEnd()();
76751
76889
  i0.ɵɵelementStart(12, "div", 10);
76752
- i0.ɵɵrepeaterCreate(13, RelatedMetricsListComponent_Conditional_2_For_14_Template, 1, 7, "symphiq-related-metric-card", 11, _forTrack0$w);
76890
+ i0.ɵɵrepeaterCreate(13, RelatedMetricsListComponent_Conditional_2_For_14_Template, 1, 7, "symphiq-related-metric-card", 11, _forTrack0$y);
76753
76891
  i0.ɵɵelementEnd()();
76754
76892
  } if (rf & 2) {
76755
76893
  const ctx_r1 = i0.ɵɵnextContext();
@@ -76795,7 +76933,7 @@ function RelatedMetricsListComponent_Conditional_3_Template(rf, ctx) { if (rf &
76795
76933
  i0.ɵɵtext(11);
76796
76934
  i0.ɵɵelementEnd()();
76797
76935
  i0.ɵɵelementStart(12, "div", 10);
76798
- i0.ɵɵrepeaterCreate(13, RelatedMetricsListComponent_Conditional_3_For_14_Template, 1, 7, "symphiq-related-metric-card", 11, _forTrack0$w);
76936
+ i0.ɵɵrepeaterCreate(13, RelatedMetricsListComponent_Conditional_3_For_14_Template, 1, 7, "symphiq-related-metric-card", 11, _forTrack0$y);
76799
76937
  i0.ɵɵelementEnd()();
76800
76938
  } if (rf & 2) {
76801
76939
  const ctx_r1 = i0.ɵɵnextContext();
@@ -76841,7 +76979,7 @@ function RelatedMetricsListComponent_Conditional_4_Template(rf, ctx) { if (rf &
76841
76979
  i0.ɵɵtext(11);
76842
76980
  i0.ɵɵelementEnd()();
76843
76981
  i0.ɵɵelementStart(12, "div", 10);
76844
- i0.ɵɵrepeaterCreate(13, RelatedMetricsListComponent_Conditional_4_For_14_Template, 1, 7, "symphiq-related-metric-card", 11, _forTrack0$w);
76982
+ i0.ɵɵrepeaterCreate(13, RelatedMetricsListComponent_Conditional_4_For_14_Template, 1, 7, "symphiq-related-metric-card", 11, _forTrack0$y);
76845
76983
  i0.ɵɵelementEnd()();
76846
76984
  } if (rf & 2) {
76847
76985
  const ctx_r1 = i0.ɵɵnextContext();
@@ -78332,7 +78470,7 @@ const _c3$3 = a0 => [a0];
78332
78470
  const _c4$1 = () => [];
78333
78471
  const _c5 = a0 => ({ name: "chart-bar", source: a0 });
78334
78472
  const _c6 = a0 => ({ name: "user", source: a0 });
78335
- const _forTrack0$v = ($index, $item) => $item.id || $index;
78473
+ const _forTrack0$x = ($index, $item) => $item.id || $index;
78336
78474
  const _forTrack1$7 = ($index, $item) => $item.dimension || $index;
78337
78475
  const _forTrack2$1 = ($index, $item) => $item.rec.id || $index;
78338
78476
  const _forTrack3$1 = ($index, $item) => $item.phase || $index;
@@ -78661,7 +78799,7 @@ function ProfileSectionContentComponent_Conditional_4_For_2_Template(rf, ctx) {
78661
78799
  } }
78662
78800
  function ProfileSectionContentComponent_Conditional_4_Template(rf, ctx) { if (rf & 1) {
78663
78801
  i0.ɵɵelementStart(0, "div", 3);
78664
- i0.ɵɵrepeaterCreate(1, ProfileSectionContentComponent_Conditional_4_For_2_Template, 2, 3, "div", null, _forTrack0$v);
78802
+ i0.ɵɵrepeaterCreate(1, ProfileSectionContentComponent_Conditional_4_For_2_Template, 2, 3, "div", null, _forTrack0$x);
78665
78803
  i0.ɵɵelementEnd();
78666
78804
  } if (rf & 2) {
78667
78805
  const ctx_r1 = i0.ɵɵnextContext();
@@ -78678,7 +78816,7 @@ function ProfileSectionContentComponent_Conditional_5_For_2_Template(rf, ctx) {
78678
78816
  } }
78679
78817
  function ProfileSectionContentComponent_Conditional_5_Template(rf, ctx) { if (rf & 1) {
78680
78818
  i0.ɵɵelementStart(0, "div", 4);
78681
- i0.ɵɵrepeaterCreate(1, ProfileSectionContentComponent_Conditional_5_For_2_Template, 1, 8, "symphiq-goal-card", 47, _forTrack0$v);
78819
+ i0.ɵɵrepeaterCreate(1, ProfileSectionContentComponent_Conditional_5_For_2_Template, 1, 8, "symphiq-goal-card", 47, _forTrack0$x);
78682
78820
  i0.ɵɵelementEnd();
78683
78821
  } if (rf & 2) {
78684
78822
  const ctx_r1 = i0.ɵɵnextContext();
@@ -78694,7 +78832,7 @@ function ProfileSectionContentComponent_Conditional_6_For_2_Template(rf, ctx) {
78694
78832
  } }
78695
78833
  function ProfileSectionContentComponent_Conditional_6_Template(rf, ctx) { if (rf & 1) {
78696
78834
  i0.ɵɵelementStart(0, "div", 5);
78697
- i0.ɵɵrepeaterCreate(1, ProfileSectionContentComponent_Conditional_6_For_2_Template, 1, 3, "symphiq-capability-matrix-card", 48, _forTrack0$v);
78835
+ i0.ɵɵrepeaterCreate(1, ProfileSectionContentComponent_Conditional_6_For_2_Template, 1, 3, "symphiq-capability-matrix-card", 48, _forTrack0$x);
78698
78836
  i0.ɵɵelementEnd();
78699
78837
  } if (rf & 2) {
78700
78838
  const ctx_r1 = i0.ɵɵnextContext();
@@ -78749,7 +78887,7 @@ function ProfileSectionContentComponent_Conditional_9_For_2_Template(rf, ctx) {
78749
78887
  } }
78750
78888
  function ProfileSectionContentComponent_Conditional_9_Template(rf, ctx) { if (rf & 1) {
78751
78889
  i0.ɵɵelementStart(0, "div", 8);
78752
- i0.ɵɵrepeaterCreate(1, ProfileSectionContentComponent_Conditional_9_For_2_Template, 1, 2, "symphiq-operational-category-card", 52, _forTrack0$v);
78890
+ i0.ɵɵrepeaterCreate(1, ProfileSectionContentComponent_Conditional_9_For_2_Template, 1, 2, "symphiq-operational-category-card", 52, _forTrack0$x);
78753
78891
  i0.ɵɵelementEnd();
78754
78892
  } if (rf & 2) {
78755
78893
  const ctx_r1 = i0.ɵɵnextContext();
@@ -81146,7 +81284,7 @@ class ProfileSectionContentComponent {
81146
81284
  }], null, { section: [{ type: i0.Input, args: [{ isSignal: true, alias: "section", required: false }] }], executiveSummary: [{ type: i0.Input, args: [{ isSignal: true, alias: "executiveSummary", required: false }] }], viewMode: [{ type: i0.Input, args: [{ isSignal: true, alias: "viewMode", required: false }] }], sectionIndex: [{ type: i0.Input, args: [{ isSignal: true, alias: "sectionIndex", required: false }] }], allGoals: [{ type: i0.Input, args: [{ isSignal: true, alias: "allGoals", required: false }] }], allMetrics: [{ type: i0.Input, args: [{ isSignal: true, alias: "allMetrics", required: false }] }], allCharts: [{ type: i0.Input, args: [{ isSignal: true, alias: "allCharts", required: false }] }], allInsights: [{ type: i0.Input, args: [{ isSignal: true, alias: "allInsights", required: false }] }], businessProfile: [{ type: i0.Input, args: [{ isSignal: true, alias: "businessProfile", required: false }] }] }); })();
81147
81285
  (() => { (typeof ngDevMode === "undefined" || ngDevMode) && i0.ɵsetClassDebugInfo(ProfileSectionContentComponent, { className: "ProfileSectionContentComponent", filePath: "lib/components/profile-analysis-shop-dashboard/profile-section-content.component.ts", lineNumber: 765 }); })();
81148
81286
 
81149
- const _forTrack0$u = ($index, $item) => $item.id || $index;
81287
+ const _forTrack0$w = ($index, $item) => $item.id || $index;
81150
81288
  const _forTrack1$6 = ($index, $item) => ($item == null ? null : $item.questionId) || $index;
81151
81289
  function ObjectiveStrategiesModalContentComponent_Conditional_2_Template(rf, ctx) { if (rf & 1) {
81152
81290
  i0.ɵɵelementStart(0, "div", 2)(1, "p", 6);
@@ -81587,7 +81725,7 @@ class ObjectiveStrategiesModalContentComponent {
81587
81725
  i0.ɵɵconditionalCreate(3, ObjectiveStrategiesModalContentComponent_Conditional_3_Template, 10, 5, "div", 3);
81588
81726
  i0.ɵɵconditionalCreate(4, ObjectiveStrategiesModalContentComponent_Conditional_4_Template, 6, 2, "div", 4);
81589
81727
  i0.ɵɵelementEnd();
81590
- i0.ɵɵrepeaterCreate(5, ObjectiveStrategiesModalContentComponent_For_6_Template, 17, 10, "div", 5, _forTrack0$u);
81728
+ i0.ɵɵrepeaterCreate(5, ObjectiveStrategiesModalContentComponent_For_6_Template, 17, 10, "div", 5, _forTrack0$w);
81591
81729
  i0.ɵɵelementEnd();
81592
81730
  } if (rf & 2) {
81593
81731
  let tmp_1_0;
@@ -81888,7 +82026,7 @@ class TooltipContentBuilder {
81888
82026
  }
81889
82027
  }
81890
82028
 
81891
- const _forTrack0$t = ($index, $item) => $item.id || $index;
82029
+ const _forTrack0$v = ($index, $item) => $item.id || $index;
81892
82030
  const _forTrack1$5 = ($index, $item) => $item.type + $item.label;
81893
82031
  const _forTrack2 = ($index, $item) => $item.order || $index;
81894
82032
  const _forTrack3 = ($index, $item) => ($item == null ? null : $item.questionId) || $index;
@@ -83667,7 +83805,7 @@ class StrategyRecommendationsModalContentComponent {
83667
83805
  i0.ɵɵconditionalCreate(5, StrategyRecommendationsModalContentComponent_Conditional_5_Template, 2, 2, "span", 4);
83668
83806
  i0.ɵɵconditionalCreate(6, StrategyRecommendationsModalContentComponent_Conditional_6_Template, 2, 2, "span", 4);
83669
83807
  i0.ɵɵelementEnd()();
83670
- i0.ɵɵrepeaterCreate(7, StrategyRecommendationsModalContentComponent_For_8_Template, 35, 32, "div", 5, _forTrack0$t);
83808
+ i0.ɵɵrepeaterCreate(7, StrategyRecommendationsModalContentComponent_For_8_Template, 35, 32, "div", 5, _forTrack0$v);
83671
83809
  i0.ɵɵelementEnd();
83672
83810
  } if (rf & 2) {
83673
83811
  let tmp_1_0;
@@ -85697,7 +85835,7 @@ class GapDetailModalContentComponent {
85697
85835
  (() => { (typeof ngDevMode === "undefined" || ngDevMode) && i0.ɵsetClassDebugInfo(GapDetailModalContentComponent, { className: "GapDetailModalContentComponent", filePath: "lib/components/profile-analysis-shop-dashboard/modals/gap-detail-modal-content.component.ts", lineNumber: 133 }); })();
85698
85836
 
85699
85837
  const _c0$m = a0 => ({ name: "chevron-right", source: a0 });
85700
- const _forTrack0$s = ($index, $item) => $item.id || $index;
85838
+ const _forTrack0$u = ($index, $item) => $item.id || $index;
85701
85839
  function OpportunityDetailModalContentComponent_Conditional_11_Template(rf, ctx) { if (rf & 1) {
85702
85840
  i0.ɵɵelementStart(0, "div", 9)(1, "h4", 10);
85703
85841
  i0.ɵɵnamespaceSVG();
@@ -85808,7 +85946,7 @@ function OpportunityDetailModalContentComponent_Conditional_14_Conditional_0_Tem
85808
85946
  i0.ɵɵtext(2, " Related Goals ");
85809
85947
  i0.ɵɵelementEnd();
85810
85948
  i0.ɵɵelementStart(3, "div", 25);
85811
- i0.ɵɵrepeaterCreate(4, OpportunityDetailModalContentComponent_Conditional_14_Conditional_0_For_5_Template, 4, 6, "div", 26, _forTrack0$s);
85949
+ i0.ɵɵrepeaterCreate(4, OpportunityDetailModalContentComponent_Conditional_14_Conditional_0_For_5_Template, 4, 6, "div", 26, _forTrack0$u);
85812
85950
  i0.ɵɵelementEnd()();
85813
85951
  } if (rf & 2) {
85814
85952
  const goals_r6 = i0.ɵɵnextContext();
@@ -86084,7 +86222,7 @@ class OpportunityDetailModalContentComponent {
86084
86222
  }], null, { opportunity: [{ type: i0.Input, args: [{ isSignal: true, alias: "opportunity", required: false }] }], viewMode: [{ type: i0.Input, args: [{ isSignal: true, alias: "viewMode", required: false }] }], allGoals: [{ type: i0.Input, args: [{ isSignal: true, alias: "allGoals", required: false }] }], allStrengths: [{ type: i0.Input, args: [{ isSignal: true, alias: "allStrengths", required: false }] }], currentModalState: [{ type: i0.Input, args: [{ isSignal: true, alias: "currentModalState", required: false }] }] }); })();
86085
86223
  (() => { (typeof ngDevMode === "undefined" || ngDevMode) && i0.ɵsetClassDebugInfo(OpportunityDetailModalContentComponent, { className: "OpportunityDetailModalContentComponent", filePath: "lib/components/profile-analysis-shop-dashboard/modals/opportunity-detail-modal-content.component.ts", lineNumber: 121 }); })();
86086
86224
 
86087
- const _forTrack0$r = ($index, $item) => $item.icon;
86225
+ const _forTrack0$t = ($index, $item) => $item.icon;
86088
86226
  function RoadmapMetricsComponent_Conditional_0_For_2_Conditional_0_Conditional_0_Template(rf, ctx) { if (rf & 1) {
86089
86227
  i0.ɵɵelement(0, "div", 1);
86090
86228
  } if (rf & 2) {
@@ -86154,7 +86292,7 @@ function RoadmapMetricsComponent_Conditional_0_For_2_Template(rf, ctx) { if (rf
86154
86292
  } }
86155
86293
  function RoadmapMetricsComponent_Conditional_0_Template(rf, ctx) { if (rf & 1) {
86156
86294
  i0.ɵɵelementStart(0, "div", 0);
86157
- i0.ɵɵrepeaterCreate(1, RoadmapMetricsComponent_Conditional_0_For_2_Template, 1, 1, null, null, _forTrack0$r);
86295
+ i0.ɵɵrepeaterCreate(1, RoadmapMetricsComponent_Conditional_0_For_2_Template, 1, 1, null, null, _forTrack0$t);
86158
86296
  i0.ɵɵelementEnd();
86159
86297
  } if (rf & 2) {
86160
86298
  const ctx_r0 = i0.ɵɵnextContext();
@@ -86571,7 +86709,7 @@ class SimplifiedGoalCardComponent {
86571
86709
  }], null, { goal: [{ type: i0.Input, args: [{ isSignal: true, alias: "goal", required: true }] }], viewMode: [{ type: i0.Input, args: [{ isSignal: true, alias: "viewMode", required: false }] }], animationIndex: [{ type: i0.Input, args: [{ isSignal: true, alias: "animationIndex", required: false }] }], viewMoreClick: [{ type: i0.Output, args: ["viewMoreClick"] }] }); })();
86572
86710
  (() => { (typeof ngDevMode === "undefined" || ngDevMode) && i0.ɵsetClassDebugInfo(SimplifiedGoalCardComponent, { className: "SimplifiedGoalCardComponent", filePath: "lib/components/profile-analysis-shop-dashboard/cards/simplified-goal-card.component.ts", lineNumber: 101 }); })();
86573
86711
 
86574
- const _forTrack0$q = ($index, $item) => $item.id;
86712
+ const _forTrack0$s = ($index, $item) => $item.id;
86575
86713
  function StrategicGoalsTiledGridComponent_Conditional_12_Template(rf, ctx) { if (rf & 1) {
86576
86714
  i0.ɵɵelementStart(0, "div", 9);
86577
86715
  i0.ɵɵtext(1);
@@ -86595,7 +86733,7 @@ function StrategicGoalsTiledGridComponent_Conditional_14_For_2_Template(rf, ctx)
86595
86733
  } }
86596
86734
  function StrategicGoalsTiledGridComponent_Conditional_14_Template(rf, ctx) { if (rf & 1) {
86597
86735
  i0.ɵɵelementStart(0, "div", 11);
86598
- i0.ɵɵrepeaterCreate(1, StrategicGoalsTiledGridComponent_Conditional_14_For_2_Template, 1, 3, "symphiq-simplified-goal-card", 13, _forTrack0$q);
86736
+ i0.ɵɵrepeaterCreate(1, StrategicGoalsTiledGridComponent_Conditional_14_For_2_Template, 1, 3, "symphiq-simplified-goal-card", 13, _forTrack0$s);
86599
86737
  i0.ɵɵelementEnd();
86600
86738
  } if (rf & 2) {
86601
86739
  const ctx_r0 = i0.ɵɵnextContext();
@@ -86810,7 +86948,7 @@ class StrategicGoalsTiledGridComponent {
86810
86948
  (() => { (typeof ngDevMode === "undefined" || ngDevMode) && i0.ɵsetClassDebugInfo(StrategicGoalsTiledGridComponent, { className: "StrategicGoalsTiledGridComponent", filePath: "lib/components/profile-analysis-shop-dashboard/cards/strategic-goals-tiled-grid.component.ts", lineNumber: 69 }); })();
86811
86949
 
86812
86950
  const _c0$l = a0 => ({ name: "calendar", source: a0 });
86813
- const _forTrack0$p = ($index, $item) => $item.id;
86951
+ const _forTrack0$r = ($index, $item) => $item.id;
86814
86952
  const _forTrack1$4 = ($index, $item) => $item.title;
86815
86953
  function UnifiedTimelineComponent_Conditional_0_Conditional_1_Template(rf, ctx) { if (rf & 1) {
86816
86954
  i0.ɵɵelement(0, "symphiq-section-divider", 6)(1, "symphiq-section-header", 7);
@@ -86875,7 +87013,7 @@ function UnifiedTimelineComponent_Conditional_0_For_7_Conditional_12_Template(rf
86875
87013
  i0.ɵɵtext(2);
86876
87014
  i0.ɵɵelementEnd();
86877
87015
  i0.ɵɵelementStart(3, "div", 23);
86878
- i0.ɵɵrepeaterCreate(4, UnifiedTimelineComponent_Conditional_0_For_7_Conditional_12_For_5_Template, 5, 2, "div", 24, _forTrack0$p);
87016
+ i0.ɵɵrepeaterCreate(4, UnifiedTimelineComponent_Conditional_0_For_7_Conditional_12_For_5_Template, 5, 2, "div", 24, _forTrack0$r);
86879
87017
  i0.ɵɵelementEnd()();
86880
87018
  } if (rf & 2) {
86881
87019
  const phase_r3 = i0.ɵɵnextContext().$implicit;
@@ -86951,7 +87089,7 @@ function UnifiedTimelineComponent_Conditional_0_Template(rf, ctx) { if (rf & 1)
86951
87089
  i0.ɵɵelementStart(2, "div", 1)(3, "div", 2);
86952
87090
  i0.ɵɵelement(4, "div", 3);
86953
87091
  i0.ɵɵelementStart(5, "div", 4);
86954
- i0.ɵɵrepeaterCreate(6, UnifiedTimelineComponent_Conditional_0_For_7_Template, 17, 31, "div", 5, _forTrack0$p);
87092
+ i0.ɵɵrepeaterCreate(6, UnifiedTimelineComponent_Conditional_0_For_7_Template, 17, 31, "div", 5, _forTrack0$r);
86955
87093
  i0.ɵɵelementEnd()()()();
86956
87094
  } if (rf & 2) {
86957
87095
  const ctx_r0 = i0.ɵɵnextContext();
@@ -87171,7 +87309,7 @@ class UnifiedTimelineComponent {
87171
87309
  (() => { (typeof ngDevMode === "undefined" || ngDevMode) && i0.ɵsetClassDebugInfo(UnifiedTimelineComponent, { className: "UnifiedTimelineComponent", filePath: "lib/components/profile-analysis-unified-dashboard/cards/unified-timeline.component.ts", lineNumber: 186 }); })();
87172
87310
 
87173
87311
  const _c0$k = a0 => ({ name: "squares-2x2", source: a0 });
87174
- const _forTrack0$o = ($index, $item) => $item.id;
87312
+ const _forTrack0$q = ($index, $item) => $item.id;
87175
87313
  function UnifiedPriorityMatrixComponent_Conditional_0_Conditional_1_Template(rf, ctx) { if (rf & 1) {
87176
87314
  i0.ɵɵelement(0, "symphiq-section-divider", 26)(1, "symphiq-section-header", 27);
87177
87315
  } if (rf & 2) {
@@ -87301,7 +87439,7 @@ function UnifiedPriorityMatrixComponent_Conditional_0_Template(rf, ctx) { if (rf
87301
87439
  i0.ɵɵtext(17, "High Impact / Low Effort");
87302
87440
  i0.ɵɵelementEnd();
87303
87441
  i0.ɵɵelementStart(18, "div", 14);
87304
- i0.ɵɵrepeaterCreate(19, UnifiedPriorityMatrixComponent_Conditional_0_For_20_Template, 6, 2, "button", 15, _forTrack0$o);
87442
+ i0.ɵɵrepeaterCreate(19, UnifiedPriorityMatrixComponent_Conditional_0_For_20_Template, 6, 2, "button", 15, _forTrack0$q);
87305
87443
  i0.ɵɵconditionalCreate(21, UnifiedPriorityMatrixComponent_Conditional_0_Conditional_21_Template, 2, 1, "div", 16);
87306
87444
  i0.ɵɵelementEnd()();
87307
87445
  i0.ɵɵelementStart(22, "div", 9)(23, "div", 10);
@@ -87313,7 +87451,7 @@ function UnifiedPriorityMatrixComponent_Conditional_0_Template(rf, ctx) { if (rf
87313
87451
  i0.ɵɵtext(28, "High Impact / High Effort");
87314
87452
  i0.ɵɵelementEnd();
87315
87453
  i0.ɵɵelementStart(29, "div", 14);
87316
- i0.ɵɵrepeaterCreate(30, UnifiedPriorityMatrixComponent_Conditional_0_For_31_Template, 6, 2, "button", 18, _forTrack0$o);
87454
+ i0.ɵɵrepeaterCreate(30, UnifiedPriorityMatrixComponent_Conditional_0_For_31_Template, 6, 2, "button", 18, _forTrack0$q);
87317
87455
  i0.ɵɵconditionalCreate(32, UnifiedPriorityMatrixComponent_Conditional_0_Conditional_32_Template, 2, 1, "div", 16);
87318
87456
  i0.ɵɵelementEnd()();
87319
87457
  i0.ɵɵelementStart(33, "div", 9)(34, "div", 10);
@@ -87325,7 +87463,7 @@ function UnifiedPriorityMatrixComponent_Conditional_0_Template(rf, ctx) { if (rf
87325
87463
  i0.ɵɵtext(39, "Low Impact / Low Effort");
87326
87464
  i0.ɵɵelementEnd();
87327
87465
  i0.ɵɵelementStart(40, "div", 14);
87328
- i0.ɵɵrepeaterCreate(41, UnifiedPriorityMatrixComponent_Conditional_0_For_42_Template, 6, 2, "button", 20, _forTrack0$o);
87466
+ i0.ɵɵrepeaterCreate(41, UnifiedPriorityMatrixComponent_Conditional_0_For_42_Template, 6, 2, "button", 20, _forTrack0$q);
87329
87467
  i0.ɵɵconditionalCreate(43, UnifiedPriorityMatrixComponent_Conditional_0_Conditional_43_Template, 2, 1, "div", 16);
87330
87468
  i0.ɵɵelementEnd()();
87331
87469
  i0.ɵɵelementStart(44, "div", 9)(45, "div", 10);
@@ -87337,7 +87475,7 @@ function UnifiedPriorityMatrixComponent_Conditional_0_Template(rf, ctx) { if (rf
87337
87475
  i0.ɵɵtext(50, "Low Impact / High Effort");
87338
87476
  i0.ɵɵelementEnd();
87339
87477
  i0.ɵɵelementStart(51, "div", 14);
87340
- i0.ɵɵrepeaterCreate(52, UnifiedPriorityMatrixComponent_Conditional_0_For_53_Template, 6, 2, "button", 22, _forTrack0$o);
87478
+ i0.ɵɵrepeaterCreate(52, UnifiedPriorityMatrixComponent_Conditional_0_For_53_Template, 6, 2, "button", 22, _forTrack0$q);
87341
87479
  i0.ɵɵconditionalCreate(54, UnifiedPriorityMatrixComponent_Conditional_0_Conditional_54_Template, 2, 1, "div", 16);
87342
87480
  i0.ɵɵelementEnd()()();
87343
87481
  i0.ɵɵelementStart(55, "div", 23);
@@ -87640,7 +87778,7 @@ class UnifiedPriorityMatrixComponent {
87640
87778
  (() => { (typeof ngDevMode === "undefined" || ngDevMode) && i0.ɵsetClassDebugInfo(UnifiedPriorityMatrixComponent, { className: "UnifiedPriorityMatrixComponent", filePath: "lib/components/profile-analysis-unified-dashboard/cards/unified-priority-matrix.component.ts", lineNumber: 219 }); })();
87641
87779
 
87642
87780
  const _c0$j = a0 => ({ name: "arrow-right-circle", source: a0 });
87643
- const _forTrack0$n = ($index, $item) => $item.title;
87781
+ const _forTrack0$p = ($index, $item) => $item.title;
87644
87782
  const _forTrack1$3 = ($index, $item) => $item.id || $index;
87645
87783
  function UnifiedNextStepsComponent_Conditional_0_Conditional_1_Template(rf, ctx) { if (rf & 1) {
87646
87784
  i0.ɵɵelement(0, "symphiq-section-divider", 3)(1, "symphiq-section-header", 4);
@@ -87791,7 +87929,7 @@ function UnifiedNextStepsComponent_Conditional_0_Template(rf, ctx) { if (rf & 1)
87791
87929
  i0.ɵɵelementStart(0, "section", 0);
87792
87930
  i0.ɵɵconditionalCreate(1, UnifiedNextStepsComponent_Conditional_0_Conditional_1_Template, 2, 8);
87793
87931
  i0.ɵɵelementStart(2, "div", 1);
87794
- i0.ɵɵrepeaterCreate(3, UnifiedNextStepsComponent_Conditional_0_For_4_Template, 13, 11, "div", 2, _forTrack0$n);
87932
+ i0.ɵɵrepeaterCreate(3, UnifiedNextStepsComponent_Conditional_0_For_4_Template, 13, 11, "div", 2, _forTrack0$p);
87795
87933
  i0.ɵɵelementEnd()();
87796
87934
  } if (rf & 2) {
87797
87935
  const ctx_r0 = i0.ɵɵnextContext();
@@ -88586,7 +88724,7 @@ class FocusAreaHealthIndicatorComponent {
88586
88724
  (() => { (typeof ngDevMode === "undefined" || ngDevMode) && i0.ɵsetClassDebugInfo(FocusAreaHealthIndicatorComponent, { className: "FocusAreaHealthIndicatorComponent", filePath: "lib/components/profile-analysis-focus-area-dashboard/focus-area-health-indicator.component.ts", lineNumber: 46 }); })();
88587
88725
 
88588
88726
  const _c0$i = a0 => [a0];
88589
- const _forTrack0$m = ($index, $item) => $item.index;
88727
+ const _forTrack0$o = ($index, $item) => $item.index;
88590
88728
  function QuickWinsGridComponent_Conditional_0_Conditional_1_Template(rf, ctx) { if (rf & 1) {
88591
88729
  i0.ɵɵelementStart(0, "h3", 1);
88592
88730
  i0.ɵɵtext(1, " Quick Wins ");
@@ -88671,7 +88809,7 @@ function QuickWinsGridComponent_Conditional_0_Template(rf, ctx) { if (rf & 1) {
88671
88809
  i0.ɵɵelementStart(0, "div", 0);
88672
88810
  i0.ɵɵconditionalCreate(1, QuickWinsGridComponent_Conditional_0_Conditional_1_Template, 2, 1, "h3", 1);
88673
88811
  i0.ɵɵelementStart(2, "div", 2);
88674
- i0.ɵɵrepeaterCreate(3, QuickWinsGridComponent_Conditional_0_For_4_Template, 14, 11, "div", 3, _forTrack0$m);
88812
+ i0.ɵɵrepeaterCreate(3, QuickWinsGridComponent_Conditional_0_For_4_Template, 14, 11, "div", 3, _forTrack0$o);
88675
88813
  i0.ɵɵelementEnd()();
88676
88814
  } if (rf & 2) {
88677
88815
  const ctx_r0 = i0.ɵɵnextContext();
@@ -89103,7 +89241,7 @@ class FocusAreaExecutiveSummaryComponent {
89103
89241
  }], null, { viewMode: [{ type: i0.Input, args: [{ isSignal: true, alias: "viewMode", required: false }] }], summary: [{ type: i0.Input, args: [{ isSignal: true, alias: "summary", required: false }] }], allGoals: [{ type: i0.Input, args: [{ isSignal: true, alias: "allGoals", required: false }] }], topPrioritiesClick: [{ type: i0.Output, args: ["topPrioritiesClick"] }], priorityDetailClick: [{ type: i0.Output, args: ["priorityDetailClick"] }] }); })();
89104
89242
  (() => { (typeof ngDevMode === "undefined" || ngDevMode) && i0.ɵsetClassDebugInfo(FocusAreaExecutiveSummaryComponent, { className: "FocusAreaExecutiveSummaryComponent", filePath: "lib/components/profile-analysis-focus-area-dashboard/focus-area-executive-summary.component.ts", lineNumber: 125 }); })();
89105
89243
 
89106
- const _forTrack0$l = ($index, $item) => $item.id;
89244
+ const _forTrack0$n = ($index, $item) => $item.id;
89107
89245
  function CollapsibleAnalysisSectionGroupComponent_For_23_Conditional_3_Template(rf, ctx) { if (rf & 1) {
89108
89246
  i0.ɵɵelementStart(0, "div", 20);
89109
89247
  i0.ɵɵelement(1, "symphiq-icon", 35);
@@ -89603,7 +89741,7 @@ class CollapsibleAnalysisSectionGroupComponent {
89603
89741
  i0.ɵɵtext(20);
89604
89742
  i0.ɵɵelementEnd()()();
89605
89743
  i0.ɵɵelementStart(21, "div", 16);
89606
- i0.ɵɵrepeaterCreate(22, CollapsibleAnalysisSectionGroupComponent_For_23_Template, 20, 14, "div", 17, _forTrack0$l);
89744
+ i0.ɵɵrepeaterCreate(22, CollapsibleAnalysisSectionGroupComponent_For_23_Template, 20, 14, "div", 17, _forTrack0$n);
89607
89745
  i0.ɵɵelementEnd()()();
89608
89746
  } if (rf & 2) {
89609
89747
  i0.ɵɵproperty("ngClass", ctx.containerClasses());
@@ -89831,7 +89969,7 @@ class CollapsibleAnalysisSectionGroupComponent {
89831
89969
  }], null, { sections: [{ type: i0.Input, args: [{ isSignal: true, alias: "sections", required: false }] }], viewMode: [{ type: i0.Input, args: [{ isSignal: true, alias: "viewMode", required: false }] }], executiveSummary: [{ type: i0.Input, args: [{ isSignal: true, alias: "executiveSummary", required: false }] }], focusAreaExecutiveSummary: [{ type: i0.Input, args: [{ isSignal: true, alias: "focusAreaExecutiveSummary", required: false }] }], metricExecutiveSummary: [{ type: i0.Input, args: [{ isSignal: true, alias: "metricExecutiveSummary", required: false }] }], metricName: [{ type: i0.Input, args: [{ isSignal: true, alias: "metricName", required: false }] }], allGoals: [{ type: i0.Input, args: [{ isSignal: true, alias: "allGoals", required: false }] }], allMetrics: [{ type: i0.Input, args: [{ isSignal: true, alias: "allMetrics", required: false }] }], allCharts: [{ type: i0.Input, args: [{ isSignal: true, alias: "allCharts", required: false }] }], allInsights: [{ type: i0.Input, args: [{ isSignal: true, alias: "allInsights", required: false }] }], businessProfile: [{ type: i0.Input, args: [{ isSignal: true, alias: "businessProfile", required: false }] }], storageKey: [{ type: i0.Input, args: [{ isSignal: true, alias: "storageKey", required: false }] }], unifiedExecutiveSummary: [{ type: i0.Input, args: [{ isSignal: true, alias: "unifiedExecutiveSummary", required: false }] }], unifiedTimeline: [{ type: i0.Input, args: [{ isSignal: true, alias: "unifiedTimeline", required: false }] }], unifiedPriorityMatrix: [{ type: i0.Input, args: [{ isSignal: true, alias: "unifiedPriorityMatrix", required: false }] }], unifiedNextSteps: [{ type: i0.Input, args: [{ isSignal: true, alias: "unifiedNextSteps", required: false }] }], unifiedGoals: [{ type: i0.Input, args: [{ isSignal: true, alias: "unifiedGoals", required: false }] }], shopCounts: [{ type: i0.Input, args: [{ isSignal: true, alias: "shopCounts", required: false }] }], focusAreaCounts: [{ type: i0.Input, args: [{ isSignal: true, alias: "focusAreaCounts", required: false }] }], metricCounts: [{ type: i0.Input, args: [{ isSignal: true, alias: "metricCounts", required: false }] }], viewReportClick: [{ type: i0.Output, args: ["viewReportClick"] }], unifiedGoalClick: [{ type: i0.Output, args: ["unifiedGoalClick"] }], viewAllPriorityActionsClick: [{ type: i0.Output, args: ["viewAllPriorityActionsClick"] }] }); })();
89832
89970
  (() => { (typeof ngDevMode === "undefined" || ngDevMode) && i0.ɵsetClassDebugInfo(CollapsibleAnalysisSectionGroupComponent, { className: "CollapsibleAnalysisSectionGroupComponent", filePath: "lib/components/profile-analysis-shop-dashboard/cards/collapsible-analysis-section-group.component.ts", lineNumber: 212 }); })();
89833
89971
 
89834
- const _forTrack0$k = ($index, $item) => $item.item.id;
89972
+ const _forTrack0$m = ($index, $item) => $item.item.id;
89835
89973
  function ProfileCategoryListComponent_For_2_Template(rf, ctx) { if (rf & 1) {
89836
89974
  const _r1 = i0.ɵɵgetCurrentView();
89837
89975
  i0.ɵɵelementStart(0, "div", 1)(1, "div", 0)(2, "div", 2)(3, "div", 3)(4, "div", 4);
@@ -89921,7 +90059,7 @@ class ProfileCategoryListComponent {
89921
90059
  static { this.ɵfac = function ProfileCategoryListComponent_Factory(__ngFactoryType__) { return new (__ngFactoryType__ || ProfileCategoryListComponent)(); }; }
89922
90060
  static { this.ɵcmp = /*@__PURE__*/ i0.ɵɵdefineComponent({ type: ProfileCategoryListComponent, selectors: [["symphiq-profile-category-list"]], inputs: { viewMode: [1, "viewMode"], items: [1, "items"], delayAnimation: [1, "delayAnimation"] }, outputs: { itemClick: "itemClick" }, decls: 3, vars: 0, consts: [[1, "space-y-4"], [1, "rounded-xl", "p-6", "transition-all", "duration-300", "hover:scale-[1.01]", 3, "ngClass"], [1, "flex", "items-start", "justify-between", "gap-4"], [1, "flex-1", "min-w-0"], [1, "text-xs", "font-semibold", "uppercase", "tracking-wider", "mb-2", 3, "ngClass"], [1, "text-lg", "font-semibold", "leading-tight", 3, "ngClass"], ["type", "button", 1, "flex-shrink-0", "px-5", "py-2.5", "rounded-lg", "font-medium", "text-sm", "transition-all", "duration-300", "flex", "items-center", "gap-2", "hover:scale-105", "active:scale-95", 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", "M9 5l7 7-7 7"], [1, "space-y-2"], [1, "h-2", "rounded-full", "overflow-hidden", 3, "ngClass"], [3, "ngClass"], [1, "flex", "justify-between", "items-center"], [1, "text-sm", "font-medium", 3, "ngClass"]], template: function ProfileCategoryListComponent_Template(rf, ctx) { if (rf & 1) {
89923
90061
  i0.ɵɵelementStart(0, "div", 0);
89924
- i0.ɵɵrepeaterCreate(1, ProfileCategoryListComponent_For_2_Template, 19, 16, "div", 1, _forTrack0$k);
90062
+ i0.ɵɵrepeaterCreate(1, ProfileCategoryListComponent_For_2_Template, 19, 16, "div", 1, _forTrack0$m);
89925
90063
  i0.ɵɵelementEnd();
89926
90064
  } if (rf & 2) {
89927
90065
  i0.ɵɵadvance();
@@ -89990,7 +90128,7 @@ class ProfileCategoryListComponent {
89990
90128
  }], null, { viewMode: [{ type: i0.Input, args: [{ isSignal: true, alias: "viewMode", required: false }] }], items: [{ type: i0.Input, args: [{ isSignal: true, alias: "items", required: false }] }], delayAnimation: [{ type: i0.Input, args: [{ isSignal: true, alias: "delayAnimation", required: false }] }], itemClick: [{ type: i0.Output, args: ["itemClick"] }] }); })();
89991
90129
  (() => { (typeof ngDevMode === "undefined" || ngDevMode) && i0.ɵsetClassDebugInfo(ProfileCategoryListComponent, { className: "ProfileCategoryListComponent", filePath: "lib/components/shared/profile/profile-category-list.component.ts", lineNumber: 71 }); })();
89992
90130
 
89993
- const _forTrack0$j = ($index, $item) => $item.type;
90131
+ const _forTrack0$l = ($index, $item) => $item.type;
89994
90132
  function ProfileViewToggleComponent_For_2_Template(rf, ctx) { if (rf & 1) {
89995
90133
  const _r1 = i0.ɵɵgetCurrentView();
89996
90134
  i0.ɵɵelementStart(0, "button", 2);
@@ -90039,7 +90177,7 @@ class ProfileViewToggleComponent {
90039
90177
  static { this.ɵfac = function ProfileViewToggleComponent_Factory(__ngFactoryType__) { return new (__ngFactoryType__ || ProfileViewToggleComponent)(); }; }
90040
90178
  static { this.ɵcmp = /*@__PURE__*/ i0.ɵɵdefineComponent({ type: ProfileViewToggleComponent, selectors: [["symphiq-profile-view-toggle"]], inputs: { viewMode: [1, "viewMode"], currentView: [1, "currentView"], options: [1, "options"] }, outputs: { viewChanged: "viewChanged" }, decls: 3, vars: 1, consts: [[1, "inline-flex", "gap-2", "rounded-lg", "p-1", 3, "ngClass"], ["type", "button", 1, "px-6", "py-2.5", "rounded-md", "font-medium", "text-sm", "transition-all", "duration-300", "ease-in-out", 3, "ngClass"], ["type", "button", 1, "px-6", "py-2.5", "rounded-md", "font-medium", "text-sm", "transition-all", "duration-300", "ease-in-out", 3, "click", "ngClass"]], template: function ProfileViewToggleComponent_Template(rf, ctx) { if (rf & 1) {
90041
90179
  i0.ɵɵelementStart(0, "div", 0);
90042
- i0.ɵɵrepeaterCreate(1, ProfileViewToggleComponent_For_2_Template, 2, 2, "button", 1, _forTrack0$j);
90180
+ i0.ɵɵrepeaterCreate(1, ProfileViewToggleComponent_For_2_Template, 2, 2, "button", 1, _forTrack0$l);
90043
90181
  i0.ɵɵelementEnd();
90044
90182
  } if (rf & 2) {
90045
90183
  i0.ɵɵproperty("ngClass", ctx.getContainerClasses());
@@ -90076,7 +90214,7 @@ const _c0$g = ["scrollContainer"];
90076
90214
  const _c1$7 = ["stickySentinel"];
90077
90215
  const _c2$5 = ["stickyHeader"];
90078
90216
  const _c3$2 = ["questionTitle"];
90079
- const _forTrack0$i = ($index, $item) => $item.tempId;
90217
+ const _forTrack0$k = ($index, $item) => $item.tempId;
90080
90218
  function ProfileQuestionAnswerComponent_Conditional_18_Template(rf, ctx) { if (rf & 1) {
90081
90219
  i0.ɵɵelementStart(0, "div", 16);
90082
90220
  i0.ɵɵtext(1);
@@ -90217,7 +90355,7 @@ function ProfileQuestionAnswerComponent_Conditional_26_Conditional_13_Template(r
90217
90355
  function ProfileQuestionAnswerComponent_Conditional_26_Template(rf, ctx) { if (rf & 1) {
90218
90356
  const _r4 = i0.ɵɵgetCurrentView();
90219
90357
  i0.ɵɵelementStart(0, "div", 41);
90220
- i0.ɵɵrepeaterCreate(1, ProfileQuestionAnswerComponent_Conditional_26_For_2_Template, 4, 5, "label", 42, _forTrack0$i);
90358
+ i0.ɵɵrepeaterCreate(1, ProfileQuestionAnswerComponent_Conditional_26_For_2_Template, 4, 5, "label", 42, _forTrack0$k);
90221
90359
  i0.ɵɵelementEnd();
90222
90360
  i0.ɵɵelementStart(3, "div", 43)(4, "div", 44)(5, "div", 45)(6, "div", 46)(7, "textarea", 47);
90223
90361
  i0.ɵɵtwoWayListener("ngModelChange", function ProfileQuestionAnswerComponent_Conditional_26_Template_textarea_ngModelChange_7_listener($event) { i0.ɵɵrestoreView(_r4); const ctx_r1 = i0.ɵɵnextContext(); i0.ɵɵtwoWayBindingSet(ctx_r1.customAnswerText, $event) || (ctx_r1.customAnswerText = $event); return i0.ɵɵresetView($event); });
@@ -91129,7 +91267,7 @@ class ProfileAnswerAnimationService {
91129
91267
  }]
91130
91268
  }], null, null); })();
91131
91269
 
91132
- const _forTrack0$h = ($index, $item) => $item.answer.id;
91270
+ const _forTrack0$j = ($index, $item) => $item.answer.id;
91133
91271
  function ProfileQuestionCardComponent_Conditional_1_Template(rf, ctx) { if (rf & 1) {
91134
91272
  i0.ɵɵelementStart(0, "div", 1)(1, "span", 15);
91135
91273
  i0.ɵɵtext(2);
@@ -91218,7 +91356,7 @@ function ProfileQuestionCardComponent_Conditional_9_For_2_Template(rf, ctx) { if
91218
91356
  } }
91219
91357
  function ProfileQuestionCardComponent_Conditional_9_Template(rf, ctx) { if (rf & 1) {
91220
91358
  i0.ɵɵelementStart(0, "div", 8);
91221
- i0.ɵɵrepeaterCreate(1, ProfileQuestionCardComponent_Conditional_9_For_2_Template, 6, 11, null, null, _forTrack0$h);
91359
+ i0.ɵɵrepeaterCreate(1, ProfileQuestionCardComponent_Conditional_9_For_2_Template, 6, 11, null, null, _forTrack0$j);
91222
91360
  i0.ɵɵelementEnd();
91223
91361
  } if (rf & 2) {
91224
91362
  const ctx_r0 = i0.ɵɵnextContext();
@@ -91646,7 +91784,7 @@ class ProfileQuestionCardComponent {
91646
91784
  }], null, { question: [{ type: i0.Input, args: [{ isSignal: true, alias: "question", required: true }] }], viewMode: [{ type: i0.Input, args: [{ isSignal: true, alias: "viewMode", required: false }] }], viewType: [{ type: i0.Input, args: [{ isSignal: true, alias: "viewType", required: false }] }], profileAnswers: [{ type: i0.Input, args: [{ isSignal: true, alias: "profileAnswers", required: false }] }], profileAnswerHistories: [{ type: i0.Input, args: [{ isSignal: true, alias: "profileAnswerHistories", required: false }] }], users: [{ type: i0.Input, args: [{ isSignal: true, alias: "users", required: false }] }], showFocusAreaChips: [{ type: i0.Input, args: [{ isSignal: true, alias: "showFocusAreaChips", required: false }] }], categoryNameFormatter: [{ type: i0.Input, args: [{ isSignal: true, alias: "categoryNameFormatter", required: false }] }], answerClick: [{ type: i0.Output, args: ["answerClick"] }], historyClick: [{ type: i0.Output, args: ["historyClick"] }] }); })();
91647
91785
  (() => { (typeof ngDevMode === "undefined" || ngDevMode) && i0.ɵsetClassDebugInfo(ProfileQuestionCardComponent, { className: "ProfileQuestionCardComponent", filePath: "lib/components/shared/profile/profile-question-card.component.ts", lineNumber: 175 }); })();
91648
91786
 
91649
- const _forTrack0$g = ($index, $item) => $item.answer.id;
91787
+ const _forTrack0$i = ($index, $item) => $item.answer.id;
91650
91788
  const _forTrack1$2 = ($index, $item) => $item.history.id;
91651
91789
  function ProfileQuestionHistoryComponent_Conditional_16_For_8_Template(rf, ctx) { if (rf & 1) {
91652
91790
  i0.ɵɵelementStart(0, "div", 20)(1, "span", 21);
@@ -91680,7 +91818,7 @@ function ProfileQuestionHistoryComponent_Conditional_16_Template(rf, ctx) { if (
91680
91818
  i0.ɵɵtext(5);
91681
91819
  i0.ɵɵelementEnd();
91682
91820
  i0.ɵɵelementStart(6, "div", 19);
91683
- i0.ɵɵrepeaterCreate(7, ProfileQuestionHistoryComponent_Conditional_16_For_8_Template, 6, 8, null, null, _forTrack0$g);
91821
+ i0.ɵɵrepeaterCreate(7, ProfileQuestionHistoryComponent_Conditional_16_For_8_Template, 6, 8, null, null, _forTrack0$i);
91684
91822
  i0.ɵɵelementEnd()()();
91685
91823
  } if (rf & 2) {
91686
91824
  const ctx_r1 = i0.ɵɵnextContext();
@@ -92082,7 +92220,7 @@ class ProfileQuestionHistoryComponent {
92082
92220
  const _c0$f = ["modalContent"];
92083
92221
  const _c1$6 = ["modalWrapper"];
92084
92222
  const _c2$4 = ["scrollContainer"];
92085
- const _forTrack0$f = ($index, $item) => $item.id;
92223
+ const _forTrack0$h = ($index, $item) => $item.id;
92086
92224
  function ProfileQuestionsModalComponent_Conditional_0_Conditional_5_Conditional_0_Template(rf, ctx) { if (rf & 1) {
92087
92225
  const _r3 = i0.ɵɵgetCurrentView();
92088
92226
  i0.ɵɵelementStart(0, "symphiq-profile-question-history", 7);
@@ -92134,7 +92272,7 @@ function ProfileQuestionsModalComponent_Conditional_0_Conditional_6_Conditional_
92134
92272
  } }
92135
92273
  function ProfileQuestionsModalComponent_Conditional_0_Conditional_6_Conditional_18_Template(rf, ctx) { if (rf & 1) {
92136
92274
  i0.ɵɵelementStart(0, "div", 22);
92137
- i0.ɵɵrepeaterCreate(1, ProfileQuestionsModalComponent_Conditional_0_Conditional_6_Conditional_18_For_2_Template, 1, 9, "symphiq-profile-question-card", 28, _forTrack0$f);
92275
+ i0.ɵɵrepeaterCreate(1, ProfileQuestionsModalComponent_Conditional_0_Conditional_6_Conditional_18_For_2_Template, 1, 9, "symphiq-profile-question-card", 28, _forTrack0$h);
92138
92276
  i0.ɵɵelementEnd();
92139
92277
  } if (rf & 2) {
92140
92278
  const ctx_r1 = i0.ɵɵnextContext(3);
@@ -93893,7 +94031,7 @@ class CollapsibleShopProfileCardComponent {
93893
94031
  }], () => [{ type: i1$2.Router }], { viewMode: [{ type: i0.Input, args: [{ isSignal: true, alias: "viewMode", required: false }] }], totalQuestions: [{ type: i0.Input, args: [{ isSignal: true, alias: "totalQuestions", required: true }] }], answeredQuestions: [{ type: i0.Input, args: [{ isSignal: true, alias: "answeredQuestions", required: true }] }], questions: [{ type: i0.Input, args: [{ isSignal: true, alias: "questions", required: true }] }], profileAnswers: [{ type: i0.Input, args: [{ isSignal: true, alias: "profileAnswers", required: true }] }], profileAnswerHistories: [{ type: i0.Input, args: [{ isSignal: true, alias: "profileAnswerHistories", required: true }] }], users: [{ type: i0.Input, args: [{ isSignal: true, alias: "users", required: true }] }], config: [{ type: i0.Input, args: [{ isSignal: true, alias: "config", required: true }] }], groupConfig: [{ type: i0.Input, args: [{ isSignal: true, alias: "groupConfig", required: true }] }], currentUser: [{ type: i0.Input, args: [{ isSignal: true, alias: "currentUser", required: false }] }], startCategoryQuestions: [{ type: i0.Output, args: ["startCategoryQuestions"] }], answerSave: [{ type: i0.Output, args: ["answerSave"] }], adminAnswerAction: [{ type: i0.Output, args: ["adminAnswerAction"] }] }); })();
93894
94032
  (() => { (typeof ngDevMode === "undefined" || ngDevMode) && i0.ɵsetClassDebugInfo(CollapsibleShopProfileCardComponent, { className: "CollapsibleShopProfileCardComponent", filePath: "lib/components/profile-analysis-shop-dashboard/cards/collapsible-shop-profile-card.component.ts", lineNumber: 92 }); })();
93895
94033
 
93896
- const _forTrack0$e = ($index, $item) => $item.code;
94034
+ const _forTrack0$g = ($index, $item) => $item.code;
93897
94035
  function BillingCurrencySelectorCardComponent_For_15_Template(rf, ctx) { if (rf & 1) {
93898
94036
  const _r1 = i0.ɵɵgetCurrentView();
93899
94037
  i0.ɵɵelementStart(0, "label", 11)(1, "input", 12);
@@ -94085,7 +94223,7 @@ class BillingCurrencySelectorCardComponent {
94085
94223
  i0.ɵɵtext(10, " Choose the currency for your subscription ");
94086
94224
  i0.ɵɵelementEnd()()()();
94087
94225
  i0.ɵɵelementStart(11, "div", 8)(12, "div", 9)(13, "div", 10);
94088
- i0.ɵɵrepeaterCreate(14, BillingCurrencySelectorCardComponent_For_15_Template, 10, 12, "label", 11, _forTrack0$e);
94226
+ i0.ɵɵrepeaterCreate(14, BillingCurrencySelectorCardComponent_For_15_Template, 10, 12, "label", 11, _forTrack0$g);
94089
94227
  i0.ɵɵelementEnd()()()();
94090
94228
  } if (rf & 2) {
94091
94229
  i0.ɵɵproperty("ngClass", ctx.containerClasses());
@@ -95117,7 +95255,7 @@ At the end of each month, your total AI usage is calculated and automatically bi
95117
95255
  }], null, { viewMode: [{ type: i0.Input, args: [{ isSignal: true, alias: "viewMode", required: false }] }], planInfo: [{ type: i0.Input, args: [{ isSignal: true, alias: "planInfo", required: true }] }], isSelected: [{ type: i0.Input, args: [{ isSignal: true, alias: "isSelected", required: false }] }], selectedPeriodUnit: [{ type: i0.Input, args: [{ isSignal: true, alias: "selectedPeriodUnit", required: false }] }], monthlyComparisonPrice: [{ type: i0.Input, args: [{ isSignal: true, alias: "monthlyComparisonPrice", required: false }] }], planSelected: [{ type: i0.Output, args: ["planSelected"] }] }); })();
95118
95256
  (() => { (typeof ngDevMode === "undefined" || ngDevMode) && i0.ɵsetClassDebugInfo(PlanCardComponent, { className: "PlanCardComponent", filePath: "lib/components/profile-analysis-shop-dashboard/cards/plan-card.component.ts", lineNumber: 274 }); })();
95119
95257
 
95120
- const _forTrack0$d = ($index, $item) => $item.planItemPrice.id;
95258
+ const _forTrack0$f = ($index, $item) => $item.planItemPrice.id;
95121
95259
  function PlanSelectionContainerComponent_Conditional_19_Template(rf, ctx) { if (rf & 1) {
95122
95260
  i0.ɵɵelementStart(0, "div", 14);
95123
95261
  i0.ɵɵelement(1, "symphiq-indeterminate-spinner", 18);
@@ -95143,7 +95281,7 @@ function PlanSelectionContainerComponent_Conditional_20_For_2_Template(rf, ctx)
95143
95281
  } }
95144
95282
  function PlanSelectionContainerComponent_Conditional_20_Template(rf, ctx) { if (rf & 1) {
95145
95283
  i0.ɵɵelementStart(0, "div", 15);
95146
- i0.ɵɵrepeaterCreate(1, PlanSelectionContainerComponent_Conditional_20_For_2_Template, 1, 5, "symphiq-plan-card", 20, _forTrack0$d);
95284
+ i0.ɵɵrepeaterCreate(1, PlanSelectionContainerComponent_Conditional_20_For_2_Template, 1, 5, "symphiq-plan-card", 20, _forTrack0$f);
95147
95285
  i0.ɵɵelementEnd();
95148
95286
  } if (rf & 2) {
95149
95287
  const ctx_r0 = i0.ɵɵnextContext();
@@ -95474,7 +95612,7 @@ class PlanSelectionContainerComponent {
95474
95612
  }], null, { viewMode: [{ type: i0.Input, args: [{ isSignal: true, alias: "viewMode", required: false }] }], selectedCurrency: [{ type: i0.Input, args: [{ isSignal: true, alias: "selectedCurrency", required: false }] }], planCardInfos: [{ type: i0.Input, args: [{ isSignal: true, alias: "planCardInfos", required: false }] }], isLoading: [{ type: i0.Input, args: [{ isSignal: true, alias: "isLoading", required: false }] }], selectedPeriodUnit: [{ type: i0.Input, args: [{ isSignal: true, alias: "selectedPeriodUnit", required: false }] }], periodUnitChanged: [{ type: i0.Output, args: ["periodUnitChanged"] }], planSelected: [{ type: i0.Output, args: ["planSelected"] }], editCurrency: [{ type: i0.Output, args: ["editCurrency"] }], checkout: [{ type: i0.Output, args: ["checkout"] }] }); })();
95475
95613
  (() => { (typeof ngDevMode === "undefined" || ngDevMode) && i0.ɵsetClassDebugInfo(PlanSelectionContainerComponent, { className: "PlanSelectionContainerComponent", filePath: "lib/components/profile-analysis-shop-dashboard/cards/plan-selection-container.component.ts", lineNumber: 116 }); })();
95476
95614
 
95477
- const _forTrack0$c = ($index, $item) => $item.label;
95615
+ const _forTrack0$e = ($index, $item) => $item.label;
95478
95616
  const _forTrack1$1 = ($index, $item) => $item.title;
95479
95617
  function SubscriptionValuePropositionCardComponent_For_104_Conditional_7_Template(rf, ctx) { if (rf & 1) {
95480
95618
  i0.ɵɵnamespaceSVG();
@@ -95954,7 +96092,7 @@ class SubscriptionValuePropositionCardComponent {
95954
96092
  i0.ɵɵelementEnd();
95955
96093
  i0.ɵɵnamespaceHTML();
95956
96094
  i0.ɵɵelementStart(102, "div", 39);
95957
- i0.ɵɵrepeaterCreate(103, SubscriptionValuePropositionCardComponent_For_104_Template, 8, 6, "div", 40, _forTrack0$c);
96095
+ i0.ɵɵrepeaterCreate(103, SubscriptionValuePropositionCardComponent_For_104_Template, 8, 6, "div", 40, _forTrack0$e);
95958
96096
  i0.ɵɵelementEnd();
95959
96097
  i0.ɵɵelementStart(105, "div", 41);
95960
96098
  i0.ɵɵnamespaceSVG();
@@ -96664,7 +96802,7 @@ const _c1$5 = ["planSelectionContainer"];
96664
96802
  const _c2$3 = () => [];
96665
96803
  const _c3$1 = a0 => ({ name: "chevron-right", source: a0 });
96666
96804
  const _c4 = a0 => ({ name: "chevron-down", source: a0 });
96667
- const _forTrack0$b = ($index, $item) => $item.id;
96805
+ const _forTrack0$d = ($index, $item) => $item.id;
96668
96806
  function SymphiqProfileShopAnalysisDashboardComponent_Conditional_5_Template(rf, ctx) { if (rf & 1) {
96669
96807
  const _r1 = i0.ɵɵgetCurrentView();
96670
96808
  i0.ɵɵelementStart(0, "symphiq-journey-progress-indicator", 29);
@@ -97087,7 +97225,7 @@ function SymphiqProfileShopAnalysisDashboardComponent_Conditional_10_Conditional
97087
97225
  } }
97088
97226
  function SymphiqProfileShopAnalysisDashboardComponent_Conditional_10_Conditional_3_Template(rf, ctx) { if (rf & 1) {
97089
97227
  i0.ɵɵelementStart(0, "section", 49);
97090
- i0.ɵɵrepeaterCreate(1, SymphiqProfileShopAnalysisDashboardComponent_Conditional_10_Conditional_3_For_2_Template, 9, 16, null, null, _forTrack0$b);
97228
+ i0.ɵɵrepeaterCreate(1, SymphiqProfileShopAnalysisDashboardComponent_Conditional_10_Conditional_3_For_2_Template, 9, 16, null, null, _forTrack0$d);
97091
97229
  i0.ɵɵelementEnd();
97092
97230
  } if (rf & 2) {
97093
97231
  i0.ɵɵadvance();
@@ -99683,7 +99821,7 @@ class ProfileProgressIndicatorComponent {
99683
99821
  }], null, { viewMode: [{ type: i0.Input, args: [{ isSignal: true, alias: "viewMode", required: false }] }], questionsAnswered: [{ type: i0.Input, args: [{ isSignal: true, alias: "questionsAnswered", required: false }] }], totalQuestions: [{ type: i0.Input, args: [{ isSignal: true, alias: "totalQuestions", required: false }] }], progressPercent: [{ type: i0.Input, args: [{ isSignal: true, alias: "progressPercent", required: false }] }], status: [{ type: i0.Input, args: [{ isSignal: true, alias: "status", required: false }] }], label: [{ type: i0.Input, args: [{ isSignal: true, alias: "label", required: false }] }] }); })();
99684
99822
  (() => { (typeof ngDevMode === "undefined" || ngDevMode) && i0.ɵsetClassDebugInfo(ProfileProgressIndicatorComponent, { className: "ProfileProgressIndicatorComponent", filePath: "lib/components/shared/profile-progress-indicator.component.ts", lineNumber: 36 }); })();
99685
99823
 
99686
- const _forTrack0$a = ($index, $item) => $item.card.id;
99824
+ const _forTrack0$c = ($index, $item) => $item.card.id;
99687
99825
  function ProfileAnalysisCardGridComponent_For_2_Conditional_6_Template(rf, ctx) { if (rf & 1) {
99688
99826
  i0.ɵɵelementStart(0, "div", 7);
99689
99827
  i0.ɵɵtext(1);
@@ -99951,7 +100089,7 @@ function ProfileAnalysisCardGridComponent_Conditional_3_Template(rf, ctx) { if (
99951
100089
  i0.ɵɵelement(5, "div", 41);
99952
100090
  i0.ɵɵelementEnd();
99953
100091
  i0.ɵɵelementStart(6, "div", 43);
99954
- i0.ɵɵrepeaterCreate(7, ProfileAnalysisCardGridComponent_Conditional_3_For_8_Template, 12, 12, "div", 1, _forTrack0$a);
100092
+ i0.ɵɵrepeaterCreate(7, ProfileAnalysisCardGridComponent_Conditional_3_For_8_Template, 12, 12, "div", 1, _forTrack0$c);
99955
100093
  i0.ɵɵelementEnd()();
99956
100094
  } if (rf & 2) {
99957
100095
  const ctx_r2 = i0.ɵɵnextContext();
@@ -100047,7 +100185,7 @@ class ProfileAnalysisCardGridComponent {
100047
100185
  static { this.ɵfac = function ProfileAnalysisCardGridComponent_Factory(__ngFactoryType__) { return new (__ngFactoryType__ || ProfileAnalysisCardGridComponent)(); }; }
100048
100186
  static { this.ɵcmp = /*@__PURE__*/ i0.ɵɵdefineComponent({ type: ProfileAnalysisCardGridComponent, selectors: [["symphiq-profile-analysis-card-grid"]], inputs: { viewMode: [1, "viewMode"], cards: [1, "cards"], config: [1, "config"] }, outputs: { cardClick: "cardClick" }, decls: 4, vars: 1, consts: [[1, "grid", "grid-cols-1", "md:grid-cols-2", "lg:grid-cols-3", "gap-6"], [3, "class"], [1, "mt-12"], [1, "p-6", "flex-1"], [1, "flex", "items-start", "justify-between", "mb-4"], [1, "text-4xl"], [1, "flex", "flex-col", "items-end", "gap-2"], [3, "ngClass"], [1, "px-2.5", "py-1", "rounded-full", "text-xs", "font-medium", "bg-red-100", "dark:bg-red-900/30", "text-red-700", "dark:text-red-400", "flex", "items-center", "gap-1.5", "animate-alert-pulse"], [1, "px-3", "py-1", "bg-emerald-100", "dark:bg-emerald-900/40", "text-emerald-700", "dark:text-emerald-400", "text-xs", "font-semibold", "rounded-full", "flex", "items-center", "gap-1.5", "border", "border-emerald-300/50", "dark:border-emerald-500/30", "shadow-sm"], ["tooltipPosition", "bottom", 3, "libSymphiqTooltip"], [1, "mt-3", "mb-4"], [1, "flex", "items-center", "gap-2", "py-2"], [1, "cursor-pointer", "mt-4"], [1, "px-6", "pb-4"], [1, "w-2", "h-2", "rounded-full", "bg-red-500", "animate-slow-pulse"], ["fill", "currentColor", "viewBox", "0 0 20 20", 1, "w-3.5", "h-3.5"], ["fill-rule", "evenodd", "d", "M16.707 5.293a1 1 0 010 1.414l-8 8a1 1 0 01-1.414 0l-4-4a1 1 0 011.414-1.414L8 12.586l7.293-7.293a1 1 0 011.414 0z", "clip-rule", "evenodd"], [1, "flex", "items-center", "gap-2"], [1, "text-xs", "font-medium", 3, "ngClass"], [1, "flex", "flex-wrap", "gap-1.5"], [1, "px-2", "py-0.5", "rounded", "text-xs", 3, "ngClass"], [1, "animate-spin", "w-4", "h-4", "border-2", "border-amber-500/30", "border-t-amber-500", "rounded-full"], [1, "text-xs", "text-amber-600", "dark:text-amber-400", "font-medium"], [1, "cursor-pointer", "mt-4", 3, "click"], [3, "viewMode", "questionsAnswered", "totalQuestions", "progressPercent", "status", "label"], [3, "itemStatus", "viewMode", "compact", "compactTitle"], [1, "mt-auto", "cursor-pointer", "bg-gradient-to-r", "from-blue-600", "via-cyan-600", "to-teal-600", "hover:from-blue-500", "hover:via-cyan-500", "hover:to-teal-500", "transition-all", "duration-300", "px-4", "py-3", "border-t", "border-blue-500/30", "animate-review-pulse"], [1, "mt-auto", "cursor-pointer", "hover:bg-slate-100", "dark:hover:bg-slate-700/50", "transition-colors", 3, "class"], [1, "mt-auto", "cursor-pointer", "bg-gradient-to-r", "from-blue-600", "via-cyan-600", "to-teal-600", "hover:from-blue-500", "hover:via-cyan-500", "hover:to-teal-500", "transition-all", "duration-300", "px-4", "py-3", "border-t", "border-blue-500/30", "animate-review-pulse", 3, "click"], [1, "flex", "items-center", "justify-between"], [1, "text-sm", "font-semibold", "text-white", "flex", "items-center", "gap-2"], ["fill", "none", "stroke", "currentColor", "viewBox", "0 0 24 24", 1, "w-5", "h-5", "animate-pulse"], ["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"], ["fill", "none", "stroke", "currentColor", "viewBox", "0 0 24 24", 1, "w-5", "h-5", "text-white/90", "group-hover:translate-x-1", "transition-transform"], ["stroke-linecap", "round", "stroke-linejoin", "round", "stroke-width", "2", "d", "M9 5l7 7-7 7"], [1, "mt-auto", "cursor-pointer", "hover:bg-slate-100", "dark:hover:bg-slate-700/50", "transition-colors", 3, "click"], [1, "text-sm", "font-medium", "text-slate-600", "dark:text-slate-400"], ["fill", "none", "stroke", "currentColor", "viewBox", "0 0 24 24", 1, "w-5", "h-5", "text-slate-400", "dark:text-slate-500", "hover:text-blue-500", "dark:hover:text-blue-400", "hover:translate-x-1", "transition-all"], [1, "flex", "items-center", "gap-4", "mb-6"], [1, "flex-1", "h-px", 3, "ngClass"], [1, "text-sm", "font-medium", "px-3", 3, "ngClass"], [1, "grid", "grid-cols-1", "md:grid-cols-2", "lg:grid-cols-3", "gap-6", "opacity-60"]], template: function ProfileAnalysisCardGridComponent_Template(rf, ctx) { if (rf & 1) {
100049
100187
  i0.ɵɵelementStart(0, "div", 0);
100050
- i0.ɵɵrepeaterCreate(1, ProfileAnalysisCardGridComponent_For_2_Template, 19, 17, "div", 1, _forTrack0$a);
100188
+ i0.ɵɵrepeaterCreate(1, ProfileAnalysisCardGridComponent_For_2_Template, 19, 17, "div", 1, _forTrack0$c);
100051
100189
  i0.ɵɵelementEnd();
100052
100190
  i0.ɵɵconditionalCreate(3, ProfileAnalysisCardGridComponent_Conditional_3_Template, 9, 4, "div", 2);
100053
100191
  } if (rf & 2) {
@@ -101509,7 +101647,7 @@ class FocusAreaWelcomeBannerComponent {
101509
101647
 
101510
101648
  const _c0$a = ["funnelModalComponent"];
101511
101649
  const _c1$4 = () => [];
101512
- const _forTrack0$9 = ($index, $item) => $item.id;
101650
+ const _forTrack0$b = ($index, $item) => $item.id;
101513
101651
  function SymphiqProfileAnalysisFocusAreaDashboardComponent_Conditional_6_Conditional_2_Template(rf, ctx) { if (rf & 1) {
101514
101652
  i0.ɵɵelement(0, "symphiq-loading-card", 23);
101515
101653
  } if (rf & 2) {
@@ -101685,7 +101823,7 @@ function SymphiqProfileAnalysisFocusAreaDashboardComponent_Conditional_8_Conditi
101685
101823
  } }
101686
101824
  function SymphiqProfileAnalysisFocusAreaDashboardComponent_Conditional_8_Conditional_2_Template(rf, ctx) { if (rf & 1) {
101687
101825
  i0.ɵɵelementStart(0, "section", 31);
101688
- i0.ɵɵrepeaterCreate(1, SymphiqProfileAnalysisFocusAreaDashboardComponent_Conditional_8_Conditional_2_For_2_Template, 9, 15, null, null, _forTrack0$9);
101826
+ i0.ɵɵrepeaterCreate(1, SymphiqProfileAnalysisFocusAreaDashboardComponent_Conditional_8_Conditional_2_For_2_Template, 9, 15, null, null, _forTrack0$b);
101689
101827
  i0.ɵɵelementEnd();
101690
101828
  } if (rf & 2) {
101691
101829
  i0.ɵɵadvance();
@@ -103022,61 +103160,367 @@ class ThematicCategoryBadgeComponent {
103022
103160
  }], null, { category: [{ type: i0.Input, args: [{ isSignal: true, alias: "category", required: false }] }], viewMode: [{ type: i0.Input, args: [{ isSignal: true, alias: "viewMode", required: false }] }] }); })();
103023
103161
  (() => { (typeof ngDevMode === "undefined" || ngDevMode) && i0.ɵsetClassDebugInfo(ThematicCategoryBadgeComponent, { className: "ThematicCategoryBadgeComponent", filePath: "lib/components/shared/thematic-category-badge.component.ts", lineNumber: 18 }); })();
103024
103162
 
103025
- function UnifiedGoalCardComponent_Conditional_10_Template(rf, ctx) { if (rf & 1) {
103026
- i0.ɵɵelementStart(0, "div", 8);
103027
- i0.ɵɵelement(1, "symphiq-thematic-category-badge", 17);
103163
+ const _forTrack0$a = ($index, $item) => $item.value;
103164
+ function GoalActionStateChipComponent_Conditional_6_For_2_Conditional_4_Template(rf, ctx) { if (rf & 1) {
103165
+ i0.ɵɵnamespaceSVG();
103166
+ i0.ɵɵelementStart(0, "svg", 10);
103167
+ i0.ɵɵelement(1, "path", 11);
103168
+ i0.ɵɵelementEnd();
103169
+ } }
103170
+ function GoalActionStateChipComponent_Conditional_6_For_2_Template(rf, ctx) { if (rf & 1) {
103171
+ const _r1 = i0.ɵɵgetCurrentView();
103172
+ i0.ɵɵelementStart(0, "button", 7);
103173
+ i0.ɵɵlistener("click", function GoalActionStateChipComponent_Conditional_6_For_2_Template_button_click_0_listener($event) { const option_r2 = i0.ɵɵrestoreView(_r1).$implicit; const ctx_r2 = i0.ɵɵnextContext(2); return i0.ɵɵresetView(ctx_r2.selectOption($event, option_r2.value)); });
103174
+ i0.ɵɵelement(1, "span", 8);
103175
+ i0.ɵɵelementStart(2, "span", 9);
103176
+ i0.ɵɵtext(3);
103177
+ i0.ɵɵelementEnd();
103178
+ i0.ɵɵconditionalCreate(4, GoalActionStateChipComponent_Conditional_6_For_2_Conditional_4_Template, 2, 0, ":svg:svg", 10);
103028
103179
  i0.ɵɵelementEnd();
103029
103180
  } if (rf & 2) {
103030
- const ctx_r0 = i0.ɵɵnextContext();
103181
+ const option_r2 = ctx.$implicit;
103182
+ const ctx_r2 = i0.ɵɵnextContext(2);
103183
+ i0.ɵɵproperty("ngClass", ctx_r2.getOptionClasses(option_r2.value));
103031
103184
  i0.ɵɵadvance();
103032
- i0.ɵɵproperty("category", ctx_r0.goal().thematicCategory)("viewMode", ctx_r0.viewMode());
103185
+ i0.ɵɵproperty("ngClass", ctx_r2.getOptionDotClasses(option_r2.value));
103186
+ i0.ɵɵadvance(2);
103187
+ i0.ɵɵtextInterpolate(option_r2.label);
103188
+ i0.ɵɵadvance();
103189
+ i0.ɵɵconditional(ctx_r2.state() === option_r2.value ? 4 : -1);
103033
103190
  } }
103034
- function UnifiedGoalCardComponent_Conditional_11_Template(rf, ctx) { if (rf & 1) {
103035
- i0.ɵɵelementStart(0, "p", 9);
103036
- i0.ɵɵtext(1);
103191
+ function GoalActionStateChipComponent_Conditional_6_Template(rf, ctx) { if (rf & 1) {
103192
+ i0.ɵɵelementStart(0, "div", 5);
103193
+ i0.ɵɵrepeaterCreate(1, GoalActionStateChipComponent_Conditional_6_For_2_Template, 5, 4, "button", 6, _forTrack0$a);
103037
103194
  i0.ɵɵelementEnd();
103038
103195
  } if (rf & 2) {
103039
- const ctx_r0 = i0.ɵɵnextContext();
103040
- i0.ɵɵproperty("ngClass", ctx_r0.descriptionClasses())("libSymphiqTooltip", ctx_r0.goal().description);
103196
+ const ctx_r2 = i0.ɵɵnextContext();
103197
+ i0.ɵɵproperty("ngClass", ctx_r2.dropdownClasses());
103041
103198
  i0.ɵɵadvance();
103042
- i0.ɵɵtextInterpolate(ctx_r0.goal().description);
103199
+ i0.ɵɵrepeater(ctx_r2.options);
103200
+ } }
103201
+ class GoalActionStateChipComponent {
103202
+ constructor() {
103203
+ this.state = input.required(...(ngDevMode ? [{ debugName: "state" }] : []));
103204
+ this.viewMode = input(ViewModeEnum.LIGHT, ...(ngDevMode ? [{ debugName: "viewMode" }] : []));
103205
+ this.goalId = input(...(ngDevMode ? [undefined, { debugName: "goalId" }] : []));
103206
+ this.shouldPulse = input(false, ...(ngDevMode ? [{ debugName: "shouldPulse" }] : []));
103207
+ this.stateChange = output();
103208
+ this.isOpen = signal(false, ...(ngDevMode ? [{ debugName: "isOpen" }] : []));
103209
+ this.elementRef = inject(ElementRef);
103210
+ this.options = [
103211
+ { value: GoalActionStateEnum.PLAN, label: 'Plan to Act' },
103212
+ { value: GoalActionStateEnum.POTENTIAL, label: 'Keep for Later' },
103213
+ { value: GoalActionStateEnum.SKIP, label: 'Skip' }
103214
+ ];
103215
+ this.isDark = computed(() => this.viewMode() === ViewModeEnum.DARK, ...(ngDevMode ? [{ debugName: "isDark" }] : []));
103216
+ this.label = computed(() => {
103217
+ switch (this.state()) {
103218
+ case GoalActionStateEnum.PLAN: return 'Planned';
103219
+ case GoalActionStateEnum.POTENTIAL: return 'Potential';
103220
+ case GoalActionStateEnum.SKIP: return 'Skipped';
103221
+ default: return 'Choose';
103222
+ }
103223
+ }, ...(ngDevMode ? [{ debugName: "label" }] : []));
103224
+ this.chipClasses = computed(() => {
103225
+ const s = this.state();
103226
+ if (this.isDark()) {
103227
+ switch (s) {
103228
+ case GoalActionStateEnum.PLAN:
103229
+ return 'bg-emerald-900/40 text-emerald-300 border border-emerald-600 hover:bg-emerald-900/60 hover:shadow-emerald-500/20 hover:shadow-md';
103230
+ case GoalActionStateEnum.POTENTIAL:
103231
+ return 'bg-amber-900/40 text-amber-300 border border-amber-600 hover:bg-amber-900/60 hover:shadow-amber-500/20 hover:shadow-md';
103232
+ case GoalActionStateEnum.SKIP:
103233
+ return 'bg-slate-700/50 text-slate-400 border border-slate-600 hover:bg-slate-700/70 hover:shadow-slate-500/20 hover:shadow-md';
103234
+ default:
103235
+ return 'bg-slate-700/50 text-slate-400 border border-slate-600';
103236
+ }
103237
+ }
103238
+ switch (s) {
103239
+ case GoalActionStateEnum.PLAN:
103240
+ return 'bg-emerald-100 text-emerald-700 border border-emerald-300 hover:bg-emerald-200 hover:shadow-emerald-200 hover:shadow-md';
103241
+ case GoalActionStateEnum.POTENTIAL:
103242
+ return 'bg-amber-100 text-amber-700 border border-amber-300 hover:bg-amber-200 hover:shadow-amber-200 hover:shadow-md';
103243
+ case GoalActionStateEnum.SKIP:
103244
+ return 'bg-slate-100 text-slate-500 border border-slate-300 hover:bg-slate-200 hover:shadow-slate-200 hover:shadow-md';
103245
+ default:
103246
+ return 'bg-slate-100 text-slate-600 border border-slate-200';
103247
+ }
103248
+ }, ...(ngDevMode ? [{ debugName: "chipClasses" }] : []));
103249
+ this.dotClasses = computed(() => {
103250
+ const s = this.state();
103251
+ switch (s) {
103252
+ case GoalActionStateEnum.PLAN:
103253
+ return 'bg-emerald-500';
103254
+ case GoalActionStateEnum.POTENTIAL:
103255
+ return 'bg-amber-500';
103256
+ case GoalActionStateEnum.SKIP:
103257
+ return 'bg-slate-400';
103258
+ default:
103259
+ return 'bg-slate-400';
103260
+ }
103261
+ }, ...(ngDevMode ? [{ debugName: "dotClasses" }] : []));
103262
+ this.dropdownClasses = computed(() => {
103263
+ return this.isDark()
103264
+ ? 'bg-slate-800 border-slate-700'
103265
+ : 'bg-white border-slate-200';
103266
+ }, ...(ngDevMode ? [{ debugName: "dropdownClasses" }] : []));
103267
+ }
103268
+ getOptionClasses(value) {
103269
+ const isSelected = this.state() === value;
103270
+ if (this.isDark()) {
103271
+ return isSelected
103272
+ ? 'bg-slate-700/50 text-white'
103273
+ : 'text-slate-300 hover:bg-slate-700/30';
103274
+ }
103275
+ return isSelected
103276
+ ? 'bg-slate-100 text-slate-900'
103277
+ : 'text-slate-700 hover:bg-slate-50';
103278
+ }
103279
+ getOptionDotClasses(value) {
103280
+ switch (value) {
103281
+ case GoalActionStateEnum.PLAN:
103282
+ return 'bg-emerald-500';
103283
+ case GoalActionStateEnum.POTENTIAL:
103284
+ return 'bg-amber-500';
103285
+ case GoalActionStateEnum.SKIP:
103286
+ return 'bg-slate-400';
103287
+ default:
103288
+ return 'bg-slate-400';
103289
+ }
103290
+ }
103291
+ toggleDropdown(event) {
103292
+ event.stopPropagation();
103293
+ this.isOpen.update(v => !v);
103294
+ }
103295
+ selectOption(event, value) {
103296
+ event.stopPropagation();
103297
+ this.isOpen.set(false);
103298
+ if (value !== this.state()) {
103299
+ this.stateChange.emit({ goalId: this.goalId(), state: value });
103300
+ }
103301
+ }
103302
+ onDocumentClick(event) {
103303
+ if (!this.elementRef.nativeElement.contains(event.target)) {
103304
+ this.isOpen.set(false);
103305
+ }
103306
+ }
103307
+ static { this.ɵfac = function GoalActionStateChipComponent_Factory(__ngFactoryType__) { return new (__ngFactoryType__ || GoalActionStateChipComponent)(); }; }
103308
+ static { this.ɵcmp = /*@__PURE__*/ i0.ɵɵdefineComponent({ type: GoalActionStateChipComponent, selectors: [["symphiq-goal-action-state-chip"]], hostBindings: function GoalActionStateChipComponent_HostBindings(rf, ctx) { if (rf & 1) {
103309
+ i0.ɵɵlistener("click", function GoalActionStateChipComponent_click_HostBindingHandler($event) { return ctx.onDocumentClick($event); }, i0.ɵɵresolveDocument);
103310
+ } }, inputs: { state: [1, "state"], viewMode: [1, "viewMode"], goalId: [1, "goalId"], shouldPulse: [1, "shouldPulse"] }, outputs: { stateChange: "stateChange" }, decls: 7, vars: 8, consts: [[1, "relative", "inline-block"], ["type", "button", 1, "inline-flex", "items-center", "gap-1.5", "px-3", "py-1", "rounded-full", "text-xs", "font-semibold", "whitespace-nowrap", "cursor-pointer", "transition-all", "duration-200", "hover:scale-105", 3, "click", "ngClass"], [1, "w-2", "h-2", "rounded-full", 3, "ngClass"], ["fill", "none", "stroke", "currentColor", "viewBox", "0 0 24 24", 1, "w-3", "h-3", "transition-transform", "duration-200"], ["stroke-linecap", "round", "stroke-linejoin", "round", "stroke-width", "2", "d", "M19 9l-7 7-7-7"], [1, "absolute", "top-full", "left-0", "mt-1", "min-w-[160px]", "rounded-lg", "shadow-xl", "z-50", "py-1", "border", 3, "ngClass"], ["type", "button", 1, "w-full", "flex", "items-center", "gap-2", "px-3", "py-2", "text-xs", "font-medium", "transition-colors", "duration-150", "text-left", 3, "ngClass"], ["type", "button", 1, "w-full", "flex", "items-center", "gap-2", "px-3", "py-2", "text-xs", "font-medium", "transition-colors", "duration-150", "text-left", 3, "click", "ngClass"], [1, "w-2", "h-2", "rounded-full", "flex-shrink-0", 3, "ngClass"], [1, "flex-1"], ["fill", "currentColor", "viewBox", "0 0 20 20", 1, "w-3.5", "h-3.5", "text-blue-500"], ["fill-rule", "evenodd", "d", "M16.707 5.293a1 1 0 010 1.414l-8 8a1 1 0 01-1.414 0l-4-4a1 1 0 011.414-1.414L8 12.586l7.293-7.293a1 1 0 011.414 0z", "clip-rule", "evenodd"]], template: function GoalActionStateChipComponent_Template(rf, ctx) { if (rf & 1) {
103311
+ i0.ɵɵelementStart(0, "div", 0)(1, "button", 1);
103312
+ i0.ɵɵlistener("click", function GoalActionStateChipComponent_Template_button_click_1_listener($event) { return ctx.toggleDropdown($event); });
103313
+ i0.ɵɵelement(2, "span", 2);
103314
+ i0.ɵɵtext(3);
103315
+ i0.ɵɵnamespaceSVG();
103316
+ i0.ɵɵelementStart(4, "svg", 3);
103317
+ i0.ɵɵelement(5, "path", 4);
103318
+ i0.ɵɵelementEnd()();
103319
+ i0.ɵɵconditionalCreate(6, GoalActionStateChipComponent_Conditional_6_Template, 3, 1, "div", 5);
103320
+ i0.ɵɵelementEnd();
103321
+ } if (rf & 2) {
103322
+ i0.ɵɵadvance();
103323
+ i0.ɵɵclassProp("animate-chip-pulse", ctx.shouldPulse());
103324
+ i0.ɵɵproperty("ngClass", ctx.chipClasses());
103325
+ i0.ɵɵadvance();
103326
+ i0.ɵɵproperty("ngClass", ctx.dotClasses());
103327
+ i0.ɵɵadvance();
103328
+ i0.ɵɵtextInterpolate1(" ", ctx.label(), " ");
103329
+ i0.ɵɵadvance();
103330
+ i0.ɵɵclassProp("rotate-180", ctx.isOpen());
103331
+ i0.ɵɵadvance(2);
103332
+ i0.ɵɵconditional(ctx.isOpen() ? 6 : -1);
103333
+ } }, dependencies: [CommonModule, i1$1.NgClass], styles: ["@keyframes _ngcontent-%COMP%_chip-pulse{0%,to{transform:scale(1);box-shadow:0 0 0 0 currentColor}50%{transform:scale(1.05);box-shadow:0 0 12px 2px currentColor}}.animate-chip-pulse[_ngcontent-%COMP%]{animation:_ngcontent-%COMP%_chip-pulse .6s ease-in-out 3}"], changeDetection: 0 }); }
103334
+ }
103335
+ (() => { (typeof ngDevMode === "undefined" || ngDevMode) && i0.ɵsetClassMetadata(GoalActionStateChipComponent, [{
103336
+ type: Component,
103337
+ args: [{ selector: 'symphiq-goal-action-state-chip', standalone: true, imports: [CommonModule], changeDetection: ChangeDetectionStrategy.OnPush, template: `
103338
+ <div class="relative inline-block">
103339
+ <button
103340
+ type="button"
103341
+ (click)="toggleDropdown($event)"
103342
+ [ngClass]="chipClasses()"
103343
+ [class.animate-chip-pulse]="shouldPulse()"
103344
+ class="inline-flex items-center gap-1.5 px-3 py-1 rounded-full text-xs font-semibold whitespace-nowrap cursor-pointer transition-all duration-200 hover:scale-105">
103345
+ <span [ngClass]="dotClasses()" class="w-2 h-2 rounded-full"></span>
103346
+ {{ label() }}
103347
+ <svg class="w-3 h-3 transition-transform duration-200" [class.rotate-180]="isOpen()" fill="none" stroke="currentColor" viewBox="0 0 24 24">
103348
+ <path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M19 9l-7 7-7-7"></path>
103349
+ </svg>
103350
+ </button>
103351
+
103352
+ @if (isOpen()) {
103353
+ <div [ngClass]="dropdownClasses()" class="absolute top-full left-0 mt-1 min-w-[160px] rounded-lg shadow-xl z-50 py-1 border">
103354
+ @for (option of options; track option.value) {
103355
+ <button
103356
+ type="button"
103357
+ (click)="selectOption($event, option.value)"
103358
+ [ngClass]="getOptionClasses(option.value)"
103359
+ class="w-full flex items-center gap-2 px-3 py-2 text-xs font-medium transition-colors duration-150 text-left">
103360
+ <span [ngClass]="getOptionDotClasses(option.value)" class="w-2 h-2 rounded-full flex-shrink-0"></span>
103361
+ <span class="flex-1">{{ option.label }}</span>
103362
+ @if (state() === option.value) {
103363
+ <svg class="w-3.5 h-3.5 text-blue-500" fill="currentColor" viewBox="0 0 20 20">
103364
+ <path fill-rule="evenodd" d="M16.707 5.293a1 1 0 010 1.414l-8 8a1 1 0 01-1.414 0l-4-4a1 1 0 011.414-1.414L8 12.586l7.293-7.293a1 1 0 011.414 0z" clip-rule="evenodd"></path>
103365
+ </svg>
103366
+ }
103367
+ </button>
103368
+ }
103369
+ </div>
103370
+ }
103371
+ </div>
103372
+ `, styles: ["@keyframes chip-pulse{0%,to{transform:scale(1);box-shadow:0 0 0 0 currentColor}50%{transform:scale(1.05);box-shadow:0 0 12px 2px currentColor}}.animate-chip-pulse{animation:chip-pulse .6s ease-in-out 3}\n"] }]
103373
+ }], null, { state: [{ type: i0.Input, args: [{ isSignal: true, alias: "state", required: true }] }], viewMode: [{ type: i0.Input, args: [{ isSignal: true, alias: "viewMode", required: false }] }], goalId: [{ type: i0.Input, args: [{ isSignal: true, alias: "goalId", required: false }] }], shouldPulse: [{ type: i0.Input, args: [{ isSignal: true, alias: "shouldPulse", required: false }] }], stateChange: [{ type: i0.Output, args: ["stateChange"] }], onDocumentClick: [{
103374
+ type: HostListener,
103375
+ args: ['document:click', ['$event']]
103376
+ }] }); })();
103377
+ (() => { (typeof ngDevMode === "undefined" || ngDevMode) && i0.ɵsetClassDebugInfo(GoalActionStateChipComponent, { className: "GoalActionStateChipComponent", filePath: "lib/components/shared/goal-action-state-chip.component.ts", lineNumber: 63 }); })();
103378
+
103379
+ class ReviewButtonComponent {
103380
+ constructor() {
103381
+ this.viewMode = input(ViewModeEnum.LIGHT, ...(ngDevMode ? [{ debugName: "viewMode" }] : []));
103382
+ this.label = input('Review Goal', ...(ngDevMode ? [{ debugName: "label" }] : []));
103383
+ this.buttonClick = output();
103384
+ this.isDark = computed(() => this.viewMode() === ViewModeEnum.DARK, ...(ngDevMode ? [{ debugName: "isDark" }] : []));
103385
+ this.buttonClasses = computed(() => {
103386
+ return 'bg-gradient-to-r from-blue-600 via-cyan-600 to-teal-600 hover:from-blue-500 hover:via-cyan-500 hover:to-teal-500 text-white border border-blue-500/30';
103387
+ }, ...(ngDevMode ? [{ debugName: "buttonClasses" }] : []));
103388
+ }
103389
+ onClick(event) {
103390
+ event.stopPropagation();
103391
+ this.buttonClick.emit();
103392
+ }
103393
+ static { this.ɵfac = function ReviewButtonComponent_Factory(__ngFactoryType__) { return new (__ngFactoryType__ || ReviewButtonComponent)(); }; }
103394
+ static { this.ɵcmp = /*@__PURE__*/ i0.ɵɵdefineComponent({ type: ReviewButtonComponent, selectors: [["symphiq-review-button"]], inputs: { viewMode: [1, "viewMode"], label: [1, "label"] }, outputs: { buttonClick: "buttonClick" }, decls: 8, vars: 2, consts: [["type", "button", 1, "w-full", "flex", "items-center", "justify-center", "gap-2", "px-4", "py-3", "rounded-xl", "text-sm", "font-semibold", "transition-all", "duration-300", "cursor-pointer", "hover:scale-[1.02]", "active:scale-[0.98]", "animate-review-pulse", 3, "click", "ngClass"], ["fill", "none", "stroke", "currentColor", "viewBox", "0 0 24 24", 1, "w-5", "h-5", "animate-pulse"], ["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"], ["fill", "none", "stroke", "currentColor", "viewBox", "0 0 24 24", 1, "w-5", "h-5", "group-hover:translate-x-1", "transition-transform"], ["stroke-linecap", "round", "stroke-linejoin", "round", "stroke-width", "2", "d", "M9 5l7 7-7 7"]], template: function ReviewButtonComponent_Template(rf, ctx) { if (rf & 1) {
103395
+ i0.ɵɵelementStart(0, "button", 0);
103396
+ i0.ɵɵlistener("click", function ReviewButtonComponent_Template_button_click_0_listener($event) { return ctx.onClick($event); });
103397
+ i0.ɵɵnamespaceSVG();
103398
+ i0.ɵɵelementStart(1, "svg", 1);
103399
+ i0.ɵɵelement(2, "path", 2)(3, "path", 3);
103400
+ i0.ɵɵelementEnd();
103401
+ i0.ɵɵnamespaceHTML();
103402
+ i0.ɵɵelementStart(4, "span");
103403
+ i0.ɵɵtext(5);
103404
+ i0.ɵɵelementEnd();
103405
+ i0.ɵɵnamespaceSVG();
103406
+ i0.ɵɵelementStart(6, "svg", 4);
103407
+ i0.ɵɵelement(7, "path", 5);
103408
+ i0.ɵɵelementEnd()();
103409
+ } if (rf & 2) {
103410
+ i0.ɵɵproperty("ngClass", ctx.buttonClasses());
103411
+ i0.ɵɵadvance(5);
103412
+ i0.ɵɵtextInterpolate(ctx.label());
103413
+ } }, dependencies: [CommonModule, i1$1.NgClass], styles: ["@keyframes _ngcontent-%COMP%_review-pulse{0%,to{box-shadow:0 0 #3b82f666}50%{box-shadow:0 0 0 8px #3b82f600}}.animate-review-pulse[_ngcontent-%COMP%]{animation:_ngcontent-%COMP%_review-pulse 2s ease-in-out infinite}"], changeDetection: 0 }); }
103414
+ }
103415
+ (() => { (typeof ngDevMode === "undefined" || ngDevMode) && i0.ɵsetClassMetadata(ReviewButtonComponent, [{
103416
+ type: Component,
103417
+ args: [{ selector: 'symphiq-review-button', standalone: true, imports: [CommonModule], changeDetection: ChangeDetectionStrategy.OnPush, template: `
103418
+ <button
103419
+ type="button"
103420
+ [ngClass]="buttonClasses()"
103421
+ class="w-full flex items-center justify-center gap-2 px-4 py-3 rounded-xl text-sm font-semibold transition-all duration-300 cursor-pointer hover:scale-[1.02] active:scale-[0.98] animate-review-pulse"
103422
+ (click)="onClick($event)">
103423
+ <svg class="w-5 h-5 animate-pulse" fill="none" stroke="currentColor" viewBox="0 0 24 24">
103424
+ <path stroke-linecap="round" stroke-linejoin="round" stroke-width="2"
103425
+ d="M15 12a3 3 0 11-6 0 3 3 0 016 0z"/>
103426
+ <path stroke-linecap="round" stroke-linejoin="round" stroke-width="2"
103427
+ 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"/>
103428
+ </svg>
103429
+ <span>{{ label() }}</span>
103430
+ <svg class="w-5 h-5 group-hover:translate-x-1 transition-transform" fill="none" stroke="currentColor" viewBox="0 0 24 24">
103431
+ <path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M9 5l7 7-7 7"/>
103432
+ </svg>
103433
+ </button>
103434
+ `, styles: ["@keyframes review-pulse{0%,to{box-shadow:0 0 #3b82f666}50%{box-shadow:0 0 0 8px #3b82f600}}.animate-review-pulse{animation:review-pulse 2s ease-in-out infinite}\n"] }]
103435
+ }], null, { viewMode: [{ type: i0.Input, args: [{ isSignal: true, alias: "viewMode", required: false }] }], label: [{ type: i0.Input, args: [{ isSignal: true, alias: "label", required: false }] }], buttonClick: [{ type: i0.Output, args: ["buttonClick"] }] }); })();
103436
+ (() => { (typeof ngDevMode === "undefined" || ngDevMode) && i0.ɵsetClassDebugInfo(ReviewButtonComponent, { className: "ReviewButtonComponent", filePath: "lib/components/shared/review-button.component.ts", lineNumber: 42 }); })();
103437
+
103438
+ function UnifiedGoalCardComponent_Conditional_9_Template(rf, ctx) { if (rf & 1) {
103439
+ const _r1 = i0.ɵɵgetCurrentView();
103440
+ i0.ɵɵelementStart(0, "symphiq-goal-action-state-chip", 20);
103441
+ i0.ɵɵlistener("stateChange", function UnifiedGoalCardComponent_Conditional_9_Template_symphiq_goal_action_state_chip_stateChange_0_listener($event) { i0.ɵɵrestoreView(_r1); const ctx_r1 = i0.ɵɵnextContext(); return i0.ɵɵresetView(ctx_r1.onActionStateChange($event)); });
103442
+ i0.ɵɵelementEnd();
103443
+ } if (rf & 2) {
103444
+ let tmp_3_0;
103445
+ const ctx_r1 = i0.ɵɵnextContext();
103446
+ i0.ɵɵproperty("state", ctx_r1.actionState())("viewMode", ctx_r1.viewMode())("goalId", (tmp_3_0 = ctx_r1.goal()) == null ? null : tmp_3_0.id)("shouldPulse", ctx_r1.shouldPulseChip());
103043
103447
  } }
103044
103448
  function UnifiedGoalCardComponent_Conditional_12_Template(rf, ctx) { if (rf & 1) {
103045
103449
  i0.ɵɵelementStart(0, "div", 10);
103046
- i0.ɵɵelement(1, "symphiq-roadmap-metrics", 18);
103450
+ i0.ɵɵelement(1, "symphiq-thematic-category-badge", 21);
103047
103451
  i0.ɵɵelementEnd();
103048
103452
  } if (rf & 2) {
103049
- const ctx_r0 = i0.ɵɵnextContext();
103453
+ const ctx_r1 = i0.ɵɵnextContext();
103050
103454
  i0.ɵɵadvance();
103051
- i0.ɵɵproperty("metrics", ctx_r0.roadmapMetrics())("viewMode", ctx_r0.viewMode());
103455
+ i0.ɵɵproperty("category", ctx_r1.goal().thematicCategory)("viewMode", ctx_r1.viewMode());
103052
103456
  } }
103053
- function UnifiedGoalCardComponent_Conditional_14_Template(rf, ctx) { if (rf & 1) {
103054
- i0.ɵɵelement(0, "symphiq-priority-badge", 12);
103457
+ function UnifiedGoalCardComponent_Conditional_13_Template(rf, ctx) { if (rf & 1) {
103458
+ i0.ɵɵelementStart(0, "p", 11);
103459
+ i0.ɵɵtext(1);
103460
+ i0.ɵɵelementEnd();
103055
103461
  } if (rf & 2) {
103056
- const ctx_r0 = i0.ɵɵnextContext();
103057
- i0.ɵɵproperty("priority", ctx_r0.goal().priority)("viewMode", ctx_r0.viewMode());
103462
+ const ctx_r1 = i0.ɵɵnextContext();
103463
+ i0.ɵɵproperty("ngClass", ctx_r1.descriptionClasses())("libSymphiqTooltip", ctx_r1.goal().description);
103464
+ i0.ɵɵadvance();
103465
+ i0.ɵɵtextInterpolate(ctx_r1.goal().description);
103058
103466
  } }
103059
- function UnifiedGoalCardComponent_Conditional_15_Template(rf, ctx) { if (rf & 1) {
103060
- i0.ɵɵelement(0, "symphiq-timeframe-badge", 13);
103467
+ function UnifiedGoalCardComponent_Conditional_14_Template(rf, ctx) { if (rf & 1) {
103468
+ i0.ɵɵelementStart(0, "div", 12);
103469
+ i0.ɵɵelement(1, "symphiq-roadmap-metrics", 22);
103470
+ i0.ɵɵelementEnd();
103061
103471
  } if (rf & 2) {
103062
- const ctx_r0 = i0.ɵɵnextContext();
103063
- i0.ɵɵproperty("timeframe", ctx_r0.goal().timeframe)("viewMode", ctx_r0.viewMode());
103472
+ const ctx_r1 = i0.ɵɵnextContext();
103473
+ i0.ɵɵadvance();
103474
+ i0.ɵɵproperty("metrics", ctx_r1.roadmapMetrics())("viewMode", ctx_r1.viewMode());
103064
103475
  } }
103065
103476
  function UnifiedGoalCardComponent_Conditional_16_Template(rf, ctx) { if (rf & 1) {
103066
- i0.ɵɵelement(0, "symphiq-source-summary", 14);
103477
+ i0.ɵɵelement(0, "symphiq-priority-badge", 14);
103067
103478
  } if (rf & 2) {
103068
- const ctx_r0 = i0.ɵɵnextContext();
103069
- i0.ɵɵproperty("sourceTypeCounts", ctx_r0.sourceTypeCounts())("contributingCounts", ctx_r0.contributingCounts())("viewMode", ctx_r0.viewMode());
103479
+ const ctx_r1 = i0.ɵɵnextContext();
103480
+ i0.ɵɵproperty("priority", ctx_r1.goal().priority)("viewMode", ctx_r1.viewMode());
103481
+ } }
103482
+ function UnifiedGoalCardComponent_Conditional_17_Template(rf, ctx) { if (rf & 1) {
103483
+ i0.ɵɵelement(0, "symphiq-timeframe-badge", 15);
103484
+ } if (rf & 2) {
103485
+ const ctx_r1 = i0.ɵɵnextContext();
103486
+ i0.ɵɵproperty("timeframe", ctx_r1.goal().timeframe)("viewMode", ctx_r1.viewMode());
103487
+ } }
103488
+ function UnifiedGoalCardComponent_Conditional_18_Template(rf, ctx) { if (rf & 1) {
103489
+ i0.ɵɵelement(0, "symphiq-source-summary", 16);
103490
+ } if (rf & 2) {
103491
+ const ctx_r1 = i0.ɵɵnextContext();
103492
+ i0.ɵɵproperty("sourceTypeCounts", ctx_r1.sourceTypeCounts())("contributingCounts", ctx_r1.contributingCounts())("viewMode", ctx_r1.viewMode());
103493
+ } }
103494
+ function UnifiedGoalCardComponent_Conditional_20_Template(rf, ctx) { if (rf & 1) {
103495
+ const _r3 = i0.ɵɵgetCurrentView();
103496
+ i0.ɵɵelementStart(0, "symphiq-learn-more-button", 23);
103497
+ i0.ɵɵlistener("buttonClick", function UnifiedGoalCardComponent_Conditional_20_Template_symphiq_learn_more_button_buttonClick_0_listener() { i0.ɵɵrestoreView(_r3); const ctx_r1 = i0.ɵɵnextContext(); return i0.ɵɵresetView(ctx_r1.onLearnMoreClick()); });
103498
+ i0.ɵɵelementEnd();
103499
+ } if (rf & 2) {
103500
+ const ctx_r1 = i0.ɵɵnextContext();
103501
+ i0.ɵɵproperty("viewMode", ctx_r1.viewMode())("variant", "button")("label", "Learn More");
103502
+ } }
103503
+ function UnifiedGoalCardComponent_Conditional_21_Template(rf, ctx) { if (rf & 1) {
103504
+ const _r4 = i0.ɵɵgetCurrentView();
103505
+ i0.ɵɵelementStart(0, "symphiq-review-button", 24);
103506
+ i0.ɵɵlistener("buttonClick", function UnifiedGoalCardComponent_Conditional_21_Template_symphiq_review_button_buttonClick_0_listener() { i0.ɵɵrestoreView(_r4); const ctx_r1 = i0.ɵɵnextContext(); return i0.ɵɵresetView(ctx_r1.onLearnMoreClick()); });
103507
+ i0.ɵɵelementEnd();
103508
+ } if (rf & 2) {
103509
+ const ctx_r1 = i0.ɵɵnextContext();
103510
+ i0.ɵɵproperty("viewMode", ctx_r1.viewMode())("label", "Review Goal");
103070
103511
  } }
103071
103512
  class UnifiedGoalCardComponent {
103072
103513
  constructor() {
103073
103514
  this.goal = input(...(ngDevMode ? [undefined, { debugName: "goal" }] : []));
103074
103515
  this.viewMode = input(ViewModeEnum.LIGHT, ...(ngDevMode ? [{ debugName: "viewMode" }] : []));
103516
+ this.actionState = input(...(ngDevMode ? [undefined, { debugName: "actionState" }] : []));
103517
+ this.shouldPulseChip = input(false, ...(ngDevMode ? [{ debugName: "shouldPulseChip" }] : []));
103075
103518
  this.goalClick = output();
103076
103519
  this.sourceBadgeClick = output();
103077
103520
  this.relatedMetricsClick = output();
103078
103521
  this.relatedFocusAreasClick = output();
103079
103522
  this.learnMoreClick = output();
103523
+ this.actionStateChange = output();
103080
103524
  this.ProfileAnalysisTypeEnum = ProfileAnalysisTypeEnum;
103081
103525
  this.isDark = computed(() => this.viewMode() === ViewModeEnum.DARK, ...(ngDevMode ? [{ debugName: "isDark" }] : []));
103082
103526
  this.displayedSources = computed(() => {
@@ -103218,68 +103662,77 @@ class UnifiedGoalCardComponent {
103218
103662
  this.learnMoreClick.emit(g);
103219
103663
  }
103220
103664
  }
103665
+ onActionStateChange(event) {
103666
+ this.actionStateChange.emit(event);
103667
+ }
103221
103668
  static { this.ɵfac = function UnifiedGoalCardComponent_Factory(__ngFactoryType__) { return new (__ngFactoryType__ || UnifiedGoalCardComponent)(); }; }
103222
- static { this.ɵcmp = /*@__PURE__*/ i0.ɵɵdefineComponent({ type: UnifiedGoalCardComponent, selectors: [["symphiq-unified-goal-card"]], inputs: { goal: [1, "goal"], viewMode: [1, "viewMode"] }, outputs: { goalClick: "goalClick", sourceBadgeClick: "sourceBadgeClick", relatedMetricsClick: "relatedMetricsClick", relatedFocusAreasClick: "relatedFocusAreasClick", learnMoreClick: "learnMoreClick" }, decls: 19, vars: 14, consts: [[1, "rounded-2xl", "p-6", "shadow-lg", "transition-all", "duration-200", 3, "ngClass"], [1, "flex", "items-start", "gap-4", "mb-2"], [3, "ngClass"], ["fill", "none", "stroke", "currentColor", "viewBox", "0 0 24 24", 1, "w-5", "h-5"], ["stroke-linecap", "round", "stroke-linejoin", "round", "stroke-width", "2", "d", "M9 12l2 2 4-4M7.835 4.697a3.42 3.42 0 001.946-.806 3.42 3.42 0 014.438 0 3.42 3.42 0 001.946.806 3.42 3.42 0 013.138 3.138 3.42 3.42 0 00.806 1.946 3.42 3.42 0 010 4.438 3.42 3.42 0 00-.806 1.946 3.42 3.42 0 01-3.138 3.138 3.42 3.42 0 00-1.946.806 3.42 3.42 0 01-4.438 0 3.42 3.42 0 00-1.946-.806 3.42 3.42 0 01-3.138-3.138 3.42 3.42 0 00-.806-1.946 3.42 3.42 0 010-4.438 3.42 3.42 0 00.806-1.946 3.42 3.42 0 013.138-3.138z"], [1, "flex-1", "min-w-0"], [1, "text-xs", "font-semibold", "uppercase", "tracking-wider", "mb-1", 3, "ngClass"], [1, "font-semibold", "text-lg", "line-clamp-2", 3, "ngClass"], [1, "mb-3"], [1, "text-sm", "mb-4", "line-clamp-3", "cursor-help", 3, "ngClass", "libSymphiqTooltip"], [1, "mb-4"], [1, "flex", "flex-wrap", "items-center", "justify-between", "gap-3", "mb-4"], [3, "priority", "viewMode"], [3, "timeframe", "viewMode"], [3, "sourceTypeCounts", "contributingCounts", "viewMode"], [1, "mt-4"], [3, "buttonClick", "viewMode", "variant", "label"], [3, "category", "viewMode"], [3, "metrics", "viewMode"]], template: function UnifiedGoalCardComponent_Template(rf, ctx) { if (rf & 1) {
103669
+ static { this.ɵcmp = /*@__PURE__*/ i0.ɵɵdefineComponent({ type: UnifiedGoalCardComponent, selectors: [["symphiq-unified-goal-card"]], inputs: { goal: [1, "goal"], viewMode: [1, "viewMode"], actionState: [1, "actionState"], shouldPulseChip: [1, "shouldPulseChip"] }, outputs: { goalClick: "goalClick", sourceBadgeClick: "sourceBadgeClick", relatedMetricsClick: "relatedMetricsClick", relatedFocusAreasClick: "relatedFocusAreasClick", learnMoreClick: "learnMoreClick", actionStateChange: "actionStateChange" }, decls: 22, vars: 13, consts: [[1, "rounded-2xl", "p-6", "shadow-lg", "transition-all", "duration-200", 3, "ngClass"], [1, "flex", "items-start", "gap-4", "mb-2"], [3, "ngClass"], ["fill", "none", "stroke", "currentColor", "viewBox", "0 0 24 24", 1, "w-5", "h-5"], ["stroke-linecap", "round", "stroke-linejoin", "round", "stroke-width", "2", "d", "M9 12l2 2 4-4M7.835 4.697a3.42 3.42 0 001.946-.806 3.42 3.42 0 014.438 0 3.42 3.42 0 001.946.806 3.42 3.42 0 013.138 3.138 3.42 3.42 0 00.806 1.946 3.42 3.42 0 010 4.438 3.42 3.42 0 00-.806 1.946 3.42 3.42 0 01-3.138 3.138 3.42 3.42 0 00-1.946.806 3.42 3.42 0 01-4.438 0 3.42 3.42 0 00-1.946-.806 3.42 3.42 0 01-3.138-3.138 3.42 3.42 0 00-.806-1.946 3.42 3.42 0 010-4.438 3.42 3.42 0 00.806-1.946 3.42 3.42 0 013.138-3.138z"], [1, "flex-1", "min-w-0"], [1, "flex", "items-center", "justify-between", "gap-2", "mb-1"], [1, "text-xs", "font-semibold", "uppercase", "tracking-wider", 3, "ngClass"], [3, "state", "viewMode", "goalId", "shouldPulse"], [1, "font-semibold", "text-lg", "line-clamp-2", 3, "ngClass"], [1, "mb-3"], [1, "text-sm", "mb-4", "line-clamp-3", "cursor-help", 3, "ngClass", "libSymphiqTooltip"], [1, "mb-4"], [1, "flex", "flex-wrap", "items-center", "justify-between", "gap-3", "mb-4"], [3, "priority", "viewMode"], [3, "timeframe", "viewMode"], [3, "sourceTypeCounts", "contributingCounts", "viewMode"], [1, "mt-4"], [3, "viewMode", "variant", "label"], [3, "viewMode", "label"], [3, "stateChange", "state", "viewMode", "goalId", "shouldPulse"], [3, "category", "viewMode"], [3, "metrics", "viewMode"], [3, "buttonClick", "viewMode", "variant", "label"], [3, "buttonClick", "viewMode", "label"]], template: function UnifiedGoalCardComponent_Template(rf, ctx) { if (rf & 1) {
103223
103670
  i0.ɵɵelementStart(0, "div", 0)(1, "div", 1)(2, "div", 2);
103224
103671
  i0.ɵɵnamespaceSVG();
103225
103672
  i0.ɵɵelementStart(3, "svg", 3);
103226
103673
  i0.ɵɵelement(4, "path", 4);
103227
103674
  i0.ɵɵelementEnd()();
103228
103675
  i0.ɵɵnamespaceHTML();
103229
- i0.ɵɵelementStart(5, "div", 5)(6, "div", 6);
103230
- i0.ɵɵtext(7, " Unified Goal ");
103676
+ i0.ɵɵelementStart(5, "div", 5)(6, "div", 6)(7, "div", 7);
103677
+ i0.ɵɵtext(8, " Unified Goal ");
103231
103678
  i0.ɵɵelementEnd();
103232
- i0.ɵɵelementStart(8, "h4", 7);
103233
- i0.ɵɵtext(9);
103234
- i0.ɵɵelementEnd()()();
103235
- i0.ɵɵconditionalCreate(10, UnifiedGoalCardComponent_Conditional_10_Template, 2, 2, "div", 8);
103236
- i0.ɵɵconditionalCreate(11, UnifiedGoalCardComponent_Conditional_11_Template, 2, 3, "p", 9);
103237
- i0.ɵɵconditionalCreate(12, UnifiedGoalCardComponent_Conditional_12_Template, 2, 2, "div", 10);
103238
- i0.ɵɵelementStart(13, "div", 11);
103239
- i0.ɵɵconditionalCreate(14, UnifiedGoalCardComponent_Conditional_14_Template, 1, 2, "symphiq-priority-badge", 12);
103240
- i0.ɵɵconditionalCreate(15, UnifiedGoalCardComponent_Conditional_15_Template, 1, 2, "symphiq-timeframe-badge", 13);
103679
+ i0.ɵɵconditionalCreate(9, UnifiedGoalCardComponent_Conditional_9_Template, 1, 4, "symphiq-goal-action-state-chip", 8);
103241
103680
  i0.ɵɵelementEnd();
103242
- i0.ɵɵconditionalCreate(16, UnifiedGoalCardComponent_Conditional_16_Template, 1, 3, "symphiq-source-summary", 14);
103243
- i0.ɵɵelementStart(17, "div", 15)(18, "symphiq-learn-more-button", 16);
103244
- i0.ɵɵlistener("buttonClick", function UnifiedGoalCardComponent_Template_symphiq_learn_more_button_buttonClick_18_listener() { return ctx.onLearnMoreClick(); });
103681
+ i0.ɵɵelementStart(10, "h4", 9);
103682
+ i0.ɵɵtext(11);
103245
103683
  i0.ɵɵelementEnd()()();
103684
+ i0.ɵɵconditionalCreate(12, UnifiedGoalCardComponent_Conditional_12_Template, 2, 2, "div", 10);
103685
+ i0.ɵɵconditionalCreate(13, UnifiedGoalCardComponent_Conditional_13_Template, 2, 3, "p", 11);
103686
+ i0.ɵɵconditionalCreate(14, UnifiedGoalCardComponent_Conditional_14_Template, 2, 2, "div", 12);
103687
+ i0.ɵɵelementStart(15, "div", 13);
103688
+ i0.ɵɵconditionalCreate(16, UnifiedGoalCardComponent_Conditional_16_Template, 1, 2, "symphiq-priority-badge", 14);
103689
+ i0.ɵɵconditionalCreate(17, UnifiedGoalCardComponent_Conditional_17_Template, 1, 2, "symphiq-timeframe-badge", 15);
103690
+ i0.ɵɵelementEnd();
103691
+ i0.ɵɵconditionalCreate(18, UnifiedGoalCardComponent_Conditional_18_Template, 1, 3, "symphiq-source-summary", 16);
103692
+ i0.ɵɵelementStart(19, "div", 17);
103693
+ i0.ɵɵconditionalCreate(20, UnifiedGoalCardComponent_Conditional_20_Template, 1, 3, "symphiq-learn-more-button", 18)(21, UnifiedGoalCardComponent_Conditional_21_Template, 1, 2, "symphiq-review-button", 19);
103694
+ i0.ɵɵelementEnd()();
103246
103695
  } if (rf & 2) {
103247
- let tmp_4_0;
103248
103696
  let tmp_5_0;
103249
103697
  let tmp_6_0;
103250
- let tmp_8_0;
103698
+ let tmp_7_0;
103251
103699
  let tmp_9_0;
103252
103700
  let tmp_10_0;
103701
+ let tmp_11_0;
103253
103702
  i0.ɵɵproperty("ngClass", ctx.cardClasses());
103254
103703
  i0.ɵɵadvance(2);
103255
103704
  i0.ɵɵproperty("ngClass", ctx.iconContainerClasses());
103256
- i0.ɵɵadvance(4);
103705
+ i0.ɵɵadvance(5);
103257
103706
  i0.ɵɵproperty("ngClass", ctx.typeLabelClasses());
103258
103707
  i0.ɵɵadvance(2);
103708
+ i0.ɵɵconditional(ctx.actionState() ? 9 : -1);
103709
+ i0.ɵɵadvance();
103259
103710
  i0.ɵɵproperty("ngClass", ctx.titleClasses());
103260
103711
  i0.ɵɵadvance();
103261
- i0.ɵɵtextInterpolate((tmp_4_0 = ctx.goal()) == null ? null : tmp_4_0.title);
103712
+ i0.ɵɵtextInterpolate((tmp_5_0 = ctx.goal()) == null ? null : tmp_5_0.title);
103262
103713
  i0.ɵɵadvance();
103263
- i0.ɵɵconditional(((tmp_5_0 = ctx.goal()) == null ? null : tmp_5_0.thematicCategory) ? 10 : -1);
103714
+ i0.ɵɵconditional(((tmp_6_0 = ctx.goal()) == null ? null : tmp_6_0.thematicCategory) ? 12 : -1);
103264
103715
  i0.ɵɵadvance();
103265
- i0.ɵɵconditional(((tmp_6_0 = ctx.goal()) == null ? null : tmp_6_0.description) ? 11 : -1);
103716
+ i0.ɵɵconditional(((tmp_7_0 = ctx.goal()) == null ? null : tmp_7_0.description) ? 13 : -1);
103266
103717
  i0.ɵɵadvance();
103267
- i0.ɵɵconditional(ctx.roadmapMetrics().length > 0 ? 12 : -1);
103718
+ i0.ɵɵconditional(ctx.roadmapMetrics().length > 0 ? 14 : -1);
103268
103719
  i0.ɵɵadvance(2);
103269
- i0.ɵɵconditional(((tmp_8_0 = ctx.goal()) == null ? null : tmp_8_0.priority) ? 14 : -1);
103720
+ i0.ɵɵconditional(((tmp_9_0 = ctx.goal()) == null ? null : tmp_9_0.priority) ? 16 : -1);
103270
103721
  i0.ɵɵadvance();
103271
- i0.ɵɵconditional(((tmp_9_0 = ctx.goal()) == null ? null : tmp_9_0.timeframe) ? 15 : -1);
103722
+ i0.ɵɵconditional(((tmp_10_0 = ctx.goal()) == null ? null : tmp_10_0.timeframe) ? 17 : -1);
103272
103723
  i0.ɵɵadvance();
103273
- i0.ɵɵconditional((((tmp_10_0 = ctx.goal()) == null ? null : tmp_10_0.sourceAnalyses == null ? null : tmp_10_0.sourceAnalyses.length) ?? 0) > 0 || ctx.hasRelatedContext() ? 16 : -1);
103724
+ i0.ɵɵconditional((((tmp_11_0 = ctx.goal()) == null ? null : tmp_11_0.sourceAnalyses == null ? null : tmp_11_0.sourceAnalyses.length) ?? 0) > 0 || ctx.hasRelatedContext() ? 18 : -1);
103274
103725
  i0.ɵɵadvance(2);
103275
- i0.ɵɵproperty("viewMode", ctx.viewMode())("variant", "button")("label", "Learn More");
103726
+ i0.ɵɵconditional(ctx.actionState() ? 20 : 21);
103276
103727
  } }, dependencies: [CommonModule, i1$1.NgClass, PriorityBadgeComponent,
103277
103728
  TimeframeBadgeComponent,
103278
103729
  RoadmapMetricsComponent,
103279
103730
  LearnMoreButtonComponent,
103280
103731
  SourceSummaryComponent,
103281
103732
  ThematicCategoryBadgeComponent,
103282
- TooltipDirective], encapsulation: 2, changeDetection: 0 }); }
103733
+ TooltipDirective,
103734
+ GoalActionStateChipComponent,
103735
+ ReviewButtonComponent], encapsulation: 2, changeDetection: 0 }); }
103283
103736
  }
103284
103737
  (() => { (typeof ngDevMode === "undefined" || ngDevMode) && i0.ɵsetClassMetadata(UnifiedGoalCardComponent, [{
103285
103738
  type: Component,
@@ -103294,7 +103747,9 @@ class UnifiedGoalCardComponent {
103294
103747
  LearnMoreButtonComponent,
103295
103748
  SourceSummaryComponent,
103296
103749
  ThematicCategoryBadgeComponent,
103297
- TooltipDirective
103750
+ TooltipDirective,
103751
+ GoalActionStateChipComponent,
103752
+ ReviewButtonComponent
103298
103753
  ],
103299
103754
  changeDetection: ChangeDetectionStrategy.OnPush,
103300
103755
  template: `
@@ -103309,8 +103764,19 @@ class UnifiedGoalCardComponent {
103309
103764
  </svg>
103310
103765
  </div>
103311
103766
  <div class="flex-1 min-w-0">
103312
- <div [ngClass]="typeLabelClasses()" class="text-xs font-semibold uppercase tracking-wider mb-1">
103313
- Unified Goal
103767
+ <div class="flex items-center justify-between gap-2 mb-1">
103768
+ <div [ngClass]="typeLabelClasses()" class="text-xs font-semibold uppercase tracking-wider">
103769
+ Unified Goal
103770
+ </div>
103771
+ @if (actionState()) {
103772
+ <symphiq-goal-action-state-chip
103773
+ [state]="actionState()!"
103774
+ [viewMode]="viewMode()"
103775
+ [goalId]="goal()?.id"
103776
+ [shouldPulse]="shouldPulseChip()"
103777
+ (stateChange)="onActionStateChange($event)"
103778
+ />
103779
+ }
103314
103780
  </div>
103315
103781
  <h4 [ngClass]="titleClasses()" class="font-semibold text-lg line-clamp-2">{{ goal()?.title }}</h4>
103316
103782
  </div>
@@ -103363,36 +103829,44 @@ class UnifiedGoalCardComponent {
103363
103829
  }
103364
103830
 
103365
103831
  <div class="mt-4">
103366
- <symphiq-learn-more-button
103367
- [viewMode]="viewMode()"
103368
- [variant]="'button'"
103369
- [label]="'Learn More'"
103370
- (buttonClick)="onLearnMoreClick()"
103371
- />
103832
+ @if (actionState()) {
103833
+ <symphiq-learn-more-button
103834
+ [viewMode]="viewMode()"
103835
+ [variant]="'button'"
103836
+ [label]="'Learn More'"
103837
+ (buttonClick)="onLearnMoreClick()"
103838
+ />
103839
+ } @else {
103840
+ <symphiq-review-button
103841
+ [viewMode]="viewMode()"
103842
+ [label]="'Review Goal'"
103843
+ (buttonClick)="onLearnMoreClick()"
103844
+ />
103845
+ }
103372
103846
  </div>
103373
103847
  </div>
103374
103848
  `
103375
103849
  }]
103376
- }], null, { goal: [{ type: i0.Input, args: [{ isSignal: true, alias: "goal", required: false }] }], viewMode: [{ type: i0.Input, args: [{ isSignal: true, alias: "viewMode", required: false }] }], goalClick: [{ type: i0.Output, args: ["goalClick"] }], sourceBadgeClick: [{ type: i0.Output, args: ["sourceBadgeClick"] }], relatedMetricsClick: [{ type: i0.Output, args: ["relatedMetricsClick"] }], relatedFocusAreasClick: [{ type: i0.Output, args: ["relatedFocusAreasClick"] }], learnMoreClick: [{ type: i0.Output, args: ["learnMoreClick"] }] }); })();
103377
- (() => { (typeof ngDevMode === "undefined" || ngDevMode) && i0.ɵsetClassDebugInfo(UnifiedGoalCardComponent, { className: "UnifiedGoalCardComponent", filePath: "lib/components/profile-analysis-unified-dashboard/cards/unified-goal-card.component.ts", lineNumber: 103 }); })();
103850
+ }], null, { goal: [{ type: i0.Input, args: [{ isSignal: true, alias: "goal", required: false }] }], viewMode: [{ type: i0.Input, args: [{ isSignal: true, alias: "viewMode", required: false }] }], actionState: [{ type: i0.Input, args: [{ isSignal: true, alias: "actionState", required: false }] }], shouldPulseChip: [{ type: i0.Input, args: [{ isSignal: true, alias: "shouldPulseChip", required: false }] }], goalClick: [{ type: i0.Output, args: ["goalClick"] }], sourceBadgeClick: [{ type: i0.Output, args: ["sourceBadgeClick"] }], relatedMetricsClick: [{ type: i0.Output, args: ["relatedMetricsClick"] }], relatedFocusAreasClick: [{ type: i0.Output, args: ["relatedFocusAreasClick"] }], learnMoreClick: [{ type: i0.Output, args: ["learnMoreClick"] }], actionStateChange: [{ type: i0.Output, args: ["actionStateChange"] }] }); })();
103851
+ (() => { (typeof ngDevMode === "undefined" || ngDevMode) && i0.ɵsetClassDebugInfo(UnifiedGoalCardComponent, { className: "UnifiedGoalCardComponent", filePath: "lib/components/profile-analysis-unified-dashboard/cards/unified-goal-card.component.ts", lineNumber: 127 }); })();
103378
103852
 
103379
103853
  const _c0$9 = a0 => ({ name: "flag", source: a0 });
103380
- const _forTrack0$8 = ($index, $item) => $item.id;
103854
+ const _forTrack0$9 = ($index, $item) => $item.id;
103381
103855
  function UnifiedGoalsGridComponent_Conditional_0_For_5_Template(rf, ctx) { if (rf & 1) {
103382
103856
  const _r1 = i0.ɵɵgetCurrentView();
103383
103857
  i0.ɵɵelementStart(0, "symphiq-unified-goal-card", 5);
103384
- i0.ɵɵlistener("goalClick", function UnifiedGoalsGridComponent_Conditional_0_For_5_Template_symphiq_unified_goal_card_goalClick_0_listener($event) { i0.ɵɵrestoreView(_r1); const ctx_r1 = i0.ɵɵnextContext(2); return i0.ɵɵresetView(ctx_r1.goalClick.emit($event)); })("sourceBadgeClick", function UnifiedGoalsGridComponent_Conditional_0_For_5_Template_symphiq_unified_goal_card_sourceBadgeClick_0_listener($event) { i0.ɵɵrestoreView(_r1); const ctx_r1 = i0.ɵɵnextContext(2); return i0.ɵɵresetView(ctx_r1.sourceBadgeClick.emit($event)); })("relatedMetricsClick", function UnifiedGoalsGridComponent_Conditional_0_For_5_Template_symphiq_unified_goal_card_relatedMetricsClick_0_listener($event) { i0.ɵɵrestoreView(_r1); const ctx_r1 = i0.ɵɵnextContext(2); return i0.ɵɵresetView(ctx_r1.relatedMetricsClick.emit($event)); })("learnMoreClick", function UnifiedGoalsGridComponent_Conditional_0_For_5_Template_symphiq_unified_goal_card_learnMoreClick_0_listener($event) { i0.ɵɵrestoreView(_r1); const ctx_r1 = i0.ɵɵnextContext(2); return i0.ɵɵresetView(ctx_r1.goalClick.emit($event)); });
103858
+ i0.ɵɵlistener("goalClick", function UnifiedGoalsGridComponent_Conditional_0_For_5_Template_symphiq_unified_goal_card_goalClick_0_listener($event) { i0.ɵɵrestoreView(_r1); const ctx_r1 = i0.ɵɵnextContext(2); return i0.ɵɵresetView(ctx_r1.goalClick.emit($event)); })("sourceBadgeClick", function UnifiedGoalsGridComponent_Conditional_0_For_5_Template_symphiq_unified_goal_card_sourceBadgeClick_0_listener($event) { i0.ɵɵrestoreView(_r1); const ctx_r1 = i0.ɵɵnextContext(2); return i0.ɵɵresetView(ctx_r1.sourceBadgeClick.emit($event)); })("relatedMetricsClick", function UnifiedGoalsGridComponent_Conditional_0_For_5_Template_symphiq_unified_goal_card_relatedMetricsClick_0_listener($event) { i0.ɵɵrestoreView(_r1); const ctx_r1 = i0.ɵɵnextContext(2); return i0.ɵɵresetView(ctx_r1.relatedMetricsClick.emit($event)); })("learnMoreClick", function UnifiedGoalsGridComponent_Conditional_0_For_5_Template_symphiq_unified_goal_card_learnMoreClick_0_listener($event) { i0.ɵɵrestoreView(_r1); const ctx_r1 = i0.ɵɵnextContext(2); return i0.ɵɵresetView(ctx_r1.goalClick.emit($event)); })("actionStateChange", function UnifiedGoalsGridComponent_Conditional_0_For_5_Template_symphiq_unified_goal_card_actionStateChange_0_listener($event) { i0.ɵɵrestoreView(_r1); const ctx_r1 = i0.ɵɵnextContext(2); return i0.ɵɵresetView(ctx_r1.onActionStateChange($event)); });
103385
103859
  i0.ɵɵelementEnd();
103386
103860
  } if (rf & 2) {
103387
103861
  const goal_r3 = ctx.$implicit;
103388
103862
  const ctx_r1 = i0.ɵɵnextContext(2);
103389
- i0.ɵɵproperty("goal", goal_r3)("viewMode", ctx_r1.viewMode());
103863
+ i0.ɵɵproperty("goal", goal_r3)("viewMode", ctx_r1.viewMode())("actionState", ctx_r1.getActionState(goal_r3.id))("shouldPulseChip", ctx_r1.shouldPulse(goal_r3.id));
103390
103864
  } }
103391
103865
  function UnifiedGoalsGridComponent_Conditional_0_Template(rf, ctx) { if (rf & 1) {
103392
103866
  i0.ɵɵelementStart(0, "section", 0);
103393
103867
  i0.ɵɵelement(1, "symphiq-section-divider", 1)(2, "symphiq-section-header", 2);
103394
103868
  i0.ɵɵelementStart(3, "div", 3);
103395
- i0.ɵɵrepeaterCreate(4, UnifiedGoalsGridComponent_Conditional_0_For_5_Template, 1, 2, "symphiq-unified-goal-card", 4, _forTrack0$8);
103869
+ i0.ɵɵrepeaterCreate(4, UnifiedGoalsGridComponent_Conditional_0_For_5_Template, 1, 4, "symphiq-unified-goal-card", 4, _forTrack0$9);
103396
103870
  i0.ɵɵelementEnd()();
103397
103871
  } if (rf & 2) {
103398
103872
  const ctx_r1 = i0.ɵɵnextContext();
@@ -103411,9 +103885,34 @@ class UnifiedGoalsGridComponent {
103411
103885
  this.sourceBadgeClick = output();
103412
103886
  this.relatedMetricsClick = output();
103413
103887
  this.IconSourceEnum = IconSourceEnum;
103888
+ this.goalActionStateService = inject(GoalActionStateService);
103889
+ this.states = computed(() => {
103890
+ this.goalActionStateService.states();
103891
+ return this.goalActionStateService.getAllStates();
103892
+ }, ...(ngDevMode ? [{ debugName: "states" }] : []));
103893
+ this.lastChangedGoalId = computed(() => this.goalActionStateService.lastChangedGoalId(), ...(ngDevMode ? [{ debugName: "lastChangedGoalId" }] : []));
103894
+ }
103895
+ getActionState(goalId) {
103896
+ if (!goalId)
103897
+ return undefined;
103898
+ return this.states()[goalId];
103899
+ }
103900
+ shouldPulse(goalId) {
103901
+ if (!goalId)
103902
+ return false;
103903
+ const match = this.lastChangedGoalId() === goalId;
103904
+ if (match) {
103905
+ setTimeout(() => this.goalActionStateService.clearLastChangedGoalId(), 2000);
103906
+ }
103907
+ return match;
103908
+ }
103909
+ onActionStateChange(event) {
103910
+ if (event.goalId) {
103911
+ this.goalActionStateService.setState(event.goalId, event.state);
103912
+ }
103414
103913
  }
103415
103914
  static { this.ɵfac = function UnifiedGoalsGridComponent_Factory(__ngFactoryType__) { return new (__ngFactoryType__ || UnifiedGoalsGridComponent)(); }; }
103416
- static { this.ɵcmp = /*@__PURE__*/ i0.ɵɵdefineComponent({ type: UnifiedGoalsGridComponent, selectors: [["symphiq-unified-goals-grid"]], inputs: { viewMode: [1, "viewMode"], goals: [1, "goals"] }, outputs: { goalClick: "goalClick", sourceBadgeClick: "sourceBadgeClick", relatedMetricsClick: "relatedMetricsClick" }, decls: 1, vars: 1, consts: [["id", "section-unified-goals", 1, "space-y-6", "scroll-mt-24"], [3, "viewMode", "sectionIcon"], ["title", "Unified Goals", 3, "icon", "viewMode"], [1, "grid", "gap-6", 2, "grid-template-columns", "repeat(auto-fit, minmax(340px, 1fr))"], [3, "goal", "viewMode"], [3, "goalClick", "sourceBadgeClick", "relatedMetricsClick", "learnMoreClick", "goal", "viewMode"]], template: function UnifiedGoalsGridComponent_Template(rf, ctx) { if (rf & 1) {
103915
+ static { this.ɵcmp = /*@__PURE__*/ i0.ɵɵdefineComponent({ type: UnifiedGoalsGridComponent, selectors: [["symphiq-unified-goals-grid"]], inputs: { viewMode: [1, "viewMode"], goals: [1, "goals"] }, outputs: { goalClick: "goalClick", sourceBadgeClick: "sourceBadgeClick", relatedMetricsClick: "relatedMetricsClick" }, decls: 1, vars: 1, consts: [["id", "section-unified-goals", 1, "space-y-6", "scroll-mt-24"], [3, "viewMode", "sectionIcon"], ["title", "Unified Goals", 3, "icon", "viewMode"], [1, "grid", "gap-6", 2, "grid-template-columns", "repeat(auto-fit, minmax(340px, 1fr))"], [3, "goal", "viewMode", "actionState", "shouldPulseChip"], [3, "goalClick", "sourceBadgeClick", "relatedMetricsClick", "learnMoreClick", "actionStateChange", "goal", "viewMode", "actionState", "shouldPulseChip"]], template: function UnifiedGoalsGridComponent_Template(rf, ctx) { if (rf & 1) {
103417
103916
  i0.ɵɵconditionalCreate(0, UnifiedGoalsGridComponent_Conditional_0_Template, 6, 8, "section", 0);
103418
103917
  } if (rf & 2) {
103419
103918
  i0.ɵɵconditional(ctx.goals().length > 0 ? 0 : -1);
@@ -103452,10 +103951,13 @@ class UnifiedGoalsGridComponent {
103452
103951
  <symphiq-unified-goal-card
103453
103952
  [goal]="goal"
103454
103953
  [viewMode]="viewMode()"
103954
+ [actionState]="getActionState(goal.id)"
103955
+ [shouldPulseChip]="shouldPulse(goal.id)"
103455
103956
  (goalClick)="goalClick.emit($event)"
103456
103957
  (sourceBadgeClick)="sourceBadgeClick.emit($event)"
103457
103958
  (relatedMetricsClick)="relatedMetricsClick.emit($event)"
103458
103959
  (learnMoreClick)="goalClick.emit($event)"
103960
+ (actionStateChange)="onActionStateChange($event)"
103459
103961
  />
103460
103962
  }
103461
103963
  </div>
@@ -103464,7 +103966,7 @@ class UnifiedGoalsGridComponent {
103464
103966
  `
103465
103967
  }]
103466
103968
  }], null, { viewMode: [{ type: i0.Input, args: [{ isSignal: true, alias: "viewMode", required: false }] }], goals: [{ type: i0.Input, args: [{ isSignal: true, alias: "goals", required: false }] }], goalClick: [{ type: i0.Output, args: ["goalClick"] }], sourceBadgeClick: [{ type: i0.Output, args: ["sourceBadgeClick"] }], relatedMetricsClick: [{ type: i0.Output, args: ["relatedMetricsClick"] }] }); })();
103467
- (() => { (typeof ngDevMode === "undefined" || ngDevMode) && i0.ɵsetClassDebugInfo(UnifiedGoalsGridComponent, { className: "UnifiedGoalsGridComponent", filePath: "lib/components/profile-analysis-unified-dashboard/cards/unified-goals-grid.component.ts", lineNumber: 48 }); })();
103969
+ (() => { (typeof ngDevMode === "undefined" || ngDevMode) && i0.ɵsetClassDebugInfo(UnifiedGoalsGridComponent, { className: "UnifiedGoalsGridComponent", filePath: "lib/components/profile-analysis-unified-dashboard/cards/unified-goals-grid.component.ts", lineNumber: 52 }); })();
103468
103970
 
103469
103971
  function SynthesisConfidenceSectionComponent_Conditional_0_Template(rf, ctx) { if (rf & 1) {
103470
103972
  i0.ɵɵelementStart(0, "div", 0)(1, "h4", 1);
@@ -103555,7 +104057,7 @@ class SynthesisConfidenceSectionComponent {
103555
104057
  }], null, { score: [{ type: i0.Input, args: [{ isSignal: true, alias: "score", required: false }] }], explanation: [{ type: i0.Input, args: [{ isSignal: true, alias: "explanation", required: false }] }], viewMode: [{ type: i0.Input, args: [{ isSignal: true, alias: "viewMode", required: true }] }] }); })();
103556
104058
  (() => { (typeof ngDevMode === "undefined" || ngDevMode) && i0.ɵsetClassDebugInfo(SynthesisConfidenceSectionComponent, { className: "SynthesisConfidenceSectionComponent", filePath: "lib/components/shared/synthesis-confidence-section.component.ts", lineNumber: 40 }); })();
103557
104059
 
103558
- const _forTrack0$7 = ($index, $item) => $item.analysisId;
104060
+ const _forTrack0$8 = ($index, $item) => $item.analysisId;
103559
104061
  function SourceAnalysisTraceabilityComponent_Conditional_0_For_8_Conditional_1_Template(rf, ctx) { if (rf & 1) {
103560
104062
  i0.ɵɵelementStart(0, "div", 8);
103561
104063
  i0.ɵɵelement(1, "div", 19);
@@ -103657,7 +104159,7 @@ function SourceAnalysisTraceabilityComponent_Conditional_0_Template(rf, ctx) { i
103657
104159
  i0.ɵɵnamespaceHTML();
103658
104160
  i0.ɵɵelement(5, "symphiq-synthesis-confidence-section", 4);
103659
104161
  i0.ɵɵelementStart(6, "div", 5);
103660
- i0.ɵɵrepeaterCreate(7, SourceAnalysisTraceabilityComponent_Conditional_0_For_8_Template, 19, 13, "button", 6, _forTrack0$7);
104162
+ i0.ɵɵrepeaterCreate(7, SourceAnalysisTraceabilityComponent_Conditional_0_For_8_Template, 19, 13, "button", 6, _forTrack0$8);
103661
104163
  i0.ɵɵelementEnd()();
103662
104164
  } if (rf & 2) {
103663
104165
  let tmp_3_0;
@@ -104069,7 +104571,7 @@ class UnifiedGoalDetailModalContentComponent {
104069
104571
  }], null, { goal: [{ type: i0.Input, args: [{ isSignal: true, alias: "goal", required: true }] }], allMetrics: [{ type: i0.Input, args: [{ isSignal: true, alias: "allMetrics", required: false }] }], allCharts: [{ type: i0.Input, args: [{ isSignal: true, alias: "allCharts", required: false }] }], loadedSourceAnalysisIds: [{ type: i0.Input, args: [{ isSignal: true, alias: "loadedSourceAnalysisIds", required: false }] }], loadingSourceAnalysisId: [{ type: i0.Input, args: [{ isSignal: true, alias: "loadingSourceAnalysisId", required: false }] }], viewMode: [{ type: i0.Input, args: [{ isSignal: true, alias: "viewMode", required: false }] }], currentModalState: [{ type: i0.Input, args: [{ isSignal: true, alias: "currentModalState", required: false }] }], sourceAnalysisClick: [{ type: i0.Output, args: ["sourceAnalysisClick"] }], metricClick: [{ type: i0.Output, args: ["metricClick"] }], contributingMetricsClick: [{ type: i0.Output, args: ["contributingMetricsClick"] }], showObjectives: [{ type: i0.Output, args: ["showObjectives"] }], close: [{ type: i0.Output, args: ["close"] }] }); })();
104070
104572
  (() => { (typeof ngDevMode === "undefined" || ngDevMode) && i0.ɵsetClassDebugInfo(UnifiedGoalDetailModalContentComponent, { className: "UnifiedGoalDetailModalContentComponent", filePath: "lib/components/profile-analysis-unified-dashboard/modals/unified-goal-detail-modal-content.component.ts", lineNumber: 100 }); })();
104071
104573
 
104072
- const _forTrack0$6 = ($index, $item) => $item.metric;
104574
+ const _forTrack0$7 = ($index, $item) => $item.metric;
104073
104575
  function UnifiedGoalRelatedMetricsModalContentComponent_Conditional_1_Template(rf, ctx) { if (rf & 1) {
104074
104576
  i0.ɵɵelementStart(0, "div", 1)(1, "p", 2);
104075
104577
  i0.ɵɵtext(2, "No contributing metrics available");
@@ -104089,7 +104591,7 @@ function UnifiedGoalRelatedMetricsModalContentComponent_Conditional_2_For_1_Temp
104089
104591
  i0.ɵɵproperty("metric", metric_r3)("isLightMode", ctx_r0.isLightMode());
104090
104592
  } }
104091
104593
  function UnifiedGoalRelatedMetricsModalContentComponent_Conditional_2_Template(rf, ctx) { if (rf & 1) {
104092
- i0.ɵɵrepeaterCreate(0, UnifiedGoalRelatedMetricsModalContentComponent_Conditional_2_For_1_Template, 1, 2, "symphiq-metric-list-item", 3, _forTrack0$6);
104594
+ i0.ɵɵrepeaterCreate(0, UnifiedGoalRelatedMetricsModalContentComponent_Conditional_2_For_1_Template, 1, 2, "symphiq-metric-list-item", 3, _forTrack0$7);
104093
104595
  } if (rf & 2) {
104094
104596
  const ctx_r0 = i0.ɵɵnextContext();
104095
104597
  i0.ɵɵrepeater(ctx_r0.contributingMetrics());
@@ -104470,16 +104972,213 @@ class PriorityActionsModalContentComponent {
104470
104972
  }], null, { items: [{ type: i0.Input, args: [{ isSignal: true, alias: "items", required: false }] }], viewMode: [{ type: i0.Input, args: [{ isSignal: true, alias: "viewMode", required: false }] }], selectedIndex: [{ type: i0.Input, args: [{ isSignal: true, alias: "selectedIndex", required: false }] }], goalClick: [{ type: i0.Output, args: ["goalClick"] }], recommendationClick: [{ type: i0.Output, args: ["recommendationClick"] }] }); })();
104471
104973
  (() => { (typeof ngDevMode === "undefined" || ngDevMode) && i0.ɵsetClassDebugInfo(PriorityActionsModalContentComponent, { className: "PriorityActionsModalContentComponent", filePath: "lib/components/profile-analysis-unified-dashboard/modals/priority-actions-modal-content.component.ts", lineNumber: 107 }); })();
104472
104974
 
104975
+ const _forTrack0$6 = ($index, $item) => $item.value;
104976
+ function GoalActionStateSelectorComponent_Conditional_2_Template(rf, ctx) { if (rf & 1) {
104977
+ i0.ɵɵnamespaceSVG();
104978
+ i0.ɵɵelementStart(0, "svg", 2);
104979
+ i0.ɵɵelement(1, "path", 7)(2, "path", 8);
104980
+ i0.ɵɵelementEnd();
104981
+ } if (rf & 2) {
104982
+ const ctx_r0 = i0.ɵɵnextContext();
104983
+ i0.ɵɵproperty("ngClass", ctx_r0.promptIconClasses());
104984
+ } }
104985
+ function GoalActionStateSelectorComponent_For_7_Conditional_4_Template(rf, ctx) { if (rf & 1) {
104986
+ i0.ɵɵnamespaceSVG();
104987
+ i0.ɵɵelementStart(0, "svg", 11);
104988
+ i0.ɵɵelement(1, "path", 12);
104989
+ i0.ɵɵelementEnd();
104990
+ } }
104991
+ function GoalActionStateSelectorComponent_For_7_Template(rf, ctx) { if (rf & 1) {
104992
+ const _r2 = i0.ɵɵgetCurrentView();
104993
+ i0.ɵɵelementStart(0, "button", 9);
104994
+ i0.ɵɵlistener("click", function GoalActionStateSelectorComponent_For_7_Template_button_click_0_listener() { const option_r3 = i0.ɵɵrestoreView(_r2).$implicit; const ctx_r0 = i0.ɵɵnextContext(); return i0.ɵɵresetView(ctx_r0.selectState(option_r3.value)); });
104995
+ i0.ɵɵelement(1, "span", 10);
104996
+ i0.ɵɵelementStart(2, "span");
104997
+ i0.ɵɵtext(3);
104998
+ i0.ɵɵelementEnd();
104999
+ i0.ɵɵconditionalCreate(4, GoalActionStateSelectorComponent_For_7_Conditional_4_Template, 2, 0, ":svg:svg", 11);
105000
+ i0.ɵɵelementEnd();
105001
+ } if (rf & 2) {
105002
+ const option_r3 = ctx.$implicit;
105003
+ const ctx_r0 = i0.ɵɵnextContext();
105004
+ i0.ɵɵproperty("ngClass", ctx_r0.getButtonClasses(option_r3.value));
105005
+ i0.ɵɵadvance();
105006
+ i0.ɵɵproperty("ngClass", ctx_r0.getDotClasses(option_r3.value));
105007
+ i0.ɵɵadvance(2);
105008
+ i0.ɵɵtextInterpolate(option_r3.label);
105009
+ i0.ɵɵadvance();
105010
+ i0.ɵɵconditional(ctx_r0.state() === option_r3.value ? 4 : -1);
105011
+ } }
105012
+ class GoalActionStateSelectorComponent {
105013
+ constructor() {
105014
+ this.state = input(...(ngDevMode ? [undefined, { debugName: "state" }] : []));
105015
+ this.viewMode = input(ViewModeEnum.LIGHT, ...(ngDevMode ? [{ debugName: "viewMode" }] : []));
105016
+ this.goalId = input(...(ngDevMode ? [undefined, { debugName: "goalId" }] : []));
105017
+ this.stateChange = output();
105018
+ this.options = [
105019
+ { value: GoalActionStateEnum.PLAN, label: 'Plan to Act' },
105020
+ { value: GoalActionStateEnum.POTENTIAL, label: 'Keep for Later' },
105021
+ { value: GoalActionStateEnum.SKIP, label: 'Skip' }
105022
+ ];
105023
+ this.isDark = computed(() => this.viewMode() === ViewModeEnum.DARK, ...(ngDevMode ? [{ debugName: "isDark" }] : []));
105024
+ this.containerClasses = computed(() => {
105025
+ if (!this.state()) {
105026
+ return this.isDark()
105027
+ ? 'bg-gradient-to-r from-blue-900/30 via-cyan-900/30 to-teal-900/30 border-2 border-blue-500/50 animate-attention-pulse'
105028
+ : 'bg-gradient-to-r from-blue-50 via-cyan-50 to-teal-50 border-2 border-blue-400/50 animate-attention-pulse';
105029
+ }
105030
+ return this.isDark() ? 'bg-slate-800/30' : 'bg-slate-50/50';
105031
+ }, ...(ngDevMode ? [{ debugName: "containerClasses" }] : []));
105032
+ this.promptIconClasses = computed(() => {
105033
+ return this.isDark() ? 'text-blue-400 animate-pulse' : 'text-blue-600 animate-pulse';
105034
+ }, ...(ngDevMode ? [{ debugName: "promptIconClasses" }] : []));
105035
+ this.labelClasses = computed(() => {
105036
+ if (!this.state()) {
105037
+ return this.isDark() ? 'text-blue-300 font-bold' : 'text-blue-700 font-bold';
105038
+ }
105039
+ return this.isDark() ? 'text-slate-400' : 'text-slate-500';
105040
+ }, ...(ngDevMode ? [{ debugName: "labelClasses" }] : []));
105041
+ this.hintClasses = computed(() => {
105042
+ if (!this.state()) {
105043
+ return this.isDark() ? 'text-slate-400' : 'text-slate-500';
105044
+ }
105045
+ return this.isDark() ? 'text-slate-500' : 'text-slate-400';
105046
+ }, ...(ngDevMode ? [{ debugName: "hintClasses" }] : []));
105047
+ }
105048
+ getButtonClasses(value) {
105049
+ const isSelected = this.state() === value;
105050
+ if (this.isDark()) {
105051
+ if (isSelected) {
105052
+ switch (value) {
105053
+ case GoalActionStateEnum.PLAN:
105054
+ return 'bg-emerald-900/50 text-emerald-300 border-emerald-500 shadow-lg shadow-emerald-500/20';
105055
+ case GoalActionStateEnum.POTENTIAL:
105056
+ return 'bg-amber-900/50 text-amber-300 border-amber-500 shadow-lg shadow-amber-500/20';
105057
+ case GoalActionStateEnum.SKIP:
105058
+ return 'bg-slate-700/70 text-slate-300 border-slate-500 shadow-lg shadow-slate-500/20';
105059
+ }
105060
+ }
105061
+ return 'bg-slate-800/50 text-slate-400 border-slate-600 hover:bg-slate-700/50 hover:border-slate-500';
105062
+ }
105063
+ if (isSelected) {
105064
+ switch (value) {
105065
+ case GoalActionStateEnum.PLAN:
105066
+ return 'bg-emerald-100 text-emerald-700 border-emerald-400 shadow-lg shadow-emerald-200';
105067
+ case GoalActionStateEnum.POTENTIAL:
105068
+ return 'bg-amber-100 text-amber-700 border-amber-400 shadow-lg shadow-amber-200';
105069
+ case GoalActionStateEnum.SKIP:
105070
+ return 'bg-slate-100 text-slate-600 border-slate-400 shadow-lg shadow-slate-200';
105071
+ }
105072
+ }
105073
+ return 'bg-white text-slate-600 border-slate-200 hover:bg-slate-50 hover:border-slate-300';
105074
+ }
105075
+ getDotClasses(value) {
105076
+ const isSelected = this.state() === value;
105077
+ switch (value) {
105078
+ case GoalActionStateEnum.PLAN:
105079
+ return isSelected ? 'bg-emerald-500' : 'bg-emerald-400/50';
105080
+ case GoalActionStateEnum.POTENTIAL:
105081
+ return isSelected ? 'bg-amber-500' : 'bg-amber-400/50';
105082
+ case GoalActionStateEnum.SKIP:
105083
+ return isSelected ? 'bg-slate-500' : 'bg-slate-400/50';
105084
+ default:
105085
+ return 'bg-slate-400/50';
105086
+ }
105087
+ }
105088
+ getHintText() {
105089
+ switch (this.state()) {
105090
+ case GoalActionStateEnum.PLAN:
105091
+ return 'This goal will be included in your action plan for immediate implementation.';
105092
+ case GoalActionStateEnum.POTENTIAL:
105093
+ return 'This goal will be saved for future consideration when priorities shift.';
105094
+ case GoalActionStateEnum.SKIP:
105095
+ return 'This goal will be marked as not applicable to your current focus.';
105096
+ default:
105097
+ return 'Select how you want to handle this goal to continue your review.';
105098
+ }
105099
+ }
105100
+ selectState(value) {
105101
+ this.stateChange.emit({ goalId: this.goalId(), state: value });
105102
+ }
105103
+ static { this.ɵfac = function GoalActionStateSelectorComponent_Factory(__ngFactoryType__) { return new (__ngFactoryType__ || GoalActionStateSelectorComponent)(); }; }
105104
+ static { this.ɵcmp = /*@__PURE__*/ i0.ɵɵdefineComponent({ type: GoalActionStateSelectorComponent, selectors: [["symphiq-goal-action-state-selector"]], inputs: { state: [1, "state"], viewMode: [1, "viewMode"], goalId: [1, "goalId"] }, outputs: { stateChange: "stateChange" }, decls: 10, vars: 6, consts: [[1, "flex", "flex-col", "gap-3", "p-4", "rounded-xl", "transition-all", "duration-300", 3, "ngClass"], [1, "flex", "items-center", "gap-2"], ["fill", "none", "stroke", "currentColor", "viewBox", "0 0 24 24", 1, "w-5", "h-5", "flex-shrink-0", 3, "ngClass"], [1, "text-xs", "font-semibold", "uppercase", "tracking-wider", 3, "ngClass"], [1, "flex", "flex-col", "sm:flex-row", "sm:flex-wrap", "gap-2", "sm:gap-3"], ["type", "button", 1, "flex", "items-center", "justify-center", "sm:justify-start", "gap-2", "px-4", "py-2.5", "rounded-xl", "font-medium", "text-sm", "transition-all", "duration-200", "border", "cursor-pointer", "w-full", "sm:w-auto", 3, "ngClass"], [1, "text-xs", 3, "ngClass"], ["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"], ["type", "button", 1, "flex", "items-center", "justify-center", "sm:justify-start", "gap-2", "px-4", "py-2.5", "rounded-xl", "font-medium", "text-sm", "transition-all", "duration-200", "border", "cursor-pointer", "w-full", "sm:w-auto", 3, "click", "ngClass"], [1, "w-3", "h-3", "rounded-full", "flex-shrink-0", 3, "ngClass"], ["fill", "currentColor", "viewBox", "0 0 20 20", 1, "w-4", "h-4", "ml-1"], ["fill-rule", "evenodd", "d", "M16.707 5.293a1 1 0 010 1.414l-8 8a1 1 0 01-1.414 0l-4-4a1 1 0 011.414-1.414L8 12.586l7.293-7.293a1 1 0 011.414 0z", "clip-rule", "evenodd"]], template: function GoalActionStateSelectorComponent_Template(rf, ctx) { if (rf & 1) {
105105
+ i0.ɵɵelementStart(0, "div", 0)(1, "div", 1);
105106
+ i0.ɵɵconditionalCreate(2, GoalActionStateSelectorComponent_Conditional_2_Template, 3, 1, ":svg:svg", 2);
105107
+ i0.ɵɵelementStart(3, "div", 3);
105108
+ i0.ɵɵtext(4);
105109
+ i0.ɵɵelementEnd()();
105110
+ i0.ɵɵelementStart(5, "div", 4);
105111
+ i0.ɵɵrepeaterCreate(6, GoalActionStateSelectorComponent_For_7_Template, 5, 4, "button", 5, _forTrack0$6);
105112
+ i0.ɵɵelementEnd();
105113
+ i0.ɵɵelementStart(8, "div", 6);
105114
+ i0.ɵɵtext(9);
105115
+ i0.ɵɵelementEnd()();
105116
+ } if (rf & 2) {
105117
+ i0.ɵɵproperty("ngClass", ctx.containerClasses());
105118
+ i0.ɵɵadvance(2);
105119
+ i0.ɵɵconditional(!ctx.state() ? 2 : -1);
105120
+ i0.ɵɵadvance();
105121
+ i0.ɵɵproperty("ngClass", ctx.labelClasses());
105122
+ i0.ɵɵadvance();
105123
+ i0.ɵɵtextInterpolate1(" ", !ctx.state() ? "Choose an action for this goal" : "What would you like to do with this goal?", " ");
105124
+ i0.ɵɵadvance(2);
105125
+ i0.ɵɵrepeater(ctx.options);
105126
+ i0.ɵɵadvance(2);
105127
+ i0.ɵɵproperty("ngClass", ctx.hintClasses());
105128
+ i0.ɵɵadvance();
105129
+ i0.ɵɵtextInterpolate1(" ", ctx.getHintText(), " ");
105130
+ } }, dependencies: [CommonModule, i1$1.NgClass], styles: ["@keyframes _ngcontent-%COMP%_attention-pulse{0%,to{box-shadow:0 0 #3b82f680}50%{box-shadow:0 0 0 6px #3b82f600}}.animate-attention-pulse[_ngcontent-%COMP%]{animation:_ngcontent-%COMP%_attention-pulse 2s ease-in-out infinite}"], changeDetection: 0 }); }
105131
+ }
105132
+ (() => { (typeof ngDevMode === "undefined" || ngDevMode) && i0.ɵsetClassMetadata(GoalActionStateSelectorComponent, [{
105133
+ type: Component,
105134
+ args: [{ selector: 'symphiq-goal-action-state-selector', standalone: true, imports: [CommonModule], changeDetection: ChangeDetectionStrategy.OnPush, template: `
105135
+ <div [ngClass]="containerClasses()" class="flex flex-col gap-3 p-4 rounded-xl transition-all duration-300">
105136
+ <div class="flex items-center gap-2">
105137
+ @if (!state()) {
105138
+ <svg [ngClass]="promptIconClasses()" class="w-5 h-5 flex-shrink-0" fill="none" stroke="currentColor" viewBox="0 0 24 24">
105139
+ <path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M15 12a3 3 0 11-6 0 3 3 0 016 0z"/>
105140
+ <path 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"/>
105141
+ </svg>
105142
+ }
105143
+ <div [ngClass]="labelClasses()" class="text-xs font-semibold uppercase tracking-wider">
105144
+ {{ !state() ? 'Choose an action for this goal' : 'What would you like to do with this goal?' }}
105145
+ </div>
105146
+ </div>
105147
+ <div class="flex flex-col sm:flex-row sm:flex-wrap gap-2 sm:gap-3">
105148
+ @for (option of options; track option.value) {
105149
+ <button
105150
+ type="button"
105151
+ (click)="selectState(option.value)"
105152
+ [ngClass]="getButtonClasses(option.value)"
105153
+ class="flex items-center justify-center sm:justify-start gap-2 px-4 py-2.5 rounded-xl font-medium text-sm transition-all duration-200 border cursor-pointer w-full sm:w-auto">
105154
+ <span [ngClass]="getDotClasses(option.value)" class="w-3 h-3 rounded-full flex-shrink-0"></span>
105155
+ <span>{{ option.label }}</span>
105156
+ @if (state() === option.value) {
105157
+ <svg class="w-4 h-4 ml-1" fill="currentColor" viewBox="0 0 20 20">
105158
+ <path fill-rule="evenodd" d="M16.707 5.293a1 1 0 010 1.414l-8 8a1 1 0 01-1.414 0l-4-4a1 1 0 011.414-1.414L8 12.586l7.293-7.293a1 1 0 011.414 0z" clip-rule="evenodd"></path>
105159
+ </svg>
105160
+ }
105161
+ </button>
105162
+ }
105163
+ </div>
105164
+ <div [ngClass]="hintClasses()" class="text-xs">
105165
+ {{ getHintText() }}
105166
+ </div>
105167
+ </div>
105168
+ `, styles: ["@keyframes attention-pulse{0%,to{box-shadow:0 0 #3b82f680}50%{box-shadow:0 0 0 6px #3b82f600}}.animate-attention-pulse{animation:attention-pulse 2s ease-in-out infinite}\n"] }]
105169
+ }], null, { state: [{ type: i0.Input, args: [{ isSignal: true, alias: "state", required: false }] }], viewMode: [{ type: i0.Input, args: [{ isSignal: true, alias: "viewMode", required: false }] }], goalId: [{ type: i0.Input, args: [{ isSignal: true, alias: "goalId", required: false }] }], stateChange: [{ type: i0.Output, args: ["stateChange"] }] }); })();
105170
+ (() => { (typeof ngDevMode === "undefined" || ngDevMode) && i0.ɵsetClassDebugInfo(GoalActionStateSelectorComponent, { className: "GoalActionStateSelectorComponent", filePath: "lib/components/shared/goal-action-state-selector.component.ts", lineNumber: 60 }); })();
105171
+
104473
105172
  const _c0$8 = ["modalContent"];
104474
105173
  const _c1$3 = ["modalWrapper"];
104475
105174
  const _c2$2 = () => [];
104476
105175
  function UnifiedDashboardModalComponent_Conditional_0_Conditional_7_Template(rf, ctx) { if (rf & 1) {
104477
105176
  const _r3 = i0.ɵɵgetCurrentView();
104478
- i0.ɵɵelementStart(0, "button", 26);
105177
+ i0.ɵɵelementStart(0, "button", 27);
104479
105178
  i0.ɵɵlistener("click", function UnifiedDashboardModalComponent_Conditional_0_Conditional_7_Template_button_click_0_listener() { i0.ɵɵrestoreView(_r3); const ctx_r1 = i0.ɵɵnextContext(2); return i0.ɵɵresetView(ctx_r1.onBackClick()); });
104480
105179
  i0.ɵɵnamespaceSVG();
104481
- i0.ɵɵelementStart(1, "svg", 27);
104482
- i0.ɵɵelement(2, "path", 28);
105180
+ i0.ɵɵelementStart(1, "svg", 28);
105181
+ i0.ɵɵelement(2, "path", 29);
104483
105182
  i0.ɵɵelementEnd()();
104484
105183
  } if (rf & 2) {
104485
105184
  const ctx_r1 = i0.ɵɵnextContext(2);
@@ -104487,8 +105186,8 @@ function UnifiedDashboardModalComponent_Conditional_0_Conditional_7_Template(rf,
104487
105186
  } }
104488
105187
  function UnifiedDashboardModalComponent_Conditional_0_Conditional_9_For_2_Conditional_2_Template(rf, ctx) { if (rf & 1) {
104489
105188
  i0.ɵɵnamespaceSVG();
104490
- i0.ɵɵelementStart(0, "svg", 31);
104491
- i0.ɵɵelement(1, "path", 32);
105189
+ i0.ɵɵelementStart(0, "svg", 32);
105190
+ i0.ɵɵelement(1, "path", 33);
104492
105191
  i0.ɵɵelementEnd();
104493
105192
  } if (rf & 2) {
104494
105193
  const ctx_r1 = i0.ɵɵnextContext(4);
@@ -104496,11 +105195,11 @@ function UnifiedDashboardModalComponent_Conditional_0_Conditional_9_For_2_Condit
104496
105195
  } }
104497
105196
  function UnifiedDashboardModalComponent_Conditional_0_Conditional_9_For_2_Template(rf, ctx) { if (rf & 1) {
104498
105197
  const _r4 = i0.ɵɵgetCurrentView();
104499
- i0.ɵɵelementStart(0, "button", 30);
105198
+ i0.ɵɵelementStart(0, "button", 31);
104500
105199
  i0.ɵɵlistener("click", function UnifiedDashboardModalComponent_Conditional_0_Conditional_9_For_2_Template_button_click_0_listener() { const item_r5 = i0.ɵɵrestoreView(_r4).$implicit; const ctx_r1 = i0.ɵɵnextContext(3); return i0.ɵɵresetView(ctx_r1.navigateToBreadcrumb(item_r5)); });
104501
105200
  i0.ɵɵtext(1);
104502
105201
  i0.ɵɵelementEnd();
104503
- i0.ɵɵconditionalCreate(2, UnifiedDashboardModalComponent_Conditional_0_Conditional_9_For_2_Conditional_2_Template, 2, 1, ":svg:svg", 31);
105202
+ i0.ɵɵconditionalCreate(2, UnifiedDashboardModalComponent_Conditional_0_Conditional_9_For_2_Conditional_2_Template, 2, 1, ":svg:svg", 32);
104504
105203
  } if (rf & 2) {
104505
105204
  const item_r5 = ctx.$implicit;
104506
105205
  const ɵ$index_26_r6 = ctx.$index;
@@ -104513,7 +105212,7 @@ function UnifiedDashboardModalComponent_Conditional_0_Conditional_9_For_2_Templa
104513
105212
  i0.ɵɵconditional(!(ɵ$index_26_r6 === ɵ$count_26_r7 - 1) || ctx_r1.modalType() !== null ? 2 : -1);
104514
105213
  } }
104515
105214
  function UnifiedDashboardModalComponent_Conditional_0_Conditional_9_Conditional_3_Template(rf, ctx) { if (rf & 1) {
104516
- i0.ɵɵelementStart(0, "span", 29);
105215
+ i0.ɵɵelementStart(0, "span", 30);
104517
105216
  i0.ɵɵtext(1, "Objectives");
104518
105217
  i0.ɵɵelementEnd();
104519
105218
  } if (rf & 2) {
@@ -104521,7 +105220,7 @@ function UnifiedDashboardModalComponent_Conditional_0_Conditional_9_Conditional_
104521
105220
  i0.ɵɵproperty("ngClass", ctx_r1.breadcrumbCurrentClasses());
104522
105221
  } }
104523
105222
  function UnifiedDashboardModalComponent_Conditional_0_Conditional_9_Conditional_4_Template(rf, ctx) { if (rf & 1) {
104524
- i0.ɵɵelementStart(0, "span", 29);
105223
+ i0.ɵɵelementStart(0, "span", 30);
104525
105224
  i0.ɵɵtext(1, "Related Metrics");
104526
105225
  i0.ɵɵelementEnd();
104527
105226
  } if (rf & 2) {
@@ -104529,7 +105228,7 @@ function UnifiedDashboardModalComponent_Conditional_0_Conditional_9_Conditional_
104529
105228
  i0.ɵɵproperty("ngClass", ctx_r1.breadcrumbCurrentClasses());
104530
105229
  } }
104531
105230
  function UnifiedDashboardModalComponent_Conditional_0_Conditional_9_Conditional_5_Template(rf, ctx) { if (rf & 1) {
104532
- i0.ɵɵelementStart(0, "span", 29);
105231
+ i0.ɵɵelementStart(0, "span", 30);
104533
105232
  i0.ɵɵtext(1, "Strategies");
104534
105233
  i0.ɵɵelementEnd();
104535
105234
  } if (rf & 2) {
@@ -104537,7 +105236,7 @@ function UnifiedDashboardModalComponent_Conditional_0_Conditional_9_Conditional_
104537
105236
  i0.ɵɵproperty("ngClass", ctx_r1.breadcrumbCurrentClasses());
104538
105237
  } }
104539
105238
  function UnifiedDashboardModalComponent_Conditional_0_Conditional_9_Conditional_6_Template(rf, ctx) { if (rf & 1) {
104540
- i0.ɵɵelementStart(0, "span", 29);
105239
+ i0.ɵɵelementStart(0, "span", 30);
104541
105240
  i0.ɵɵtext(1, "Recommendations");
104542
105241
  i0.ɵɵelementEnd();
104543
105242
  } if (rf & 2) {
@@ -104545,7 +105244,7 @@ function UnifiedDashboardModalComponent_Conditional_0_Conditional_9_Conditional_
104545
105244
  i0.ɵɵproperty("ngClass", ctx_r1.breadcrumbCurrentClasses());
104546
105245
  } }
104547
105246
  function UnifiedDashboardModalComponent_Conditional_0_Conditional_9_Conditional_7_Template(rf, ctx) { if (rf & 1) {
104548
- i0.ɵɵelementStart(0, "span", 29);
105247
+ i0.ɵɵelementStart(0, "span", 30);
104549
105248
  i0.ɵɵtext(1, "Priority Actions");
104550
105249
  i0.ɵɵelementEnd();
104551
105250
  } if (rf & 2) {
@@ -104555,11 +105254,11 @@ function UnifiedDashboardModalComponent_Conditional_0_Conditional_9_Conditional_
104555
105254
  function UnifiedDashboardModalComponent_Conditional_0_Conditional_9_Template(rf, ctx) { if (rf & 1) {
104556
105255
  i0.ɵɵelementStart(0, "div", 11);
104557
105256
  i0.ɵɵrepeaterCreate(1, UnifiedDashboardModalComponent_Conditional_0_Conditional_9_For_2_Template, 3, 3, null, null, i0.ɵɵrepeaterTrackByIndex);
104558
- i0.ɵɵconditionalCreate(3, UnifiedDashboardModalComponent_Conditional_0_Conditional_9_Conditional_3_Template, 2, 1, "span", 29);
104559
- i0.ɵɵconditionalCreate(4, UnifiedDashboardModalComponent_Conditional_0_Conditional_9_Conditional_4_Template, 2, 1, "span", 29);
104560
- i0.ɵɵconditionalCreate(5, UnifiedDashboardModalComponent_Conditional_0_Conditional_9_Conditional_5_Template, 2, 1, "span", 29);
104561
- i0.ɵɵconditionalCreate(6, UnifiedDashboardModalComponent_Conditional_0_Conditional_9_Conditional_6_Template, 2, 1, "span", 29);
104562
- i0.ɵɵconditionalCreate(7, UnifiedDashboardModalComponent_Conditional_0_Conditional_9_Conditional_7_Template, 2, 1, "span", 29);
105257
+ i0.ɵɵconditionalCreate(3, UnifiedDashboardModalComponent_Conditional_0_Conditional_9_Conditional_3_Template, 2, 1, "span", 30);
105258
+ i0.ɵɵconditionalCreate(4, UnifiedDashboardModalComponent_Conditional_0_Conditional_9_Conditional_4_Template, 2, 1, "span", 30);
105259
+ i0.ɵɵconditionalCreate(5, UnifiedDashboardModalComponent_Conditional_0_Conditional_9_Conditional_5_Template, 2, 1, "span", 30);
105260
+ i0.ɵɵconditionalCreate(6, UnifiedDashboardModalComponent_Conditional_0_Conditional_9_Conditional_6_Template, 2, 1, "span", 30);
105261
+ i0.ɵɵconditionalCreate(7, UnifiedDashboardModalComponent_Conditional_0_Conditional_9_Conditional_7_Template, 2, 1, "span", 30);
104563
105262
  i0.ɵɵelementEnd();
104564
105263
  } if (rf & 2) {
104565
105264
  const ctx_r1 = i0.ɵɵnextContext(2);
@@ -104577,7 +105276,7 @@ function UnifiedDashboardModalComponent_Conditional_0_Conditional_9_Template(rf,
104577
105276
  i0.ɵɵconditional(ctx_r1.modalType() === "priority-actions-list" ? 7 : -1);
104578
105277
  } }
104579
105278
  function UnifiedDashboardModalComponent_Conditional_0_Conditional_10_Template(rf, ctx) { if (rf & 1) {
104580
- i0.ɵɵelementStart(0, "div", 12)(1, "span", 33);
105279
+ i0.ɵɵelementStart(0, "div", 12)(1, "span", 34);
104581
105280
  i0.ɵɵtext(2);
104582
105281
  i0.ɵɵelementEnd()();
104583
105282
  } if (rf & 2) {
@@ -104588,21 +105287,21 @@ function UnifiedDashboardModalComponent_Conditional_0_Conditional_10_Template(rf
104588
105287
  i0.ɵɵtextInterpolate1(" ", ctx_r1.modalType() === "unified-goal-objectives" ? "Objectives" : ctx_r1.modalType() === "unified-goal-related-metrics" ? "Related Metrics" : ctx_r1.modalType() === "objective-strategies" ? "Strategies" : ctx_r1.modalType() === "strategy-recommendations" ? "Recommendations" : ctx_r1.modalType() === "priority-actions-list" ? "Unified Analysis" : "Unified Goal", " ");
104589
105288
  } }
104590
105289
  function UnifiedDashboardModalComponent_Conditional_0_Conditional_14_Conditional_1_Template(rf, ctx) { if (rf & 1) {
104591
- i0.ɵɵelement(0, "symphiq-priority-badge", 34);
105290
+ i0.ɵɵelement(0, "symphiq-priority-badge", 35);
104592
105291
  } if (rf & 2) {
104593
105292
  const ctx_r1 = i0.ɵɵnextContext(3);
104594
105293
  i0.ɵɵproperty("priority", ctx_r1.currentGoal().priority)("viewMode", ctx_r1.viewMode());
104595
105294
  } }
104596
105295
  function UnifiedDashboardModalComponent_Conditional_0_Conditional_14_Conditional_2_Template(rf, ctx) { if (rf & 1) {
104597
- i0.ɵɵelement(0, "symphiq-timeframe-badge", 35);
105296
+ i0.ɵɵelement(0, "symphiq-timeframe-badge", 36);
104598
105297
  } if (rf & 2) {
104599
105298
  const ctx_r1 = i0.ɵɵnextContext(3);
104600
105299
  i0.ɵɵproperty("timeframe", ctx_r1.currentGoal().timeframe)("viewMode", ctx_r1.viewMode());
104601
105300
  } }
104602
105301
  function UnifiedDashboardModalComponent_Conditional_0_Conditional_14_Template(rf, ctx) { if (rf & 1) {
104603
105302
  i0.ɵɵelementStart(0, "div", 15);
104604
- i0.ɵɵconditionalCreate(1, UnifiedDashboardModalComponent_Conditional_0_Conditional_14_Conditional_1_Template, 1, 2, "symphiq-priority-badge", 34);
104605
- i0.ɵɵconditionalCreate(2, UnifiedDashboardModalComponent_Conditional_0_Conditional_14_Conditional_2_Template, 1, 2, "symphiq-timeframe-badge", 35);
105303
+ i0.ɵɵconditionalCreate(1, UnifiedDashboardModalComponent_Conditional_0_Conditional_14_Conditional_1_Template, 1, 2, "symphiq-priority-badge", 35);
105304
+ i0.ɵɵconditionalCreate(2, UnifiedDashboardModalComponent_Conditional_0_Conditional_14_Conditional_2_Template, 1, 2, "symphiq-timeframe-badge", 36);
104606
105305
  i0.ɵɵelementEnd();
104607
105306
  } if (rf & 2) {
104608
105307
  let tmp_4_0;
@@ -104615,7 +105314,7 @@ function UnifiedDashboardModalComponent_Conditional_0_Conditional_14_Template(rf
104615
105314
  } }
104616
105315
  function UnifiedDashboardModalComponent_Conditional_0_Conditional_20_Template(rf, ctx) { if (rf & 1) {
104617
105316
  const _r8 = i0.ɵɵgetCurrentView();
104618
- i0.ɵɵelementStart(0, "symphiq-unified-goal-detail-modal-content", 36);
105317
+ i0.ɵɵelementStart(0, "symphiq-unified-goal-detail-modal-content", 37);
104619
105318
  i0.ɵɵlistener("sourceAnalysisClick", function UnifiedDashboardModalComponent_Conditional_0_Conditional_20_Template_symphiq_unified_goal_detail_modal_content_sourceAnalysisClick_0_listener($event) { i0.ɵɵrestoreView(_r8); const ctx_r1 = i0.ɵɵnextContext(2); return i0.ɵɵresetView(ctx_r1.onSourceAnalysisClick($event)); })("metricClick", function UnifiedDashboardModalComponent_Conditional_0_Conditional_20_Template_symphiq_unified_goal_detail_modal_content_metricClick_0_listener($event) { i0.ɵɵrestoreView(_r8); const ctx_r1 = i0.ɵɵnextContext(2); return i0.ɵɵresetView(ctx_r1.onMetricClick($event)); })("contributingMetricsClick", function UnifiedDashboardModalComponent_Conditional_0_Conditional_20_Template_symphiq_unified_goal_detail_modal_content_contributingMetricsClick_0_listener() { i0.ɵɵrestoreView(_r8); const ctx_r1 = i0.ɵɵnextContext(2); return i0.ɵɵresetView(ctx_r1.onContributingMetricsClick()); })("showObjectives", function UnifiedDashboardModalComponent_Conditional_0_Conditional_20_Template_symphiq_unified_goal_detail_modal_content_showObjectives_0_listener() { i0.ɵɵrestoreView(_r8); const ctx_r1 = i0.ɵɵnextContext(2); return i0.ɵɵresetView(ctx_r1.onShowObjectives()); })("close", function UnifiedDashboardModalComponent_Conditional_0_Conditional_20_Template_symphiq_unified_goal_detail_modal_content_close_0_listener() { i0.ɵɵrestoreView(_r8); const ctx_r1 = i0.ɵɵnextContext(2); return i0.ɵɵresetView(ctx_r1.closeModal()); });
104620
105319
  i0.ɵɵelementEnd();
104621
105320
  } if (rf & 2) {
@@ -104630,7 +105329,7 @@ function UnifiedDashboardModalComponent_Conditional_0_Conditional_21_Template(rf
104630
105329
  } }
104631
105330
  function UnifiedDashboardModalComponent_Conditional_0_Conditional_22_Template(rf, ctx) { if (rf & 1) {
104632
105331
  const _r9 = i0.ɵɵgetCurrentView();
104633
- i0.ɵɵelementStart(0, "symphiq-unified-goal-related-metrics-modal-content", 37);
105332
+ i0.ɵɵelementStart(0, "symphiq-unified-goal-related-metrics-modal-content", 38);
104634
105333
  i0.ɵɵlistener("metricClick", function UnifiedDashboardModalComponent_Conditional_0_Conditional_22_Template_symphiq_unified_goal_related_metrics_modal_content_metricClick_0_listener($event) { i0.ɵɵrestoreView(_r9); const ctx_r1 = i0.ɵɵnextContext(2); return i0.ɵɵresetView(ctx_r1.onRelatedMetricClick($event)); });
104635
105334
  i0.ɵɵelementEnd();
104636
105335
  } if (rf & 2) {
@@ -104647,17 +105346,29 @@ function UnifiedDashboardModalComponent_Conditional_0_Conditional_24_Template(rf
104647
105346
  i0.ɵɵelement(0, "symphiq-strategy-recommendations-modal-content", 24);
104648
105347
  } if (rf & 2) {
104649
105348
  const ctx_r1 = i0.ɵɵnextContext(2);
104650
- i0.ɵɵproperty("strategy", ctx_r1.recommendationsData().strategy)("viewMode", ctx_r1.viewMode())("allMetrics", ctx_r1.allMetricsFromStack())("allCharts", ctx_r1.allChartsFromStack())("allInsights", ctx_r1.allInsightsFromStack())("goalTitle", ctx_r1.recommendationsData().goalTitle)("objectiveTitle", ctx_r1.recommendationsData().objectiveTitle)("currentModalState", ctx_r1.currentModalState())("expandedRecommendationId", ctx_r1.recommendationsData().expandedRecommendationId);
105349
+ i0.ɵɵproperty("strategy", ctx_r1.recommendationsData().strategy)("viewMode", ctx_r1.viewMode())("allMetrics", ctx_r1.allMetricsFromStack())("allCharts", ctx_r1.allChartsFromStack())("allInsights", ctx_r1.allInsightsFromStack())("allBusinessInsights", ctx_r1.allBusinessInsightsFromStack())("goalTitle", ctx_r1.recommendationsData().goalTitle)("objectiveTitle", ctx_r1.recommendationsData().objectiveTitle)("currentModalState", ctx_r1.currentModalState())("expandedRecommendationId", ctx_r1.recommendationsData().expandedRecommendationId);
104651
105350
  } }
104652
105351
  function UnifiedDashboardModalComponent_Conditional_0_Conditional_25_Template(rf, ctx) { if (rf & 1) {
104653
105352
  const _r10 = i0.ɵɵgetCurrentView();
104654
- i0.ɵɵelementStart(0, "symphiq-priority-actions-modal-content", 38);
105353
+ i0.ɵɵelementStart(0, "symphiq-priority-actions-modal-content", 39);
104655
105354
  i0.ɵɵlistener("goalClick", function UnifiedDashboardModalComponent_Conditional_0_Conditional_25_Template_symphiq_priority_actions_modal_content_goalClick_0_listener($event) { i0.ɵɵrestoreView(_r10); const ctx_r1 = i0.ɵɵnextContext(2); return i0.ɵɵresetView(ctx_r1.onPriorityActionGoalClick($event)); })("recommendationClick", function UnifiedDashboardModalComponent_Conditional_0_Conditional_25_Template_symphiq_priority_actions_modal_content_recommendationClick_0_listener($event) { i0.ɵɵrestoreView(_r10); const ctx_r1 = i0.ɵɵnextContext(2); return i0.ɵɵresetView(ctx_r1.onPriorityActionRecommendationClick($event)); });
104656
105355
  i0.ɵɵelementEnd();
104657
105356
  } if (rf & 2) {
104658
105357
  const ctx_r1 = i0.ɵɵnextContext(2);
104659
105358
  i0.ɵɵproperty("items", ctx_r1.priorityActionsData().items)("viewMode", ctx_r1.viewMode())("selectedIndex", ctx_r1.priorityActionsData().selectedIndex ?? null);
104660
105359
  } }
105360
+ function UnifiedDashboardModalComponent_Conditional_0_Conditional_26_Template(rf, ctx) { if (rf & 1) {
105361
+ const _r11 = i0.ɵɵgetCurrentView();
105362
+ i0.ɵɵelementStart(0, "div", 26)(1, "symphiq-goal-action-state-selector", 40);
105363
+ i0.ɵɵlistener("stateChange", function UnifiedDashboardModalComponent_Conditional_0_Conditional_26_Template_symphiq_goal_action_state_selector_stateChange_1_listener($event) { i0.ɵɵrestoreView(_r11); const ctx_r1 = i0.ɵɵnextContext(2); return i0.ɵɵresetView(ctx_r1.onActionStateChange($event)); });
105364
+ i0.ɵɵelementEnd()();
105365
+ } if (rf & 2) {
105366
+ let tmp_7_0;
105367
+ const ctx_r1 = i0.ɵɵnextContext(2);
105368
+ i0.ɵɵproperty("ngClass", ctx_r1.footerClasses());
105369
+ i0.ɵɵadvance();
105370
+ i0.ɵɵproperty("state", ctx_r1.currentGoalActionState())("viewMode", ctx_r1.viewMode())("goalId", (tmp_7_0 = ctx_r1.currentGoal()) == null ? null : tmp_7_0.id);
105371
+ } }
104661
105372
  function UnifiedDashboardModalComponent_Conditional_0_Template(rf, ctx) { if (rf & 1) {
104662
105373
  const _r1 = i0.ɵɵgetCurrentView();
104663
105374
  i0.ɵɵelementStart(0, "div", 3, 0)(2, "div", 4);
@@ -104686,9 +105397,11 @@ function UnifiedDashboardModalComponent_Conditional_0_Template(rf, ctx) { if (rf
104686
105397
  i0.ɵɵconditionalCreate(21, UnifiedDashboardModalComponent_Conditional_0_Conditional_21_Template, 1, 4, "symphiq-goal-objectives-modal-content", 21);
104687
105398
  i0.ɵɵconditionalCreate(22, UnifiedDashboardModalComponent_Conditional_0_Conditional_22_Template, 1, 3, "symphiq-unified-goal-related-metrics-modal-content", 22);
104688
105399
  i0.ɵɵconditionalCreate(23, UnifiedDashboardModalComponent_Conditional_0_Conditional_23_Template, 1, 2, "symphiq-objective-strategies-modal-content", 23);
104689
- i0.ɵɵconditionalCreate(24, UnifiedDashboardModalComponent_Conditional_0_Conditional_24_Template, 1, 9, "symphiq-strategy-recommendations-modal-content", 24);
105400
+ i0.ɵɵconditionalCreate(24, UnifiedDashboardModalComponent_Conditional_0_Conditional_24_Template, 1, 10, "symphiq-strategy-recommendations-modal-content", 24);
104690
105401
  i0.ɵɵconditionalCreate(25, UnifiedDashboardModalComponent_Conditional_0_Conditional_25_Template, 1, 3, "symphiq-priority-actions-modal-content", 25);
104691
- i0.ɵɵelementEnd()()();
105402
+ i0.ɵɵelementEnd();
105403
+ i0.ɵɵconditionalCreate(26, UnifiedDashboardModalComponent_Conditional_0_Conditional_26_Template, 2, 4, "div", 26);
105404
+ i0.ɵɵelementEnd()();
104692
105405
  } if (rf & 2) {
104693
105406
  let tmp_17_0;
104694
105407
  const ctx_r1 = i0.ɵɵnextContext();
@@ -104729,6 +105442,8 @@ function UnifiedDashboardModalComponent_Conditional_0_Template(rf, ctx) { if (rf
104729
105442
  i0.ɵɵconditional(ctx_r1.modalType() === "strategy-recommendations" && ctx_r1.recommendationsData() ? 24 : -1);
104730
105443
  i0.ɵɵadvance();
104731
105444
  i0.ɵɵconditional(ctx_r1.modalType() === "priority-actions-list" && ctx_r1.priorityActionsData() ? 25 : -1);
105445
+ i0.ɵɵadvance();
105446
+ i0.ɵɵconditional(ctx_r1.modalType() === "unified-goal-detail" && ctx_r1.currentGoal() ? 26 : -1);
104732
105447
  } }
104733
105448
  class UnifiedDashboardModalComponent {
104734
105449
  constructor() {
@@ -104742,10 +105457,12 @@ class UnifiedDashboardModalComponent {
104742
105457
  this.renderer = inject(Renderer2);
104743
105458
  this.document = inject(DOCUMENT);
104744
105459
  this.hostElement = inject(ElementRef);
105460
+ this.goalActionStateService = inject(GoalActionStateService);
104745
105461
  this.isOpen = signal(false, ...(ngDevMode ? [{ debugName: "isOpen" }] : []));
104746
105462
  this.modalReady = signal(false, ...(ngDevMode ? [{ debugName: "modalReady" }] : []));
104747
105463
  this.isFreshOpen = signal(true, ...(ngDevMode ? [{ debugName: "isFreshOpen" }] : []));
104748
105464
  this.modalMovedToBody = false;
105465
+ this.initialGoalActionState = signal(null, ...(ngDevMode ? [{ debugName: "initialGoalActionState" }] : []));
104749
105466
  this.modalTitle = signal('', ...(ngDevMode ? [{ debugName: "modalTitle" }] : []));
104750
105467
  this.modalType = signal(null, ...(ngDevMode ? [{ debugName: "modalType" }] : []));
104751
105468
  this.modalData = signal(null, ...(ngDevMode ? [{ debugName: "modalData" }] : []));
@@ -104801,6 +105518,18 @@ class UnifiedDashboardModalComponent {
104801
105518
  const relatedMetricsData = this.relatedMetricsData();
104802
105519
  return goalData?.goal || objData?.goal || relatedMetricsData?.goal || null;
104803
105520
  }, ...(ngDevMode ? [{ debugName: "currentGoal" }] : []));
105521
+ this.currentGoalActionState = computed(() => {
105522
+ const goal = this.currentGoal();
105523
+ if (!goal?.id)
105524
+ return undefined;
105525
+ this.goalActionStateService.states();
105526
+ return this.goalActionStateService.getState(goal.id);
105527
+ }, ...(ngDevMode ? [{ debugName: "currentGoalActionState" }] : []));
105528
+ this.footerClasses = computed(() => {
105529
+ return this.isLightMode()
105530
+ ? 'bg-white/50 border-slate-200/50'
105531
+ : 'bg-slate-800/50 border-slate-700/50';
105532
+ }, ...(ngDevMode ? [{ debugName: "footerClasses" }] : []));
104804
105533
  this.supportedModalTypes = new Set([
104805
105534
  'unified-goal-detail',
104806
105535
  'unified-goal-objectives',
@@ -104873,6 +105602,24 @@ class UnifiedDashboardModalComponent {
104873
105602
  }
104874
105603
  return [];
104875
105604
  }, ...(ngDevMode ? [{ debugName: "allInsightsFromStack" }] : []));
105605
+ this.allBusinessInsightsFromStack = computed(() => {
105606
+ const goalData = this.unifiedGoalData();
105607
+ if (goalData?.allBusinessInsights)
105608
+ return goalData.allBusinessInsights;
105609
+ const objData = this.objectivesData();
105610
+ if (objData?.allBusinessInsights)
105611
+ return objData.allBusinessInsights;
105612
+ const stack = this.navigationStack();
105613
+ for (let i = stack.length - 1; i >= 0; i--) {
105614
+ const state = stack[i];
105615
+ if (state.type === 'unified-goal-detail' || state.type === 'unified-goal-objectives') {
105616
+ const data = state.data;
105617
+ if (data?.allBusinessInsights)
105618
+ return data.allBusinessInsights;
105619
+ }
105620
+ }
105621
+ return [];
105622
+ }, ...(ngDevMode ? [{ debugName: "allBusinessInsightsFromStack" }] : []));
104876
105623
  this.loadedSourceAnalysisIdsAsNumbers = computed(() => {
104877
105624
  return this.loadedSourceAnalysisIds();
104878
105625
  }, ...(ngDevMode ? [{ debugName: "loadedSourceAnalysisIdsAsNumbers" }] : []));
@@ -104922,7 +105669,7 @@ class UnifiedDashboardModalComponent {
104922
105669
  }
104923
105670
  const unifiedModalTypes = ['unified-goal-detail', 'unified-goal-objectives', 'unified-goal-related-metrics', 'objective-strategies', 'strategy-recommendations', 'priority-actions-list'];
104924
105671
  const isUnifiedType = unifiedModalTypes.includes(state.type || '');
104925
- const stackableTypes = ['metrics-list', 'metric'];
105672
+ const stackableTypes = ['metrics-list', 'metric', 'insight', 'insights-list', 'goal-insights-list', 'goal-business-insights-list', 'recommendation-business-insights-list', 'recommendation-insights-list', 'business-insight-detail'];
104926
105673
  const isStackableType = stackableTypes.includes(state.type || '');
104927
105674
  if (!isUnifiedType && state.type !== null && !isStackableType) {
104928
105675
  if (this.isOpen()) {
@@ -104951,6 +105698,9 @@ class UnifiedDashboardModalComponent {
104951
105698
  this.modalTitle.set(data.goal.title || 'Unified Goal');
104952
105699
  this.isFreshOpen.set(!wasAlreadyOpen);
104953
105700
  this.isOpen.set(true);
105701
+ if (!wasAlreadyOpen && data.goal?.id) {
105702
+ this.initialGoalActionState.set(this.goalActionStateService.getState(data.goal.id));
105703
+ }
104954
105704
  this.scrollContentToTop();
104955
105705
  }
104956
105706
  else if (state.type === 'unified-goal-objectives' && state.data) {
@@ -105033,7 +105783,7 @@ class UnifiedDashboardModalComponent {
105033
105783
  const data = this.unifiedGoalData();
105034
105784
  if (!data)
105035
105785
  return;
105036
- this.modalService.navigateToUnifiedGoalObjectives(data.goal, data.allMetrics, data.allCharts, this.viewMode());
105786
+ this.modalService.navigateToUnifiedGoalObjectives(data.goal, data.allMetrics, data.allCharts, this.viewMode(), data.allInsights, data.allBusinessInsights);
105037
105787
  }
105038
105788
  onRelatedMetricClick(metric) {
105039
105789
  const data = this.relatedMetricsData();
@@ -105151,6 +105901,15 @@ class UnifiedDashboardModalComponent {
105151
105901
  onPriorityActionRecommendationClick(recommendationId) {
105152
105902
  this.priorityActionRecommendationClick.emit(recommendationId);
105153
105903
  }
105904
+ onActionStateChange(event) {
105905
+ if (event.goalId) {
105906
+ const wasInitiallyUndefined = this.initialGoalActionState() === undefined;
105907
+ this.goalActionStateService.setState(event.goalId, event.state);
105908
+ if (wasInitiallyUndefined) {
105909
+ this.closeModal();
105910
+ }
105911
+ }
105912
+ }
105154
105913
  closeModal() {
105155
105914
  this.modalService.closeModal();
105156
105915
  }
@@ -105185,8 +105944,8 @@ class UnifiedDashboardModalComponent {
105185
105944
  let _t;
105186
105945
  i0.ɵɵqueryRefresh(_t = i0.ɵɵloadQuery()) && (ctx.modalContent = _t.first);
105187
105946
  i0.ɵɵqueryRefresh(_t = i0.ɵɵloadQuery()) && (ctx.modalWrapper = _t.first);
105188
- } }, inputs: { viewMode: [1, "viewMode"], loadingSourceAnalysisId: [1, "loadingSourceAnalysisId"], loadedSourceAnalysisIds: [1, "loadedSourceAnalysisIds"] }, outputs: { priorityActionGoalClick: "priorityActionGoalClick", priorityActionRecommendationClick: "priorityActionRecommendationClick", sourceAnalysisClickRequest: "sourceAnalysisClickRequest" }, decls: 1, vars: 1, consts: [["modalWrapper", ""], ["modalContent", ""], [1, "fixed", "inset-0", "flex", "items-center", "justify-center", "p-4", "overflow-y-auto", 3, "z-index", "visibility"], [1, "fixed", "inset-0", "flex", "items-center", "justify-center", "p-4", "overflow-y-auto"], ["aria-hidden", "true", 1, "fixed", "inset-0", "backdrop-blur-sm", "transition-opacity", "duration-200", 3, "click", "ngClass"], [1, "relative", "w-full", "max-w-6xl", "rounded-2xl", "text-left", "overflow-hidden", "shadow-xl", "border", "backdrop-blur-xl", 3, "click", "ngClass"], [1, "px-6", "py-5", "border-b", "backdrop-blur-sm", 3, "ngClass"], [1, "flex", "items-start", "justify-between", "gap-4"], [1, "flex", "items-start", "gap-3", "flex-1", "min-w-0"], ["type", "button", 1, "mt-0.5", "p-1.5", "rounded-lg", "transition-all", "hover:scale-105", "active:scale-95", "cursor-pointer", "flex-shrink-0", 3, "ngClass"], [1, "flex-1", "min-w-0"], [1, "flex", "items-center", "gap-1.5", "mb-2", "text-xs"], [1, "flex", "items-center", "gap-2", "mb-2"], [1, "flex", "flex-wrap", "items-center", "justify-between", "gap-x-4", "gap-y-2"], [1, "text-xl", "font-bold", "leading-tight", 3, "ngClass"], [1, "flex", "items-center", "gap-2"], ["type", "button", 1, "transition-all", "rounded-lg", "p-1", "hover:scale-110", "active:scale-90", "cursor-pointer", "flex-shrink-0", 3, "click", "ngClass"], ["fill", "none", "stroke", "currentColor", "viewBox", "0 0 24 24", 1, "w-6", "h-6"], ["stroke-linecap", "round", "stroke-linejoin", "round", "stroke-width", "2", "d", "M6 18L18 6M6 6l12 12"], [1, "px-6", "py-8", "max-h-[80vh]", "overflow-y-auto", "backdrop-blur-sm", 3, "ngClass"], [3, "goal", "allMetrics", "allCharts", "loadedSourceAnalysisIds", "loadingSourceAnalysisId", "viewMode", "currentModalState"], [3, "objectives", "goalTitle", "viewMode"], [3, "goal", "contributingMetrics", "viewMode"], [3, "objective", "viewMode"], [3, "strategy", "viewMode", "allMetrics", "allCharts", "allInsights", "goalTitle", "objectiveTitle", "currentModalState", "expandedRecommendationId"], [3, "items", "viewMode", "selectedIndex"], ["type", "button", 1, "mt-0.5", "p-1.5", "rounded-lg", "transition-all", "hover:scale-105", "active:scale-95", "cursor-pointer", "flex-shrink-0", 3, "click", "ngClass"], ["fill", "none", "stroke", "currentColor", "viewBox", "0 0 24 24", 1, "w-5", "h-5"], ["stroke-linecap", "round", "stroke-linejoin", "round", "stroke-width", "2", "d", "M15 19l-7-7 7-7"], [1, "font-medium", 3, "ngClass"], ["type", "button", 1, "hover:underline", "cursor-pointer", "transition-colors", 3, "click", "ngClass"], ["fill", "none", "stroke", "currentColor", "viewBox", "0 0 24 24", 1, "w-3", "h-3", "flex-shrink-0", 3, "ngClass"], ["stroke-linecap", "round", "stroke-linejoin", "round", "stroke-width", "2", "d", "M9 5l7 7-7 7"], [1, "text-xs", "font-semibold", "uppercase", "tracking-wider", 3, "ngClass"], [3, "priority", "viewMode"], [3, "timeframe", "viewMode"], [3, "sourceAnalysisClick", "metricClick", "contributingMetricsClick", "showObjectives", "close", "goal", "allMetrics", "allCharts", "loadedSourceAnalysisIds", "loadingSourceAnalysisId", "viewMode", "currentModalState"], [3, "metricClick", "goal", "contributingMetrics", "viewMode"], [3, "goalClick", "recommendationClick", "items", "viewMode", "selectedIndex"]], template: function UnifiedDashboardModalComponent_Template(rf, ctx) { if (rf & 1) {
105189
- i0.ɵɵconditionalCreate(0, UnifiedDashboardModalComponent_Conditional_0_Template, 26, 31, "div", 2);
105947
+ } }, inputs: { viewMode: [1, "viewMode"], loadingSourceAnalysisId: [1, "loadingSourceAnalysisId"], loadedSourceAnalysisIds: [1, "loadedSourceAnalysisIds"] }, outputs: { priorityActionGoalClick: "priorityActionGoalClick", priorityActionRecommendationClick: "priorityActionRecommendationClick", sourceAnalysisClickRequest: "sourceAnalysisClickRequest" }, decls: 1, vars: 1, consts: [["modalWrapper", ""], ["modalContent", ""], [1, "fixed", "inset-0", "flex", "items-center", "justify-center", "p-4", "overflow-y-auto", 3, "z-index", "visibility"], [1, "fixed", "inset-0", "flex", "items-center", "justify-center", "p-4", "overflow-y-auto"], ["aria-hidden", "true", 1, "fixed", "inset-0", "backdrop-blur-sm", "transition-opacity", "duration-200", 3, "click", "ngClass"], [1, "relative", "w-full", "max-w-6xl", "rounded-2xl", "text-left", "overflow-hidden", "shadow-xl", "border", "backdrop-blur-xl", 3, "click", "ngClass"], [1, "px-6", "py-5", "border-b", "backdrop-blur-sm", 3, "ngClass"], [1, "flex", "items-start", "justify-between", "gap-4"], [1, "flex", "items-start", "gap-3", "flex-1", "min-w-0"], ["type", "button", 1, "mt-0.5", "p-1.5", "rounded-lg", "transition-all", "hover:scale-105", "active:scale-95", "cursor-pointer", "flex-shrink-0", 3, "ngClass"], [1, "flex-1", "min-w-0"], [1, "flex", "items-center", "gap-1.5", "mb-2", "text-xs"], [1, "flex", "items-center", "gap-2", "mb-2"], [1, "flex", "flex-wrap", "items-center", "justify-between", "gap-x-4", "gap-y-2"], [1, "text-xl", "font-bold", "leading-tight", 3, "ngClass"], [1, "flex", "items-center", "gap-2"], ["type", "button", 1, "transition-all", "rounded-lg", "p-1", "hover:scale-110", "active:scale-90", "cursor-pointer", "flex-shrink-0", 3, "click", "ngClass"], ["fill", "none", "stroke", "currentColor", "viewBox", "0 0 24 24", 1, "w-6", "h-6"], ["stroke-linecap", "round", "stroke-linejoin", "round", "stroke-width", "2", "d", "M6 18L18 6M6 6l12 12"], [1, "px-6", "py-8", "max-h-[80vh]", "overflow-y-auto", "backdrop-blur-sm", 3, "ngClass"], [3, "goal", "allMetrics", "allCharts", "loadedSourceAnalysisIds", "loadingSourceAnalysisId", "viewMode", "currentModalState"], [3, "objectives", "goalTitle", "viewMode"], [3, "goal", "contributingMetrics", "viewMode"], [3, "objective", "viewMode"], [3, "strategy", "viewMode", "allMetrics", "allCharts", "allInsights", "allBusinessInsights", "goalTitle", "objectiveTitle", "currentModalState", "expandedRecommendationId"], [3, "items", "viewMode", "selectedIndex"], [1, "px-6", "py-5", "border-t", "backdrop-blur-sm", 3, "ngClass"], ["type", "button", 1, "mt-0.5", "p-1.5", "rounded-lg", "transition-all", "hover:scale-105", "active:scale-95", "cursor-pointer", "flex-shrink-0", 3, "click", "ngClass"], ["fill", "none", "stroke", "currentColor", "viewBox", "0 0 24 24", 1, "w-5", "h-5"], ["stroke-linecap", "round", "stroke-linejoin", "round", "stroke-width", "2", "d", "M15 19l-7-7 7-7"], [1, "font-medium", 3, "ngClass"], ["type", "button", 1, "hover:underline", "cursor-pointer", "transition-colors", 3, "click", "ngClass"], ["fill", "none", "stroke", "currentColor", "viewBox", "0 0 24 24", 1, "w-3", "h-3", "flex-shrink-0", 3, "ngClass"], ["stroke-linecap", "round", "stroke-linejoin", "round", "stroke-width", "2", "d", "M9 5l7 7-7 7"], [1, "text-xs", "font-semibold", "uppercase", "tracking-wider", 3, "ngClass"], [3, "priority", "viewMode"], [3, "timeframe", "viewMode"], [3, "sourceAnalysisClick", "metricClick", "contributingMetricsClick", "showObjectives", "close", "goal", "allMetrics", "allCharts", "loadedSourceAnalysisIds", "loadingSourceAnalysisId", "viewMode", "currentModalState"], [3, "metricClick", "goal", "contributingMetrics", "viewMode"], [3, "goalClick", "recommendationClick", "items", "viewMode", "selectedIndex"], [3, "stateChange", "state", "viewMode", "goalId"]], template: function UnifiedDashboardModalComponent_Template(rf, ctx) { if (rf & 1) {
105948
+ i0.ɵɵconditionalCreate(0, UnifiedDashboardModalComponent_Conditional_0_Template, 27, 32, "div", 2);
105190
105949
  } if (rf & 2) {
105191
105950
  i0.ɵɵconditional(ctx.isOpen() ? 0 : -1);
105192
105951
  } }, dependencies: [CommonModule, i1$1.NgClass, UnifiedGoalDetailModalContentComponent,
@@ -105196,7 +105955,8 @@ class UnifiedDashboardModalComponent {
105196
105955
  StrategyRecommendationsModalContentComponent,
105197
105956
  PriorityBadgeComponent,
105198
105957
  TimeframeBadgeComponent,
105199
- PriorityActionsModalContentComponent], encapsulation: 2, data: { animation: [
105958
+ PriorityActionsModalContentComponent,
105959
+ GoalActionStateSelectorComponent], encapsulation: 2, data: { animation: [
105200
105960
  trigger('fadeIn', [
105201
105961
  state('enter', style({ opacity: 1 })),
105202
105962
  state('none', style({ opacity: 1 })),
@@ -105228,7 +105988,8 @@ class UnifiedDashboardModalComponent {
105228
105988
  StrategyRecommendationsModalContentComponent,
105229
105989
  PriorityBadgeComponent,
105230
105990
  TimeframeBadgeComponent,
105231
- PriorityActionsModalContentComponent
105991
+ PriorityActionsModalContentComponent,
105992
+ GoalActionStateSelectorComponent
105232
105993
  ],
105233
105994
  animations: [
105234
105995
  trigger('fadeIn', [
@@ -105389,6 +106150,7 @@ class UnifiedDashboardModalComponent {
105389
106150
  [allMetrics]="allMetricsFromStack()"
105390
106151
  [allCharts]="allChartsFromStack()"
105391
106152
  [allInsights]="allInsightsFromStack()"
106153
+ [allBusinessInsights]="allBusinessInsightsFromStack()"
105392
106154
  [goalTitle]="recommendationsData()!.goalTitle"
105393
106155
  [objectiveTitle]="recommendationsData()!.objectiveTitle"
105394
106156
  [currentModalState]="currentModalState()"
@@ -105405,6 +106167,17 @@ class UnifiedDashboardModalComponent {
105405
106167
  />
105406
106168
  }
105407
106169
  </div>
106170
+
106171
+ @if (modalType() === 'unified-goal-detail' && currentGoal()) {
106172
+ <div [ngClass]="footerClasses()" class="px-6 py-5 border-t backdrop-blur-sm">
106173
+ <symphiq-goal-action-state-selector
106174
+ [state]="currentGoalActionState()"
106175
+ [viewMode]="viewMode()"
106176
+ [goalId]="currentGoal()?.id"
106177
+ (stateChange)="onActionStateChange($event)"
106178
+ />
106179
+ </div>
106180
+ }
105408
106181
  </div>
105409
106182
  </div>
105410
106183
  }
@@ -105417,7 +106190,7 @@ class UnifiedDashboardModalComponent {
105417
106190
  type: ViewChild,
105418
106191
  args: ['modalWrapper']
105419
106192
  }] }); })();
105420
- (() => { (typeof ngDevMode === "undefined" || ngDevMode) && i0.ɵsetClassDebugInfo(UnifiedDashboardModalComponent, { className: "UnifiedDashboardModalComponent", filePath: "lib/components/profile-analysis-unified-dashboard/modals/unified-dashboard-modal.component.ts", lineNumber: 238 }); })();
106193
+ (() => { (typeof ngDevMode === "undefined" || ngDevMode) && i0.ɵsetClassDebugInfo(UnifiedDashboardModalComponent, { className: "UnifiedDashboardModalComponent", filePath: "lib/components/profile-analysis-unified-dashboard/modals/unified-dashboard-modal.component.ts", lineNumber: 254 }); })();
105421
106194
 
105422
106195
  function UnifiedWelcomeBannerComponent_Conditional_8_Template(rf, ctx) { if (rf & 1) {
105423
106196
  i0.ɵɵtext(0, " Your Unified Goals ");
@@ -105426,16 +106199,16 @@ function UnifiedWelcomeBannerComponent_Conditional_9_Template(rf, ctx) { if (rf
105426
106199
  i0.ɵɵtext(0, " Welcome to Your Unified Analysis ");
105427
106200
  } }
105428
106201
  function UnifiedWelcomeBannerComponent_Conditional_18_Template(rf, ctx) { if (rf & 1) {
105429
- i0.ɵɵelementStart(0, "div", 12)(1, "div", 17);
106202
+ i0.ɵɵelementStart(0, "div", 12)(1, "div", 18);
105430
106203
  i0.ɵɵnamespaceSVG();
105431
- i0.ɵɵelementStart(2, "svg", 18);
106204
+ i0.ɵɵelementStart(2, "svg", 19);
105432
106205
  i0.ɵɵelement(3, "path", 5);
105433
106206
  i0.ɵɵelementEnd()();
105434
106207
  i0.ɵɵnamespaceHTML();
105435
- i0.ɵɵelementStart(4, "div", 6)(5, "p", 19);
106208
+ i0.ɵɵelementStart(4, "div", 6)(5, "p", 20);
105436
106209
  i0.ɵɵtext(6);
105437
106210
  i0.ɵɵelementEnd();
105438
- i0.ɵɵelementStart(7, "p", 20);
106211
+ i0.ɵɵelementStart(7, "p", 21);
105439
106212
  i0.ɵɵtext(8);
105440
106213
  i0.ɵɵelementEnd()()();
105441
106214
  } if (rf & 2) {
@@ -105452,6 +106225,105 @@ function UnifiedWelcomeBannerComponent_Conditional_18_Template(rf, ctx) { if (rf
105452
106225
  i0.ɵɵadvance();
105453
106226
  i0.ɵɵtextInterpolate3(" We've combined ", ctx_r0.sourceGoalsCount(), " goals from ", ctx_r0.sourceAnalysesCount(), " source analyses into actionable strategic priorities for ", ctx_r0.businessName(), ". ");
105454
106227
  } }
106228
+ function UnifiedWelcomeBannerComponent_Conditional_19_Conditional_11_Conditional_1_Template(rf, ctx) { if (rf & 1) {
106229
+ i0.ɵɵelementStart(0, "div", 32);
106230
+ i0.ɵɵelement(1, "span", 33);
106231
+ i0.ɵɵelementStart(2, "span", 31);
106232
+ i0.ɵɵtext(3);
106233
+ i0.ɵɵelementEnd()();
106234
+ } if (rf & 2) {
106235
+ const ctx_r0 = i0.ɵɵnextContext(3);
106236
+ i0.ɵɵadvance(2);
106237
+ i0.ɵɵproperty("ngClass", ctx_r0.progressStatClasses());
106238
+ i0.ɵɵadvance();
106239
+ i0.ɵɵtextInterpolate1("", ctx_r0.planCount(), " Planned");
106240
+ } }
106241
+ function UnifiedWelcomeBannerComponent_Conditional_19_Conditional_11_Conditional_2_Template(rf, ctx) { if (rf & 1) {
106242
+ i0.ɵɵelementStart(0, "div", 32);
106243
+ i0.ɵɵelement(1, "span", 34);
106244
+ i0.ɵɵelementStart(2, "span", 31);
106245
+ i0.ɵɵtext(3);
106246
+ i0.ɵɵelementEnd()();
106247
+ } if (rf & 2) {
106248
+ const ctx_r0 = i0.ɵɵnextContext(3);
106249
+ i0.ɵɵadvance(2);
106250
+ i0.ɵɵproperty("ngClass", ctx_r0.progressStatClasses());
106251
+ i0.ɵɵadvance();
106252
+ i0.ɵɵtextInterpolate1("", ctx_r0.potentialCount(), " Potential");
106253
+ } }
106254
+ function UnifiedWelcomeBannerComponent_Conditional_19_Conditional_11_Conditional_3_Template(rf, ctx) { if (rf & 1) {
106255
+ i0.ɵɵelementStart(0, "div", 32);
106256
+ i0.ɵɵelement(1, "span", 35);
106257
+ i0.ɵɵelementStart(2, "span", 31);
106258
+ i0.ɵɵtext(3);
106259
+ i0.ɵɵelementEnd()();
106260
+ } if (rf & 2) {
106261
+ const ctx_r0 = i0.ɵɵnextContext(3);
106262
+ i0.ɵɵadvance(2);
106263
+ i0.ɵɵproperty("ngClass", ctx_r0.progressStatClasses());
106264
+ i0.ɵɵadvance();
106265
+ i0.ɵɵtextInterpolate1("", ctx_r0.skipCount(), " Skipped");
106266
+ } }
106267
+ function UnifiedWelcomeBannerComponent_Conditional_19_Conditional_11_Template(rf, ctx) { if (rf & 1) {
106268
+ i0.ɵɵelementStart(0, "div", 30);
106269
+ i0.ɵɵconditionalCreate(1, UnifiedWelcomeBannerComponent_Conditional_19_Conditional_11_Conditional_1_Template, 4, 2, "div", 32);
106270
+ i0.ɵɵconditionalCreate(2, UnifiedWelcomeBannerComponent_Conditional_19_Conditional_11_Conditional_2_Template, 4, 2, "div", 32);
106271
+ i0.ɵɵconditionalCreate(3, UnifiedWelcomeBannerComponent_Conditional_19_Conditional_11_Conditional_3_Template, 4, 2, "div", 32);
106272
+ i0.ɵɵelementEnd();
106273
+ } if (rf & 2) {
106274
+ const ctx_r0 = i0.ɵɵnextContext(2);
106275
+ i0.ɵɵadvance();
106276
+ i0.ɵɵconditional(ctx_r0.planCount() > 0 ? 1 : -1);
106277
+ i0.ɵɵadvance();
106278
+ i0.ɵɵconditional(ctx_r0.potentialCount() > 0 ? 2 : -1);
106279
+ i0.ɵɵadvance();
106280
+ i0.ɵɵconditional(ctx_r0.skipCount() > 0 ? 3 : -1);
106281
+ } }
106282
+ function UnifiedWelcomeBannerComponent_Conditional_19_Conditional_12_Template(rf, ctx) { if (rf & 1) {
106283
+ i0.ɵɵelementStart(0, "p", 31);
106284
+ i0.ɵɵtext(1, " Click \"Learn More\" on each goal below to review and categorize them as Planned, Potential, or Skip. ");
106285
+ i0.ɵɵelementEnd();
106286
+ } if (rf & 2) {
106287
+ const ctx_r0 = i0.ɵɵnextContext(2);
106288
+ i0.ɵɵproperty("ngClass", ctx_r0.progressHintClasses());
106289
+ } }
106290
+ function UnifiedWelcomeBannerComponent_Conditional_19_Template(rf, ctx) { if (rf & 1) {
106291
+ i0.ɵɵelementStart(0, "div", 13)(1, "div", 22)(2, "div", 23);
106292
+ i0.ɵɵnamespaceSVG();
106293
+ i0.ɵɵelementStart(3, "svg", 24);
106294
+ i0.ɵɵelement(4, "path", 25);
106295
+ i0.ɵɵelementEnd();
106296
+ i0.ɵɵnamespaceHTML();
106297
+ i0.ɵɵelementStart(5, "span", 26);
106298
+ i0.ɵɵtext(6, "Review Progress");
106299
+ i0.ɵɵelementEnd()();
106300
+ i0.ɵɵelementStart(7, "span", 27);
106301
+ i0.ɵɵtext(8);
106302
+ i0.ɵɵelementEnd()();
106303
+ i0.ɵɵelementStart(9, "div", 28);
106304
+ i0.ɵɵelement(10, "div", 29);
106305
+ i0.ɵɵelementEnd();
106306
+ i0.ɵɵconditionalCreate(11, UnifiedWelcomeBannerComponent_Conditional_19_Conditional_11_Template, 4, 3, "div", 30)(12, UnifiedWelcomeBannerComponent_Conditional_19_Conditional_12_Template, 2, 1, "p", 31);
106307
+ i0.ɵɵelementEnd();
106308
+ } if (rf & 2) {
106309
+ const ctx_r0 = i0.ɵɵnextContext();
106310
+ i0.ɵɵproperty("ngClass", ctx_r0.progressBannerClasses());
106311
+ i0.ɵɵadvance(3);
106312
+ i0.ɵɵproperty("ngClass", ctx_r0.progressIconClasses());
106313
+ i0.ɵɵadvance(2);
106314
+ i0.ɵɵproperty("ngClass", ctx_r0.progressLabelClasses());
106315
+ i0.ɵɵadvance(2);
106316
+ i0.ɵɵproperty("ngClass", ctx_r0.progressCountClasses());
106317
+ i0.ɵɵadvance();
106318
+ i0.ɵɵtextInterpolate2(" ", ctx_r0.reviewProgress().completed, " / ", ctx_r0.reviewProgress().total, " goals reviewed ");
106319
+ i0.ɵɵadvance();
106320
+ i0.ɵɵproperty("ngClass", ctx_r0.progressBarBgClasses());
106321
+ i0.ɵɵadvance();
106322
+ i0.ɵɵstyleProp("width", ctx_r0.reviewProgress().percent, "%");
106323
+ i0.ɵɵproperty("ngClass", ctx_r0.progressBarFillClasses());
106324
+ i0.ɵɵadvance();
106325
+ i0.ɵɵconditional(ctx_r0.hasStartedReview() ? 11 : 12);
106326
+ } }
105455
106327
  class UnifiedWelcomeBannerComponent {
105456
106328
  constructor() {
105457
106329
  this.viewMode = input(ViewModeEnum.LIGHT, ...(ngDevMode ? [{ debugName: "viewMode" }] : []));
@@ -105462,6 +106334,39 @@ class UnifiedWelcomeBannerComponent {
105462
106334
  this.sourceAnalysesCount = input(0, ...(ngDevMode ? [{ debugName: "sourceAnalysesCount" }] : []));
105463
106335
  this.unifiedGoalsCount = input(0, ...(ngDevMode ? [{ debugName: "unifiedGoalsCount" }] : []));
105464
106336
  this.sourceGoalsCount = input(0, ...(ngDevMode ? [{ debugName: "sourceGoalsCount" }] : []));
106337
+ this.goalIds = input([], ...(ngDevMode ? [{ debugName: "goalIds" }] : []));
106338
+ this.goalActionStateService = inject(GoalActionStateService);
106339
+ this.reviewProgress = computed(() => {
106340
+ const ids = this.goalIds();
106341
+ if (ids.length === 0)
106342
+ return { completed: 0, total: 0, percent: 0 };
106343
+ this.goalActionStateService.states();
106344
+ const completed = this.goalActionStateService.getCompletedCount(ids);
106345
+ return {
106346
+ completed,
106347
+ total: ids.length,
106348
+ percent: ids.length > 0 ? Math.round((completed / ids.length) * 100) : 0
106349
+ };
106350
+ }, ...(ngDevMode ? [{ debugName: "reviewProgress" }] : []));
106351
+ this.hasStartedReview = computed(() => this.reviewProgress().completed > 0, ...(ngDevMode ? [{ debugName: "hasStartedReview" }] : []));
106352
+ this.planCount = computed(() => {
106353
+ const ids = this.goalIds();
106354
+ this.goalActionStateService.states();
106355
+ const states = this.goalActionStateService.getStatesByGoalIds(ids);
106356
+ return Object.values(states).filter(s => s === GoalActionStateEnum.PLAN).length;
106357
+ }, ...(ngDevMode ? [{ debugName: "planCount" }] : []));
106358
+ this.potentialCount = computed(() => {
106359
+ const ids = this.goalIds();
106360
+ this.goalActionStateService.states();
106361
+ const states = this.goalActionStateService.getStatesByGoalIds(ids);
106362
+ return Object.values(states).filter(s => s === GoalActionStateEnum.POTENTIAL).length;
106363
+ }, ...(ngDevMode ? [{ debugName: "potentialCount" }] : []));
106364
+ this.skipCount = computed(() => {
106365
+ const ids = this.goalIds();
106366
+ this.goalActionStateService.states();
106367
+ const states = this.goalActionStateService.getStatesByGoalIds(ids);
106368
+ return Object.values(states).filter(s => s === GoalActionStateEnum.SKIP).length;
106369
+ }, ...(ngDevMode ? [{ debugName: "skipCount" }] : []));
105465
106370
  this.whatYoullSeeBelowItems = [
105466
106371
  { title: 'Unified Goals', description: 'Strategic goals synthesized from all your source analyses with clear priorities and expected impact' },
105467
106372
  { title: 'Implementation Timeline', description: 'A phased roadmap showing when to tackle each goal for optimal results' },
@@ -105497,9 +106402,25 @@ class UnifiedWelcomeBannerComponent {
105497
106402
  : 'bg-blue-100 text-blue-600', ...(ngDevMode ? [{ debugName: "synthesisBannerIconClasses" }] : []));
105498
106403
  this.synthesisBannerTitleClasses = computed(() => this.isDark() ? 'text-white' : 'text-slate-900', ...(ngDevMode ? [{ debugName: "synthesisBannerTitleClasses" }] : []));
105499
106404
  this.synthesisBannerTextClasses = computed(() => this.isDark() ? 'text-slate-300' : 'text-slate-700', ...(ngDevMode ? [{ debugName: "synthesisBannerTextClasses" }] : []));
106405
+ this.progressBannerClasses = computed(() => this.isDark()
106406
+ ? 'bg-gradient-to-r from-purple-900/40 to-pink-900/40 border border-purple-700/50'
106407
+ : 'bg-gradient-to-r from-purple-50 to-pink-50 border border-purple-200', ...(ngDevMode ? [{ debugName: "progressBannerClasses" }] : []));
106408
+ this.progressIconClasses = computed(() => this.isDark() ? 'text-purple-400' : 'text-purple-600', ...(ngDevMode ? [{ debugName: "progressIconClasses" }] : []));
106409
+ this.progressLabelClasses = computed(() => this.isDark() ? 'text-white' : 'text-slate-900', ...(ngDevMode ? [{ debugName: "progressLabelClasses" }] : []));
106410
+ this.progressCountClasses = computed(() => this.isDark() ? 'text-slate-300' : 'text-slate-600', ...(ngDevMode ? [{ debugName: "progressCountClasses" }] : []));
106411
+ this.progressBarBgClasses = computed(() => this.isDark() ? 'bg-slate-700' : 'bg-slate-200', ...(ngDevMode ? [{ debugName: "progressBarBgClasses" }] : []));
106412
+ this.progressBarFillClasses = computed(() => {
106413
+ const progress = this.reviewProgress();
106414
+ if (progress.percent === 100) {
106415
+ return 'bg-gradient-to-r from-emerald-500 to-cyan-500';
106416
+ }
106417
+ return 'bg-gradient-to-r from-purple-500 to-pink-500';
106418
+ }, ...(ngDevMode ? [{ debugName: "progressBarFillClasses" }] : []));
106419
+ this.progressStatClasses = computed(() => this.isDark() ? 'text-slate-400' : 'text-slate-500', ...(ngDevMode ? [{ debugName: "progressStatClasses" }] : []));
106420
+ this.progressHintClasses = computed(() => this.isDark() ? 'text-slate-400' : 'text-slate-500', ...(ngDevMode ? [{ debugName: "progressHintClasses" }] : []));
105500
106421
  }
105501
106422
  static { this.ɵfac = function UnifiedWelcomeBannerComponent_Factory(__ngFactoryType__) { return new (__ngFactoryType__ || UnifiedWelcomeBannerComponent)(); }; }
105502
- static { this.ɵcmp = /*@__PURE__*/ i0.ɵɵdefineComponent({ type: UnifiedWelcomeBannerComponent, selectors: [["symphiq-unified-welcome-banner"]], inputs: { viewMode: [1, "viewMode"], businessName: [1, "businessName"], isOnboarded: [1, "isOnboarded"], analysisDate: [1, "analysisDate"], isUnifiedAnalysisComplete: [1, "isUnifiedAnalysisComplete"], sourceAnalysesCount: [1, "sourceAnalysesCount"], unifiedGoalsCount: [1, "unifiedGoalsCount"], sourceGoalsCount: [1, "sourceGoalsCount"] }, decls: 23, vars: 16, consts: [[1, "rounded-2xl", "border", "shadow-lg", "overflow-hidden", 3, "ngClass"], [1, "px-8", "py-8", 3, "ngClass"], [1, "flex", "items-start", "gap-6"], [1, "flex-shrink-0", "w-16", "h-16", "rounded-2xl", "flex", "items-center", "justify-center", 3, "ngClass"], ["fill", "none", "stroke", "currentColor", "viewBox", "0 0 24 24", 1, "w-8", "h-8"], ["stroke-linecap", "round", "stroke-linejoin", "round", "stroke-width", "2", "d", "M9 12l2 2 4-4m6 2a9 9 0 11-18 0 9 9 0 0118 0z"], [1, "flex-1"], [1, "text-2xl", "sm:text-3xl", "font-bold", "mb-3", 3, "ngClass"], [1, "grid", "grid-cols-1", "lg:grid-cols-3", "gap-6", "mb-6"], [1, "lg:col-span-2", "space-y-3"], [1, "text-base", "leading-relaxed", 3, "ngClass"], [1, "font-semibold"], [1, "mt-4", "p-4", "rounded-xl", "flex", "items-start", "gap-4", 3, "ngClass"], [1, "lg:col-span-1"], ["currentStepId", "unified-analysis", 3, "viewMode", "isCurrentStepComplete"], [1, "mt-6", "block", 3, "viewMode", "items", "analysisDate"], ["title", "Maximize Your Unified Insights", "onboardedTitle", "Keep Your Unified Goals Current", "description", "To get the most comprehensive unified goals, ensure you've completed your Shop Analysis, Focus Area Analyses, and Metric Analyses. The more context Symphiq has about your business, the more precise and actionable your unified recommendations become.", "onboardedDescription", "As you complete more analyses or update existing ones, your Unified Goals will be refined to reflect your current business context. Regenerate your unified analysis periodically to ensure recommendations stay aligned with your evolving strategy and priorities.", 1, "mt-6", "block", 3, "viewMode", "isOnboarded"], [1, "flex-shrink-0", "p-2", "rounded-lg", 3, "ngClass"], ["fill", "none", "stroke", "currentColor", "viewBox", "0 0 24 24", 1, "w-5", "h-5"], [1, "font-semibold", "text-base", "mb-1", 3, "ngClass"], [1, "text-sm", 3, "ngClass"]], template: function UnifiedWelcomeBannerComponent_Template(rf, ctx) { if (rf & 1) {
106423
+ static { this.ɵcmp = /*@__PURE__*/ i0.ɵɵdefineComponent({ type: UnifiedWelcomeBannerComponent, selectors: [["symphiq-unified-welcome-banner"]], inputs: { viewMode: [1, "viewMode"], businessName: [1, "businessName"], isOnboarded: [1, "isOnboarded"], analysisDate: [1, "analysisDate"], isUnifiedAnalysisComplete: [1, "isUnifiedAnalysisComplete"], sourceAnalysesCount: [1, "sourceAnalysesCount"], unifiedGoalsCount: [1, "unifiedGoalsCount"], sourceGoalsCount: [1, "sourceGoalsCount"], goalIds: [1, "goalIds"] }, decls: 24, vars: 17, consts: [[1, "rounded-2xl", "border", "shadow-lg", "overflow-hidden", 3, "ngClass"], [1, "px-8", "py-8", 3, "ngClass"], [1, "flex", "items-start", "gap-6"], [1, "flex-shrink-0", "w-16", "h-16", "rounded-2xl", "flex", "items-center", "justify-center", 3, "ngClass"], ["fill", "none", "stroke", "currentColor", "viewBox", "0 0 24 24", 1, "w-8", "h-8"], ["stroke-linecap", "round", "stroke-linejoin", "round", "stroke-width", "2", "d", "M9 12l2 2 4-4m6 2a9 9 0 11-18 0 9 9 0 0118 0z"], [1, "flex-1"], [1, "text-2xl", "sm:text-3xl", "font-bold", "mb-3", 3, "ngClass"], [1, "grid", "grid-cols-1", "lg:grid-cols-3", "gap-6", "mb-6"], [1, "lg:col-span-2", "space-y-3"], [1, "text-base", "leading-relaxed", 3, "ngClass"], [1, "font-semibold"], [1, "mt-4", "p-4", "rounded-xl", "flex", "items-start", "gap-4", 3, "ngClass"], [1, "mt-4", "p-4", "rounded-xl", 3, "ngClass"], [1, "lg:col-span-1"], ["currentStepId", "unified-analysis", 3, "viewMode", "isCurrentStepComplete"], [1, "mt-6", "block", 3, "viewMode", "items", "analysisDate"], ["title", "Maximize Your Unified Insights", "onboardedTitle", "Keep Your Unified Goals Current", "description", "To get the most comprehensive unified goals, ensure you've completed your Shop Analysis, Focus Area Analyses, and Metric Analyses. The more context Symphiq has about your business, the more precise and actionable your unified recommendations become.", "onboardedDescription", "As you complete more analyses or update existing ones, your Unified Goals will be refined to reflect your current business context. Regenerate your unified analysis periodically to ensure recommendations stay aligned with your evolving strategy and priorities.", 1, "mt-6", "block", 3, "viewMode", "isOnboarded"], [1, "flex-shrink-0", "p-2", "rounded-lg", 3, "ngClass"], ["fill", "none", "stroke", "currentColor", "viewBox", "0 0 24 24", 1, "w-5", "h-5"], [1, "font-semibold", "text-base", "mb-1", 3, "ngClass"], [1, "text-sm", 3, "ngClass"], [1, "flex", "items-center", "justify-between", "mb-2"], [1, "flex", "items-center", "gap-2"], ["fill", "none", "stroke", "currentColor", "viewBox", "0 0 24 24", 1, "w-5", "h-5", 3, "ngClass"], ["stroke-linecap", "round", "stroke-linejoin", "round", "stroke-width", "2", "d", "M9 5H7a2 2 0 00-2 2v12a2 2 0 002 2h10a2 2 0 002-2V7a2 2 0 00-2-2h-2M9 5a2 2 0 002 2h2a2 2 0 002-2M9 5a2 2 0 012-2h2a2 2 0 012 2m-6 9l2 2 4-4"], [1, "font-semibold", "text-sm", 3, "ngClass"], [1, "text-sm", "font-medium", 3, "ngClass"], [1, "h-2", "rounded-full", "overflow-hidden", "mb-3", 3, "ngClass"], [1, "h-full", "rounded-full", "transition-all", "duration-500", "ease-out", 3, "ngClass"], [1, "flex", "items-center", "gap-4"], [1, "text-xs", 3, "ngClass"], [1, "flex", "items-center", "gap-1.5"], [1, "w-2", "h-2", "rounded-full", "bg-emerald-500"], [1, "w-2", "h-2", "rounded-full", "bg-amber-500"], [1, "w-2", "h-2", "rounded-full", "bg-slate-400"]], template: function UnifiedWelcomeBannerComponent_Template(rf, ctx) { if (rf & 1) {
105503
106424
  i0.ɵɵelementStart(0, "div", 0)(1, "div", 1)(2, "div", 2)(3, "div", 3);
105504
106425
  i0.ɵɵnamespaceSVG();
105505
106426
  i0.ɵɵelementStart(4, "svg", 4);
@@ -105518,11 +106439,12 @@ class UnifiedWelcomeBannerComponent {
105518
106439
  i0.ɵɵtext(17, " Instead of managing separate recommendations from each analysis, the Unified Analysis consolidates them into actionable goals with clear priorities, timelines, and expected impact. This ensures you focus on what will drive the most value for your business. ");
105519
106440
  i0.ɵɵelementEnd();
105520
106441
  i0.ɵɵconditionalCreate(18, UnifiedWelcomeBannerComponent_Conditional_18_Template, 9, 8, "div", 12);
106442
+ i0.ɵɵconditionalCreate(19, UnifiedWelcomeBannerComponent_Conditional_19_Template, 13, 11, "div", 13);
105521
106443
  i0.ɵɵelementEnd();
105522
- i0.ɵɵelementStart(19, "div", 13);
105523
- i0.ɵɵelement(20, "symphiq-confidence-level-card", 14);
106444
+ i0.ɵɵelementStart(20, "div", 14);
106445
+ i0.ɵɵelement(21, "symphiq-confidence-level-card", 15);
105524
106446
  i0.ɵɵelementEnd()();
105525
- i0.ɵɵelement(21, "symphiq-what-youll-see-below", 15)(22, "symphiq-continue-your-journey", 16);
106447
+ i0.ɵɵelement(22, "symphiq-what-youll-see-below", 16)(23, "symphiq-continue-your-journey", 17);
105526
106448
  i0.ɵɵelementEnd()()()();
105527
106449
  } if (rf & 2) {
105528
106450
  i0.ɵɵproperty("ngClass", ctx.containerClasses());
@@ -105542,6 +106464,8 @@ class UnifiedWelcomeBannerComponent {
105542
106464
  i0.ɵɵproperty("ngClass", ctx.textClasses());
105543
106465
  i0.ɵɵadvance(4);
105544
106466
  i0.ɵɵconditional(ctx.unifiedGoalsCount() > 0 ? 18 : -1);
106467
+ i0.ɵɵadvance();
106468
+ i0.ɵɵconditional(ctx.goalIds().length > 0 ? 19 : -1);
105545
106469
  i0.ɵɵadvance(2);
105546
106470
  i0.ɵɵproperty("viewMode", ctx.viewMode())("isCurrentStepComplete", ctx.isUnifiedAnalysisComplete());
105547
106471
  i0.ɵɵadvance();
@@ -105603,6 +106527,56 @@ class UnifiedWelcomeBannerComponent {
105603
106527
  </div>
105604
106528
  </div>
105605
106529
  }
106530
+
106531
+ <!-- Goal Review Progress -->
106532
+ @if (goalIds().length > 0) {
106533
+ <div [ngClass]="progressBannerClasses()" class="mt-4 p-4 rounded-xl">
106534
+ <div class="flex items-center justify-between mb-2">
106535
+ <div class="flex items-center gap-2">
106536
+ <svg [ngClass]="progressIconClasses()" class="w-5 h-5" fill="none" stroke="currentColor" viewBox="0 0 24 24">
106537
+ <path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M9 5H7a2 2 0 00-2 2v12a2 2 0 002 2h10a2 2 0 002-2V7a2 2 0 00-2-2h-2M9 5a2 2 0 002 2h2a2 2 0 002-2M9 5a2 2 0 012-2h2a2 2 0 012 2m-6 9l2 2 4-4"/>
106538
+ </svg>
106539
+ <span [ngClass]="progressLabelClasses()" class="font-semibold text-sm">Review Progress</span>
106540
+ </div>
106541
+ <span [ngClass]="progressCountClasses()" class="text-sm font-medium">
106542
+ {{ reviewProgress().completed }} / {{ reviewProgress().total }} goals reviewed
106543
+ </span>
106544
+ </div>
106545
+ <div [ngClass]="progressBarBgClasses()" class="h-2 rounded-full overflow-hidden mb-3">
106546
+ <div
106547
+ [ngClass]="progressBarFillClasses()"
106548
+ class="h-full rounded-full transition-all duration-500 ease-out"
106549
+ [style.width.%]="reviewProgress().percent">
106550
+ </div>
106551
+ </div>
106552
+ @if (hasStartedReview()) {
106553
+ <div class="flex items-center gap-4">
106554
+ @if (planCount() > 0) {
106555
+ <div class="flex items-center gap-1.5">
106556
+ <span class="w-2 h-2 rounded-full bg-emerald-500"></span>
106557
+ <span [ngClass]="progressStatClasses()" class="text-xs">{{ planCount() }} Planned</span>
106558
+ </div>
106559
+ }
106560
+ @if (potentialCount() > 0) {
106561
+ <div class="flex items-center gap-1.5">
106562
+ <span class="w-2 h-2 rounded-full bg-amber-500"></span>
106563
+ <span [ngClass]="progressStatClasses()" class="text-xs">{{ potentialCount() }} Potential</span>
106564
+ </div>
106565
+ }
106566
+ @if (skipCount() > 0) {
106567
+ <div class="flex items-center gap-1.5">
106568
+ <span class="w-2 h-2 rounded-full bg-slate-400"></span>
106569
+ <span [ngClass]="progressStatClasses()" class="text-xs">{{ skipCount() }} Skipped</span>
106570
+ </div>
106571
+ }
106572
+ </div>
106573
+ } @else {
106574
+ <p [ngClass]="progressHintClasses()" class="text-xs">
106575
+ Click "Learn More" on each goal below to review and categorize them as Planned, Potential, or Skip.
106576
+ </p>
106577
+ }
106578
+ </div>
106579
+ }
105606
106580
  </div>
105607
106581
 
105608
106582
  <div class="lg:col-span-1">
@@ -105636,13 +106610,271 @@ class UnifiedWelcomeBannerComponent {
105636
106610
  </div>
105637
106611
  `
105638
106612
  }]
105639
- }], null, { viewMode: [{ type: i0.Input, args: [{ isSignal: true, alias: "viewMode", required: false }] }], businessName: [{ type: i0.Input, args: [{ isSignal: true, alias: "businessName", required: false }] }], isOnboarded: [{ type: i0.Input, args: [{ isSignal: true, alias: "isOnboarded", required: false }] }], analysisDate: [{ type: i0.Input, args: [{ isSignal: true, alias: "analysisDate", required: false }] }], isUnifiedAnalysisComplete: [{ type: i0.Input, args: [{ isSignal: true, alias: "isUnifiedAnalysisComplete", required: false }] }], sourceAnalysesCount: [{ type: i0.Input, args: [{ isSignal: true, alias: "sourceAnalysesCount", required: false }] }], unifiedGoalsCount: [{ type: i0.Input, args: [{ isSignal: true, alias: "unifiedGoalsCount", required: false }] }], sourceGoalsCount: [{ type: i0.Input, args: [{ isSignal: true, alias: "sourceGoalsCount", required: false }] }] }); })();
105640
- (() => { (typeof ngDevMode === "undefined" || ngDevMode) && i0.ɵsetClassDebugInfo(UnifiedWelcomeBannerComponent, { className: "UnifiedWelcomeBannerComponent", filePath: "lib/components/profile-analysis-unified-dashboard/unified-welcome-banner.component.ts", lineNumber: 92 }); })();
106613
+ }], null, { viewMode: [{ type: i0.Input, args: [{ isSignal: true, alias: "viewMode", required: false }] }], businessName: [{ type: i0.Input, args: [{ isSignal: true, alias: "businessName", required: false }] }], isOnboarded: [{ type: i0.Input, args: [{ isSignal: true, alias: "isOnboarded", required: false }] }], analysisDate: [{ type: i0.Input, args: [{ isSignal: true, alias: "analysisDate", required: false }] }], isUnifiedAnalysisComplete: [{ type: i0.Input, args: [{ isSignal: true, alias: "isUnifiedAnalysisComplete", required: false }] }], sourceAnalysesCount: [{ type: i0.Input, args: [{ isSignal: true, alias: "sourceAnalysesCount", required: false }] }], unifiedGoalsCount: [{ type: i0.Input, args: [{ isSignal: true, alias: "unifiedGoalsCount", required: false }] }], sourceGoalsCount: [{ type: i0.Input, args: [{ isSignal: true, alias: "sourceGoalsCount", required: false }] }], goalIds: [{ type: i0.Input, args: [{ isSignal: true, alias: "goalIds", required: false }] }] }); })();
106614
+ (() => { (typeof ngDevMode === "undefined" || ngDevMode) && i0.ɵsetClassDebugInfo(UnifiedWelcomeBannerComponent, { className: "UnifiedWelcomeBannerComponent", filePath: "lib/components/profile-analysis-unified-dashboard/unified-welcome-banner.component.ts", lineNumber: 143 }); })();
106615
+
106616
+ function UnifiedGoalsProgressFooterComponent_Conditional_11_Conditional_1_Template(rf, ctx) { if (rf & 1) {
106617
+ i0.ɵɵelementStart(0, "div", 13);
106618
+ i0.ɵɵelement(1, "span", 14);
106619
+ i0.ɵɵelementStart(2, "span", 15);
106620
+ i0.ɵɵtext(3);
106621
+ i0.ɵɵelementEnd()();
106622
+ } if (rf & 2) {
106623
+ const ctx_r0 = i0.ɵɵnextContext(2);
106624
+ i0.ɵɵadvance(2);
106625
+ i0.ɵɵproperty("ngClass", ctx_r0.statLabelClasses());
106626
+ i0.ɵɵadvance();
106627
+ i0.ɵɵtextInterpolate1("", ctx_r0.planCount(), " Planned");
106628
+ } }
106629
+ function UnifiedGoalsProgressFooterComponent_Conditional_11_Conditional_2_Template(rf, ctx) { if (rf & 1) {
106630
+ i0.ɵɵelementStart(0, "div", 13);
106631
+ i0.ɵɵelement(1, "span", 16);
106632
+ i0.ɵɵelementStart(2, "span", 15);
106633
+ i0.ɵɵtext(3);
106634
+ i0.ɵɵelementEnd()();
106635
+ } if (rf & 2) {
106636
+ const ctx_r0 = i0.ɵɵnextContext(2);
106637
+ i0.ɵɵadvance(2);
106638
+ i0.ɵɵproperty("ngClass", ctx_r0.statLabelClasses());
106639
+ i0.ɵɵadvance();
106640
+ i0.ɵɵtextInterpolate1("", ctx_r0.potentialCount(), " Potential");
106641
+ } }
106642
+ function UnifiedGoalsProgressFooterComponent_Conditional_11_Conditional_3_Template(rf, ctx) { if (rf & 1) {
106643
+ i0.ɵɵelementStart(0, "div", 13);
106644
+ i0.ɵɵelement(1, "span", 17);
106645
+ i0.ɵɵelementStart(2, "span", 15);
106646
+ i0.ɵɵtext(3);
106647
+ i0.ɵɵelementEnd()();
106648
+ } if (rf & 2) {
106649
+ const ctx_r0 = i0.ɵɵnextContext(2);
106650
+ i0.ɵɵadvance(2);
106651
+ i0.ɵɵproperty("ngClass", ctx_r0.statLabelClasses());
106652
+ i0.ɵɵadvance();
106653
+ i0.ɵɵtextInterpolate1("", ctx_r0.skipCount(), " Skipped");
106654
+ } }
106655
+ function UnifiedGoalsProgressFooterComponent_Conditional_11_Template(rf, ctx) { if (rf & 1) {
106656
+ i0.ɵɵelementStart(0, "div", 9);
106657
+ i0.ɵɵconditionalCreate(1, UnifiedGoalsProgressFooterComponent_Conditional_11_Conditional_1_Template, 4, 2, "div", 13);
106658
+ i0.ɵɵconditionalCreate(2, UnifiedGoalsProgressFooterComponent_Conditional_11_Conditional_2_Template, 4, 2, "div", 13);
106659
+ i0.ɵɵconditionalCreate(3, UnifiedGoalsProgressFooterComponent_Conditional_11_Conditional_3_Template, 4, 2, "div", 13);
106660
+ i0.ɵɵelementEnd();
106661
+ } if (rf & 2) {
106662
+ const ctx_r0 = i0.ɵɵnextContext();
106663
+ i0.ɵɵadvance();
106664
+ i0.ɵɵconditional(ctx_r0.planCount() > 0 ? 1 : -1);
106665
+ i0.ɵɵadvance();
106666
+ i0.ɵɵconditional(ctx_r0.potentialCount() > 0 ? 2 : -1);
106667
+ i0.ɵɵadvance();
106668
+ i0.ɵɵconditional(ctx_r0.skipCount() > 0 ? 3 : -1);
106669
+ } }
106670
+ function UnifiedGoalsProgressFooterComponent_Conditional_13_Template(rf, ctx) { if (rf & 1) {
106671
+ const _r2 = i0.ɵɵgetCurrentView();
106672
+ i0.ɵɵelementStart(0, "button", 18);
106673
+ i0.ɵɵlistener("click", function UnifiedGoalsProgressFooterComponent_Conditional_13_Template_button_click_0_listener() { i0.ɵɵrestoreView(_r2); const ctx_r0 = i0.ɵɵnextContext(); return i0.ɵɵresetView(ctx_r0.onIntegrateClick()); });
106674
+ i0.ɵɵnamespaceSVG();
106675
+ i0.ɵɵelementStart(1, "svg", 19);
106676
+ i0.ɵɵelement(2, "path", 20);
106677
+ i0.ɵɵelementEnd();
106678
+ i0.ɵɵtext(3, " Integrate Goals ");
106679
+ i0.ɵɵelementEnd();
106680
+ } if (rf & 2) {
106681
+ const ctx_r0 = i0.ɵɵnextContext();
106682
+ i0.ɵɵproperty("ngClass", ctx_r0.integrateButtonClasses());
106683
+ } }
106684
+ function UnifiedGoalsProgressFooterComponent_Conditional_14_Template(rf, ctx) { if (rf & 1) {
106685
+ i0.ɵɵelementStart(0, "div", 12);
106686
+ i0.ɵɵtext(1, " Review all goals to continue ");
106687
+ i0.ɵɵelementEnd();
106688
+ } if (rf & 2) {
106689
+ const ctx_r0 = i0.ɵɵnextContext();
106690
+ i0.ɵɵproperty("ngClass", ctx_r0.hintClasses());
106691
+ } }
106692
+ class UnifiedGoalsProgressFooterComponent {
106693
+ constructor() {
106694
+ this.goalIds = input.required(...(ngDevMode ? [{ debugName: "goalIds" }] : []));
106695
+ this.viewMode = input(ViewModeEnum.LIGHT, ...(ngDevMode ? [{ debugName: "viewMode" }] : []));
106696
+ this.integrateGoals = output();
106697
+ this.goalActionStateService = inject(GoalActionStateService);
106698
+ this.isDark = computed(() => this.viewMode() === ViewModeEnum.DARK, ...(ngDevMode ? [{ debugName: "isDark" }] : []));
106699
+ this.states = computed(() => {
106700
+ this.goalActionStateService.states();
106701
+ return this.goalActionStateService.getStatesByGoalIds(this.goalIds());
106702
+ }, ...(ngDevMode ? [{ debugName: "states" }] : []));
106703
+ this.completedCount = computed(() => {
106704
+ return Object.keys(this.states()).length;
106705
+ }, ...(ngDevMode ? [{ debugName: "completedCount" }] : []));
106706
+ this.totalCount = computed(() => this.goalIds().length, ...(ngDevMode ? [{ debugName: "totalCount" }] : []));
106707
+ this.progressPercent = computed(() => {
106708
+ const total = this.totalCount();
106709
+ if (total === 0)
106710
+ return 0;
106711
+ return (this.completedCount() / total) * 100;
106712
+ }, ...(ngDevMode ? [{ debugName: "progressPercent" }] : []));
106713
+ this.allReviewed = computed(() => {
106714
+ return this.completedCount() === this.totalCount() && this.totalCount() > 0;
106715
+ }, ...(ngDevMode ? [{ debugName: "allReviewed" }] : []));
106716
+ this.planCount = computed(() => {
106717
+ return Object.values(this.states()).filter(s => s === GoalActionStateEnum.PLAN).length;
106718
+ }, ...(ngDevMode ? [{ debugName: "planCount" }] : []));
106719
+ this.potentialCount = computed(() => {
106720
+ return Object.values(this.states()).filter(s => s === GoalActionStateEnum.POTENTIAL).length;
106721
+ }, ...(ngDevMode ? [{ debugName: "potentialCount" }] : []));
106722
+ this.skipCount = computed(() => {
106723
+ return Object.values(this.states()).filter(s => s === GoalActionStateEnum.SKIP).length;
106724
+ }, ...(ngDevMode ? [{ debugName: "skipCount" }] : []));
106725
+ this.containerClasses = computed(() => {
106726
+ return this.isDark()
106727
+ ? 'bg-slate-900/90 border-slate-700/50'
106728
+ : 'bg-white/90 border-slate-200';
106729
+ }, ...(ngDevMode ? [{ debugName: "containerClasses" }] : []));
106730
+ this.labelClasses = computed(() => {
106731
+ return this.isDark() ? 'text-slate-300' : 'text-slate-700';
106732
+ }, ...(ngDevMode ? [{ debugName: "labelClasses" }] : []));
106733
+ this.countClasses = computed(() => {
106734
+ return this.isDark() ? 'text-white' : 'text-slate-900';
106735
+ }, ...(ngDevMode ? [{ debugName: "countClasses" }] : []));
106736
+ this.statLabelClasses = computed(() => {
106737
+ return this.isDark() ? 'text-slate-400' : 'text-slate-500';
106738
+ }, ...(ngDevMode ? [{ debugName: "statLabelClasses" }] : []));
106739
+ this.progressBarBgClasses = computed(() => {
106740
+ return this.isDark() ? 'bg-slate-700' : 'bg-slate-200';
106741
+ }, ...(ngDevMode ? [{ debugName: "progressBarBgClasses" }] : []));
106742
+ this.progressBarFillClasses = computed(() => {
106743
+ if (this.allReviewed()) {
106744
+ return 'bg-gradient-to-r from-emerald-500 to-cyan-500';
106745
+ }
106746
+ return this.isDark()
106747
+ ? 'bg-gradient-to-r from-blue-500 to-purple-500'
106748
+ : 'bg-gradient-to-r from-blue-500 to-purple-500';
106749
+ }, ...(ngDevMode ? [{ debugName: "progressBarFillClasses" }] : []));
106750
+ this.integrateButtonClasses = computed(() => {
106751
+ return this.isDark()
106752
+ ? 'bg-gradient-to-r from-emerald-500 to-cyan-500 text-white hover:from-emerald-400 hover:to-cyan-400'
106753
+ : 'bg-gradient-to-r from-emerald-500 to-cyan-500 text-white hover:from-emerald-600 hover:to-cyan-600';
106754
+ }, ...(ngDevMode ? [{ debugName: "integrateButtonClasses" }] : []));
106755
+ this.hintClasses = computed(() => {
106756
+ return this.isDark() ? 'text-slate-500' : 'text-slate-400';
106757
+ }, ...(ngDevMode ? [{ debugName: "hintClasses" }] : []));
106758
+ }
106759
+ onIntegrateClick() {
106760
+ this.integrateGoals.emit(this.goalActionStateService.getOutput(this.goalIds()));
106761
+ }
106762
+ static { this.ɵfac = function UnifiedGoalsProgressFooterComponent_Factory(__ngFactoryType__) { return new (__ngFactoryType__ || UnifiedGoalsProgressFooterComponent)(); }; }
106763
+ static { this.ɵcmp = /*@__PURE__*/ i0.ɵɵdefineComponent({ type: UnifiedGoalsProgressFooterComponent, selectors: [["symphiq-unified-goals-progress-footer"]], inputs: { goalIds: [1, "goalIds"], viewMode: [1, "viewMode"] }, outputs: { integrateGoals: "integrateGoals" }, decls: 15, vars: 11, consts: [[1, "fixed", "bottom-0", "left-0", "right-0", "z-50", "border-t", "backdrop-blur-xl", "transition-all", "duration-300", 3, "ngClass"], [1, "max-w-7xl", "mx-auto", "px-4", "sm:px-6", "lg:px-8", "py-4"], [1, "flex", "flex-col", "sm:flex-row", "items-center", "justify-between", "gap-4"], [1, "flex-1", "w-full", "sm:w-auto"], [1, "flex", "items-center", "justify-between", "mb-2"], [1, "text-sm", "font-medium", 3, "ngClass"], [1, "text-sm", "font-semibold", 3, "ngClass"], [1, "h-2", "rounded-full", "overflow-hidden", 3, "ngClass"], [1, "h-full", "rounded-full", "transition-all", "duration-500", "ease-out", 3, "ngClass"], [1, "flex", "items-center", "gap-4", "mt-2"], [1, "flex", "items-center", "gap-3"], ["type", "button", 1, "inline-flex", "items-center", "gap-2", "px-6", "py-3", "rounded-xl", "font-semibold", "text-sm", "transition-all", "duration-200", "shadow-lg", "hover:shadow-xl", "hover:scale-105", "active:scale-95", "cursor-pointer", 3, "ngClass"], [1, "text-sm", 3, "ngClass"], [1, "flex", "items-center", "gap-1.5"], [1, "w-2", "h-2", "rounded-full", "bg-emerald-500"], [1, "text-xs", 3, "ngClass"], [1, "w-2", "h-2", "rounded-full", "bg-amber-500"], [1, "w-2", "h-2", "rounded-full", "bg-slate-400"], ["type", "button", 1, "inline-flex", "items-center", "gap-2", "px-6", "py-3", "rounded-xl", "font-semibold", "text-sm", "transition-all", "duration-200", "shadow-lg", "hover:shadow-xl", "hover:scale-105", "active:scale-95", "cursor-pointer", 3, "click", "ngClass"], ["fill", "none", "stroke", "currentColor", "viewBox", "0 0 24 24", 1, "w-5", "h-5"], ["stroke-linecap", "round", "stroke-linejoin", "round", "stroke-width", "2", "d", "M13 10V3L4 14h7v7l9-11h-7z"]], template: function UnifiedGoalsProgressFooterComponent_Template(rf, ctx) { if (rf & 1) {
106764
+ i0.ɵɵelementStart(0, "div", 0)(1, "div", 1)(2, "div", 2)(3, "div", 3)(4, "div", 4)(5, "span", 5);
106765
+ i0.ɵɵtext(6, " Goals Reviewed ");
106766
+ i0.ɵɵelementEnd();
106767
+ i0.ɵɵelementStart(7, "span", 6);
106768
+ i0.ɵɵtext(8);
106769
+ i0.ɵɵelementEnd()();
106770
+ i0.ɵɵelementStart(9, "div", 7);
106771
+ i0.ɵɵelement(10, "div", 8);
106772
+ i0.ɵɵelementEnd();
106773
+ i0.ɵɵconditionalCreate(11, UnifiedGoalsProgressFooterComponent_Conditional_11_Template, 4, 3, "div", 9);
106774
+ i0.ɵɵelementEnd();
106775
+ i0.ɵɵelementStart(12, "div", 10);
106776
+ i0.ɵɵconditionalCreate(13, UnifiedGoalsProgressFooterComponent_Conditional_13_Template, 4, 1, "button", 11)(14, UnifiedGoalsProgressFooterComponent_Conditional_14_Template, 2, 1, "div", 12);
106777
+ i0.ɵɵelementEnd()()()();
106778
+ } if (rf & 2) {
106779
+ i0.ɵɵproperty("ngClass", ctx.containerClasses());
106780
+ i0.ɵɵadvance(5);
106781
+ i0.ɵɵproperty("ngClass", ctx.labelClasses());
106782
+ i0.ɵɵadvance(2);
106783
+ i0.ɵɵproperty("ngClass", ctx.countClasses());
106784
+ i0.ɵɵadvance();
106785
+ i0.ɵɵtextInterpolate2(" ", ctx.completedCount(), " of ", ctx.totalCount(), " ");
106786
+ i0.ɵɵadvance();
106787
+ i0.ɵɵproperty("ngClass", ctx.progressBarBgClasses());
106788
+ i0.ɵɵadvance();
106789
+ i0.ɵɵstyleProp("width", ctx.progressPercent(), "%");
106790
+ i0.ɵɵproperty("ngClass", ctx.progressBarFillClasses());
106791
+ i0.ɵɵadvance();
106792
+ i0.ɵɵconditional(ctx.completedCount() > 0 ? 11 : -1);
106793
+ i0.ɵɵadvance(2);
106794
+ i0.ɵɵconditional(ctx.allReviewed() ? 13 : 14);
106795
+ } }, dependencies: [CommonModule, i1$1.NgClass], encapsulation: 2, changeDetection: 0 }); }
106796
+ }
106797
+ (() => { (typeof ngDevMode === "undefined" || ngDevMode) && i0.ɵsetClassMetadata(UnifiedGoalsProgressFooterComponent, [{
106798
+ type: Component,
106799
+ args: [{
106800
+ selector: 'symphiq-unified-goals-progress-footer',
106801
+ standalone: true,
106802
+ imports: [CommonModule],
106803
+ changeDetection: ChangeDetectionStrategy.OnPush,
106804
+ template: `
106805
+ <div [ngClass]="containerClasses()" class="fixed bottom-0 left-0 right-0 z-50 border-t backdrop-blur-xl transition-all duration-300">
106806
+ <div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8 py-4">
106807
+ <div class="flex flex-col sm:flex-row items-center justify-between gap-4">
106808
+ <div class="flex-1 w-full sm:w-auto">
106809
+ <div class="flex items-center justify-between mb-2">
106810
+ <span [ngClass]="labelClasses()" class="text-sm font-medium">
106811
+ Goals Reviewed
106812
+ </span>
106813
+ <span [ngClass]="countClasses()" class="text-sm font-semibold">
106814
+ {{ completedCount() }} of {{ totalCount() }}
106815
+ </span>
106816
+ </div>
106817
+ <div [ngClass]="progressBarBgClasses()" class="h-2 rounded-full overflow-hidden">
106818
+ <div
106819
+ [ngClass]="progressBarFillClasses()"
106820
+ class="h-full rounded-full transition-all duration-500 ease-out"
106821
+ [style.width.%]="progressPercent()">
106822
+ </div>
106823
+ </div>
106824
+ @if (completedCount() > 0) {
106825
+ <div class="flex items-center gap-4 mt-2">
106826
+ @if (planCount() > 0) {
106827
+ <div class="flex items-center gap-1.5">
106828
+ <span class="w-2 h-2 rounded-full bg-emerald-500"></span>
106829
+ <span [ngClass]="statLabelClasses()" class="text-xs">{{ planCount() }} Planned</span>
106830
+ </div>
106831
+ }
106832
+ @if (potentialCount() > 0) {
106833
+ <div class="flex items-center gap-1.5">
106834
+ <span class="w-2 h-2 rounded-full bg-amber-500"></span>
106835
+ <span [ngClass]="statLabelClasses()" class="text-xs">{{ potentialCount() }} Potential</span>
106836
+ </div>
106837
+ }
106838
+ @if (skipCount() > 0) {
106839
+ <div class="flex items-center gap-1.5">
106840
+ <span class="w-2 h-2 rounded-full bg-slate-400"></span>
106841
+ <span [ngClass]="statLabelClasses()" class="text-xs">{{ skipCount() }} Skipped</span>
106842
+ </div>
106843
+ }
106844
+ </div>
106845
+ }
106846
+ </div>
106847
+
106848
+ <div class="flex items-center gap-3">
106849
+ @if (allReviewed()) {
106850
+ <button
106851
+ type="button"
106852
+ (click)="onIntegrateClick()"
106853
+ [ngClass]="integrateButtonClasses()"
106854
+ class="inline-flex items-center gap-2 px-6 py-3 rounded-xl font-semibold text-sm transition-all duration-200 shadow-lg hover:shadow-xl hover:scale-105 active:scale-95 cursor-pointer">
106855
+ <svg class="w-5 h-5" fill="none" stroke="currentColor" viewBox="0 0 24 24">
106856
+ <path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M13 10V3L4 14h7v7l9-11h-7z"/>
106857
+ </svg>
106858
+ Integrate Goals
106859
+ </button>
106860
+ } @else {
106861
+ <div [ngClass]="hintClasses()" class="text-sm">
106862
+ Review all goals to continue
106863
+ </div>
106864
+ }
106865
+ </div>
106866
+ </div>
106867
+ </div>
106868
+ </div>
106869
+ `
106870
+ }]
106871
+ }], null, { goalIds: [{ type: i0.Input, args: [{ isSignal: true, alias: "goalIds", required: true }] }], viewMode: [{ type: i0.Input, args: [{ isSignal: true, alias: "viewMode", required: false }] }], integrateGoals: [{ type: i0.Output, args: ["integrateGoals"] }] }); })();
106872
+ (() => { (typeof ngDevMode === "undefined" || ngDevMode) && i0.ɵsetClassDebugInfo(UnifiedGoalsProgressFooterComponent, { className: "UnifiedGoalsProgressFooterComponent", filePath: "lib/components/profile-analysis-unified-dashboard/unified-goals-progress-footer.component.ts", lineNumber: 78 }); })();
105641
106873
 
105642
106874
  const _c0$7 = () => [];
105643
106875
  function SymphiqProfileAnalysisUnifiedDashboardComponent_Conditional_5_Template(rf, ctx) { if (rf & 1) {
105644
106876
  const _r1 = i0.ɵɵgetCurrentView();
105645
- i0.ɵɵelementStart(0, "symphiq-journey-progress-indicator", 14);
106877
+ i0.ɵɵelementStart(0, "symphiq-journey-progress-indicator", 15);
105646
106878
  i0.ɵɵlistener("nextStepClick", function SymphiqProfileAnalysisUnifiedDashboardComponent_Conditional_5_Template_symphiq_journey_progress_indicator_nextStepClick_0_listener() { i0.ɵɵrestoreView(_r1); const ctx_r1 = i0.ɵɵnextContext(); return i0.ɵɵresetView(ctx_r1.nextStepClick.emit()); })("stepClick", function SymphiqProfileAnalysisUnifiedDashboardComponent_Conditional_5_Template_symphiq_journey_progress_indicator_stepClick_0_listener($event) { i0.ɵɵrestoreView(_r1); const ctx_r1 = i0.ɵɵnextContext(); return i0.ɵɵresetView(ctx_r1.stepClick.emit($event)); });
105647
106879
  i0.ɵɵelementEnd();
105648
106880
  } if (rf & 2) {
@@ -105650,23 +106882,23 @@ function SymphiqProfileAnalysisUnifiedDashboardComponent_Conditional_5_Template(
105650
106882
  i0.ɵɵproperty("viewMode", ctx_r1.viewMode())("currentStepId", ctx_r1.JourneyStepIdEnum.UNIFIED_ANALYSIS)("showNextStepAction", false)("forDemo", ctx_r1.forDemo())("maxAccessibleStepId", ctx_r1.maxAccessibleStepId());
105651
106883
  } }
105652
106884
  function SymphiqProfileAnalysisUnifiedDashboardComponent_Conditional_6_Conditional_1_Template(rf, ctx) { if (rf & 1) {
105653
- i0.ɵɵelement(0, "symphiq-loading-card", 15);
106885
+ i0.ɵɵelement(0, "symphiq-loading-card", 16);
105654
106886
  } if (rf & 2) {
105655
106887
  const ctx_r1 = i0.ɵɵnextContext(2);
105656
106888
  i0.ɵɵproperty("viewMode", ctx_r1.viewMode())("backdropBlur", true);
105657
106889
  } }
105658
106890
  function SymphiqProfileAnalysisUnifiedDashboardComponent_Conditional_6_Conditional_2_Template(rf, ctx) { if (rf & 1) {
105659
106891
  const _r3 = i0.ɵɵgetCurrentView();
105660
- i0.ɵɵelement(0, "symphiq-unified-welcome-banner", 16);
105661
- i0.ɵɵelementStart(1, "symphiq-unified-goals-grid", 17);
106892
+ i0.ɵɵelement(0, "symphiq-unified-welcome-banner", 17);
106893
+ i0.ɵɵelementStart(1, "symphiq-unified-goals-grid", 18);
105662
106894
  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)); });
105663
106895
  i0.ɵɵelementEnd();
105664
- i0.ɵɵelementStart(2, "symphiq-collapsible-analysis-section-group", 18);
106896
+ i0.ɵɵelementStart(2, "symphiq-collapsible-analysis-section-group", 19);
105665
106897
  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()); });
105666
106898
  i0.ɵɵelementEnd();
105667
106899
  } if (rf & 2) {
105668
106900
  const ctx_r1 = i0.ɵɵnextContext(2);
105669
- i0.ɵɵproperty("viewMode", ctx_r1.viewMode())("businessName", ctx_r1.businessName())("isOnboarded", ctx_r1.isOnboarded())("analysisDate", ctx_r1.unifiedAnalysisDate())("isUnifiedAnalysisComplete", !ctx_r1.isLoading() && !ctx_r1.isGenerating())("sourceAnalysesCount", ctx_r1.sourceAnalysesCount())("unifiedGoalsCount", ctx_r1.unifiedGoals().length)("sourceGoalsCount", ctx_r1.totalSourceGoalsCount());
106901
+ i0.ɵɵproperty("viewMode", ctx_r1.viewMode())("businessName", ctx_r1.businessName())("isOnboarded", ctx_r1.isOnboarded())("analysisDate", ctx_r1.unifiedAnalysisDate())("isUnifiedAnalysisComplete", !ctx_r1.isLoading() && !ctx_r1.isGenerating())("sourceAnalysesCount", ctx_r1.sourceAnalysesCount())("unifiedGoalsCount", ctx_r1.unifiedGoals().length)("sourceGoalsCount", ctx_r1.totalSourceGoalsCount())("goalIds", ctx_r1.unifiedGoalIds());
105670
106902
  i0.ɵɵadvance();
105671
106903
  i0.ɵɵproperty("goals", ctx_r1.unifiedGoals())("viewMode", ctx_r1.viewMode());
105672
106904
  i0.ɵɵadvance();
@@ -105674,25 +106906,25 @@ function SymphiqProfileAnalysisUnifiedDashboardComponent_Conditional_6_Condition
105674
106906
  } }
105675
106907
  function SymphiqProfileAnalysisUnifiedDashboardComponent_Conditional_6_Conditional_3_Template(rf, ctx) { if (rf & 1) {
105676
106908
  const _r4 = i0.ɵɵgetCurrentView();
105677
- i0.ɵɵelement(0, "symphiq-unified-welcome-banner", 16);
105678
- i0.ɵɵelementStart(1, "symphiq-unified-executive-summary", 19);
106909
+ i0.ɵɵelement(0, "symphiq-unified-welcome-banner", 17);
106910
+ i0.ɵɵelementStart(1, "symphiq-unified-executive-summary", 20);
105679
106911
  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()); });
105680
106912
  i0.ɵɵelementEnd();
105681
- i0.ɵɵelementStart(2, "symphiq-unified-goals-grid", 20);
106913
+ i0.ɵɵelementStart(2, "symphiq-unified-goals-grid", 21);
105682
106914
  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)); });
105683
106915
  i0.ɵɵelementEnd();
105684
- i0.ɵɵelementStart(3, "symphiq-unified-timeline", 21);
106916
+ i0.ɵɵelementStart(3, "symphiq-unified-timeline", 22);
105685
106917
  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)); });
105686
106918
  i0.ɵɵelementEnd();
105687
- i0.ɵɵelementStart(4, "symphiq-unified-priority-matrix", 22);
106919
+ i0.ɵɵelementStart(4, "symphiq-unified-priority-matrix", 23);
105688
106920
  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)); });
105689
106921
  i0.ɵɵelementEnd();
105690
- i0.ɵɵelementStart(5, "symphiq-unified-next-steps", 23);
106922
+ i0.ɵɵelementStart(5, "symphiq-unified-next-steps", 24);
105691
106923
  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)); });
105692
106924
  i0.ɵɵelementEnd();
105693
106925
  } if (rf & 2) {
105694
106926
  const ctx_r1 = i0.ɵɵnextContext(2);
105695
- i0.ɵɵproperty("viewMode", ctx_r1.viewMode())("businessName", ctx_r1.businessName())("isOnboarded", ctx_r1.isOnboarded())("analysisDate", ctx_r1.unifiedAnalysisDate())("isUnifiedAnalysisComplete", !ctx_r1.isLoading() && !ctx_r1.isGenerating())("sourceAnalysesCount", ctx_r1.sourceAnalysesCount())("unifiedGoalsCount", ctx_r1.unifiedGoals().length)("sourceGoalsCount", ctx_r1.totalSourceGoalsCount());
106927
+ i0.ɵɵproperty("viewMode", ctx_r1.viewMode())("businessName", ctx_r1.businessName())("isOnboarded", ctx_r1.isOnboarded())("analysisDate", ctx_r1.unifiedAnalysisDate())("isUnifiedAnalysisComplete", !ctx_r1.isLoading() && !ctx_r1.isGenerating())("sourceAnalysesCount", ctx_r1.sourceAnalysesCount())("unifiedGoalsCount", ctx_r1.unifiedGoals().length)("sourceGoalsCount", ctx_r1.totalSourceGoalsCount())("goalIds", ctx_r1.unifiedGoalIds());
105696
106928
  i0.ɵɵadvance();
105697
106929
  i0.ɵɵproperty("summary", ctx_r1.executiveSummary())("viewMode", ctx_r1.viewMode())("shopCounts", ctx_r1.shopCounts())("focusAreaCounts", ctx_r1.focusAreaCounts())("metricCounts", ctx_r1.metricCounts());
105698
106930
  i0.ɵɵadvance();
@@ -105706,9 +106938,9 @@ function SymphiqProfileAnalysisUnifiedDashboardComponent_Conditional_6_Condition
105706
106938
  } }
105707
106939
  function SymphiqProfileAnalysisUnifiedDashboardComponent_Conditional_6_Template(rf, ctx) { if (rf & 1) {
105708
106940
  i0.ɵɵelementStart(0, "main", 6);
105709
- i0.ɵɵconditionalCreate(1, SymphiqProfileAnalysisUnifiedDashboardComponent_Conditional_6_Conditional_1_Template, 1, 2, "symphiq-loading-card", 15);
105710
- i0.ɵɵconditionalCreate(2, SymphiqProfileAnalysisUnifiedDashboardComponent_Conditional_6_Conditional_2_Template, 3, 21);
105711
- i0.ɵɵconditionalCreate(3, SymphiqProfileAnalysisUnifiedDashboardComponent_Conditional_6_Conditional_3_Template, 6, 23);
106941
+ i0.ɵɵconditionalCreate(1, SymphiqProfileAnalysisUnifiedDashboardComponent_Conditional_6_Conditional_1_Template, 1, 2, "symphiq-loading-card", 16);
106942
+ i0.ɵɵconditionalCreate(2, SymphiqProfileAnalysisUnifiedDashboardComponent_Conditional_6_Conditional_2_Template, 3, 22);
106943
+ i0.ɵɵconditionalCreate(3, SymphiqProfileAnalysisUnifiedDashboardComponent_Conditional_6_Conditional_3_Template, 6, 24);
105712
106944
  i0.ɵɵelementEnd();
105713
106945
  } if (rf & 2) {
105714
106946
  const ctx_r1 = i0.ɵɵnextContext();
@@ -105727,7 +106959,7 @@ function SymphiqProfileAnalysisUnifiedDashboardComponent_Conditional_7_Template(
105727
106959
  } }
105728
106960
  function SymphiqProfileAnalysisUnifiedDashboardComponent_Conditional_8_Template(rf, ctx) { if (rf & 1) {
105729
106961
  const _r5 = i0.ɵɵgetCurrentView();
105730
- i0.ɵɵelementStart(0, "symphiq-search-modal", 24);
106962
+ i0.ɵɵelementStart(0, "symphiq-search-modal", 25);
105731
106963
  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()); });
105732
106964
  i0.ɵɵelementEnd();
105733
106965
  } if (rf & 2) {
@@ -105736,7 +106968,7 @@ function SymphiqProfileAnalysisUnifiedDashboardComponent_Conditional_8_Template(
105736
106968
  } }
105737
106969
  function SymphiqProfileAnalysisUnifiedDashboardComponent_Conditional_9_Template(rf, ctx) { if (rf & 1) {
105738
106970
  const _r6 = i0.ɵɵgetCurrentView();
105739
- i0.ɵɵelementStart(0, "symphiq-view-mode-switcher-modal", 25);
106971
+ i0.ɵɵelementStart(0, "symphiq-view-mode-switcher-modal", 26);
105740
106972
  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)); });
105741
106973
  i0.ɵɵelementEnd();
105742
106974
  } if (rf & 2) {
@@ -105749,6 +106981,15 @@ function SymphiqProfileAnalysisUnifiedDashboardComponent_Conditional_10_Template
105749
106981
  const ctx_r1 = i0.ɵɵnextContext();
105750
106982
  i0.ɵɵproperty("viewMode", ctx_r1.viewMode())("itemStatus", ctx_r1.itemStatus())("currentStatus", ctx_r1.selfContentStatus())("confettiIntensity", "celebration")("title", "We are generating a new Unified Analysis for " + ctx_r1.businessName() + ".");
105751
106983
  } }
106984
+ function SymphiqProfileAnalysisUnifiedDashboardComponent_Conditional_15_Template(rf, ctx) { if (rf & 1) {
106985
+ const _r7 = i0.ɵɵgetCurrentView();
106986
+ i0.ɵɵelementStart(0, "symphiq-unified-goals-progress-footer", 27);
106987
+ 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)); });
106988
+ i0.ɵɵelementEnd();
106989
+ } if (rf & 2) {
106990
+ const ctx_r1 = i0.ɵɵnextContext();
106991
+ i0.ɵɵproperty("goalIds", ctx_r1.unifiedGoalIds())("viewMode", ctx_r1.viewMode());
106992
+ } }
105752
106993
  class SymphiqProfileAnalysisUnifiedDashboardComponent {
105753
106994
  constructor() {
105754
106995
  this.viewMode = input(ViewModeEnum.LIGHT, ...(ngDevMode ? [{ debugName: "viewMode" }] : []));
@@ -105770,6 +107011,7 @@ class SymphiqProfileAnalysisUnifiedDashboardComponent {
105770
107011
  this.stepClick = output();
105771
107012
  this.nextStepClick = output();
105772
107013
  this.sourceAnalysisRequest = output();
107014
+ this.integrateGoalsClick = output();
105773
107015
  this.headerScrollService = inject(HeaderScrollService);
105774
107016
  this.modalService = inject(ModalService);
105775
107017
  this.viewModeService = inject(ViewModeService);
@@ -105868,6 +107110,13 @@ class SymphiqProfileAnalysisUnifiedDashboardComponent {
105868
107110
  this.unifiedGoals = computed(() => {
105869
107111
  return this.analysisData()?.unifiedGoals || [];
105870
107112
  }, ...(ngDevMode ? [{ debugName: "unifiedGoals" }] : []));
107113
+ this.unifiedGoalIds = computed(() => {
107114
+ return this.unifiedGoals().map(g => g.id).filter((id) => !!id);
107115
+ }, ...(ngDevMode ? [{ debugName: "unifiedGoalIds" }] : []));
107116
+ this.shouldShowProgressFooter = computed(() => {
107117
+ const goals = this.unifiedGoals();
107118
+ return goals.length > 0 && !this.isLoading() && !this.isGenerating();
107119
+ }, ...(ngDevMode ? [{ debugName: "shouldShowProgressFooter" }] : []));
105871
107120
  this.sourceAnalysesMap = computed(() => {
105872
107121
  const analyses = this.sourceProfileAnalyses() || [];
105873
107122
  const map = new Map();
@@ -105938,6 +107187,9 @@ class SymphiqProfileAnalysisUnifiedDashboardComponent {
105938
107187
  const normalized = normalizeToV3(analysis.performanceOverviewStructured);
105939
107188
  return normalized?.insights || [];
105940
107189
  }, ...(ngDevMode ? [{ debugName: "allInsights" }] : []));
107190
+ this.allBusinessInsights = computed(() => {
107191
+ return this.profile()?.profileStructured?.recommendations || [];
107192
+ }, ...(ngDevMode ? [{ debugName: "allBusinessInsights" }] : []));
105941
107193
  this.unifiedTimeline = computed(() => {
105942
107194
  const timeline = this.analysisData()?.unifiedTimeline;
105943
107195
  if (!timeline)
@@ -106214,18 +107466,21 @@ class SymphiqProfileAnalysisUnifiedDashboardComponent {
106214
107466
  this.closeViewModeSwitcher();
106215
107467
  }
106216
107468
  onGoalClick(goal) {
106217
- this.modalService.openUnifiedGoalModal(goal, this.allMetrics(), this.allCharts(), this.loadedSourceAnalysisIds().map(String), this.viewMode(), this.loadingSourceAnalysisId() !== undefined ? String(this.loadingSourceAnalysisId()) : undefined, undefined, this.allInsights());
107469
+ this.modalService.openUnifiedGoalModal(goal, this.allMetrics(), this.allCharts(), this.loadedSourceAnalysisIds().map(String), this.viewMode(), this.loadingSourceAnalysisId() !== undefined ? String(this.loadingSourceAnalysisId()) : undefined, undefined, this.allInsights(), this.allBusinessInsights());
106218
107470
  }
106219
107471
  onViewAllPriorityActionsClick() {
106220
107472
  const summary = this.executiveSummary();
106221
107473
  const items = summary?.priorityActionItems ?? [];
106222
107474
  this.modalService.openPriorityActionsListModal(items, this.viewMode());
106223
107475
  }
107476
+ onIntegrateGoals(output) {
107477
+ this.integrateGoalsClick.emit(output);
107478
+ }
106224
107479
  onPriorityActionGoalClick(goalId) {
106225
107480
  const goal = this.unifiedGoals().find(g => g.id === goalId);
106226
107481
  if (goal) {
106227
107482
  const currentState = this.modalService.getCurrentState();
106228
- this.modalService.openUnifiedGoalModal(goal, this.allMetrics(), this.allCharts(), this.loadedSourceAnalysisIds().map(String), this.viewMode(), this.loadingSourceAnalysisId() !== undefined ? String(this.loadingSourceAnalysisId()) : undefined, currentState, this.allInsights());
107483
+ this.modalService.openUnifiedGoalModal(goal, this.allMetrics(), this.allCharts(), this.loadedSourceAnalysisIds().map(String), this.viewMode(), this.loadingSourceAnalysisId() !== undefined ? String(this.loadingSourceAnalysisId()) : undefined, currentState, this.allInsights(), this.allBusinessInsights());
106229
107484
  }
106230
107485
  }
106231
107486
  onPriorityActionRecommendationClick(recommendationId) {
@@ -106647,7 +107902,7 @@ class SymphiqProfileAnalysisUnifiedDashboardComponent {
106647
107902
  static { this.ɵfac = function SymphiqProfileAnalysisUnifiedDashboardComponent_Factory(__ngFactoryType__) { return new (__ngFactoryType__ || SymphiqProfileAnalysisUnifiedDashboardComponent)(); }; }
106648
107903
  static { this.ɵcmp = /*@__PURE__*/ i0.ɵɵdefineComponent({ type: SymphiqProfileAnalysisUnifiedDashboardComponent, selectors: [["symphiq-profile-analysis-unified-dashboard"]], hostBindings: function SymphiqProfileAnalysisUnifiedDashboardComponent_HostBindings(rf, ctx) { if (rf & 1) {
106649
107904
  i0.ɵɵlistener("scroll", function SymphiqProfileAnalysisUnifiedDashboardComponent_scroll_HostBindingHandler() { return ctx.onScroll(); }, i0.ɵɵresolveWindow);
106650
- } }, 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" }, features: [i0.ɵɵNgOnChangesFeature], decls: 15, vars: 32, consts: [[1, "relative"], [1, "animated-bubbles", 2, "position", "fixed", "top", "0", "left", "0", "right", "0", "bottom", "0", "width", "100vw", "height", "100vh", "z-index", "1", "pointer-events", "none"], [3, "viewMode", "progress", "embedded"], [1, "relative", "z-51"], [3, "searchClick", "viewModeClick", "title", "subtitle", "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"], [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"], [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"]], template: function SymphiqProfileAnalysisUnifiedDashboardComponent_Template(rf, ctx) { if (rf & 1) {
107905
+ } }, 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"], [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) {
106651
107906
  i0.ɵɵelementStart(0, "div", 0);
106652
107907
  i0.ɵɵelement(1, "div", 1)(2, "symphiq-scroll-progress-bar", 2);
106653
107908
  i0.ɵɵelementStart(3, "div", 3)(4, "symphiq-dashboard-header", 4);
@@ -106665,6 +107920,7 @@ class SymphiqProfileAnalysisUnifiedDashboardComponent {
106665
107920
  i0.ɵɵlistener("priorityActionGoalClick", function SymphiqProfileAnalysisUnifiedDashboardComponent_Template_symphiq_unified_dashboard_modal_priorityActionGoalClick_12_listener($event) { return ctx.onPriorityActionGoalClick($event); })("priorityActionRecommendationClick", function SymphiqProfileAnalysisUnifiedDashboardComponent_Template_symphiq_unified_dashboard_modal_priorityActionRecommendationClick_12_listener($event) { return ctx.onPriorityActionRecommendationClick($event); })("sourceAnalysisClickRequest", function SymphiqProfileAnalysisUnifiedDashboardComponent_Template_symphiq_unified_dashboard_modal_sourceAnalysisClickRequest_12_listener($event) { return ctx.handleSourceAnalysisClickFromModal($event); });
106666
107921
  i0.ɵɵelementEnd();
106667
107922
  i0.ɵɵelement(13, "symphiq-business-analysis-modal", 12)(14, "symphiq-profile-analysis-modal", 13);
107923
+ i0.ɵɵconditionalCreate(15, SymphiqProfileAnalysisUnifiedDashboardComponent_Conditional_15_Template, 1, 2, "symphiq-unified-goals-progress-footer", 14);
106668
107924
  i0.ɵɵelementEnd();
106669
107925
  } if (rf & 2) {
106670
107926
  i0.ɵɵclassProp("min-h-screen", !ctx.embedded());
@@ -106691,7 +107947,9 @@ class SymphiqProfileAnalysisUnifiedDashboardComponent {
106691
107947
  i0.ɵɵadvance();
106692
107948
  i0.ɵɵproperty("isLightMode", ctx.isLightMode());
106693
107949
  i0.ɵɵadvance();
106694
- i0.ɵɵproperty("isLightMode", ctx.isLightMode())("allInsights", i0.ɵɵpureFunction0(31, _c0$7))("allMetrics", ctx.allMetrics())("allCharts", ctx.allCharts());
107950
+ i0.ɵɵproperty("isLightMode", ctx.isLightMode())("allInsights", i0.ɵɵpureFunction0(32, _c0$7))("allMetrics", ctx.allMetrics())("allCharts", ctx.allCharts());
107951
+ i0.ɵɵadvance();
107952
+ i0.ɵɵconditional(ctx.shouldShowProgressFooter() ? 15 : -1);
106695
107953
  } }, dependencies: [CommonModule,
106696
107954
  DashboardHeaderComponent,
106697
107955
  ScrollProgressBarComponent,
@@ -106711,7 +107969,8 @@ class SymphiqProfileAnalysisUnifiedDashboardComponent {
106711
107969
  UnifiedDashboardModalComponent,
106712
107970
  BusinessAnalysisModalComponent,
106713
107971
  UnifiedWelcomeBannerComponent,
106714
- CollapsibleAnalysisSectionGroupComponent], encapsulation: 2, changeDetection: 0 }); }
107972
+ CollapsibleAnalysisSectionGroupComponent,
107973
+ UnifiedGoalsProgressFooterComponent], encapsulation: 2, changeDetection: 0 }); }
106715
107974
  }
106716
107975
  (() => { (typeof ngDevMode === "undefined" || ngDevMode) && i0.ɵsetClassMetadata(SymphiqProfileAnalysisUnifiedDashboardComponent, [{
106717
107976
  type: Component,
@@ -106738,7 +107997,8 @@ class SymphiqProfileAnalysisUnifiedDashboardComponent {
106738
107997
  UnifiedDashboardModalComponent,
106739
107998
  BusinessAnalysisModalComponent,
106740
107999
  UnifiedWelcomeBannerComponent,
106741
- CollapsibleAnalysisSectionGroupComponent
108000
+ CollapsibleAnalysisSectionGroupComponent,
108001
+ UnifiedGoalsProgressFooterComponent
106742
108002
  ],
106743
108003
  changeDetection: ChangeDetectionStrategy.OnPush,
106744
108004
  template: `
@@ -106805,6 +108065,7 @@ class SymphiqProfileAnalysisUnifiedDashboardComponent {
106805
108065
  [sourceAnalysesCount]="sourceAnalysesCount()"
106806
108066
  [unifiedGoalsCount]="unifiedGoals().length"
106807
108067
  [sourceGoalsCount]="totalSourceGoalsCount()"
108068
+ [goalIds]="unifiedGoalIds()"
106808
108069
  />
106809
108070
 
106810
108071
  <!-- Unified Goals Grid -->
@@ -106847,6 +108108,7 @@ class SymphiqProfileAnalysisUnifiedDashboardComponent {
106847
108108
  [sourceAnalysesCount]="sourceAnalysesCount()"
106848
108109
  [unifiedGoalsCount]="unifiedGoals().length"
106849
108110
  [sourceGoalsCount]="totalSourceGoalsCount()"
108111
+ [goalIds]="unifiedGoalIds()"
106850
108112
  />
106851
108113
 
106852
108114
  <!-- Executive Summary -->
@@ -106950,14 +108212,22 @@ class SymphiqProfileAnalysisUnifiedDashboardComponent {
106950
108212
  [allMetrics]="allMetrics()"
106951
108213
  [allCharts]="allCharts()"
106952
108214
  />
108215
+
108216
+ @if (shouldShowProgressFooter()) {
108217
+ <symphiq-unified-goals-progress-footer
108218
+ [goalIds]="unifiedGoalIds()"
108219
+ [viewMode]="viewMode()"
108220
+ (integrateGoals)="onIntegrateGoals($event)"
108221
+ />
108222
+ }
106953
108223
  </div>
106954
108224
  `
106955
108225
  }]
106956
- }], null, { viewMode: [{ type: i0.Input, args: [{ isSignal: true, alias: "viewMode", required: false }] }], embedded: [{ type: i0.Input, args: [{ isSignal: true, alias: "embedded", required: false }] }], isLoading: [{ type: i0.Input, args: [{ isSignal: true, alias: "isLoading", required: false }] }], profile: [{ type: i0.Input, args: [{ isSignal: true, alias: "profile", required: false }] }], funnelAnalysis: [{ type: i0.Input, args: [{ isSignal: true, alias: "funnelAnalysis", required: false }] }], unifiedProfileAnalysis: [{ type: i0.Input, args: [{ isSignal: true, alias: "unifiedProfileAnalysis", required: false }] }], sourceProfileAnalyses: [{ type: i0.Input, args: [{ isSignal: true, alias: "sourceProfileAnalyses", required: false }] }], isLoadingSourceAnalysis: [{ type: i0.Input, args: [{ isSignal: true, alias: "isLoadingSourceAnalysis", required: false }] }], scrollEvent: [{ type: i0.Input, args: [{ isSignal: true, alias: "scrollEvent", required: false }] }], scrollElement: [{ type: i0.Input, args: [{ isSignal: true, alias: "scrollElement", required: false }] }], isOnboarded: [{ type: i0.Input, args: [{ isSignal: true, alias: "isOnboarded", required: false }] }], forDemo: [{ type: i0.Input, args: [{ isSignal: true, alias: "forDemo", required: false }] }], maxAccessibleStepId: [{ type: i0.Input, args: [{ isSignal: true, alias: "maxAccessibleStepId", required: false }] }], itemStatus: [{ type: i0.Input, args: [{ isSignal: true, alias: "itemStatus", required: false }] }], requestedByUser: [{ type: i0.Input, args: [{ isSignal: true, alias: "requestedByUser", required: false }] }], generateGoalsClick: [{ type: i0.Output, args: ["generateGoalsClick"] }], stepClick: [{ type: i0.Output, args: ["stepClick"] }], nextStepClick: [{ type: i0.Output, args: ["nextStepClick"] }], sourceAnalysisRequest: [{ type: i0.Output, args: ["sourceAnalysisRequest"] }], onScroll: [{
108226
+ }], null, { viewMode: [{ type: i0.Input, args: [{ isSignal: true, alias: "viewMode", required: false }] }], embedded: [{ type: i0.Input, args: [{ isSignal: true, alias: "embedded", required: false }] }], isLoading: [{ type: i0.Input, args: [{ isSignal: true, alias: "isLoading", required: false }] }], profile: [{ type: i0.Input, args: [{ isSignal: true, alias: "profile", required: false }] }], funnelAnalysis: [{ type: i0.Input, args: [{ isSignal: true, alias: "funnelAnalysis", required: false }] }], unifiedProfileAnalysis: [{ type: i0.Input, args: [{ isSignal: true, alias: "unifiedProfileAnalysis", required: false }] }], sourceProfileAnalyses: [{ type: i0.Input, args: [{ isSignal: true, alias: "sourceProfileAnalyses", required: false }] }], isLoadingSourceAnalysis: [{ type: i0.Input, args: [{ isSignal: true, alias: "isLoadingSourceAnalysis", required: false }] }], scrollEvent: [{ type: i0.Input, args: [{ isSignal: true, alias: "scrollEvent", required: false }] }], scrollElement: [{ type: i0.Input, args: [{ isSignal: true, alias: "scrollElement", required: false }] }], isOnboarded: [{ type: i0.Input, args: [{ isSignal: true, alias: "isOnboarded", required: false }] }], forDemo: [{ type: i0.Input, args: [{ isSignal: true, alias: "forDemo", required: false }] }], maxAccessibleStepId: [{ type: i0.Input, args: [{ isSignal: true, alias: "maxAccessibleStepId", required: false }] }], itemStatus: [{ type: i0.Input, args: [{ isSignal: true, alias: "itemStatus", required: false }] }], requestedByUser: [{ type: i0.Input, args: [{ isSignal: true, alias: "requestedByUser", required: false }] }], generateGoalsClick: [{ type: i0.Output, args: ["generateGoalsClick"] }], stepClick: [{ type: i0.Output, args: ["stepClick"] }], nextStepClick: [{ type: i0.Output, args: ["nextStepClick"] }], sourceAnalysisRequest: [{ type: i0.Output, args: ["sourceAnalysisRequest"] }], integrateGoalsClick: [{ type: i0.Output, args: ["integrateGoalsClick"] }], onScroll: [{
106957
108227
  type: HostListener,
106958
108228
  args: ['window:scroll']
106959
108229
  }] }); })();
106960
- (() => { (typeof ngDevMode === "undefined" || ngDevMode) && i0.ɵsetClassDebugInfo(SymphiqProfileAnalysisUnifiedDashboardComponent, { className: "SymphiqProfileAnalysisUnifiedDashboardComponent", filePath: "lib/components/profile-analysis-unified-dashboard/symphiq-profile-analysis-unified-dashboard.component.ts", lineNumber: 326 }); })();
108230
+ (() => { (typeof ngDevMode === "undefined" || ngDevMode) && i0.ɵsetClassDebugInfo(SymphiqProfileAnalysisUnifiedDashboardComponent, { className: "SymphiqProfileAnalysisUnifiedDashboardComponent", filePath: "lib/components/profile-analysis-unified-dashboard/symphiq-profile-analysis-unified-dashboard.component.ts", lineNumber: 340 }); })();
106961
108231
 
106962
108232
  function SymphiqProfileMetricsAnalysesDashboardComponent_Conditional_5_Template(rf, ctx) { if (rf & 1) {
106963
108233
  const _r1 = i0.ɵɵgetCurrentView();
@@ -114514,5 +115784,5 @@ var pieChart_component = /*#__PURE__*/Object.freeze({
114514
115784
  * Generated bundle index. Do not edit.
114515
115785
  */
114516
115786
 
114517
- export { AreaChartComponent, BarChartComponent, BreakdownSectionComponent, BusinessAnalysisModalComponent, BusinessProfileSearchService, ChartCardComponent, ChartContainerComponent, ChartThemeService, CircularProgressComponent, CompetitivePositioningSummaryComponent, CompetitorAnalysisCardComponent, ConfettiService, ConfidenceLevelCardComponent, ContentGenerationProgressComponent, ContentGenerationProgressWithConfettiComponent, CrossDashboardRelationshipsService, DashboardHeaderComponent, DataLoaderService, DisplayModeEnum, FloatingBackButtonComponent, FloatingTocComponent, FocusAreaDetailCardComponent, FocusAreaExecutiveSummaryComponent, FocusAreaQuestionComponent, FocusAreaStatusCardComponent, FocusAreaToolsModalComponent, FunnelOrderService, GradeBadgeComponent, HeaderScrollService, HierarchyDisplayComponent, HorizontalBarComponent, IconService, IndeterminateSpinnerComponent, InsightCardComponent, JourneyProgressIndicatorComponent, JourneyStepIdEnum, LineChartComponent, MetricCardComponent, MetricExecutiveSummaryComponent, MetricFormatterService, MetricListItemComponent, MetricReportModalComponent, MetricWelcomeBannerComponent, MobileBottomNavComponent, MobileFABComponent, ModalComponent, ModalService, NapkinVisualPlaceholderComponent, NavigationStateService, OpportunityHighlightBannerComponent, OverallAssessmentComponent, PacingStatusBadgeComponent, PieChartComponent, ProfileItemCardComponent, ProfileSectionComponent, ProfileSubsectionComponent, RelatedContentSidebarComponent, RevenueCalculatorService, RevenueCalculatorWelcomeBannerComponent, ScrollDepthService, ScrollProgressBarComponent, SearchButtonComponent, SearchModalComponent, SectionDividerComponent, SectionNavigationComponent, ShadowElevationDirective, ShopPlatformEnum, ShopProfileCategoryListComponent, ShopProfileQuestionAnswerComponent, ShopProfileQuestionCardComponent, ShopProfileQuestionsModalComponent, ShopProfileStatusCardComponent, ShopProfileStickyFooterComponent, ShopProfileViewToggleComponent, ShopWelcomeBannerComponent, SkeletonBarComponent, SkeletonCardBaseComponent, SkeletonCircleComponent, SkeletonCompetitorCardComponent, SkeletonCustomerSegmentCardComponent, SkeletonFocusAreaCardComponent, SkeletonGenericCardComponent, SkeletonLoaderComponent, SkeletonPriceTierCardComponent, SkeletonProductCategoryCardComponent, SkeletonRegionCardComponent, SkeletonSeasonCardComponent, StickySubscriptionContinueButtonComponent, SubscriptionValuePropositionCardComponent, SymphiqBusinessAnalysisDashboardComponent, SymphiqConnectGaDashboardComponent, SymphiqCreateAccountDashboardComponent, SymphiqFunnelAnalysisDashboardComponent, SymphiqFunnelAnalysisPreviewComponent, SymphiqIconComponent, SymphiqProfileAnalysisFocusAreaDashboardComponent, SymphiqProfileAnalysisMetricDashboardComponent, SymphiqProfileAnalysisUnifiedDashboardComponent, SymphiqProfileFocusAreaDashboardComponent, SymphiqProfileFocusAreasAnalysesDashboardComponent, SymphiqProfileMetricDashboardComponent, SymphiqProfileMetricsAnalysesDashboardComponent, SymphiqProfileShopAnalysisDashboardComponent, SymphiqRevenueCalculatorDashboardComponent, SymphiqWelcomeDashboardComponent, TargetChangeBadgeComponent, TooltipContainerComponent, TooltipDataService, TooltipDirective, TooltipService, UserAvatarComponent, UserDisplayComponent, ViewModeService, ViewModeSwitcherModalComponent, ViewportAnimationDirective, VisualizationContainerComponent, calculateFunnelRatios, calculateMetricTargetsFromRevenue, calculateMetricTargetsFromRevenueReverse, calculateRelatedMetricRatios, generateTargetsFromCalculations, getBadgeLabelClasses, getButtonClasses, getCategoryBadgeClasses, getCategoryColor, getCompetitiveBadgeClasses, getContainerClasses, getFooterClasses, getFunnelStageMetrics, getGradeBadgeClasses, getHeaderClasses, getInsightsBadgeClasses, getInsightsCardClasses, getMetricLabelClasses, getMetricMiniCardClasses, getMetricValueClasses, getNarrativeTextClasses, getRevenueCardClasses, getRevenueIconClasses, getStatusBadgeClasses, getStatusDotClasses, getStatusIconClasses, getStatusSummaryClasses, getSubtitleClasses, getTitleClasses, getTrendClasses, getTrendIconClasses, getTrendValueClasses, groupMetricsByFunnelStage, isLightMode, validateRevenueTarget };
115787
+ export { AreaChartComponent, BarChartComponent, BreakdownSectionComponent, BusinessAnalysisModalComponent, BusinessProfileSearchService, ChartCardComponent, ChartContainerComponent, ChartThemeService, CircularProgressComponent, CompetitivePositioningSummaryComponent, CompetitorAnalysisCardComponent, ConfettiService, ConfidenceLevelCardComponent, ContentGenerationProgressComponent, ContentGenerationProgressWithConfettiComponent, CrossDashboardRelationshipsService, DashboardHeaderComponent, DataLoaderService, DisplayModeEnum, FloatingBackButtonComponent, FloatingTocComponent, FocusAreaDetailCardComponent, FocusAreaExecutiveSummaryComponent, FocusAreaQuestionComponent, FocusAreaStatusCardComponent, FocusAreaToolsModalComponent, FunnelOrderService, GoalActionStateEnum, GoalActionStateService, GradeBadgeComponent, HeaderScrollService, HierarchyDisplayComponent, HorizontalBarComponent, IconService, IndeterminateSpinnerComponent, InsightCardComponent, JourneyProgressIndicatorComponent, JourneyStepIdEnum, LineChartComponent, MetricCardComponent, MetricExecutiveSummaryComponent, MetricFormatterService, MetricListItemComponent, MetricReportModalComponent, MetricWelcomeBannerComponent, MobileBottomNavComponent, MobileFABComponent, ModalComponent, ModalService, NapkinVisualPlaceholderComponent, NavigationStateService, OpportunityHighlightBannerComponent, OverallAssessmentComponent, PacingStatusBadgeComponent, PieChartComponent, ProfileItemCardComponent, ProfileSectionComponent, ProfileSubsectionComponent, RelatedContentSidebarComponent, RevenueCalculatorService, RevenueCalculatorWelcomeBannerComponent, ReviewButtonComponent, ScrollDepthService, ScrollProgressBarComponent, SearchButtonComponent, SearchModalComponent, SectionDividerComponent, SectionNavigationComponent, ShadowElevationDirective, ShopPlatformEnum, ShopProfileCategoryListComponent, ShopProfileQuestionAnswerComponent, ShopProfileQuestionCardComponent, ShopProfileQuestionsModalComponent, ShopProfileStatusCardComponent, ShopProfileStickyFooterComponent, ShopProfileViewToggleComponent, ShopWelcomeBannerComponent, SkeletonBarComponent, SkeletonCardBaseComponent, SkeletonCircleComponent, SkeletonCompetitorCardComponent, SkeletonCustomerSegmentCardComponent, SkeletonFocusAreaCardComponent, SkeletonGenericCardComponent, SkeletonLoaderComponent, SkeletonPriceTierCardComponent, SkeletonProductCategoryCardComponent, SkeletonRegionCardComponent, SkeletonSeasonCardComponent, StickySubscriptionContinueButtonComponent, SubscriptionValuePropositionCardComponent, SymphiqBusinessAnalysisDashboardComponent, SymphiqConnectGaDashboardComponent, SymphiqCreateAccountDashboardComponent, SymphiqFunnelAnalysisDashboardComponent, SymphiqFunnelAnalysisPreviewComponent, SymphiqIconComponent, SymphiqProfileAnalysisFocusAreaDashboardComponent, SymphiqProfileAnalysisMetricDashboardComponent, SymphiqProfileAnalysisUnifiedDashboardComponent, SymphiqProfileFocusAreaDashboardComponent, SymphiqProfileFocusAreasAnalysesDashboardComponent, SymphiqProfileMetricDashboardComponent, SymphiqProfileMetricsAnalysesDashboardComponent, SymphiqProfileShopAnalysisDashboardComponent, SymphiqRevenueCalculatorDashboardComponent, SymphiqWelcomeDashboardComponent, TargetChangeBadgeComponent, TooltipContainerComponent, TooltipDataService, TooltipDirective, TooltipService, UserAvatarComponent, UserDisplayComponent, ViewModeService, ViewModeSwitcherModalComponent, ViewportAnimationDirective, VisualizationContainerComponent, calculateFunnelRatios, calculateMetricTargetsFromRevenue, calculateMetricTargetsFromRevenueReverse, calculateRelatedMetricRatios, generateTargetsFromCalculations, getBadgeLabelClasses, getButtonClasses, getCategoryBadgeClasses, getCategoryColor, getCompetitiveBadgeClasses, getContainerClasses, getFooterClasses, getFunnelStageMetrics, getGradeBadgeClasses, getHeaderClasses, getInsightsBadgeClasses, getInsightsCardClasses, getMetricLabelClasses, getMetricMiniCardClasses, getMetricValueClasses, getNarrativeTextClasses, getRevenueCardClasses, getRevenueIconClasses, getStatusBadgeClasses, getStatusDotClasses, getStatusIconClasses, getStatusSummaryClasses, getSubtitleClasses, getTitleClasses, getTrendClasses, getTrendIconClasses, getTrendValueClasses, groupMetricsByFunnelStage, isLightMode, validateRevenueTarget };
114518
115788
  //# sourceMappingURL=symphiq-components.mjs.map