@eric-emg/symphiq-components 1.3.13 → 1.3.16

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.
@@ -25300,6 +25300,36 @@ class JourneyProgressIndicatorComponent {
25300
25300
  }], () => [], { viewMode: [{ type: i0.Input, args: [{ isSignal: true, alias: "viewMode", required: false }] }], currentStepId: [{ type: i0.Input, args: [{ isSignal: true, alias: "currentStepId", required: false }] }], showNextStepAction: [{ type: i0.Input, args: [{ isSignal: true, alias: "showNextStepAction", required: false }] }], forDemo: [{ type: i0.Input, args: [{ isSignal: true, alias: "forDemo", required: false }] }], maxAccessibleStepId: [{ type: i0.Input, args: [{ isSignal: true, alias: "maxAccessibleStepId", required: false }] }], nextStepClick: [{ type: i0.Output, args: ["nextStepClick"] }], stepClick: [{ type: i0.Output, args: ["stepClick"] }] }); })();
25301
25301
  (() => { (typeof ngDevMode === "undefined" || ngDevMode) && i0.ɵsetClassDebugInfo(JourneyProgressIndicatorComponent, { className: "JourneyProgressIndicatorComponent", filePath: "lib/components/business-analysis-dashboard/journey-progress-indicator.component.ts", lineNumber: 370 }); })();
25302
25302
 
25303
+ function ConfidenceLevelCardComponent_Conditional_26_Template(rf, ctx) { if (rf & 1) {
25304
+ i0.ɵɵelement(0, "div", 24);
25305
+ } if (rf & 2) {
25306
+ const ctx_r0 = i0.ɵɵnextContext();
25307
+ i0.ɵɵstyleProp("width", ctx_r0.confidenceData().potentialPercentage, "%");
25308
+ i0.ɵɵproperty("ngClass", ctx_r0.potentialProgressBarClasses());
25309
+ } }
25310
+ function ConfidenceLevelCardComponent_Conditional_30_Template(rf, ctx) { if (rf & 1) {
25311
+ i0.ɵɵelementStart(0, "div", 23);
25312
+ i0.ɵɵnamespaceSVG();
25313
+ i0.ɵɵelementStart(1, "svg", 25);
25314
+ i0.ɵɵelement(2, "path", 26);
25315
+ i0.ɵɵelementEnd();
25316
+ i0.ɵɵnamespaceHTML();
25317
+ i0.ɵɵelementStart(3, "span", 27);
25318
+ i0.ɵɵtext(4);
25319
+ i0.ɵɵelementEnd();
25320
+ i0.ɵɵelementStart(5, "span", 28);
25321
+ i0.ɵɵtext(6);
25322
+ i0.ɵɵelementEnd()();
25323
+ } if (rf & 2) {
25324
+ const ctx_r0 = i0.ɵɵnextContext();
25325
+ i0.ɵɵproperty("ngClass", ctx_r0.nextStepCalloutClasses());
25326
+ i0.ɵɵadvance(4);
25327
+ i0.ɵɵtextInterpolate(ctx_r0.confidenceData().nextStepAction);
25328
+ i0.ɵɵadvance();
25329
+ i0.ɵɵproperty("ngClass", ctx_r0.nextStepBadgeClasses());
25330
+ i0.ɵɵadvance();
25331
+ i0.ɵɵtextInterpolate2(" \u2192 ", ctx_r0.confidenceData().potentialGrade, " (", ctx_r0.confidenceData().potentialPercentage, "%) ");
25332
+ } }
25303
25333
  class ConfidenceLevelCardComponent {
25304
25334
  constructor() {
25305
25335
  this.viewMode = input(ViewModeEnum.LIGHT, ...(ngDevMode ? [{ debugName: "viewMode" }] : []));
@@ -25307,6 +25337,7 @@ class ConfidenceLevelCardComponent {
25307
25337
  this.focusAreaDetails = input(...(ngDevMode ? [undefined, { debugName: "focusAreaDetails" }] : []));
25308
25338
  this.currentFocusAreaDomain = input(...(ngDevMode ? [undefined, { debugName: "currentFocusAreaDomain" }] : []));
25309
25339
  this.currentMetric = input(...(ngDevMode ? [undefined, { debugName: "currentMetric" }] : []));
25340
+ this.targets = input(...(ngDevMode ? [undefined, { debugName: "targets" }] : []));
25310
25341
  this.elementRef = inject(ElementRef);
25311
25342
  this.hasAnimated = signal(false, ...(ngDevMode ? [{ debugName: "hasAnimated" }] : []));
25312
25343
  this.animatedPercentage = signal(0, ...(ngDevMode ? [{ debugName: "animatedPercentage" }] : []));
@@ -25320,6 +25351,9 @@ class ConfidenceLevelCardComponent {
25320
25351
  'welcome': {
25321
25352
  grade: 'F',
25322
25353
  percentage: 0,
25354
+ potentialGrade: 'D',
25355
+ potentialPercentage: 25,
25356
+ nextStepAction: 'Complete business analysis',
25323
25357
  qualitativeStatus: 'No Context Yet',
25324
25358
  quantitativeStatus: 'No Data Connected',
25325
25359
  description: 'Welcome to your journey! This is your starting point. As you progress through each onboarding step, Symphiq will learn about your business, operations, and goals. Your confidence level will grow with each step, enabling increasingly accurate and personalized recommendations.'
@@ -25327,6 +25361,9 @@ class ConfidenceLevelCardComponent {
25327
25361
  'business-analysis': {
25328
25362
  grade: 'D',
25329
25363
  percentage: 25,
25364
+ potentialGrade: 'D+',
25365
+ potentialPercentage: 30,
25366
+ nextStepAction: 'Connect GA4',
25330
25367
  qualitativeStatus: 'Business Context',
25331
25368
  quantitativeStatus: 'No Data Connected',
25332
25369
  description: 'Initial context only. Symphiq has preliminary business insights from public information. Connecting your analytics and completing profile questions will unlock dramatically more accurate recommendations.'
@@ -25334,20 +25371,29 @@ class ConfidenceLevelCardComponent {
25334
25371
  'connect-ga4': {
25335
25372
  grade: 'D+',
25336
25373
  percentage: 30,
25374
+ potentialGrade: 'C-',
25375
+ potentialPercentage: 35,
25376
+ nextStepAction: 'Set revenue targets',
25337
25377
  qualitativeStatus: 'Business Context',
25338
25378
  quantitativeStatus: 'GA4 Connected',
25339
25379
  description: 'Basic context established. Symphiq has business insights and performance data connected. Setting targets and completing profile analysis will enhance recommendation precision.'
25340
25380
  },
25341
25381
  'revenue-calculator': {
25342
- grade: 'C-',
25343
- percentage: 35,
25344
- qualitativeStatus: 'Business Context',
25345
- quantitativeStatus: 'Data + Targets Set',
25346
- description: 'Foundation in place. Symphiq understands your business and has performance data with targets. Analyzing your funnel and completing operational profiles will improve recommendation accuracy significantly.'
25382
+ grade: this.getRevenueCalculatorGrade(),
25383
+ percentage: this.calculateRevenueCalculatorPercentage(),
25384
+ potentialGrade: this.hasTargetsSet() ? undefined : 'C',
25385
+ potentialPercentage: this.hasTargetsSet() ? undefined : 45,
25386
+ nextStepAction: this.hasTargetsSet() ? undefined : 'Set revenue targets',
25387
+ qualitativeStatus: this.hasTargetsSet() ? 'Business + Targets' : 'Business Context',
25388
+ quantitativeStatus: this.hasTargetsSet() ? 'Data + Targets Set' : 'GA4 Connected',
25389
+ description: this.getRevenueCalculatorDescription()
25347
25390
  },
25348
25391
  'funnel-analysis': {
25349
25392
  grade: 'C',
25350
25393
  percentage: 45,
25394
+ potentialGrade: 'C+',
25395
+ potentialPercentage: 55,
25396
+ nextStepAction: 'Complete shop analysis',
25351
25397
  qualitativeStatus: 'Business + Funnel',
25352
25398
  quantitativeStatus: 'Full Analytics',
25353
25399
  description: 'Good context achieved. Symphiq has strategic insights and detailed funnel analysis. Adding shop and marketing context will unlock more operationally-aligned recommendations.'
@@ -25355,6 +25401,9 @@ class ConfidenceLevelCardComponent {
25355
25401
  'shop-analysis': {
25356
25402
  grade: 'C+',
25357
25403
  percentage: 55,
25404
+ potentialGrade: 'B-',
25405
+ potentialPercentage: 65,
25406
+ nextStepAction: 'Analyze focus areas',
25358
25407
  qualitativeStatus: 'Business + Shop',
25359
25408
  quantitativeStatus: 'Full Analytics',
25360
25409
  description: 'Solid foundation established. Symphiq understands your business strategy, funnel performance, and shop operations. Focus area and metric context will maximize recommendation precision.'
@@ -25362,6 +25411,9 @@ class ConfidenceLevelCardComponent {
25362
25411
  'focus-area-analysis': {
25363
25412
  grade: 'B-',
25364
25413
  percentage: this.calculateFocusAreaPercentage(),
25414
+ potentialGrade: 'B',
25415
+ potentialPercentage: 75,
25416
+ nextStepAction: 'Complete all focus areas',
25365
25417
  qualitativeStatus: 'Business + Shop + Focus Area',
25366
25418
  quantitativeStatus: 'Full Analytics',
25367
25419
  description: 'Enhanced context achieved. Symphiq has comprehensive business, operational, and domain-specific marketing knowledge with performance data. Additional focus areas and metric analysis will further improve recommendation precision.'
@@ -25369,6 +25421,9 @@ class ConfidenceLevelCardComponent {
25369
25421
  'focus-areas': {
25370
25422
  grade: 'B',
25371
25423
  percentage: 75,
25424
+ potentialGrade: 'A',
25425
+ potentialPercentage: 100,
25426
+ nextStepAction: 'Complete metric analysis',
25372
25427
  qualitativeStatus: 'Business + Shop + Marketing',
25373
25428
  quantitativeStatus: 'Full Analytics',
25374
25429
  description: 'Strong context in place. Symphiq has comprehensive business, operational, and marketing knowledge across multiple domains with performance data. Completing metric analysis will achieve maximum confidence.'
@@ -25376,6 +25431,9 @@ class ConfidenceLevelCardComponent {
25376
25431
  'metric-analysis': {
25377
25432
  grade: this.getMetricGrade(),
25378
25433
  percentage: this.calculateMetricPercentage(),
25434
+ potentialGrade: this.getMetricGrade() === 'A' ? undefined : 'A',
25435
+ potentialPercentage: this.calculateMetricPercentage() >= 100 ? undefined : 100,
25436
+ nextStepAction: this.getMetricGrade() === 'A' ? undefined : 'Complete all metrics',
25379
25437
  qualitativeStatus: this.getMetricQualitativeStatus(),
25380
25438
  quantitativeStatus: 'Full Analytics',
25381
25439
  description: this.getMetricDescription()
@@ -25568,6 +25626,57 @@ class ConfidenceLevelCardComponent {
25568
25626
  }
25569
25627
  return 'bg-gradient-to-r from-red-500 to-rose-500';
25570
25628
  }, ...(ngDevMode ? [{ debugName: "progressGlowClasses" }] : []));
25629
+ this.potentialProgressBarClasses = computed(() => {
25630
+ const potentialGrade = this.confidenceData().potentialGrade;
25631
+ const isDark = !this.isLightMode();
25632
+ const baseClasses = 'opacity-40';
25633
+ if (potentialGrade === 'A') {
25634
+ return isDark
25635
+ ? `${baseClasses} bg-gradient-to-r from-emerald-500/50 via-teal-500/50 to-emerald-600/50`
25636
+ : `${baseClasses} bg-gradient-to-r from-emerald-400/50 via-teal-400/50 to-emerald-500/50`;
25637
+ }
25638
+ else if (potentialGrade?.startsWith('B')) {
25639
+ return isDark
25640
+ ? `${baseClasses} bg-gradient-to-r from-blue-500/50 via-cyan-500/50 to-blue-600/50`
25641
+ : `${baseClasses} bg-gradient-to-r from-blue-400/50 via-cyan-400/50 to-blue-500/50`;
25642
+ }
25643
+ else if (potentialGrade?.startsWith('C')) {
25644
+ return isDark
25645
+ ? `${baseClasses} bg-gradient-to-r from-orange-500/50 via-amber-500/50 to-orange-600/50`
25646
+ : `${baseClasses} bg-gradient-to-r from-orange-400/50 via-amber-400/50 to-orange-500/50`;
25647
+ }
25648
+ return isDark
25649
+ ? `${baseClasses} bg-gradient-to-r from-red-500/50 via-rose-500/50 to-red-600/50`
25650
+ : `${baseClasses} bg-gradient-to-r from-red-400/50 via-rose-400/50 to-red-500/50`;
25651
+ }, ...(ngDevMode ? [{ debugName: "potentialProgressBarClasses" }] : []));
25652
+ this.nextStepCalloutClasses = computed(() => {
25653
+ const isDark = !this.isLightMode();
25654
+ return isDark
25655
+ ? 'bg-slate-700/50 text-slate-300 border border-slate-600/50'
25656
+ : 'bg-slate-100 text-slate-700 border border-slate-200';
25657
+ }, ...(ngDevMode ? [{ debugName: "nextStepCalloutClasses" }] : []));
25658
+ this.nextStepBadgeClasses = computed(() => {
25659
+ const potentialGrade = this.confidenceData().potentialGrade;
25660
+ const isDark = !this.isLightMode();
25661
+ if (potentialGrade === 'A') {
25662
+ return isDark
25663
+ ? 'bg-emerald-500/20 text-emerald-400'
25664
+ : 'bg-emerald-100 text-emerald-700';
25665
+ }
25666
+ else if (potentialGrade?.startsWith('B')) {
25667
+ return isDark
25668
+ ? 'bg-blue-500/20 text-blue-400'
25669
+ : 'bg-blue-100 text-blue-700';
25670
+ }
25671
+ else if (potentialGrade?.startsWith('C')) {
25672
+ return isDark
25673
+ ? 'bg-orange-500/20 text-orange-400'
25674
+ : 'bg-orange-100 text-orange-700';
25675
+ }
25676
+ return isDark
25677
+ ? 'bg-red-500/20 text-red-400'
25678
+ : 'bg-red-100 text-red-700';
25679
+ }, ...(ngDevMode ? [{ debugName: "nextStepBadgeClasses" }] : []));
25571
25680
  effect(() => {
25572
25681
  const currentData = this.confidenceData();
25573
25682
  const prevPercentage = this.previousPercentage();
@@ -25669,6 +25778,30 @@ class ConfidenceLevelCardComponent {
25669
25778
  this.isGradeChanging.set(false);
25670
25779
  }, 800);
25671
25780
  }
25781
+ hasTargetsSet() {
25782
+ const targets = this.targets();
25783
+ return targets !== undefined && targets.length > 0;
25784
+ }
25785
+ calculateRevenueCalculatorPercentage() {
25786
+ const BASE_PERCENTAGE = 35;
25787
+ const WITH_TARGETS_PERCENTAGE = 45;
25788
+ if (this.hasTargetsSet()) {
25789
+ return WITH_TARGETS_PERCENTAGE;
25790
+ }
25791
+ return BASE_PERCENTAGE;
25792
+ }
25793
+ getRevenueCalculatorGrade() {
25794
+ if (this.hasTargetsSet()) {
25795
+ return 'C';
25796
+ }
25797
+ return 'C-';
25798
+ }
25799
+ getRevenueCalculatorDescription() {
25800
+ if (this.hasTargetsSet()) {
25801
+ return 'Targets established! Symphiq understands your business goals with performance data and revenue targets set. Analyzing your funnel and completing operational profiles will further improve recommendation accuracy.';
25802
+ }
25803
+ return 'Foundation in place. Symphiq understands your business and has performance data connected. Set your revenue targets to enhance recommendation precision and enable goal-driven insights.';
25804
+ }
25672
25805
  calculateFocusAreaPercentage() {
25673
25806
  const BASE_PERCENTAGE = 55;
25674
25807
  const MAX_PERCENTAGE = 75;
@@ -25769,7 +25902,7 @@ class ConfidenceLevelCardComponent {
25769
25902
  return `Strong context building. Symphiq has comprehensive business, operational, and marketing knowledge with detailed metric analysis (${completedCount}/${totalCount} metrics complete). Continue analyzing remaining metrics to achieve maximum confidence.`;
25770
25903
  }
25771
25904
  static { this.ɵfac = function ConfidenceLevelCardComponent_Factory(__ngFactoryType__) { return new (__ngFactoryType__ || ConfidenceLevelCardComponent)(); }; }
25772
- static { this.ɵcmp = /*@__PURE__*/ i0.ɵɵdefineComponent({ type: ConfidenceLevelCardComponent, selectors: [["symphiq-confidence-level-card"]], inputs: { viewMode: [1, "viewMode"], currentStepId: [1, "currentStepId"], focusAreaDetails: [1, "focusAreaDetails"], currentFocusAreaDomain: [1, "currentFocusAreaDomain"], currentMetric: [1, "currentMetric"] }, decls: 29, vars: 31, consts: [[1, "rounded-2xl", "p-6", "transition-all", "duration-500", "hover:scale-[1.02]", "relative", "overflow-hidden", "group", 3, "ngClass"], [1, "absolute", "inset-0", "opacity-30", "transition-opacity", "duration-500", "group-hover:opacity-50", 3, "ngClass"], [1, "relative", "z-10"], [1, "flex", "items-start", "justify-between", "gap-4", "mb-4"], [1, "flex-1", "min-w-0"], [1, "text-lg", "font-bold", "mb-1", 3, "ngClass"], [1, "text-xs", "font-medium", 3, "ngClass"], [1, "relative", "flex-shrink-0", "transition-all", "duration-300", "hover:scale-110", 3, "ngClass"], [1, "absolute", "inset-0", "rounded-xl", "blur-xl", "opacity-60", "transition-all", "duration-500", "group-hover:opacity-80", 3, "ngClass"], [1, "relative", "px-5", "py-3", "rounded-xl", "text-center", "backdrop-blur-sm", "transition-all", "duration-500", 3, "ngClass"], [1, "text-[10px]", "font-bold", "uppercase", "tracking-wider", "mb-0.5", "transition-colors", "duration-500", 3, "ngClass"], [1, "text-3xl", "font-bold", "transition-all", "duration-500", 3, "ngClass"], [1, "text-sm", "leading-relaxed", "mb-4", 3, "ngClass"], [1, "space-y-2"], [1, "flex", "items-center", "justify-between"], [1, "text-xs", "font-semibold", 3, "ngClass"], [1, "text-xs", "font-bold", 3, "ngClass"], [1, "relative"], [1, "h-3", "rounded-full", "overflow-hidden", "relative", 3, "ngClass"], [1, "h-full", "transition-all", "duration-1000", "ease-out", "relative", 3, "ngClass"], [1, "absolute", "inset-0", "opacity-30", 3, "ngClass"], [1, "absolute", "top-0", "left-0", "h-3", "rounded-full", "blur-md", "opacity-40", "transition-all", "duration-1000", "ease-out", "-z-10", 3, "ngClass"]], template: function ConfidenceLevelCardComponent_Template(rf, ctx) { if (rf & 1) {
25905
+ static { this.ɵcmp = /*@__PURE__*/ i0.ɵɵdefineComponent({ type: ConfidenceLevelCardComponent, selectors: [["symphiq-confidence-level-card"]], inputs: { viewMode: [1, "viewMode"], currentStepId: [1, "currentStepId"], focusAreaDetails: [1, "focusAreaDetails"], currentFocusAreaDomain: [1, "currentFocusAreaDomain"], currentMetric: [1, "currentMetric"], targets: [1, "targets"] }, decls: 31, vars: 33, consts: [[1, "rounded-2xl", "p-6", "transition-all", "duration-500", "hover:scale-[1.02]", "relative", "overflow-hidden", "group", 3, "ngClass"], [1, "absolute", "inset-0", "opacity-30", "transition-opacity", "duration-500", "group-hover:opacity-50", 3, "ngClass"], [1, "relative", "z-10"], [1, "flex", "items-start", "justify-between", "gap-4", "mb-4"], [1, "flex-1", "min-w-0"], [1, "text-lg", "font-bold", "mb-1", 3, "ngClass"], [1, "text-xs", "font-medium", 3, "ngClass"], [1, "relative", "flex-shrink-0", "transition-all", "duration-300", "hover:scale-110", 3, "ngClass"], [1, "absolute", "inset-0", "rounded-xl", "blur-xl", "opacity-60", "transition-all", "duration-500", "group-hover:opacity-80", 3, "ngClass"], [1, "relative", "px-5", "py-3", "rounded-xl", "text-center", "backdrop-blur-sm", "transition-all", "duration-500", 3, "ngClass"], [1, "text-[10px]", "font-bold", "uppercase", "tracking-wider", "mb-0.5", "transition-colors", "duration-500", 3, "ngClass"], [1, "text-3xl", "font-bold", "transition-all", "duration-500", 3, "ngClass"], [1, "text-sm", "leading-relaxed", "mb-4", 3, "ngClass"], [1, "space-y-2"], [1, "flex", "items-center", "justify-between"], [1, "text-xs", "font-semibold", 3, "ngClass"], [1, "text-xs", "font-bold", 3, "ngClass"], [1, "relative"], [1, "h-3", "rounded-full", "overflow-hidden", "relative", 3, "ngClass"], [1, "absolute", "top-0", "left-0", "h-full", "rounded-full", "transition-all", "duration-1000", "ease-out", 3, "width", "ngClass"], [1, "h-full", "transition-all", "duration-1000", "ease-out", "relative", 3, "ngClass"], [1, "absolute", "inset-0", "opacity-30", 3, "ngClass"], [1, "absolute", "top-0", "left-0", "h-3", "rounded-full", "blur-md", "opacity-40", "transition-all", "duration-1000", "ease-out", "-z-10", 3, "ngClass"], [1, "mt-3", "flex", "items-center", "gap-2", "text-xs", "font-medium", "p-2", "rounded-lg", 3, "ngClass"], [1, "absolute", "top-0", "left-0", "h-full", "rounded-full", "transition-all", "duration-1000", "ease-out", 3, "ngClass"], ["fill", "none", "stroke", "currentColor", "viewBox", "0 0 24 24", 1, "w-4", "h-4", "flex-shrink-0"], ["stroke-linecap", "round", "stroke-linejoin", "round", "stroke-width", "2", "d", "M13 7l5 5m0 0l-5 5m5-5H6"], [1, "flex-1"], [1, "font-bold", "px-2", "py-0.5", "rounded", 3, "ngClass"]], template: function ConfidenceLevelCardComponent_Template(rf, ctx) { if (rf & 1) {
25773
25906
  i0.ɵɵelementStart(0, "div", 0);
25774
25907
  i0.ɵɵelement(1, "div", 1);
25775
25908
  i0.ɵɵelementStart(2, "div", 2)(3, "div", 3)(4, "div", 4)(5, "h3", 5);
@@ -25795,11 +25928,15 @@ class ConfidenceLevelCardComponent {
25795
25928
  i0.ɵɵelementStart(22, "span", 16);
25796
25929
  i0.ɵɵtext(23);
25797
25930
  i0.ɵɵelementEnd()();
25798
- i0.ɵɵelementStart(24, "div", 17)(25, "div", 18)(26, "div", 19);
25799
- i0.ɵɵelement(27, "div", 20);
25800
- i0.ɵɵelementEnd()();
25931
+ i0.ɵɵelementStart(24, "div", 17)(25, "div", 18);
25932
+ i0.ɵɵconditionalCreate(26, ConfidenceLevelCardComponent_Conditional_26_Template, 1, 3, "div", 19);
25933
+ i0.ɵɵelementStart(27, "div", 20);
25801
25934
  i0.ɵɵelement(28, "div", 21);
25802
- i0.ɵɵelementEnd()()()();
25935
+ i0.ɵɵelementEnd()();
25936
+ i0.ɵɵelement(29, "div", 22);
25937
+ i0.ɵɵelementEnd();
25938
+ i0.ɵɵconditionalCreate(30, ConfidenceLevelCardComponent_Conditional_30_Template, 7, 5, "div", 23);
25939
+ i0.ɵɵelementEnd()()();
25803
25940
  } if (rf & 2) {
25804
25941
  i0.ɵɵclassProp("confidence-card-animate", ctx.hasAnimated());
25805
25942
  i0.ɵɵproperty("ngClass", ctx.cardContainerClasses());
@@ -25837,6 +25974,8 @@ class ConfidenceLevelCardComponent {
25837
25974
  i0.ɵɵadvance(2);
25838
25975
  i0.ɵɵproperty("ngClass", ctx.progressTrackClasses());
25839
25976
  i0.ɵɵadvance();
25977
+ i0.ɵɵconditional(ctx.confidenceData().potentialPercentage ? 26 : -1);
25978
+ i0.ɵɵadvance();
25840
25979
  i0.ɵɵstyleProp("width", ctx.animatedPercentage(), "%");
25841
25980
  i0.ɵɵproperty("ngClass", ctx.progressBarClasses());
25842
25981
  i0.ɵɵadvance();
@@ -25844,86 +25983,109 @@ class ConfidenceLevelCardComponent {
25844
25983
  i0.ɵɵadvance();
25845
25984
  i0.ɵɵstyleProp("width", ctx.animatedPercentage(), "%");
25846
25985
  i0.ɵɵproperty("ngClass", ctx.progressGlowClasses());
25986
+ i0.ɵɵadvance();
25987
+ i0.ɵɵconditional(ctx.confidenceData().nextStepAction && ctx.confidenceData().potentialGrade ? 30 : -1);
25847
25988
  } }, dependencies: [CommonModule, i1$1.NgClass], styles: ["@keyframes _ngcontent-%COMP%_confidence-fade-in-up{0%{opacity:0;transform:translateY(20px)}to{opacity:1;transform:translateY(0)}}@keyframes _ngcontent-%COMP%_pulse-glow{0%,to{opacity:1;transform:scale(1)}50%{opacity:.8;transform:scale(1.05)}}@keyframes _ngcontent-%COMP%_shimmer{0%{background-position:-200% center}to{background-position:200% center}}@keyframes _ngcontent-%COMP%_grade-change{0%{transform:scale(1);opacity:1}50%{transform:scale(1.1);opacity:.9}to{transform:scale(1);opacity:1}}.confidence-card-animate[_ngcontent-%COMP%]{animation:_ngcontent-%COMP%_confidence-fade-in-up .6s ease-out forwards}.animate-pulse-glow[_ngcontent-%COMP%]{animation:_ngcontent-%COMP%_pulse-glow 2s ease-in-out infinite}.grade-change-animate[_ngcontent-%COMP%]{animation:_ngcontent-%COMP%_grade-change .8s ease-out}@media(prefers-reduced-motion:reduce){.confidence-card-animate[_ngcontent-%COMP%], .animate-pulse-glow[_ngcontent-%COMP%], .grade-change-animate[_ngcontent-%COMP%]{animation:none;opacity:1}}"], changeDetection: 0 }); }
25848
25989
  }
25849
25990
  (() => { (typeof ngDevMode === "undefined" || ngDevMode) && i0.ɵsetClassMetadata(ConfidenceLevelCardComponent, [{
25850
25991
  type: Component,
25851
- args: [{ selector: 'symphiq-confidence-level-card', standalone: true, imports: [CommonModule], changeDetection: ChangeDetectionStrategy.OnPush, template: `
25852
- <div
25853
- [ngClass]="cardContainerClasses()"
25854
- class="rounded-2xl p-6 transition-all duration-500 hover:scale-[1.02] relative overflow-hidden group"
25855
- [class.confidence-card-animate]="hasAnimated()">
25856
-
25857
- <!-- Animated background gradient overlay -->
25858
- <div [ngClass]="backgroundOverlayClasses()" class="absolute inset-0 opacity-30 transition-opacity duration-500 group-hover:opacity-50"></div>
25859
-
25860
- <!-- Content -->
25861
- <div class="relative z-10">
25862
- <!-- Header with Title and Grade Badge -->
25863
- <div class="flex items-start justify-between gap-4 mb-4">
25864
- <div class="flex-1 min-w-0">
25865
- <h3 [ngClass]="titleClasses()" class="text-lg font-bold mb-1">
25866
- Confidence Level
25867
- </h3>
25868
- <p [ngClass]="subtitleClasses()" class="text-xs font-medium">
25869
- {{ confidenceData().qualitativeStatus }} + {{ confidenceData().quantitativeStatus }}
25870
- </p>
25871
- </div>
25872
-
25873
- <!-- Grade Badge with Glow -->
25874
- <div
25875
- [ngClass]="gradeBadgeContainerClasses()"
25876
- class="relative flex-shrink-0 transition-all duration-300 hover:scale-110"
25877
- [class.animate-pulse-glow]="shouldPulse()"
25878
- [class.grade-change-animate]="isGradeChanging()">
25879
- <!-- Glow effect -->
25880
- <div [ngClass]="glowEffectClasses()" class="absolute inset-0 rounded-xl blur-xl opacity-60 transition-all duration-500 group-hover:opacity-80"></div>
25881
- <!-- Badge content -->
25882
- <div [ngClass]="gradeBadgeClasses()" class="relative px-5 py-3 rounded-xl text-center backdrop-blur-sm transition-all duration-500">
25883
- <div [ngClass]="gradeLabelClasses()" class="text-[10px] font-bold uppercase tracking-wider mb-0.5 transition-colors duration-500">Grade</div>
25884
- <div [ngClass]="gradeValueClasses()" class="text-3xl font-bold transition-all duration-500">{{ confidenceData().grade }}</div>
25885
- </div>
25886
- </div>
25887
- </div>
25888
-
25889
- <!-- Description -->
25890
- <p [ngClass]="descriptionClasses()" class="text-sm leading-relaxed mb-4">
25891
- {{ confidenceData().description }}
25892
- </p>
25893
-
25894
- <!-- Progress Bar -->
25895
- <div class="space-y-2">
25896
- <div class="flex items-center justify-between">
25897
- <span [ngClass]="progressLabelClasses()" class="text-xs font-semibold">Context Completeness</span>
25898
- <span [ngClass]="progressValueClasses()" class="text-xs font-bold">{{ animatedPercentage() }}%</span>
25899
- </div>
25900
-
25901
- <!-- Progress Track -->
25902
- <div class="relative">
25903
- <!-- Background track -->
25904
- <div [ngClass]="progressTrackClasses()" class="h-3 rounded-full overflow-hidden relative">
25905
- <!-- Progress bar with shimmer -->
25906
- <div
25907
- [style.width.%]="animatedPercentage()"
25908
- [ngClass]="progressBarClasses()"
25909
- class="h-full transition-all duration-1000 ease-out relative">
25910
- <!-- Shimmer effect -->
25911
- <div [ngClass]="shimmerClasses()" class="absolute inset-0 opacity-30"></div>
25912
- </div>
25913
- </div>
25914
- <!-- Glow underneath -->
25915
- <div
25916
- [style.width.%]="animatedPercentage()"
25917
- [ngClass]="progressGlowClasses()"
25918
- class="absolute top-0 left-0 h-3 rounded-full blur-md opacity-40 transition-all duration-1000 ease-out -z-10">
25919
- </div>
25920
- </div>
25921
- </div>
25922
- </div>
25923
- </div>
25992
+ args: [{ selector: 'symphiq-confidence-level-card', standalone: true, imports: [CommonModule], changeDetection: ChangeDetectionStrategy.OnPush, template: `
25993
+ <div
25994
+ [ngClass]="cardContainerClasses()"
25995
+ class="rounded-2xl p-6 transition-all duration-500 hover:scale-[1.02] relative overflow-hidden group"
25996
+ [class.confidence-card-animate]="hasAnimated()">
25997
+
25998
+ <!-- Animated background gradient overlay -->
25999
+ <div [ngClass]="backgroundOverlayClasses()" class="absolute inset-0 opacity-30 transition-opacity duration-500 group-hover:opacity-50"></div>
26000
+
26001
+ <!-- Content -->
26002
+ <div class="relative z-10">
26003
+ <!-- Header with Title and Grade Badge -->
26004
+ <div class="flex items-start justify-between gap-4 mb-4">
26005
+ <div class="flex-1 min-w-0">
26006
+ <h3 [ngClass]="titleClasses()" class="text-lg font-bold mb-1">
26007
+ Confidence Level
26008
+ </h3>
26009
+ <p [ngClass]="subtitleClasses()" class="text-xs font-medium">
26010
+ {{ confidenceData().qualitativeStatus }} + {{ confidenceData().quantitativeStatus }}
26011
+ </p>
26012
+ </div>
26013
+
26014
+ <!-- Grade Badge with Glow -->
26015
+ <div
26016
+ [ngClass]="gradeBadgeContainerClasses()"
26017
+ class="relative flex-shrink-0 transition-all duration-300 hover:scale-110"
26018
+ [class.animate-pulse-glow]="shouldPulse()"
26019
+ [class.grade-change-animate]="isGradeChanging()">
26020
+ <!-- Glow effect -->
26021
+ <div [ngClass]="glowEffectClasses()" class="absolute inset-0 rounded-xl blur-xl opacity-60 transition-all duration-500 group-hover:opacity-80"></div>
26022
+ <!-- Badge content -->
26023
+ <div [ngClass]="gradeBadgeClasses()" class="relative px-5 py-3 rounded-xl text-center backdrop-blur-sm transition-all duration-500">
26024
+ <div [ngClass]="gradeLabelClasses()" class="text-[10px] font-bold uppercase tracking-wider mb-0.5 transition-colors duration-500">Grade</div>
26025
+ <div [ngClass]="gradeValueClasses()" class="text-3xl font-bold transition-all duration-500">{{ confidenceData().grade }}</div>
26026
+ </div>
26027
+ </div>
26028
+ </div>
26029
+
26030
+ <!-- Description -->
26031
+ <p [ngClass]="descriptionClasses()" class="text-sm leading-relaxed mb-4">
26032
+ {{ confidenceData().description }}
26033
+ </p>
26034
+
26035
+ <!-- Progress Bar -->
26036
+ <div class="space-y-2">
26037
+ <div class="flex items-center justify-between">
26038
+ <span [ngClass]="progressLabelClasses()" class="text-xs font-semibold">Context Completeness</span>
26039
+ <span [ngClass]="progressValueClasses()" class="text-xs font-bold">{{ animatedPercentage() }}%</span>
26040
+ </div>
26041
+
26042
+ <!-- Progress Track -->
26043
+ <div class="relative">
26044
+ <!-- Background track -->
26045
+ <div [ngClass]="progressTrackClasses()" class="h-3 rounded-full overflow-hidden relative">
26046
+ <!-- Potential progress bar (dashed/translucent) -->
26047
+ @if (confidenceData().potentialPercentage) {
26048
+ <div
26049
+ [style.width.%]="confidenceData().potentialPercentage"
26050
+ [ngClass]="potentialProgressBarClasses()"
26051
+ class="absolute top-0 left-0 h-full rounded-full transition-all duration-1000 ease-out">
26052
+ </div>
26053
+ }
26054
+ <!-- Progress bar with shimmer -->
26055
+ <div
26056
+ [style.width.%]="animatedPercentage()"
26057
+ [ngClass]="progressBarClasses()"
26058
+ class="h-full transition-all duration-1000 ease-out relative">
26059
+ <!-- Shimmer effect -->
26060
+ <div [ngClass]="shimmerClasses()" class="absolute inset-0 opacity-30"></div>
26061
+ </div>
26062
+ </div>
26063
+ <!-- Glow underneath -->
26064
+ <div
26065
+ [style.width.%]="animatedPercentage()"
26066
+ [ngClass]="progressGlowClasses()"
26067
+ class="absolute top-0 left-0 h-3 rounded-full blur-md opacity-40 transition-all duration-1000 ease-out -z-10">
26068
+ </div>
26069
+ </div>
26070
+
26071
+ <!-- Next Step Action Callout -->
26072
+ @if (confidenceData().nextStepAction && confidenceData().potentialGrade) {
26073
+ <div [ngClass]="nextStepCalloutClasses()" class="mt-3 flex items-center gap-2 text-xs font-medium p-2 rounded-lg">
26074
+ <svg class="w-4 h-4 flex-shrink-0" fill="none" stroke="currentColor" viewBox="0 0 24 24">
26075
+ <path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M13 7l5 5m0 0l-5 5m5-5H6"></path>
26076
+ </svg>
26077
+ <span class="flex-1">{{ confidenceData().nextStepAction }}</span>
26078
+ <span [ngClass]="nextStepBadgeClasses()" class="font-bold px-2 py-0.5 rounded">
26079
+ → {{ confidenceData().potentialGrade }} ({{ confidenceData().potentialPercentage }}%)
26080
+ </span>
26081
+ </div>
26082
+ }
26083
+ </div>
26084
+ </div>
26085
+ </div>
25924
26086
  `, styles: ["@keyframes confidence-fade-in-up{0%{opacity:0;transform:translateY(20px)}to{opacity:1;transform:translateY(0)}}@keyframes pulse-glow{0%,to{opacity:1;transform:scale(1)}50%{opacity:.8;transform:scale(1.05)}}@keyframes shimmer{0%{background-position:-200% center}to{background-position:200% center}}@keyframes grade-change{0%{transform:scale(1);opacity:1}50%{transform:scale(1.1);opacity:.9}to{transform:scale(1);opacity:1}}.confidence-card-animate{animation:confidence-fade-in-up .6s ease-out forwards}.animate-pulse-glow{animation:pulse-glow 2s ease-in-out infinite}.grade-change-animate{animation:grade-change .8s ease-out}@media(prefers-reduced-motion:reduce){.confidence-card-animate,.animate-pulse-glow,.grade-change-animate{animation:none;opacity:1}}\n"] }]
25925
- }], () => [], { viewMode: [{ type: i0.Input, args: [{ isSignal: true, alias: "viewMode", required: false }] }], currentStepId: [{ type: i0.Input, args: [{ isSignal: true, alias: "currentStepId", required: false }] }], focusAreaDetails: [{ type: i0.Input, args: [{ isSignal: true, alias: "focusAreaDetails", required: false }] }], currentFocusAreaDomain: [{ type: i0.Input, args: [{ isSignal: true, alias: "currentFocusAreaDomain", required: false }] }], currentMetric: [{ type: i0.Input, args: [{ isSignal: true, alias: "currentMetric", required: false }] }] }); })();
25926
- (() => { (typeof ngDevMode === "undefined" || ngDevMode) && i0.ɵsetClassDebugInfo(ConfidenceLevelCardComponent, { className: "ConfidenceLevelCardComponent", filePath: "lib/components/shared/confidence-level-card.component.ts", lineNumber: 161 }); })();
26087
+ }], () => [], { viewMode: [{ type: i0.Input, args: [{ isSignal: true, alias: "viewMode", required: false }] }], currentStepId: [{ type: i0.Input, args: [{ isSignal: true, alias: "currentStepId", required: false }] }], focusAreaDetails: [{ type: i0.Input, args: [{ isSignal: true, alias: "focusAreaDetails", required: false }] }], currentFocusAreaDomain: [{ type: i0.Input, args: [{ isSignal: true, alias: "currentFocusAreaDomain", required: false }] }], currentMetric: [{ type: i0.Input, args: [{ isSignal: true, alias: "currentMetric", required: false }] }], targets: [{ type: i0.Input, args: [{ isSignal: true, alias: "targets", required: false }] }] }); })();
26088
+ (() => { (typeof ngDevMode === "undefined" || ngDevMode) && i0.ɵsetClassDebugInfo(ConfidenceLevelCardComponent, { className: "ConfidenceLevelCardComponent", filePath: "lib/components/shared/confidence-level-card.component.ts", lineNumber: 185 }); })();
25927
26089
 
25928
26090
  function ContinueYourJourneyComponent_Conditional_2_Template(rf, ctx) { if (rf & 1) {
25929
26091
  i0.ɵɵnamespaceSVG();
@@ -47579,7 +47741,7 @@ function SymphiqFunnelAnalysisDashboardComponent_Conditional_13_Template(rf, ctx
47579
47741
  } }
47580
47742
  function SymphiqFunnelAnalysisDashboardComponent_Conditional_14_Conditional_0_Template(rf, ctx) { if (rf & 1) {
47581
47743
  const _r13 = i0.ɵɵgetCurrentView();
47582
- i0.ɵɵelementStart(0, "symphiq-journey-progress-indicator", 50);
47744
+ i0.ɵɵelementStart(0, "symphiq-journey-progress-indicator", 48);
47583
47745
  i0.ɵɵlistener("stepClick", function SymphiqFunnelAnalysisDashboardComponent_Conditional_14_Conditional_0_Template_symphiq_journey_progress_indicator_stepClick_0_listener($event) { i0.ɵɵrestoreView(_r13); const ctx_r2 = i0.ɵɵnextContext(2); return i0.ɵɵresetView(ctx_r2.stepClick.emit($event)); })("nextStepClick", function SymphiqFunnelAnalysisDashboardComponent_Conditional_14_Conditional_0_Template_symphiq_journey_progress_indicator_nextStepClick_0_listener() { i0.ɵɵrestoreView(_r13); const ctx_r2 = i0.ɵɵnextContext(2); return i0.ɵɵresetView(ctx_r2.nextStepClick.emit()); });
47584
47746
  i0.ɵɵelementEnd();
47585
47747
  } if (rf & 2) {
@@ -47588,23 +47750,18 @@ function SymphiqFunnelAnalysisDashboardComponent_Conditional_14_Conditional_0_Te
47588
47750
  } }
47589
47751
  function SymphiqFunnelAnalysisDashboardComponent_Conditional_14_Template(rf, ctx) { if (rf & 1) {
47590
47752
  i0.ɵɵconditionalCreate(0, SymphiqFunnelAnalysisDashboardComponent_Conditional_14_Conditional_0_Template, 1, 5, "symphiq-journey-progress-indicator", 44);
47591
- i0.ɵɵelementStart(1, "main", 45)(2, "div", 46)(3, "div", 47);
47592
- i0.ɵɵelement(4, "symphiq-funnel-welcome-banner", 48);
47593
- i0.ɵɵelementEnd();
47594
- i0.ɵɵelement(5, "symphiq-loading-card", 49);
47753
+ i0.ɵɵelementStart(1, "main", 45)(2, "div", 46);
47754
+ i0.ɵɵelement(3, "symphiq-loading-card", 47);
47595
47755
  i0.ɵɵelementEnd()();
47596
47756
  } if (rf & 2) {
47597
- let tmp_5_0;
47598
47757
  const ctx_r2 = i0.ɵɵnextContext();
47599
47758
  i0.ɵɵconditional(!ctx_r2.isOnboarded() ? 0 : -1);
47600
- i0.ɵɵadvance(4);
47601
- i0.ɵɵproperty("viewMode", ctx_r2.isLightMode() ? ctx_r2.ViewModeEnum.LIGHT : ctx_r2.ViewModeEnum.DARK)("isOnboarded", ctx_r2.isOnboarded())("analysisDate", (tmp_5_0 = ctx_r2.funnelAnalysis()) == null ? null : tmp_5_0.selfContentCompletedDate);
47602
- i0.ɵɵadvance();
47759
+ i0.ɵɵadvance(3);
47603
47760
  i0.ɵɵproperty("viewMode", ctx_r2.isLightMode() ? ctx_r2.ViewModeEnum.LIGHT : ctx_r2.ViewModeEnum.DARK)("backdropBlur", true);
47604
47761
  } }
47605
47762
  function SymphiqFunnelAnalysisDashboardComponent_Conditional_15_Conditional_0_Template(rf, ctx) { if (rf & 1) {
47606
47763
  const _r14 = i0.ɵɵgetCurrentView();
47607
- i0.ɵɵelementStart(0, "symphiq-journey-progress-indicator", 50);
47764
+ i0.ɵɵelementStart(0, "symphiq-journey-progress-indicator", 48);
47608
47765
  i0.ɵɵlistener("stepClick", function SymphiqFunnelAnalysisDashboardComponent_Conditional_15_Conditional_0_Template_symphiq_journey_progress_indicator_stepClick_0_listener($event) { i0.ɵɵrestoreView(_r14); const ctx_r2 = i0.ɵɵnextContext(2); return i0.ɵɵresetView(ctx_r2.stepClick.emit($event)); })("nextStepClick", function SymphiqFunnelAnalysisDashboardComponent_Conditional_15_Conditional_0_Template_symphiq_journey_progress_indicator_nextStepClick_0_listener() { i0.ɵɵrestoreView(_r14); const ctx_r2 = i0.ɵɵnextContext(2); return i0.ɵɵresetView(ctx_r2.nextStepClick.emit()); });
47609
47766
  i0.ɵɵelementEnd();
47610
47767
  } if (rf & 2) {
@@ -47613,10 +47770,10 @@ function SymphiqFunnelAnalysisDashboardComponent_Conditional_15_Conditional_0_Te
47613
47770
  } }
47614
47771
  function SymphiqFunnelAnalysisDashboardComponent_Conditional_15_Template(rf, ctx) { if (rf & 1) {
47615
47772
  i0.ɵɵconditionalCreate(0, SymphiqFunnelAnalysisDashboardComponent_Conditional_15_Conditional_0_Template, 1, 5, "symphiq-journey-progress-indicator", 44);
47616
- i0.ɵɵelementStart(1, "main", 45)(2, "div", 46)(3, "div", 47);
47617
- i0.ɵɵelement(4, "symphiq-funnel-welcome-banner", 48);
47773
+ i0.ɵɵelementStart(1, "main", 45)(2, "div", 49)(3, "div", 50);
47774
+ i0.ɵɵelement(4, "symphiq-funnel-welcome-banner", 51);
47618
47775
  i0.ɵɵelementEnd()()();
47619
- i0.ɵɵelement(5, "symphiq-content-generation-progress-with-confetti", 51);
47776
+ i0.ɵɵelement(5, "symphiq-content-generation-progress-with-confetti", 52);
47620
47777
  } if (rf & 2) {
47621
47778
  let tmp_5_0;
47622
47779
  let tmp_8_0;
@@ -47629,7 +47786,7 @@ function SymphiqFunnelAnalysisDashboardComponent_Conditional_15_Template(rf, ctx
47629
47786
  } }
47630
47787
  function SymphiqFunnelAnalysisDashboardComponent_Conditional_16_Conditional_0_Template(rf, ctx) { if (rf & 1) {
47631
47788
  const _r15 = i0.ɵɵgetCurrentView();
47632
- i0.ɵɵelementStart(0, "symphiq-journey-progress-indicator", 50);
47789
+ i0.ɵɵelementStart(0, "symphiq-journey-progress-indicator", 48);
47633
47790
  i0.ɵɵlistener("stepClick", function SymphiqFunnelAnalysisDashboardComponent_Conditional_16_Conditional_0_Template_symphiq_journey_progress_indicator_stepClick_0_listener($event) { i0.ɵɵrestoreView(_r15); const ctx_r2 = i0.ɵɵnextContext(2); return i0.ɵɵresetView(ctx_r2.stepClick.emit($event)); })("nextStepClick", function SymphiqFunnelAnalysisDashboardComponent_Conditional_16_Conditional_0_Template_symphiq_journey_progress_indicator_nextStepClick_0_listener() { i0.ɵɵrestoreView(_r15); const ctx_r2 = i0.ɵɵnextContext(2); return i0.ɵɵresetView(ctx_r2.nextStepClick.emit()); });
47634
47791
  i0.ɵɵelementEnd();
47635
47792
  } if (rf & 2) {
@@ -47637,27 +47794,27 @@ function SymphiqFunnelAnalysisDashboardComponent_Conditional_16_Conditional_0_Te
47637
47794
  i0.ɵɵproperty("viewMode", ctx_r2.isLightMode() ? ctx_r2.ViewModeEnum.LIGHT : ctx_r2.ViewModeEnum.DARK)("currentStepId", ctx_r2.JourneyStepIdEnum.FUNNEL_ANALYSIS)("showNextStepAction", ctx_r2.showNextStepAction())("forDemo", ctx_r2.forDemo())("maxAccessibleStepId", ctx_r2.maxAccessibleStepId());
47638
47795
  } }
47639
47796
  function SymphiqFunnelAnalysisDashboardComponent_Conditional_16_Conditional_5_For_13_Template(rf, ctx) { if (rf & 1) {
47640
- i0.ɵɵelement(0, "symphiq-funnel-analysis-insight-card", 68);
47797
+ i0.ɵɵelement(0, "symphiq-funnel-analysis-insight-card", 69);
47641
47798
  } if (rf & 2) {
47642
47799
  const insight_r16 = ctx.$implicit;
47643
47800
  const ctx_r2 = i0.ɵɵnextContext(3);
47644
47801
  i0.ɵɵproperty("insight", insight_r16)("allMetrics", ctx_r2.allMetrics())("charts", ctx_r2.chartsForInsight(insight_r16))("allCharts", ctx_r2.allCharts())("allBusinessInsights", ctx_r2.allBusinessInsights())("isLightMode", ctx_r2.isLightMode())("viewMode", ctx_r2.viewMode())("isCompactMode", true)("isLoading", ctx_r2.isDataLoading());
47645
47802
  } }
47646
47803
  function SymphiqFunnelAnalysisDashboardComponent_Conditional_16_Conditional_5_Template(rf, ctx) { if (rf & 1) {
47647
- i0.ɵɵelementStart(0, "section", 52)(1, "div", 60)(2, "div", 61)(3, "div", 62)(4, "div", 61);
47804
+ i0.ɵɵelementStart(0, "section", 53)(1, "div", 61)(2, "div", 62)(3, "div", 63)(4, "div", 62);
47648
47805
  i0.ɵɵnamespaceSVG();
47649
- i0.ɵɵelementStart(5, "svg", 63);
47650
- i0.ɵɵelement(6, "path", 64);
47806
+ i0.ɵɵelementStart(5, "svg", 64);
47807
+ i0.ɵɵelement(6, "path", 65);
47651
47808
  i0.ɵɵelementEnd();
47652
47809
  i0.ɵɵnamespaceHTML();
47653
- i0.ɵɵelementStart(7, "h2", 65);
47810
+ i0.ɵɵelementStart(7, "h2", 66);
47654
47811
  i0.ɵɵtext(8, "Key Insights");
47655
47812
  i0.ɵɵelementEnd()()()();
47656
- i0.ɵɵelementStart(9, "span", 66);
47813
+ i0.ɵɵelementStart(9, "span", 67);
47657
47814
  i0.ɵɵtext(10);
47658
47815
  i0.ɵɵelementEnd()();
47659
- i0.ɵɵelementStart(11, "div", 67);
47660
- i0.ɵɵrepeaterCreate(12, SymphiqFunnelAnalysisDashboardComponent_Conditional_16_Conditional_5_For_13_Template, 1, 9, "symphiq-funnel-analysis-insight-card", 68, i0.ɵɵrepeaterTrackByIndex);
47816
+ i0.ɵɵelementStart(11, "div", 68);
47817
+ i0.ɵɵrepeaterCreate(12, SymphiqFunnelAnalysisDashboardComponent_Conditional_16_Conditional_5_For_13_Template, 1, 9, "symphiq-funnel-analysis-insight-card", 69, i0.ɵɵrepeaterTrackByIndex);
47661
47818
  i0.ɵɵelementEnd()();
47662
47819
  } if (rf & 2) {
47663
47820
  const ctx_r2 = i0.ɵɵnextContext(2);
@@ -47675,14 +47832,14 @@ function SymphiqFunnelAnalysisDashboardComponent_Conditional_16_Conditional_5_Te
47675
47832
  i0.ɵɵrepeater(ctx_r2.insights());
47676
47833
  } }
47677
47834
  function SymphiqFunnelAnalysisDashboardComponent_Conditional_16_Conditional_8_Conditional_1_Template(rf, ctx) { if (rf & 1) {
47678
- i0.ɵɵelement(0, "symphiq-skeleton-loader", 69);
47835
+ i0.ɵɵelement(0, "symphiq-skeleton-loader", 70);
47679
47836
  } if (rf & 2) {
47680
47837
  const ctx_r2 = i0.ɵɵnextContext(3);
47681
47838
  i0.ɵɵproperty("width", "100%")("height", "200px")("isLightMode", ctx_r2.isLightMode());
47682
47839
  } }
47683
47840
  function SymphiqFunnelAnalysisDashboardComponent_Conditional_16_Conditional_8_Conditional_2_Template(rf, ctx) { if (rf & 1) {
47684
47841
  const _r17 = i0.ɵɵgetCurrentView();
47685
- i0.ɵɵelementStart(0, "symphiq-funnel-analysis-overall-assessment", 71);
47842
+ i0.ɵɵelementStart(0, "symphiq-funnel-analysis-overall-assessment", 72);
47686
47843
  i0.ɵɵlistener("scrollToSection", function SymphiqFunnelAnalysisDashboardComponent_Conditional_16_Conditional_8_Conditional_2_Template_symphiq_funnel_analysis_overall_assessment_scrollToSection_0_listener($event) { i0.ɵɵrestoreView(_r17); const ctx_r2 = i0.ɵɵnextContext(3); return i0.ɵɵresetView(ctx_r2.scrollToSection($event)); });
47687
47844
  i0.ɵɵelementEnd();
47688
47845
  } if (rf & 2) {
@@ -47690,8 +47847,8 @@ function SymphiqFunnelAnalysisDashboardComponent_Conditional_16_Conditional_8_Co
47690
47847
  i0.ɵɵproperty("assessment", ctx_r2.performanceOverview().overallAssessment || i0.ɵɵpureFunction0(11, _c1$i))("revenueMetric", ctx_r2.revenueMetric())("charts", ctx_r2.chartsForItem("OVERALL_ASSESSMENT"))("metrics", ctx_r2.allMetrics())("isLightMode", ctx_r2.isLightMode())("isLoading", ctx_r2.isOverallAssessmentLoading())("isCompactMode", true)("isChartsLoading", ctx_r2.areChartsLoading())("strengths", ctx_r2.strengths())("weaknesses", ctx_r2.weaknesses())("currencySymbol", ctx_r2.currencySymbol());
47691
47848
  } }
47692
47849
  function SymphiqFunnelAnalysisDashboardComponent_Conditional_16_Conditional_8_Template(rf, ctx) { if (rf & 1) {
47693
- i0.ɵɵelementStart(0, "div", 55);
47694
- i0.ɵɵconditionalCreate(1, SymphiqFunnelAnalysisDashboardComponent_Conditional_16_Conditional_8_Conditional_1_Template, 1, 3, "symphiq-skeleton-loader", 69)(2, SymphiqFunnelAnalysisDashboardComponent_Conditional_16_Conditional_8_Conditional_2_Template, 1, 12, "symphiq-funnel-analysis-overall-assessment", 70);
47850
+ i0.ɵɵelementStart(0, "div", 56);
47851
+ i0.ɵɵconditionalCreate(1, SymphiqFunnelAnalysisDashboardComponent_Conditional_16_Conditional_8_Conditional_1_Template, 1, 3, "symphiq-skeleton-loader", 70)(2, SymphiqFunnelAnalysisDashboardComponent_Conditional_16_Conditional_8_Conditional_2_Template, 1, 12, "symphiq-funnel-analysis-overall-assessment", 71);
47695
47852
  i0.ɵɵelementEnd();
47696
47853
  } if (rf & 2) {
47697
47854
  const ctx_r2 = i0.ɵɵnextContext(2);
@@ -47699,15 +47856,15 @@ function SymphiqFunnelAnalysisDashboardComponent_Conditional_16_Conditional_8_Te
47699
47856
  i0.ɵɵconditional(ctx_r2.isDataLoading() ? 1 : 2);
47700
47857
  } }
47701
47858
  function SymphiqFunnelAnalysisDashboardComponent_Conditional_16_Conditional_10_For_2_Conditional_2_For_2_Template(rf, ctx) { if (rf & 1) {
47702
- i0.ɵɵelement(0, "symphiq-funnel-analysis-metric-card", 73);
47859
+ i0.ɵɵelement(0, "symphiq-funnel-analysis-metric-card", 74);
47703
47860
  } if (rf & 2) {
47704
47861
  const metric_r18 = ctx.$implicit;
47705
47862
  const ctx_r2 = i0.ɵɵnextContext(5);
47706
47863
  i0.ɵɵproperty("metric", metric_r18)("insights", ctx_r2.insights())("charts", ctx_r2.chartsForMetric(metric_r18))("allCharts", ctx_r2.allCharts())("analysis", ctx_r2.analysisData())("isLightMode", ctx_r2.isLightMode())("viewMode", ctx_r2.viewMode())("isCompactMode", true)("currencySymbol", ctx_r2.currencySymbol());
47707
47864
  } }
47708
47865
  function SymphiqFunnelAnalysisDashboardComponent_Conditional_16_Conditional_10_For_2_Conditional_2_Template(rf, ctx) { if (rf & 1) {
47709
- i0.ɵɵelementStart(0, "div", 74);
47710
- i0.ɵɵrepeaterCreate(1, SymphiqFunnelAnalysisDashboardComponent_Conditional_16_Conditional_10_For_2_Conditional_2_For_2_Template, 1, 9, "symphiq-funnel-analysis-metric-card", 73, i0.ɵɵrepeaterTrackByIndex);
47866
+ i0.ɵɵelementStart(0, "div", 75);
47867
+ i0.ɵɵrepeaterCreate(1, SymphiqFunnelAnalysisDashboardComponent_Conditional_16_Conditional_10_For_2_Conditional_2_For_2_Template, 1, 9, "symphiq-funnel-analysis-metric-card", 74, i0.ɵɵrepeaterTrackByIndex);
47711
47868
  i0.ɵɵelementEnd();
47712
47869
  } if (rf & 2) {
47713
47870
  const funnelGroup_r19 = i0.ɵɵnextContext().$implicit;
@@ -47715,10 +47872,10 @@ function SymphiqFunnelAnalysisDashboardComponent_Conditional_16_Conditional_10_F
47715
47872
  i0.ɵɵrepeater(funnelGroup_r19.relatedMetrics);
47716
47873
  } }
47717
47874
  function SymphiqFunnelAnalysisDashboardComponent_Conditional_16_Conditional_10_For_2_Template(rf, ctx) { if (rf & 1) {
47718
- i0.ɵɵelementStart(0, "div", 72);
47719
- i0.ɵɵelement(1, "symphiq-funnel-analysis-metric-card", 73);
47875
+ i0.ɵɵelementStart(0, "div", 73);
47876
+ i0.ɵɵelement(1, "symphiq-funnel-analysis-metric-card", 74);
47720
47877
  i0.ɵɵelementEnd();
47721
- i0.ɵɵconditionalCreate(2, SymphiqFunnelAnalysisDashboardComponent_Conditional_16_Conditional_10_For_2_Conditional_2_Template, 3, 0, "div", 74);
47878
+ i0.ɵɵconditionalCreate(2, SymphiqFunnelAnalysisDashboardComponent_Conditional_16_Conditional_10_For_2_Conditional_2_Template, 3, 0, "div", 75);
47722
47879
  } if (rf & 2) {
47723
47880
  const funnelGroup_r19 = ctx.$implicit;
47724
47881
  const ctx_r2 = i0.ɵɵnextContext(3);
@@ -47728,7 +47885,7 @@ function SymphiqFunnelAnalysisDashboardComponent_Conditional_16_Conditional_10_F
47728
47885
  i0.ɵɵconditional(funnelGroup_r19.relatedMetrics.length > 0 ? 2 : -1);
47729
47886
  } }
47730
47887
  function SymphiqFunnelAnalysisDashboardComponent_Conditional_16_Conditional_10_Template(rf, ctx) { if (rf & 1) {
47731
- i0.ɵɵelementStart(0, "div", 57);
47888
+ i0.ɵɵelementStart(0, "div", 58);
47732
47889
  i0.ɵɵrepeaterCreate(1, SymphiqFunnelAnalysisDashboardComponent_Conditional_16_Conditional_10_For_2_Template, 3, 10, null, null, i0.ɵɵrepeaterTrackByIndex);
47733
47890
  i0.ɵɵelementEnd();
47734
47891
  } if (rf & 2) {
@@ -47737,15 +47894,15 @@ function SymphiqFunnelAnalysisDashboardComponent_Conditional_16_Conditional_10_T
47737
47894
  i0.ɵɵrepeater(ctx_r2.groupedMetrics());
47738
47895
  } }
47739
47896
  function SymphiqFunnelAnalysisDashboardComponent_Conditional_16_Conditional_12_For_2_Template(rf, ctx) { if (rf & 1) {
47740
- i0.ɵɵelement(0, "symphiq-funnel-analysis-breakdown-section", 75);
47897
+ i0.ɵɵelement(0, "symphiq-funnel-analysis-breakdown-section", 76);
47741
47898
  } if (rf & 2) {
47742
47899
  const breakdown_r20 = ctx.$implicit;
47743
47900
  const ctx_r2 = i0.ɵɵnextContext(3);
47744
47901
  i0.ɵɵproperty("breakdown", breakdown_r20)("charts", ctx_r2.chartsForBreakdown(breakdown_r20))("isLightMode", ctx_r2.isLightMode())("isLoading", ctx_r2.isDataLoading())("isCompactMode", true)("currencySymbol", ctx_r2.currencySymbol());
47745
47902
  } }
47746
47903
  function SymphiqFunnelAnalysisDashboardComponent_Conditional_16_Conditional_12_Template(rf, ctx) { if (rf & 1) {
47747
- i0.ɵɵelementStart(0, "div", 57);
47748
- i0.ɵɵrepeaterCreate(1, SymphiqFunnelAnalysisDashboardComponent_Conditional_16_Conditional_12_For_2_Template, 1, 6, "symphiq-funnel-analysis-breakdown-section", 75, i0.ɵɵrepeaterTrackByIndex);
47904
+ i0.ɵɵelementStart(0, "div", 58);
47905
+ i0.ɵɵrepeaterCreate(1, SymphiqFunnelAnalysisDashboardComponent_Conditional_16_Conditional_12_For_2_Template, 1, 6, "symphiq-funnel-analysis-breakdown-section", 76, i0.ɵɵrepeaterTrackByIndex);
47749
47906
  i0.ɵɵelementEnd();
47750
47907
  } if (rf & 2) {
47751
47908
  const ctx_r2 = i0.ɵɵnextContext(2);
@@ -47753,8 +47910,8 @@ function SymphiqFunnelAnalysisDashboardComponent_Conditional_16_Conditional_12_T
47753
47910
  i0.ɵɵrepeater(ctx_r2.breakdowns());
47754
47911
  } }
47755
47912
  function SymphiqFunnelAnalysisDashboardComponent_Conditional_16_Conditional_14_Template(rf, ctx) { if (rf & 1) {
47756
- i0.ɵɵelementStart(0, "div", 55);
47757
- i0.ɵɵelement(1, "symphiq-competitive-intelligence-view", 76);
47913
+ i0.ɵɵelementStart(0, "div", 56);
47914
+ i0.ɵɵelement(1, "symphiq-competitive-intelligence-view", 77);
47758
47915
  i0.ɵɵelementEnd();
47759
47916
  } if (rf & 2) {
47760
47917
  let tmp_7_0;
@@ -47764,21 +47921,21 @@ function SymphiqFunnelAnalysisDashboardComponent_Conditional_16_Conditional_14_T
47764
47921
  } }
47765
47922
  function SymphiqFunnelAnalysisDashboardComponent_Conditional_16_Template(rf, ctx) { if (rf & 1) {
47766
47923
  i0.ɵɵconditionalCreate(0, SymphiqFunnelAnalysisDashboardComponent_Conditional_16_Conditional_0_Template, 1, 5, "symphiq-journey-progress-indicator", 44);
47767
- i0.ɵɵelementStart(1, "main", 45)(2, "div", 46)(3, "div", 47);
47768
- i0.ɵɵelement(4, "symphiq-funnel-welcome-banner", 48);
47924
+ i0.ɵɵelementStart(1, "main", 45)(2, "div", 46)(3, "div", 50);
47925
+ i0.ɵɵelement(4, "symphiq-funnel-welcome-banner", 51);
47769
47926
  i0.ɵɵelementEnd();
47770
- i0.ɵɵconditionalCreate(5, SymphiqFunnelAnalysisDashboardComponent_Conditional_16_Conditional_5_Template, 14, 7, "section", 52);
47771
- i0.ɵɵelementStart(6, "symphiq-collapsible-funnel-section-group", 53)(7, "div", 54);
47772
- i0.ɵɵconditionalCreate(8, SymphiqFunnelAnalysisDashboardComponent_Conditional_16_Conditional_8_Template, 3, 1, "div", 55);
47927
+ i0.ɵɵconditionalCreate(5, SymphiqFunnelAnalysisDashboardComponent_Conditional_16_Conditional_5_Template, 14, 7, "section", 53);
47928
+ i0.ɵɵelementStart(6, "symphiq-collapsible-funnel-section-group", 54)(7, "div", 55);
47929
+ i0.ɵɵconditionalCreate(8, SymphiqFunnelAnalysisDashboardComponent_Conditional_16_Conditional_8_Template, 3, 1, "div", 56);
47773
47930
  i0.ɵɵelementEnd();
47774
- i0.ɵɵelementStart(9, "div", 56);
47775
- i0.ɵɵconditionalCreate(10, SymphiqFunnelAnalysisDashboardComponent_Conditional_16_Conditional_10_Template, 3, 0, "div", 57);
47931
+ i0.ɵɵelementStart(9, "div", 57);
47932
+ i0.ɵɵconditionalCreate(10, SymphiqFunnelAnalysisDashboardComponent_Conditional_16_Conditional_10_Template, 3, 0, "div", 58);
47776
47933
  i0.ɵɵelementEnd();
47777
- i0.ɵɵelementStart(11, "div", 58);
47778
- i0.ɵɵconditionalCreate(12, SymphiqFunnelAnalysisDashboardComponent_Conditional_16_Conditional_12_Template, 3, 0, "div", 57);
47934
+ i0.ɵɵelementStart(11, "div", 59);
47935
+ i0.ɵɵconditionalCreate(12, SymphiqFunnelAnalysisDashboardComponent_Conditional_16_Conditional_12_Template, 3, 0, "div", 58);
47779
47936
  i0.ɵɵelementEnd();
47780
- i0.ɵɵelementStart(13, "div", 59);
47781
- i0.ɵɵconditionalCreate(14, SymphiqFunnelAnalysisDashboardComponent_Conditional_16_Conditional_14_Template, 2, 6, "div", 55);
47937
+ i0.ɵɵelementStart(13, "div", 60);
47938
+ i0.ɵɵconditionalCreate(14, SymphiqFunnelAnalysisDashboardComponent_Conditional_16_Conditional_14_Template, 2, 6, "div", 56);
47782
47939
  i0.ɵɵelementEnd()()()();
47783
47940
  } if (rf & 2) {
47784
47941
  let tmp_6_0;
@@ -47802,16 +47959,16 @@ function SymphiqFunnelAnalysisDashboardComponent_Conditional_16_Template(rf, ctx
47802
47959
  i0.ɵɵconditional(ctx_r2.showCompetitiveIntelligence() ? 14 : -1);
47803
47960
  } }
47804
47961
  function SymphiqFunnelAnalysisDashboardComponent_Conditional_17_Conditional_2_Conditional_1_Template(rf, ctx) { if (rf & 1) {
47805
- i0.ɵɵelementStart(0, "div", 78)(1, "div", 79)(2, "div", 61);
47806
- i0.ɵɵelement(3, "symphiq-skeleton-loader", 69);
47807
- i0.ɵɵelementStart(4, "div", 80);
47808
- i0.ɵɵelement(5, "symphiq-skeleton-loader", 69)(6, "symphiq-skeleton-loader", 69);
47962
+ i0.ɵɵelementStart(0, "div", 79)(1, "div", 80)(2, "div", 62);
47963
+ i0.ɵɵelement(3, "symphiq-skeleton-loader", 70);
47964
+ i0.ɵɵelementStart(4, "div", 81);
47965
+ i0.ɵɵelement(5, "symphiq-skeleton-loader", 70)(6, "symphiq-skeleton-loader", 70);
47809
47966
  i0.ɵɵelementEnd()();
47810
- i0.ɵɵelementStart(7, "div", 81);
47811
- i0.ɵɵelement(8, "symphiq-skeleton-loader", 69)(9, "symphiq-skeleton-loader", 69)(10, "symphiq-skeleton-loader", 69);
47967
+ i0.ɵɵelementStart(7, "div", 82);
47968
+ i0.ɵɵelement(8, "symphiq-skeleton-loader", 70)(9, "symphiq-skeleton-loader", 70)(10, "symphiq-skeleton-loader", 70);
47812
47969
  i0.ɵɵelementEnd();
47813
- i0.ɵɵelementStart(11, "div", 82);
47814
- i0.ɵɵelement(12, "symphiq-skeleton-loader", 69)(13, "symphiq-skeleton-loader", 69);
47970
+ i0.ɵɵelementStart(11, "div", 83);
47971
+ i0.ɵɵelement(12, "symphiq-skeleton-loader", 70)(13, "symphiq-skeleton-loader", 70);
47815
47972
  i0.ɵɵelementEnd()()();
47816
47973
  } if (rf & 2) {
47817
47974
  const ctx_r2 = i0.ɵɵnextContext(3);
@@ -47835,7 +47992,7 @@ function SymphiqFunnelAnalysisDashboardComponent_Conditional_17_Conditional_2_Co
47835
47992
  } }
47836
47993
  function SymphiqFunnelAnalysisDashboardComponent_Conditional_17_Conditional_2_Conditional_2_Template(rf, ctx) { if (rf & 1) {
47837
47994
  const _r21 = i0.ɵɵgetCurrentView();
47838
- i0.ɵɵelementStart(0, "symphiq-funnel-analysis-overall-assessment", 71);
47995
+ i0.ɵɵelementStart(0, "symphiq-funnel-analysis-overall-assessment", 72);
47839
47996
  i0.ɵɵlistener("scrollToSection", function SymphiqFunnelAnalysisDashboardComponent_Conditional_17_Conditional_2_Conditional_2_Template_symphiq_funnel_analysis_overall_assessment_scrollToSection_0_listener($event) { i0.ɵɵrestoreView(_r21); const ctx_r2 = i0.ɵɵnextContext(3); return i0.ɵɵresetView(ctx_r2.scrollToSection($event)); });
47840
47997
  i0.ɵɵelementEnd();
47841
47998
  } if (rf & 2) {
@@ -47843,8 +48000,8 @@ function SymphiqFunnelAnalysisDashboardComponent_Conditional_17_Conditional_2_Co
47843
48000
  i0.ɵɵproperty("assessment", ctx_r2.performanceOverview().overallAssessment || i0.ɵɵpureFunction0(11, _c1$i))("revenueMetric", ctx_r2.revenueMetric())("charts", ctx_r2.chartsForItem("OVERALL_ASSESSMENT"))("metrics", ctx_r2.allMetrics())("isLightMode", ctx_r2.isLightMode())("isLoading", ctx_r2.isOverallAssessmentLoading())("isCompactMode", ctx_r2.viewModeService.isCompact())("isChartsLoading", ctx_r2.areChartsLoading())("strengths", ctx_r2.strengths())("weaknesses", ctx_r2.weaknesses())("currencySymbol", ctx_r2.currencySymbol());
47844
48001
  } }
47845
48002
  function SymphiqFunnelAnalysisDashboardComponent_Conditional_17_Conditional_2_Template(rf, ctx) { if (rf & 1) {
47846
- i0.ɵɵelementStart(0, "div", 77);
47847
- i0.ɵɵconditionalCreate(1, SymphiqFunnelAnalysisDashboardComponent_Conditional_17_Conditional_2_Conditional_1_Template, 14, 25, "div", 78)(2, SymphiqFunnelAnalysisDashboardComponent_Conditional_17_Conditional_2_Conditional_2_Template, 1, 12, "symphiq-funnel-analysis-overall-assessment", 70);
48003
+ i0.ɵɵelementStart(0, "div", 78);
48004
+ i0.ɵɵconditionalCreate(1, SymphiqFunnelAnalysisDashboardComponent_Conditional_17_Conditional_2_Conditional_1_Template, 14, 25, "div", 79)(2, SymphiqFunnelAnalysisDashboardComponent_Conditional_17_Conditional_2_Conditional_2_Template, 1, 12, "symphiq-funnel-analysis-overall-assessment", 71);
47848
48005
  i0.ɵɵelementEnd();
47849
48006
  } if (rf & 2) {
47850
48007
  const ctx_r2 = i0.ɵɵnextContext(2);
@@ -47852,21 +48009,21 @@ function SymphiqFunnelAnalysisDashboardComponent_Conditional_17_Conditional_2_Te
47852
48009
  i0.ɵɵconditional(ctx_r2.isDataLoading() ? 1 : 2);
47853
48010
  } }
47854
48011
  function SymphiqFunnelAnalysisDashboardComponent_Conditional_17_Conditional_3_Conditional_0_Template(rf, ctx) { if (rf & 1) {
47855
- i0.ɵɵelement(0, "symphiq-section-divider", 83);
48012
+ i0.ɵɵelement(0, "symphiq-section-divider", 84);
47856
48013
  } if (rf & 2) {
47857
48014
  const ctx_r2 = i0.ɵɵnextContext(3);
47858
48015
  i0.ɵɵproperty("viewMode", ctx_r2.viewMode());
47859
48016
  } }
47860
48017
  function SymphiqFunnelAnalysisDashboardComponent_Conditional_17_Conditional_3_Conditional_14_For_2_Template(rf, ctx) { if (rf & 1) {
47861
- i0.ɵɵelementStart(0, "div", 90)(1, "div", 91)(2, "div", 92);
47862
- i0.ɵɵelement(3, "symphiq-skeleton-loader", 69)(4, "symphiq-skeleton-loader", 69);
48018
+ i0.ɵɵelementStart(0, "div", 91)(1, "div", 92)(2, "div", 93);
48019
+ i0.ɵɵelement(3, "symphiq-skeleton-loader", 70)(4, "symphiq-skeleton-loader", 70);
47863
48020
  i0.ɵɵelementEnd();
47864
- i0.ɵɵelement(5, "symphiq-skeleton-loader", 69)(6, "symphiq-skeleton-loader", 69)(7, "symphiq-skeleton-loader", 69);
47865
- i0.ɵɵelementStart(8, "div", 93);
47866
- i0.ɵɵelement(9, "symphiq-skeleton-loader", 69)(10, "symphiq-skeleton-loader", 69);
48021
+ i0.ɵɵelement(5, "symphiq-skeleton-loader", 70)(6, "symphiq-skeleton-loader", 70)(7, "symphiq-skeleton-loader", 70);
48022
+ i0.ɵɵelementStart(8, "div", 94);
48023
+ i0.ɵɵelement(9, "symphiq-skeleton-loader", 70)(10, "symphiq-skeleton-loader", 70);
47867
48024
  i0.ɵɵelementEnd();
47868
- i0.ɵɵelementStart(11, "div", 94);
47869
- i0.ɵɵelement(12, "symphiq-skeleton-loader", 69)(13, "symphiq-skeleton-loader", 69);
48025
+ i0.ɵɵelementStart(11, "div", 95);
48026
+ i0.ɵɵelement(12, "symphiq-skeleton-loader", 70)(13, "symphiq-skeleton-loader", 70);
47870
48027
  i0.ɵɵelementEnd()()();
47871
48028
  } if (rf & 2) {
47872
48029
  const ctx_r2 = i0.ɵɵnextContext(4);
@@ -47891,16 +48048,16 @@ function SymphiqFunnelAnalysisDashboardComponent_Conditional_17_Conditional_3_Co
47891
48048
  i0.ɵɵproperty("width", "80px")("height", "28px")("isLightMode", ctx_r2.isLightMode());
47892
48049
  } }
47893
48050
  function SymphiqFunnelAnalysisDashboardComponent_Conditional_17_Conditional_3_Conditional_14_Template(rf, ctx) { if (rf & 1) {
47894
- i0.ɵɵelementStart(0, "div", 88);
47895
- i0.ɵɵrepeaterCreate(1, SymphiqFunnelAnalysisDashboardComponent_Conditional_17_Conditional_3_Conditional_14_For_2_Template, 14, 28, "div", 90, i0.ɵɵrepeaterTrackByIdentity);
48051
+ i0.ɵɵelementStart(0, "div", 89);
48052
+ i0.ɵɵrepeaterCreate(1, SymphiqFunnelAnalysisDashboardComponent_Conditional_17_Conditional_3_Conditional_14_For_2_Template, 14, 28, "div", 91, i0.ɵɵrepeaterTrackByIdentity);
47896
48053
  i0.ɵɵelementEnd();
47897
48054
  } if (rf & 2) {
47898
48055
  i0.ɵɵadvance();
47899
48056
  i0.ɵɵrepeater(i0.ɵɵpureFunction0(0, _c2$c));
47900
48057
  } }
47901
48058
  function SymphiqFunnelAnalysisDashboardComponent_Conditional_17_Conditional_3_Conditional_15_For_2_Template(rf, ctx) { if (rf & 1) {
47902
- i0.ɵɵelementStart(0, "div", 96);
47903
- i0.ɵɵelement(1, "symphiq-funnel-analysis-insight-card", 97);
48059
+ i0.ɵɵelementStart(0, "div", 97);
48060
+ i0.ɵɵelement(1, "symphiq-funnel-analysis-insight-card", 98);
47904
48061
  i0.ɵɵelementEnd();
47905
48062
  } if (rf & 2) {
47906
48063
  const entry_r22 = ctx.$implicit;
@@ -47913,8 +48070,8 @@ function SymphiqFunnelAnalysisDashboardComponent_Conditional_17_Conditional_3_Co
47913
48070
  i0.ɵɵproperty("insight", entry_r22.insight)("allMetrics", ctx_r2.allMetrics())("charts", ctx_r2.chartsForInsight(entry_r22.insight))("allCharts", ctx_r2.allCharts())("allBusinessInsights", ctx_r2.allBusinessInsights())("isLightMode", ctx_r2.isLightMode())("viewMode", ctx_r2.viewMode())("isCompactMode", false);
47914
48071
  } }
47915
48072
  function SymphiqFunnelAnalysisDashboardComponent_Conditional_17_Conditional_3_Conditional_15_Template(rf, ctx) { if (rf & 1) {
47916
- i0.ɵɵelementStart(0, "div", 88);
47917
- i0.ɵɵrepeaterCreate(1, SymphiqFunnelAnalysisDashboardComponent_Conditional_17_Conditional_3_Conditional_15_For_2_Template, 2, 14, "div", 95, i0.ɵɵrepeaterTrackByIndex);
48073
+ i0.ɵɵelementStart(0, "div", 89);
48074
+ i0.ɵɵrepeaterCreate(1, SymphiqFunnelAnalysisDashboardComponent_Conditional_17_Conditional_3_Conditional_15_For_2_Template, 2, 14, "div", 96, i0.ɵɵrepeaterTrackByIndex);
47918
48075
  i0.ɵɵelementEnd();
47919
48076
  } if (rf & 2) {
47920
48077
  const ctx_r2 = i0.ɵɵnextContext(3);
@@ -47922,8 +48079,8 @@ function SymphiqFunnelAnalysisDashboardComponent_Conditional_17_Conditional_3_Co
47922
48079
  i0.ɵɵrepeater(ctx_r2.insightsDisplay());
47923
48080
  } }
47924
48081
  function SymphiqFunnelAnalysisDashboardComponent_Conditional_17_Conditional_3_Conditional_16_For_2_Template(rf, ctx) { if (rf & 1) {
47925
- i0.ɵɵelementStart(0, "div", 96);
47926
- i0.ɵɵelement(1, "symphiq-funnel-analysis-insight-card", 97);
48082
+ i0.ɵɵelementStart(0, "div", 97);
48083
+ i0.ɵɵelement(1, "symphiq-funnel-analysis-insight-card", 98);
47927
48084
  i0.ɵɵelementEnd();
47928
48085
  } if (rf & 2) {
47929
48086
  const insight_r24 = ctx.$implicit;
@@ -47935,8 +48092,8 @@ function SymphiqFunnelAnalysisDashboardComponent_Conditional_17_Conditional_3_Co
47935
48092
  i0.ɵɵproperty("insight", insight_r24)("allMetrics", ctx_r2.allMetrics())("charts", ctx_r2.chartsForInsight(insight_r24))("allCharts", ctx_r2.allCharts())("allBusinessInsights", ctx_r2.allBusinessInsights())("isLightMode", ctx_r2.isLightMode())("viewMode", ctx_r2.viewMode())("isCompactMode", true);
47936
48093
  } }
47937
48094
  function SymphiqFunnelAnalysisDashboardComponent_Conditional_17_Conditional_3_Conditional_16_Template(rf, ctx) { if (rf & 1) {
47938
- i0.ɵɵelementStart(0, "div", 89);
47939
- i0.ɵɵrepeaterCreate(1, SymphiqFunnelAnalysisDashboardComponent_Conditional_17_Conditional_3_Conditional_16_For_2_Template, 2, 12, "div", 98, i0.ɵɵrepeaterTrackByIndex);
48095
+ i0.ɵɵelementStart(0, "div", 90);
48096
+ i0.ɵɵrepeaterCreate(1, SymphiqFunnelAnalysisDashboardComponent_Conditional_17_Conditional_3_Conditional_16_For_2_Template, 2, 12, "div", 99, i0.ɵɵrepeaterTrackByIndex);
47940
48097
  i0.ɵɵelementEnd();
47941
48098
  } if (rf & 2) {
47942
48099
  const ctx_r2 = i0.ɵɵnextContext(3);
@@ -47944,22 +48101,22 @@ function SymphiqFunnelAnalysisDashboardComponent_Conditional_17_Conditional_3_Co
47944
48101
  i0.ɵɵrepeater(ctx_r2.insights());
47945
48102
  } }
47946
48103
  function SymphiqFunnelAnalysisDashboardComponent_Conditional_17_Conditional_3_Template(rf, ctx) { if (rf & 1) {
47947
- i0.ɵɵconditionalCreate(0, SymphiqFunnelAnalysisDashboardComponent_Conditional_17_Conditional_3_Conditional_0_Template, 1, 1, "symphiq-section-divider", 83);
47948
- i0.ɵɵelementStart(1, "section", 84);
47949
- i0.ɵɵelement(2, "div", 85);
47950
- i0.ɵɵelementStart(3, "div", 86)(4, "div", 87)(5, "div", 61)(6, "div", 62)(7, "div", 61);
48104
+ i0.ɵɵconditionalCreate(0, SymphiqFunnelAnalysisDashboardComponent_Conditional_17_Conditional_3_Conditional_0_Template, 1, 1, "symphiq-section-divider", 84);
48105
+ i0.ɵɵelementStart(1, "section", 85);
48106
+ i0.ɵɵelement(2, "div", 86);
48107
+ i0.ɵɵelementStart(3, "div", 87)(4, "div", 88)(5, "div", 62)(6, "div", 63)(7, "div", 62);
47951
48108
  i0.ɵɵnamespaceSVG();
47952
- i0.ɵɵelementStart(8, "svg", 63);
47953
- i0.ɵɵelement(9, "path", 64);
48109
+ i0.ɵɵelementStart(8, "svg", 64);
48110
+ i0.ɵɵelement(9, "path", 65);
47954
48111
  i0.ɵɵelementEnd();
47955
48112
  i0.ɵɵnamespaceHTML();
47956
- i0.ɵɵelementStart(10, "h2", 65);
48113
+ i0.ɵɵelementStart(10, "h2", 66);
47957
48114
  i0.ɵɵtext(11, "Key Insights");
47958
48115
  i0.ɵɵelementEnd()()()();
47959
- i0.ɵɵelementStart(12, "span", 66);
48116
+ i0.ɵɵelementStart(12, "span", 67);
47960
48117
  i0.ɵɵtext(13);
47961
48118
  i0.ɵɵelementEnd()();
47962
- i0.ɵɵconditionalCreate(14, SymphiqFunnelAnalysisDashboardComponent_Conditional_17_Conditional_3_Conditional_14_Template, 3, 1, "div", 88)(15, SymphiqFunnelAnalysisDashboardComponent_Conditional_17_Conditional_3_Conditional_15_Template, 3, 0, "div", 88)(16, SymphiqFunnelAnalysisDashboardComponent_Conditional_17_Conditional_3_Conditional_16_Template, 3, 0, "div", 89);
48119
+ i0.ɵɵconditionalCreate(14, SymphiqFunnelAnalysisDashboardComponent_Conditional_17_Conditional_3_Conditional_14_Template, 3, 1, "div", 89)(15, SymphiqFunnelAnalysisDashboardComponent_Conditional_17_Conditional_3_Conditional_15_Template, 3, 0, "div", 89)(16, SymphiqFunnelAnalysisDashboardComponent_Conditional_17_Conditional_3_Conditional_16_Template, 3, 0, "div", 90);
47963
48120
  i0.ɵɵelementEnd()();
47964
48121
  } if (rf & 2) {
47965
48122
  const ctx_r2 = i0.ɵɵnextContext(2);
@@ -47980,13 +48137,13 @@ function SymphiqFunnelAnalysisDashboardComponent_Conditional_17_Conditional_3_Te
47980
48137
  i0.ɵɵconditional(ctx_r2.isDataLoading() || ctx_r2.viewModeService.isExpanded() && ctx_r2.viewModeService.getIsTransitioning() ? 14 : ctx_r2.viewModeService.isExpanded() ? 15 : 16);
47981
48138
  } }
47982
48139
  function SymphiqFunnelAnalysisDashboardComponent_Conditional_17_Conditional_4_Conditional_0_Template(rf, ctx) { if (rf & 1) {
47983
- i0.ɵɵelementStart(0, "div", 99)(1, "div", 116);
47984
- i0.ɵɵelement(2, "div", 117);
48140
+ i0.ɵɵelementStart(0, "div", 100)(1, "div", 117);
48141
+ i0.ɵɵelement(2, "div", 118);
47985
48142
  i0.ɵɵelementEnd();
47986
- i0.ɵɵelementStart(3, "div", 118)(4, "div", 119);
48143
+ i0.ɵɵelementStart(3, "div", 119)(4, "div", 120);
47987
48144
  i0.ɵɵnamespaceSVG();
47988
- i0.ɵɵelementStart(5, "svg", 120);
47989
- i0.ɵɵelement(6, "path", 121);
48145
+ i0.ɵɵelementStart(5, "svg", 121);
48146
+ i0.ɵɵelement(6, "path", 122);
47990
48147
  i0.ɵɵelementEnd()()()();
47991
48148
  } if (rf & 2) {
47992
48149
  const ctx_r2 = i0.ɵɵnextContext(3);
@@ -47998,12 +48155,12 @@ function SymphiqFunnelAnalysisDashboardComponent_Conditional_17_Conditional_4_Co
47998
48155
  i0.ɵɵproperty("ngClass", ctx_r2.isLightMode() ? "text-emerald-500" : "text-emerald-400");
47999
48156
  } }
48000
48157
  function SymphiqFunnelAnalysisDashboardComponent_Conditional_17_Conditional_4_Conditional_14_Template(rf, ctx) { if (rf & 1) {
48001
- i0.ɵɵelementStart(0, "div", 106);
48002
- i0.ɵɵelement(1, "div", 122);
48158
+ i0.ɵɵelementStart(0, "div", 107);
48159
+ i0.ɵɵelement(1, "div", 123);
48003
48160
  i0.ɵɵelementEnd();
48004
48161
  } }
48005
48162
  function SymphiqFunnelAnalysisDashboardComponent_Conditional_17_Conditional_4_For_17_Conditional_0_Template(rf, ctx) { if (rf & 1) {
48006
- i0.ɵɵelementStart(0, "option", 123);
48163
+ i0.ɵɵelementStart(0, "option", 124);
48007
48164
  i0.ɵɵtext(1);
48008
48165
  i0.ɵɵelementEnd();
48009
48166
  } if (rf & 2) {
@@ -48023,22 +48180,22 @@ function SymphiqFunnelAnalysisDashboardComponent_Conditional_17_Conditional_4_Fo
48023
48180
  i0.ɵɵtextInterpolate(cat_r27.label);
48024
48181
  } }
48025
48182
  function SymphiqFunnelAnalysisDashboardComponent_Conditional_17_Conditional_4_For_17_Template(rf, ctx) { if (rf & 1) {
48026
- i0.ɵɵconditionalCreate(0, SymphiqFunnelAnalysisDashboardComponent_Conditional_17_Conditional_4_For_17_Conditional_0_Template, 2, 2, "option", 123)(1, SymphiqFunnelAnalysisDashboardComponent_Conditional_17_Conditional_4_For_17_Conditional_1_Template, 2, 2, "option", 25);
48183
+ i0.ɵɵconditionalCreate(0, SymphiqFunnelAnalysisDashboardComponent_Conditional_17_Conditional_4_For_17_Conditional_0_Template, 2, 2, "option", 124)(1, SymphiqFunnelAnalysisDashboardComponent_Conditional_17_Conditional_4_For_17_Conditional_1_Template, 2, 2, "option", 25);
48027
48184
  } if (rf & 2) {
48028
48185
  const cat_r27 = ctx.$implicit;
48029
48186
  i0.ɵɵconditional(cat_r27.divider ? 0 : 1);
48030
48187
  } }
48031
48188
  function SymphiqFunnelAnalysisDashboardComponent_Conditional_17_Conditional_4_Conditional_20_Template(rf, ctx) { if (rf & 1) {
48032
48189
  i0.ɵɵnamespaceSVG();
48033
- i0.ɵɵelement(0, "path", 110);
48190
+ i0.ɵɵelement(0, "path", 111);
48034
48191
  } }
48035
48192
  function SymphiqFunnelAnalysisDashboardComponent_Conditional_17_Conditional_4_Conditional_21_Template(rf, ctx) { if (rf & 1) {
48036
48193
  i0.ɵɵnamespaceSVG();
48037
- i0.ɵɵelement(0, "path", 111);
48194
+ i0.ɵɵelement(0, "path", 112);
48038
48195
  } }
48039
48196
  function SymphiqFunnelAnalysisDashboardComponent_Conditional_17_Conditional_4_For_27_Conditional_0_Template(rf, ctx) { if (rf & 1) {
48040
48197
  const _r28 = i0.ɵɵgetCurrentView();
48041
- i0.ɵɵelementStart(0, "button", 125);
48198
+ i0.ɵɵelementStart(0, "button", 126);
48042
48199
  i0.ɵɵlistener("click", function SymphiqFunnelAnalysisDashboardComponent_Conditional_17_Conditional_4_For_27_Conditional_0_Template_button_click_0_listener() { i0.ɵɵrestoreView(_r28); const cat_r29 = i0.ɵɵnextContext().$implicit; const ctx_r2 = i0.ɵɵnextContext(3); return i0.ɵɵresetView(ctx_r2.changeCategoryFilter(cat_r29.value)); });
48043
48200
  i0.ɵɵtext(1);
48044
48201
  i0.ɵɵelementEnd();
@@ -48051,27 +48208,27 @@ function SymphiqFunnelAnalysisDashboardComponent_Conditional_17_Conditional_4_Fo
48051
48208
  i0.ɵɵtextInterpolate1(" ", cat_r29.label, " ");
48052
48209
  } }
48053
48210
  function SymphiqFunnelAnalysisDashboardComponent_Conditional_17_Conditional_4_For_27_Template(rf, ctx) { if (rf & 1) {
48054
- i0.ɵɵconditionalCreate(0, SymphiqFunnelAnalysisDashboardComponent_Conditional_17_Conditional_4_For_27_Conditional_0_Template, 2, 4, "button", 124);
48211
+ i0.ɵɵconditionalCreate(0, SymphiqFunnelAnalysisDashboardComponent_Conditional_17_Conditional_4_For_27_Conditional_0_Template, 2, 4, "button", 125);
48055
48212
  } if (rf & 2) {
48056
48213
  const cat_r29 = ctx.$implicit;
48057
48214
  i0.ɵɵconditional(!cat_r29.divider ? 0 : -1);
48058
48215
  } }
48059
48216
  function SymphiqFunnelAnalysisDashboardComponent_Conditional_17_Conditional_4_Conditional_28_For_2_For_10_Template(rf, ctx) { if (rf & 1) {
48060
- i0.ɵɵelement(0, "symphiq-skeleton-loader", 69);
48217
+ i0.ɵɵelement(0, "symphiq-skeleton-loader", 70);
48061
48218
  } if (rf & 2) {
48062
48219
  const ctx_r2 = i0.ɵɵnextContext(5);
48063
48220
  i0.ɵɵproperty("width", "100%")("height", "120px")("isLightMode", ctx_r2.isLightMode());
48064
48221
  } }
48065
48222
  function SymphiqFunnelAnalysisDashboardComponent_Conditional_17_Conditional_4_Conditional_28_For_2_Template(rf, ctx) { if (rf & 1) {
48066
- i0.ɵɵelementStart(0, "div", 126)(1, "div", 127)(2, "div", 61);
48067
- i0.ɵɵelement(3, "symphiq-skeleton-loader", 69);
48068
- i0.ɵɵelementStart(4, "div", 81);
48069
- i0.ɵɵelement(5, "symphiq-skeleton-loader", 69)(6, "symphiq-skeleton-loader", 69);
48223
+ i0.ɵɵelementStart(0, "div", 127)(1, "div", 128)(2, "div", 62);
48224
+ i0.ɵɵelement(3, "symphiq-skeleton-loader", 70);
48225
+ i0.ɵɵelementStart(4, "div", 82);
48226
+ i0.ɵɵelement(5, "symphiq-skeleton-loader", 70)(6, "symphiq-skeleton-loader", 70);
48070
48227
  i0.ɵɵelementEnd()();
48071
- i0.ɵɵelement(7, "symphiq-skeleton-loader", 69);
48228
+ i0.ɵɵelement(7, "symphiq-skeleton-loader", 70);
48072
48229
  i0.ɵɵelementEnd();
48073
- i0.ɵɵelementStart(8, "div", 128);
48074
- i0.ɵɵrepeaterCreate(9, SymphiqFunnelAnalysisDashboardComponent_Conditional_17_Conditional_4_Conditional_28_For_2_For_10_Template, 1, 3, "symphiq-skeleton-loader", 69, i0.ɵɵrepeaterTrackByIdentity);
48230
+ i0.ɵɵelementStart(8, "div", 129);
48231
+ i0.ɵɵrepeaterCreate(9, SymphiqFunnelAnalysisDashboardComponent_Conditional_17_Conditional_4_Conditional_28_For_2_For_10_Template, 1, 3, "symphiq-skeleton-loader", 70, i0.ɵɵrepeaterTrackByIdentity);
48075
48232
  i0.ɵɵelementEnd()();
48076
48233
  } if (rf & 2) {
48077
48234
  const ctx_r2 = i0.ɵɵnextContext(4);
@@ -48088,30 +48245,30 @@ function SymphiqFunnelAnalysisDashboardComponent_Conditional_17_Conditional_4_Co
48088
48245
  i0.ɵɵrepeater(i0.ɵɵpureFunction0(13, _c4$5));
48089
48246
  } }
48090
48247
  function SymphiqFunnelAnalysisDashboardComponent_Conditional_17_Conditional_4_Conditional_28_Template(rf, ctx) { if (rf & 1) {
48091
- i0.ɵɵelementStart(0, "div", 114);
48092
- i0.ɵɵrepeaterCreate(1, SymphiqFunnelAnalysisDashboardComponent_Conditional_17_Conditional_4_Conditional_28_For_2_Template, 11, 14, "div", 126, i0.ɵɵrepeaterTrackByIdentity);
48248
+ i0.ɵɵelementStart(0, "div", 115);
48249
+ i0.ɵɵrepeaterCreate(1, SymphiqFunnelAnalysisDashboardComponent_Conditional_17_Conditional_4_Conditional_28_For_2_Template, 11, 14, "div", 127, i0.ɵɵrepeaterTrackByIdentity);
48093
48250
  i0.ɵɵelementEnd();
48094
48251
  } if (rf & 2) {
48095
48252
  i0.ɵɵadvance();
48096
48253
  i0.ɵɵrepeater(i0.ɵɵpureFunction0(0, _c3$8));
48097
48254
  } }
48098
48255
  function SymphiqFunnelAnalysisDashboardComponent_Conditional_17_Conditional_4_Conditional_29_For_2_Conditional_2_Conditional_0_For_2_Template(rf, ctx) { if (rf & 1) {
48099
- i0.ɵɵelementStart(0, "div", 134);
48100
- i0.ɵɵelement(1, "symphiq-funnel-analysis-metric-card", 135);
48256
+ i0.ɵɵelementStart(0, "div", 135);
48257
+ i0.ɵɵelement(1, "symphiq-funnel-analysis-metric-card", 136);
48101
48258
  i0.ɵɵelementEnd();
48102
48259
  } if (rf & 2) {
48103
48260
  const entry_r30 = ctx.$implicit;
48104
- const ɵ$index_443_r31 = ctx.$index;
48105
- const ɵ$index_434_r32 = i0.ɵɵnextContext(3).$index;
48261
+ const ɵ$index_439_r31 = ctx.$index;
48262
+ const ɵ$index_430_r32 = i0.ɵɵnextContext(3).$index;
48106
48263
  const ctx_r2 = i0.ɵɵnextContext(4);
48107
48264
  i0.ɵɵclassMap(entry_r30.bentoCardClass);
48108
- i0.ɵɵstyleProp("animation-delay", 0.6 + ɵ$index_434_r32 * 0.15 + ɵ$index_443_r31 * 0.08 + "s");
48265
+ i0.ɵɵstyleProp("animation-delay", 0.6 + ɵ$index_430_r32 * 0.15 + ɵ$index_439_r31 * 0.08 + "s");
48109
48266
  i0.ɵɵadvance();
48110
48267
  i0.ɵɵproperty("metric", entry_r30.metric)("insights", ctx_r2.insights())("charts", ctx_r2.chartsForMetric(entry_r30.metric))("allCharts", ctx_r2.allCharts())("analysis", ctx_r2.analysisData())("isLightMode", ctx_r2.isLightMode())("viewMode", ctx_r2.viewMode())("isCompactMode", false)("currencySymbol", ctx_r2.currencySymbol());
48111
48268
  } }
48112
48269
  function SymphiqFunnelAnalysisDashboardComponent_Conditional_17_Conditional_4_Conditional_29_For_2_Conditional_2_Conditional_0_Template(rf, ctx) { if (rf & 1) {
48113
- i0.ɵɵelementStart(0, "div", 131);
48114
- i0.ɵɵrepeaterCreate(1, SymphiqFunnelAnalysisDashboardComponent_Conditional_17_Conditional_4_Conditional_29_For_2_Conditional_2_Conditional_0_For_2_Template, 2, 13, "div", 133, i0.ɵɵrepeaterTrackByIndex);
48270
+ i0.ɵɵelementStart(0, "div", 132);
48271
+ i0.ɵɵrepeaterCreate(1, SymphiqFunnelAnalysisDashboardComponent_Conditional_17_Conditional_4_Conditional_29_For_2_Conditional_2_Conditional_0_For_2_Template, 2, 13, "div", 134, i0.ɵɵrepeaterTrackByIndex);
48115
48272
  i0.ɵɵelementEnd();
48116
48273
  } if (rf & 2) {
48117
48274
  const funnelGroup_r33 = i0.ɵɵnextContext(2).$implicit;
@@ -48119,21 +48276,21 @@ function SymphiqFunnelAnalysisDashboardComponent_Conditional_17_Conditional_4_Co
48119
48276
  i0.ɵɵrepeater(funnelGroup_r33.relatedMetricsDisplay);
48120
48277
  } }
48121
48278
  function SymphiqFunnelAnalysisDashboardComponent_Conditional_17_Conditional_4_Conditional_29_For_2_Conditional_2_Conditional_1_For_2_Template(rf, ctx) { if (rf & 1) {
48122
- i0.ɵɵelementStart(0, "div", 134);
48123
- i0.ɵɵelement(1, "symphiq-funnel-analysis-metric-card", 73);
48279
+ i0.ɵɵelementStart(0, "div", 135);
48280
+ i0.ɵɵelement(1, "symphiq-funnel-analysis-metric-card", 74);
48124
48281
  i0.ɵɵelementEnd();
48125
48282
  } if (rf & 2) {
48126
48283
  const entry_r34 = ctx.$implicit;
48127
- const ɵ$index_451_r35 = ctx.$index;
48128
- const ɵ$index_434_r32 = i0.ɵɵnextContext(3).$index;
48284
+ const ɵ$index_447_r35 = ctx.$index;
48285
+ const ɵ$index_430_r32 = i0.ɵɵnextContext(3).$index;
48129
48286
  const ctx_r2 = i0.ɵɵnextContext(4);
48130
- i0.ɵɵstyleProp("animation-delay", 0.6 + ɵ$index_434_r32 * 0.15 + ɵ$index_451_r35 * 0.08 + "s");
48287
+ i0.ɵɵstyleProp("animation-delay", 0.6 + ɵ$index_430_r32 * 0.15 + ɵ$index_447_r35 * 0.08 + "s");
48131
48288
  i0.ɵɵadvance();
48132
48289
  i0.ɵɵproperty("metric", entry_r34.metric)("insights", ctx_r2.insights())("charts", ctx_r2.chartsForMetric(entry_r34.metric))("allCharts", ctx_r2.allCharts())("analysis", ctx_r2.analysisData())("isLightMode", ctx_r2.isLightMode())("viewMode", ctx_r2.viewMode())("isCompactMode", true)("currencySymbol", ctx_r2.currencySymbol());
48133
48290
  } }
48134
48291
  function SymphiqFunnelAnalysisDashboardComponent_Conditional_17_Conditional_4_Conditional_29_For_2_Conditional_2_Conditional_1_Template(rf, ctx) { if (rf & 1) {
48135
- i0.ɵɵelementStart(0, "div", 132);
48136
- i0.ɵɵrepeaterCreate(1, SymphiqFunnelAnalysisDashboardComponent_Conditional_17_Conditional_4_Conditional_29_For_2_Conditional_2_Conditional_1_For_2_Template, 2, 11, "div", 136, i0.ɵɵrepeaterTrackByIndex);
48292
+ i0.ɵɵelementStart(0, "div", 133);
48293
+ i0.ɵɵrepeaterCreate(1, SymphiqFunnelAnalysisDashboardComponent_Conditional_17_Conditional_4_Conditional_29_For_2_Conditional_2_Conditional_1_For_2_Template, 2, 11, "div", 137, i0.ɵɵrepeaterTrackByIndex);
48137
48294
  i0.ɵɵelementEnd();
48138
48295
  } if (rf & 2) {
48139
48296
  const funnelGroup_r33 = i0.ɵɵnextContext(2).$implicit;
@@ -48141,16 +48298,16 @@ function SymphiqFunnelAnalysisDashboardComponent_Conditional_17_Conditional_4_Co
48141
48298
  i0.ɵɵrepeater(funnelGroup_r33.relatedMetricsDisplay);
48142
48299
  } }
48143
48300
  function SymphiqFunnelAnalysisDashboardComponent_Conditional_17_Conditional_4_Conditional_29_For_2_Conditional_2_Conditional_2_For_2_Template(rf, ctx) { if (rf & 1) {
48144
- i0.ɵɵelementStart(0, "div", 137)(1, "div", 91)(2, "div", 103);
48145
- i0.ɵɵelement(3, "symphiq-skeleton-loader", 69)(4, "symphiq-skeleton-loader", 69);
48301
+ i0.ɵɵelementStart(0, "div", 138)(1, "div", 92)(2, "div", 104);
48302
+ i0.ɵɵelement(3, "symphiq-skeleton-loader", 70)(4, "symphiq-skeleton-loader", 70);
48146
48303
  i0.ɵɵelementEnd();
48147
- i0.ɵɵelement(5, "symphiq-skeleton-loader", 69);
48148
- i0.ɵɵelementStart(6, "div", 138);
48149
- i0.ɵɵelement(7, "symphiq-skeleton-loader", 69)(8, "symphiq-skeleton-loader", 69);
48304
+ i0.ɵɵelement(5, "symphiq-skeleton-loader", 70);
48305
+ i0.ɵɵelementStart(6, "div", 139);
48306
+ i0.ɵɵelement(7, "symphiq-skeleton-loader", 70)(8, "symphiq-skeleton-loader", 70);
48150
48307
  i0.ɵɵelementEnd();
48151
- i0.ɵɵelement(9, "symphiq-skeleton-loader", 69)(10, "symphiq-skeleton-loader", 69);
48152
- i0.ɵɵelementStart(11, "div", 139);
48153
- i0.ɵɵelement(12, "symphiq-skeleton-loader", 69);
48308
+ i0.ɵɵelement(9, "symphiq-skeleton-loader", 70)(10, "symphiq-skeleton-loader", 70);
48309
+ i0.ɵɵelementStart(11, "div", 140);
48310
+ i0.ɵɵelement(12, "symphiq-skeleton-loader", 70);
48154
48311
  i0.ɵɵelementEnd()()();
48155
48312
  } if (rf & 2) {
48156
48313
  const ctx_r2 = i0.ɵɵnextContext(7);
@@ -48173,46 +48330,46 @@ function SymphiqFunnelAnalysisDashboardComponent_Conditional_17_Conditional_4_Co
48173
48330
  i0.ɵɵproperty("width", "100%")("height", "120px")("isLightMode", ctx_r2.isLightMode());
48174
48331
  } }
48175
48332
  function SymphiqFunnelAnalysisDashboardComponent_Conditional_17_Conditional_4_Conditional_29_For_2_Conditional_2_Conditional_2_Template(rf, ctx) { if (rf & 1) {
48176
- i0.ɵɵelementStart(0, "div", 131);
48177
- i0.ɵɵrepeaterCreate(1, SymphiqFunnelAnalysisDashboardComponent_Conditional_17_Conditional_4_Conditional_29_For_2_Conditional_2_Conditional_2_For_2_Template, 13, 25, "div", 137, i0.ɵɵrepeaterTrackByIdentity);
48333
+ i0.ɵɵelementStart(0, "div", 132);
48334
+ i0.ɵɵrepeaterCreate(1, SymphiqFunnelAnalysisDashboardComponent_Conditional_17_Conditional_4_Conditional_29_For_2_Conditional_2_Conditional_2_For_2_Template, 13, 25, "div", 138, i0.ɵɵrepeaterTrackByIdentity);
48178
48335
  i0.ɵɵelementEnd();
48179
48336
  } if (rf & 2) {
48180
48337
  i0.ɵɵadvance();
48181
48338
  i0.ɵɵrepeater(i0.ɵɵpureFunction0(0, _c4$5));
48182
48339
  } }
48183
48340
  function SymphiqFunnelAnalysisDashboardComponent_Conditional_17_Conditional_4_Conditional_29_For_2_Conditional_2_Template(rf, ctx) { if (rf & 1) {
48184
- i0.ɵɵconditionalCreate(0, SymphiqFunnelAnalysisDashboardComponent_Conditional_17_Conditional_4_Conditional_29_For_2_Conditional_2_Conditional_0_Template, 3, 0, "div", 131)(1, SymphiqFunnelAnalysisDashboardComponent_Conditional_17_Conditional_4_Conditional_29_For_2_Conditional_2_Conditional_1_Template, 3, 0, "div", 132)(2, SymphiqFunnelAnalysisDashboardComponent_Conditional_17_Conditional_4_Conditional_29_For_2_Conditional_2_Conditional_2_Template, 3, 1, "div", 131);
48341
+ i0.ɵɵconditionalCreate(0, SymphiqFunnelAnalysisDashboardComponent_Conditional_17_Conditional_4_Conditional_29_For_2_Conditional_2_Conditional_0_Template, 3, 0, "div", 132)(1, SymphiqFunnelAnalysisDashboardComponent_Conditional_17_Conditional_4_Conditional_29_For_2_Conditional_2_Conditional_1_Template, 3, 0, "div", 133)(2, SymphiqFunnelAnalysisDashboardComponent_Conditional_17_Conditional_4_Conditional_29_For_2_Conditional_2_Conditional_2_Template, 3, 1, "div", 132);
48185
48342
  } if (rf & 2) {
48186
48343
  const ctx_r2 = i0.ɵɵnextContext(5);
48187
48344
  i0.ɵɵconditional(ctx_r2.viewModeService.isExpanded() ? 0 : !ctx_r2.viewModeService.isExpanded() ? 1 : 2);
48188
48345
  } }
48189
48346
  function SymphiqFunnelAnalysisDashboardComponent_Conditional_17_Conditional_4_Conditional_29_For_2_Template(rf, ctx) { if (rf & 1) {
48190
- i0.ɵɵelementStart(0, "div", 130);
48191
- i0.ɵɵelement(1, "symphiq-funnel-analysis-metric-card", 73);
48347
+ i0.ɵɵelementStart(0, "div", 131);
48348
+ i0.ɵɵelement(1, "symphiq-funnel-analysis-metric-card", 74);
48192
48349
  i0.ɵɵelementEnd();
48193
48350
  i0.ɵɵconditionalCreate(2, SymphiqFunnelAnalysisDashboardComponent_Conditional_17_Conditional_4_Conditional_29_For_2_Conditional_2_Template, 3, 1);
48194
48351
  } if (rf & 2) {
48195
48352
  const funnelGroup_r33 = ctx.$implicit;
48196
- const ɵ$index_434_r32 = ctx.$index;
48353
+ const ɵ$index_430_r32 = ctx.$index;
48197
48354
  const ctx_r2 = i0.ɵɵnextContext(4);
48198
- i0.ɵɵstyleProp("animation-delay", 0.5 + ɵ$index_434_r32 * 0.15 + "s");
48199
- i0.ɵɵproperty("libSymphiqSearchHighlight", ctx_r2.searchService.highlightedResultId())("highlightId", "metric-" + ɵ$index_434_r32);
48355
+ i0.ɵɵstyleProp("animation-delay", 0.5 + ɵ$index_430_r32 * 0.15 + "s");
48356
+ i0.ɵɵproperty("libSymphiqSearchHighlight", ctx_r2.searchService.highlightedResultId())("highlightId", "metric-" + ɵ$index_430_r32);
48200
48357
  i0.ɵɵadvance();
48201
48358
  i0.ɵɵproperty("metric", funnelGroup_r33.funnelMetric)("insights", ctx_r2.insights())("charts", ctx_r2.chartsForMetric(funnelGroup_r33.funnelMetric))("allCharts", ctx_r2.allCharts())("analysis", ctx_r2.analysisData())("isLightMode", ctx_r2.isLightMode())("viewMode", ctx_r2.viewMode())("isCompactMode", ctx_r2.viewModeService.isCompact())("currencySymbol", ctx_r2.currencySymbol());
48202
48359
  i0.ɵɵadvance();
48203
48360
  i0.ɵɵconditional(funnelGroup_r33.relatedMetricsDisplay.length > 0 ? 2 : -1);
48204
48361
  } }
48205
48362
  function SymphiqFunnelAnalysisDashboardComponent_Conditional_17_Conditional_4_Conditional_29_ForEmpty_3_Template(rf, ctx) { if (rf & 1) {
48206
- i0.ɵɵelementStart(0, "div", 129);
48363
+ i0.ɵɵelementStart(0, "div", 130);
48207
48364
  i0.ɵɵnamespaceSVG();
48208
- i0.ɵɵelementStart(1, "svg", 140);
48209
- i0.ɵɵelement(2, "path", 104);
48365
+ i0.ɵɵelementStart(1, "svg", 141);
48366
+ i0.ɵɵelement(2, "path", 105);
48210
48367
  i0.ɵɵelementEnd();
48211
48368
  i0.ɵɵnamespaceHTML();
48212
- i0.ɵɵelementStart(3, "h3", 141);
48369
+ i0.ɵɵelementStart(3, "h3", 142);
48213
48370
  i0.ɵɵtext(4, "No Metrics Found");
48214
48371
  i0.ɵɵelementEnd();
48215
- i0.ɵɵelementStart(5, "p", 142);
48372
+ i0.ɵɵelementStart(5, "p", 143);
48216
48373
  i0.ɵɵtext(6, "No performance metrics match your current filter selection. Try adjusting your filters to see more results.");
48217
48374
  i0.ɵɵelementEnd()();
48218
48375
  } if (rf & 2) {
@@ -48226,8 +48383,8 @@ function SymphiqFunnelAnalysisDashboardComponent_Conditional_17_Conditional_4_Co
48226
48383
  i0.ɵɵproperty("ngClass", ctx_r2.isLightMode() ? "text-slate-600" : "text-slate-400");
48227
48384
  } }
48228
48385
  function SymphiqFunnelAnalysisDashboardComponent_Conditional_17_Conditional_4_Conditional_29_Template(rf, ctx) { if (rf & 1) {
48229
- i0.ɵɵelementStart(0, "div", 114);
48230
- i0.ɵɵrepeaterCreate(1, SymphiqFunnelAnalysisDashboardComponent_Conditional_17_Conditional_4_Conditional_29_For_2_Template, 3, 14, null, null, i0.ɵɵrepeaterTrackByIndex, false, SymphiqFunnelAnalysisDashboardComponent_Conditional_17_Conditional_4_Conditional_29_ForEmpty_3_Template, 7, 4, "div", 129);
48386
+ i0.ɵɵelementStart(0, "div", 115);
48387
+ i0.ɵɵrepeaterCreate(1, SymphiqFunnelAnalysisDashboardComponent_Conditional_17_Conditional_4_Conditional_29_For_2_Template, 3, 14, null, null, i0.ɵɵrepeaterTrackByIndex, false, SymphiqFunnelAnalysisDashboardComponent_Conditional_17_Conditional_4_Conditional_29_ForEmpty_3_Template, 7, 4, "div", 130);
48231
48388
  i0.ɵɵelementEnd();
48232
48389
  } if (rf & 2) {
48233
48390
  const ctx_r2 = i0.ɵɵnextContext(3);
@@ -48237,39 +48394,39 @@ function SymphiqFunnelAnalysisDashboardComponent_Conditional_17_Conditional_4_Co
48237
48394
  } }
48238
48395
  function SymphiqFunnelAnalysisDashboardComponent_Conditional_17_Conditional_4_Template(rf, ctx) { if (rf & 1) {
48239
48396
  const _r26 = i0.ɵɵgetCurrentView();
48240
- i0.ɵɵconditionalCreate(0, SymphiqFunnelAnalysisDashboardComponent_Conditional_17_Conditional_4_Conditional_0_Template, 7, 3, "div", 99);
48241
- i0.ɵɵelementStart(1, "section", 100);
48242
- i0.ɵɵelement(2, "div", 101);
48243
- i0.ɵɵelementStart(3, "div", 86)(4, "div", 102)(5, "div", 103)(6, "div", 61)(7, "div", 62)(8, "div", 61);
48397
+ i0.ɵɵconditionalCreate(0, SymphiqFunnelAnalysisDashboardComponent_Conditional_17_Conditional_4_Conditional_0_Template, 7, 3, "div", 100);
48398
+ i0.ɵɵelementStart(1, "section", 101);
48399
+ i0.ɵɵelement(2, "div", 102);
48400
+ i0.ɵɵelementStart(3, "div", 87)(4, "div", 103)(5, "div", 104)(6, "div", 62)(7, "div", 63)(8, "div", 62);
48244
48401
  i0.ɵɵnamespaceSVG();
48245
- i0.ɵɵelementStart(9, "svg", 63);
48246
- i0.ɵɵelement(10, "path", 104);
48402
+ i0.ɵɵelementStart(9, "svg", 64);
48403
+ i0.ɵɵelement(10, "path", 105);
48247
48404
  i0.ɵɵelementEnd();
48248
48405
  i0.ɵɵnamespaceHTML();
48249
- i0.ɵɵelementStart(11, "h2", 65);
48406
+ i0.ɵɵelementStart(11, "h2", 66);
48250
48407
  i0.ɵɵtext(12, "Performance Metrics");
48251
48408
  i0.ɵɵelementEnd()()()();
48252
- i0.ɵɵelementStart(13, "div", 105);
48253
- i0.ɵɵconditionalCreate(14, SymphiqFunnelAnalysisDashboardComponent_Conditional_17_Conditional_4_Conditional_14_Template, 2, 0, "div", 106);
48254
- i0.ɵɵelementStart(15, "select", 107);
48409
+ i0.ɵɵelementStart(13, "div", 106);
48410
+ i0.ɵɵconditionalCreate(14, SymphiqFunnelAnalysisDashboardComponent_Conditional_17_Conditional_4_Conditional_14_Template, 2, 0, "div", 107);
48411
+ i0.ɵɵelementStart(15, "select", 108);
48255
48412
  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)); });
48256
48413
  i0.ɵɵrepeaterCreate(16, SymphiqFunnelAnalysisDashboardComponent_Conditional_17_Conditional_4_For_17_Template, 2, 1, null, null, _forTrack0$J);
48257
48414
  i0.ɵɵelementEnd();
48258
- i0.ɵɵelementStart(18, "button", 108);
48415
+ i0.ɵɵelementStart(18, "button", 109);
48259
48416
  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()); });
48260
48417
  i0.ɵɵnamespaceSVG();
48261
- i0.ɵɵelementStart(19, "svg", 109);
48262
- i0.ɵɵconditionalCreate(20, SymphiqFunnelAnalysisDashboardComponent_Conditional_17_Conditional_4_Conditional_20_Template, 1, 0, ":svg:path", 110);
48263
- i0.ɵɵconditionalCreate(21, SymphiqFunnelAnalysisDashboardComponent_Conditional_17_Conditional_4_Conditional_21_Template, 1, 0, ":svg:path", 111);
48418
+ i0.ɵɵelementStart(19, "svg", 110);
48419
+ i0.ɵɵconditionalCreate(20, SymphiqFunnelAnalysisDashboardComponent_Conditional_17_Conditional_4_Conditional_20_Template, 1, 0, ":svg:path", 111);
48420
+ i0.ɵɵconditionalCreate(21, SymphiqFunnelAnalysisDashboardComponent_Conditional_17_Conditional_4_Conditional_21_Template, 1, 0, ":svg:path", 112);
48264
48421
  i0.ɵɵelementEnd();
48265
48422
  i0.ɵɵnamespaceHTML();
48266
48423
  i0.ɵɵelementStart(22, "span");
48267
48424
  i0.ɵɵtext(23, "Sort");
48268
48425
  i0.ɵɵelementEnd()()()();
48269
- i0.ɵɵelementStart(24, "div", 112)(25, "div", 113);
48426
+ i0.ɵɵelementStart(24, "div", 113)(25, "div", 114);
48270
48427
  i0.ɵɵrepeaterCreate(26, SymphiqFunnelAnalysisDashboardComponent_Conditional_17_Conditional_4_For_27_Template, 1, 1, null, null, _forTrack0$J);
48271
48428
  i0.ɵɵelementEnd()()();
48272
- i0.ɵɵconditionalCreate(28, SymphiqFunnelAnalysisDashboardComponent_Conditional_17_Conditional_4_Conditional_28_Template, 3, 1, "div", 114)(29, SymphiqFunnelAnalysisDashboardComponent_Conditional_17_Conditional_4_Conditional_29_Template, 4, 5, "div", 115);
48429
+ 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);
48273
48430
  i0.ɵɵelementEnd()();
48274
48431
  } if (rf & 2) {
48275
48432
  const ctx_r2 = i0.ɵɵnextContext(2);
@@ -48303,8 +48460,8 @@ function SymphiqFunnelAnalysisDashboardComponent_Conditional_17_Conditional_4_Te
48303
48460
  i0.ɵɵconditional(ctx_r2.isDataLoading() ? 28 : 29);
48304
48461
  } }
48305
48462
  function SymphiqFunnelAnalysisDashboardComponent_Conditional_17_Conditional_5_Conditional_0_Template(rf, ctx) { if (rf & 1) {
48306
- i0.ɵɵelementStart(0, "div", 143);
48307
- i0.ɵɵelement(1, "symphiq-section-divider", 151);
48463
+ i0.ɵɵelementStart(0, "div", 144);
48464
+ i0.ɵɵelement(1, "symphiq-section-divider", 152);
48308
48465
  i0.ɵɵelementEnd();
48309
48466
  } if (rf & 2) {
48310
48467
  const ctx_r2 = i0.ɵɵnextContext(3);
@@ -48312,12 +48469,12 @@ function SymphiqFunnelAnalysisDashboardComponent_Conditional_17_Conditional_5_Co
48312
48469
  i0.ɵɵproperty("viewMode", ctx_r2.viewMode());
48313
48470
  } }
48314
48471
  function SymphiqFunnelAnalysisDashboardComponent_Conditional_17_Conditional_5_Conditional_12_Template(rf, ctx) { if (rf & 1) {
48315
- i0.ɵɵelementStart(0, "div", 106);
48316
- i0.ɵɵelement(1, "div", 152);
48472
+ i0.ɵɵelementStart(0, "div", 107);
48473
+ i0.ɵɵelement(1, "div", 153);
48317
48474
  i0.ɵɵelementEnd();
48318
48475
  } }
48319
48476
  function SymphiqFunnelAnalysisDashboardComponent_Conditional_17_Conditional_5_For_15_Conditional_0_Template(rf, ctx) { if (rf & 1) {
48320
- i0.ɵɵelementStart(0, "option", 123);
48477
+ i0.ɵɵelementStart(0, "option", 124);
48321
48478
  i0.ɵɵtext(1);
48322
48479
  i0.ɵɵelementEnd();
48323
48480
  } if (rf & 2) {
@@ -48337,14 +48494,14 @@ function SymphiqFunnelAnalysisDashboardComponent_Conditional_17_Conditional_5_Fo
48337
48494
  i0.ɵɵtextInterpolate(filter_r37.label);
48338
48495
  } }
48339
48496
  function SymphiqFunnelAnalysisDashboardComponent_Conditional_17_Conditional_5_For_15_Template(rf, ctx) { if (rf & 1) {
48340
- i0.ɵɵconditionalCreate(0, SymphiqFunnelAnalysisDashboardComponent_Conditional_17_Conditional_5_For_15_Conditional_0_Template, 2, 2, "option", 123)(1, SymphiqFunnelAnalysisDashboardComponent_Conditional_17_Conditional_5_For_15_Conditional_1_Template, 2, 2, "option", 25);
48497
+ i0.ɵɵconditionalCreate(0, SymphiqFunnelAnalysisDashboardComponent_Conditional_17_Conditional_5_For_15_Conditional_0_Template, 2, 2, "option", 124)(1, SymphiqFunnelAnalysisDashboardComponent_Conditional_17_Conditional_5_For_15_Conditional_1_Template, 2, 2, "option", 25);
48341
48498
  } if (rf & 2) {
48342
48499
  const filter_r37 = ctx.$implicit;
48343
48500
  i0.ɵɵconditional(filter_r37.divider ? 0 : 1);
48344
48501
  } }
48345
48502
  function SymphiqFunnelAnalysisDashboardComponent_Conditional_17_Conditional_5_Conditional_16_For_2_For_6_Template(rf, ctx) { if (rf & 1) {
48346
- i0.ɵɵelementStart(0, "div", 154);
48347
- i0.ɵɵelement(1, "symphiq-skeleton-loader", 69)(2, "symphiq-skeleton-loader", 69);
48503
+ i0.ɵɵelementStart(0, "div", 155);
48504
+ i0.ɵɵelement(1, "symphiq-skeleton-loader", 70)(2, "symphiq-skeleton-loader", 70);
48348
48505
  i0.ɵɵelementEnd();
48349
48506
  } if (rf & 2) {
48350
48507
  const ctx_r2 = i0.ɵɵnextContext(5);
@@ -48355,11 +48512,11 @@ function SymphiqFunnelAnalysisDashboardComponent_Conditional_17_Conditional_5_Co
48355
48512
  i0.ɵɵproperty("width", "80px")("height", "18px")("isLightMode", ctx_r2.isLightMode());
48356
48513
  } }
48357
48514
  function SymphiqFunnelAnalysisDashboardComponent_Conditional_17_Conditional_5_Conditional_16_For_2_Template(rf, ctx) { if (rf & 1) {
48358
- i0.ɵɵelementStart(0, "div", 126)(1, "div", 127);
48359
- i0.ɵɵelement(2, "symphiq-skeleton-loader", 69)(3, "symphiq-skeleton-loader", 69);
48515
+ i0.ɵɵelementStart(0, "div", 127)(1, "div", 128);
48516
+ i0.ɵɵelement(2, "symphiq-skeleton-loader", 70)(3, "symphiq-skeleton-loader", 70);
48360
48517
  i0.ɵɵelementEnd();
48361
- i0.ɵɵelementStart(4, "div", 153);
48362
- i0.ɵɵrepeaterCreate(5, SymphiqFunnelAnalysisDashboardComponent_Conditional_17_Conditional_5_Conditional_16_For_2_For_6_Template, 3, 7, "div", 154, i0.ɵɵrepeaterTrackByIdentity);
48518
+ i0.ɵɵelementStart(4, "div", 154);
48519
+ i0.ɵɵrepeaterCreate(5, SymphiqFunnelAnalysisDashboardComponent_Conditional_17_Conditional_5_Conditional_16_For_2_For_6_Template, 3, 7, "div", 155, i0.ɵɵrepeaterTrackByIdentity);
48363
48520
  i0.ɵɵelementEnd()();
48364
48521
  } if (rf & 2) {
48365
48522
  const ctx_r2 = i0.ɵɵnextContext(4);
@@ -48372,16 +48529,16 @@ function SymphiqFunnelAnalysisDashboardComponent_Conditional_17_Conditional_5_Co
48372
48529
  i0.ɵɵrepeater(i0.ɵɵpureFunction0(7, _c4$5));
48373
48530
  } }
48374
48531
  function SymphiqFunnelAnalysisDashboardComponent_Conditional_17_Conditional_5_Conditional_16_Template(rf, ctx) { if (rf & 1) {
48375
- i0.ɵɵelementStart(0, "div", 79);
48376
- i0.ɵɵrepeaterCreate(1, SymphiqFunnelAnalysisDashboardComponent_Conditional_17_Conditional_5_Conditional_16_For_2_Template, 7, 8, "div", 126, i0.ɵɵrepeaterTrackByIdentity);
48532
+ i0.ɵɵelementStart(0, "div", 80);
48533
+ i0.ɵɵrepeaterCreate(1, SymphiqFunnelAnalysisDashboardComponent_Conditional_17_Conditional_5_Conditional_16_For_2_Template, 7, 8, "div", 127, i0.ɵɵrepeaterTrackByIdentity);
48377
48534
  i0.ɵɵelementEnd();
48378
48535
  } if (rf & 2) {
48379
48536
  i0.ɵɵadvance();
48380
48537
  i0.ɵɵrepeater(i0.ɵɵpureFunction0(0, _c5$3));
48381
48538
  } }
48382
48539
  function SymphiqFunnelAnalysisDashboardComponent_Conditional_17_Conditional_5_Conditional_17_For_2_Template(rf, ctx) { if (rf & 1) {
48383
- i0.ɵɵelementStart(0, "div", 96);
48384
- i0.ɵɵelement(1, "symphiq-funnel-analysis-breakdown-section", 155);
48540
+ i0.ɵɵelementStart(0, "div", 97);
48541
+ i0.ɵɵelement(1, "symphiq-funnel-analysis-breakdown-section", 156);
48385
48542
  i0.ɵɵelementEnd();
48386
48543
  } if (rf & 2) {
48387
48544
  const breakdown_r38 = ctx.$implicit;
@@ -48393,16 +48550,16 @@ function SymphiqFunnelAnalysisDashboardComponent_Conditional_17_Conditional_5_Co
48393
48550
  i0.ɵɵproperty("breakdown", breakdown_r38)("charts", ctx_r2.chartsForBreakdown(breakdown_r38))("isLightMode", ctx_r2.isLightMode())("isCompactMode", ctx_r2.viewModeService.isCompact())("currencySymbol", ctx_r2.currencySymbol());
48394
48551
  } }
48395
48552
  function SymphiqFunnelAnalysisDashboardComponent_Conditional_17_Conditional_5_Conditional_17_ForEmpty_3_Template(rf, ctx) { if (rf & 1) {
48396
- i0.ɵɵelementStart(0, "div", 129);
48553
+ i0.ɵɵelementStart(0, "div", 130);
48397
48554
  i0.ɵɵnamespaceSVG();
48398
- i0.ɵɵelementStart(1, "svg", 140);
48399
- i0.ɵɵelement(2, "path", 156);
48555
+ i0.ɵɵelementStart(1, "svg", 141);
48556
+ i0.ɵɵelement(2, "path", 157);
48400
48557
  i0.ɵɵelementEnd();
48401
48558
  i0.ɵɵnamespaceHTML();
48402
- i0.ɵɵelementStart(3, "h3", 141);
48559
+ i0.ɵɵelementStart(3, "h3", 142);
48403
48560
  i0.ɵɵtext(4, "No Breakdowns Found");
48404
48561
  i0.ɵɵelementEnd();
48405
- i0.ɵɵelementStart(5, "p", 142);
48562
+ i0.ɵɵelementStart(5, "p", 143);
48406
48563
  i0.ɵɵtext(6, "No performance breakdowns match your current filter selection. Try adjusting your filters to see more results.");
48407
48564
  i0.ɵɵelementEnd()();
48408
48565
  } if (rf & 2) {
@@ -48416,8 +48573,8 @@ function SymphiqFunnelAnalysisDashboardComponent_Conditional_17_Conditional_5_Co
48416
48573
  i0.ɵɵproperty("ngClass", ctx_r2.isLightMode() ? "text-slate-600" : "text-slate-400");
48417
48574
  } }
48418
48575
  function SymphiqFunnelAnalysisDashboardComponent_Conditional_17_Conditional_5_Conditional_17_Template(rf, ctx) { if (rf & 1) {
48419
- i0.ɵɵelementStart(0, "div", 79);
48420
- i0.ɵɵrepeaterCreate(1, SymphiqFunnelAnalysisDashboardComponent_Conditional_17_Conditional_5_Conditional_17_For_2_Template, 2, 9, "div", 98, i0.ɵɵrepeaterTrackByIndex, false, SymphiqFunnelAnalysisDashboardComponent_Conditional_17_Conditional_5_Conditional_17_ForEmpty_3_Template, 7, 4, "div", 129);
48576
+ i0.ɵɵelementStart(0, "div", 80);
48577
+ i0.ɵɵrepeaterCreate(1, SymphiqFunnelAnalysisDashboardComponent_Conditional_17_Conditional_5_Conditional_17_For_2_Template, 2, 9, "div", 99, i0.ɵɵrepeaterTrackByIndex, false, SymphiqFunnelAnalysisDashboardComponent_Conditional_17_Conditional_5_Conditional_17_ForEmpty_3_Template, 7, 4, "div", 130);
48421
48578
  i0.ɵɵelementEnd();
48422
48579
  } if (rf & 2) {
48423
48580
  const ctx_r2 = i0.ɵɵnextContext(3);
@@ -48427,26 +48584,26 @@ function SymphiqFunnelAnalysisDashboardComponent_Conditional_17_Conditional_5_Co
48427
48584
  } }
48428
48585
  function SymphiqFunnelAnalysisDashboardComponent_Conditional_17_Conditional_5_Template(rf, ctx) { if (rf & 1) {
48429
48586
  const _r36 = i0.ɵɵgetCurrentView();
48430
- i0.ɵɵconditionalCreate(0, SymphiqFunnelAnalysisDashboardComponent_Conditional_17_Conditional_5_Conditional_0_Template, 2, 1, "div", 143);
48431
- i0.ɵɵelementStart(1, "section", 144);
48432
- i0.ɵɵelement(2, "div", 145);
48433
- i0.ɵɵelementStart(3, "div", 86)(4, "div", 146)(5, "div", 62)(6, "div", 61);
48587
+ i0.ɵɵconditionalCreate(0, SymphiqFunnelAnalysisDashboardComponent_Conditional_17_Conditional_5_Conditional_0_Template, 2, 1, "div", 144);
48588
+ i0.ɵɵelementStart(1, "section", 145);
48589
+ i0.ɵɵelement(2, "div", 146);
48590
+ i0.ɵɵelementStart(3, "div", 87)(4, "div", 147)(5, "div", 63)(6, "div", 62);
48434
48591
  i0.ɵɵnamespaceSVG();
48435
- i0.ɵɵelementStart(7, "svg", 63);
48436
- i0.ɵɵelement(8, "path", 147);
48592
+ i0.ɵɵelementStart(7, "svg", 64);
48593
+ i0.ɵɵelement(8, "path", 148);
48437
48594
  i0.ɵɵelementEnd();
48438
48595
  i0.ɵɵnamespaceHTML();
48439
- i0.ɵɵelementStart(9, "h2", 65);
48596
+ i0.ɵɵelementStart(9, "h2", 66);
48440
48597
  i0.ɵɵtext(10, "Performance Breakdowns");
48441
48598
  i0.ɵɵelementEnd()()();
48442
- i0.ɵɵelementStart(11, "div", 148);
48599
+ i0.ɵɵelementStart(11, "div", 149);
48443
48600
  i0.ɵɵlistener("click", function SymphiqFunnelAnalysisDashboardComponent_Conditional_17_Conditional_5_Template_div_click_11_listener($event) { i0.ɵɵrestoreView(_r36); return i0.ɵɵresetView($event.stopPropagation()); })("mousedown", function SymphiqFunnelAnalysisDashboardComponent_Conditional_17_Conditional_5_Template_div_mousedown_11_listener($event) { i0.ɵɵrestoreView(_r36); return i0.ɵɵresetView($event.stopPropagation()); })("pointerdown", function SymphiqFunnelAnalysisDashboardComponent_Conditional_17_Conditional_5_Template_div_pointerdown_11_listener($event) { i0.ɵɵrestoreView(_r36); return i0.ɵɵresetView($event.stopPropagation()); });
48444
- i0.ɵɵconditionalCreate(12, SymphiqFunnelAnalysisDashboardComponent_Conditional_17_Conditional_5_Conditional_12_Template, 2, 0, "div", 106);
48445
- i0.ɵɵelementStart(13, "select", 149);
48601
+ i0.ɵɵconditionalCreate(12, SymphiqFunnelAnalysisDashboardComponent_Conditional_17_Conditional_5_Conditional_12_Template, 2, 0, "div", 107);
48602
+ i0.ɵɵelementStart(13, "select", 150);
48446
48603
  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)); });
48447
48604
  i0.ɵɵrepeaterCreate(14, SymphiqFunnelAnalysisDashboardComponent_Conditional_17_Conditional_5_For_15_Template, 2, 1, null, null, _forTrack0$J);
48448
48605
  i0.ɵɵelementEnd()()();
48449
- i0.ɵɵconditionalCreate(16, SymphiqFunnelAnalysisDashboardComponent_Conditional_17_Conditional_5_Conditional_16_Template, 3, 1, "div", 79)(17, SymphiqFunnelAnalysisDashboardComponent_Conditional_17_Conditional_5_Conditional_17_Template, 4, 5, "div", 150);
48606
+ 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);
48450
48607
  i0.ɵɵelementEnd()();
48451
48608
  } if (rf & 2) {
48452
48609
  const ctx_r2 = i0.ɵɵnextContext(2);
@@ -48470,8 +48627,8 @@ function SymphiqFunnelAnalysisDashboardComponent_Conditional_17_Conditional_5_Te
48470
48627
  i0.ɵɵconditional(ctx_r2.isDataLoading() ? 16 : 17);
48471
48628
  } }
48472
48629
  function SymphiqFunnelAnalysisDashboardComponent_Conditional_17_Conditional_6_Conditional_0_Template(rf, ctx) { if (rf & 1) {
48473
- i0.ɵɵelementStart(0, "div", 143);
48474
- i0.ɵɵelement(1, "symphiq-section-divider", 161);
48630
+ i0.ɵɵelementStart(0, "div", 144);
48631
+ i0.ɵɵelement(1, "symphiq-section-divider", 162);
48475
48632
  i0.ɵɵelementEnd();
48476
48633
  } if (rf & 2) {
48477
48634
  const ctx_r2 = i0.ɵɵnextContext(3);
@@ -48479,12 +48636,12 @@ function SymphiqFunnelAnalysisDashboardComponent_Conditional_17_Conditional_6_Co
48479
48636
  i0.ɵɵproperty("viewMode", ctx_r2.viewMode());
48480
48637
  } }
48481
48638
  function SymphiqFunnelAnalysisDashboardComponent_Conditional_17_Conditional_6_Conditional_13_Template(rf, ctx) { if (rf & 1) {
48482
- i0.ɵɵelementStart(0, "div", 106);
48483
- i0.ɵɵelement(1, "div", 162);
48639
+ i0.ɵɵelementStart(0, "div", 107);
48640
+ i0.ɵɵelement(1, "div", 163);
48484
48641
  i0.ɵɵelementEnd();
48485
48642
  } }
48486
48643
  function SymphiqFunnelAnalysisDashboardComponent_Conditional_17_Conditional_6_For_16_Conditional_0_Template(rf, ctx) { if (rf & 1) {
48487
- i0.ɵɵelementStart(0, "option", 123);
48644
+ i0.ɵɵelementStart(0, "option", 124);
48488
48645
  i0.ɵɵtext(1);
48489
48646
  i0.ɵɵelementEnd();
48490
48647
  } if (rf & 2) {
@@ -48504,22 +48661,22 @@ function SymphiqFunnelAnalysisDashboardComponent_Conditional_17_Conditional_6_Fo
48504
48661
  i0.ɵɵtextInterpolate(filter_r41.label);
48505
48662
  } }
48506
48663
  function SymphiqFunnelAnalysisDashboardComponent_Conditional_17_Conditional_6_For_16_Template(rf, ctx) { if (rf & 1) {
48507
- i0.ɵɵconditionalCreate(0, SymphiqFunnelAnalysisDashboardComponent_Conditional_17_Conditional_6_For_16_Conditional_0_Template, 2, 2, "option", 123)(1, SymphiqFunnelAnalysisDashboardComponent_Conditional_17_Conditional_6_For_16_Conditional_1_Template, 2, 2, "option", 25);
48664
+ i0.ɵɵconditionalCreate(0, SymphiqFunnelAnalysisDashboardComponent_Conditional_17_Conditional_6_For_16_Conditional_0_Template, 2, 2, "option", 124)(1, SymphiqFunnelAnalysisDashboardComponent_Conditional_17_Conditional_6_For_16_Conditional_1_Template, 2, 2, "option", 25);
48508
48665
  } if (rf & 2) {
48509
48666
  const filter_r41 = ctx.$implicit;
48510
48667
  i0.ɵɵconditional(filter_r41.divider ? 0 : 1);
48511
48668
  } }
48512
48669
  function SymphiqFunnelAnalysisDashboardComponent_Conditional_17_Conditional_6_Conditional_17_For_5_Template(rf, ctx) { if (rf & 1) {
48513
- i0.ɵɵelement(0, "symphiq-skeleton-loader", 69);
48670
+ i0.ɵɵelement(0, "symphiq-skeleton-loader", 70);
48514
48671
  } if (rf & 2) {
48515
48672
  const ctx_r2 = i0.ɵɵnextContext(4);
48516
48673
  i0.ɵɵproperty("width", "100%")("height", "140px")("isLightMode", ctx_r2.isLightMode());
48517
48674
  } }
48518
48675
  function SymphiqFunnelAnalysisDashboardComponent_Conditional_17_Conditional_6_Conditional_17_Template(rf, ctx) { if (rf & 1) {
48519
- i0.ɵɵelementStart(0, "div", 79)(1, "div", 126);
48520
- i0.ɵɵelement(2, "symphiq-skeleton-loader", 69);
48521
- i0.ɵɵelementStart(3, "div", 163);
48522
- i0.ɵɵrepeaterCreate(4, SymphiqFunnelAnalysisDashboardComponent_Conditional_17_Conditional_6_Conditional_17_For_5_Template, 1, 3, "symphiq-skeleton-loader", 69, i0.ɵɵrepeaterTrackByIdentity);
48676
+ i0.ɵɵelementStart(0, "div", 80)(1, "div", 127);
48677
+ i0.ɵɵelement(2, "symphiq-skeleton-loader", 70);
48678
+ i0.ɵɵelementStart(3, "div", 164);
48679
+ i0.ɵɵrepeaterCreate(4, SymphiqFunnelAnalysisDashboardComponent_Conditional_17_Conditional_6_Conditional_17_For_5_Template, 1, 3, "symphiq-skeleton-loader", 70, i0.ɵɵrepeaterTrackByIdentity);
48523
48680
  i0.ɵɵelementEnd()()();
48524
48681
  } if (rf & 2) {
48525
48682
  const ctx_r2 = i0.ɵɵnextContext(3);
@@ -48531,7 +48688,7 @@ function SymphiqFunnelAnalysisDashboardComponent_Conditional_17_Conditional_6_Co
48531
48688
  i0.ɵɵrepeater(i0.ɵɵpureFunction0(4, _c3$8));
48532
48689
  } }
48533
48690
  function SymphiqFunnelAnalysisDashboardComponent_Conditional_17_Conditional_6_Conditional_18_Template(rf, ctx) { if (rf & 1) {
48534
- i0.ɵɵelement(0, "symphiq-competitive-intelligence-view", 76);
48691
+ i0.ɵɵelement(0, "symphiq-competitive-intelligence-view", 77);
48535
48692
  } if (rf & 2) {
48536
48693
  let tmp_8_0;
48537
48694
  const ctx_r2 = i0.ɵɵnextContext(3);
@@ -48539,25 +48696,25 @@ function SymphiqFunnelAnalysisDashboardComponent_Conditional_17_Conditional_6_Co
48539
48696
  } }
48540
48697
  function SymphiqFunnelAnalysisDashboardComponent_Conditional_17_Conditional_6_Template(rf, ctx) { if (rf & 1) {
48541
48698
  const _r40 = i0.ɵɵgetCurrentView();
48542
- i0.ɵɵconditionalCreate(0, SymphiqFunnelAnalysisDashboardComponent_Conditional_17_Conditional_6_Conditional_0_Template, 2, 1, "div", 143);
48543
- i0.ɵɵelementStart(1, "section", 157);
48544
- i0.ɵɵelement(2, "div", 85);
48545
- i0.ɵɵelementStart(3, "div", 86)(4, "div", 158)(5, "div", 61)(6, "div", 62)(7, "div", 61);
48699
+ i0.ɵɵconditionalCreate(0, SymphiqFunnelAnalysisDashboardComponent_Conditional_17_Conditional_6_Conditional_0_Template, 2, 1, "div", 144);
48700
+ i0.ɵɵelementStart(1, "section", 158);
48701
+ i0.ɵɵelement(2, "div", 86);
48702
+ i0.ɵɵelementStart(3, "div", 87)(4, "div", 159)(5, "div", 62)(6, "div", 63)(7, "div", 62);
48546
48703
  i0.ɵɵnamespaceSVG();
48547
- i0.ɵɵelementStart(8, "svg", 63);
48548
- i0.ɵɵelement(9, "path", 159);
48704
+ i0.ɵɵelementStart(8, "svg", 64);
48705
+ i0.ɵɵelement(9, "path", 160);
48549
48706
  i0.ɵɵelementEnd();
48550
48707
  i0.ɵɵnamespaceHTML();
48551
- i0.ɵɵelementStart(10, "h2", 65);
48708
+ i0.ɵɵelementStart(10, "h2", 66);
48552
48709
  i0.ɵɵtext(11, "Competitive Intelligence");
48553
48710
  i0.ɵɵelementEnd()()()();
48554
- i0.ɵɵelementStart(12, "div", 160);
48555
- i0.ɵɵconditionalCreate(13, SymphiqFunnelAnalysisDashboardComponent_Conditional_17_Conditional_6_Conditional_13_Template, 2, 0, "div", 106);
48556
- i0.ɵɵelementStart(14, "select", 107);
48711
+ i0.ɵɵelementStart(12, "div", 161);
48712
+ i0.ɵɵconditionalCreate(13, SymphiqFunnelAnalysisDashboardComponent_Conditional_17_Conditional_6_Conditional_13_Template, 2, 0, "div", 107);
48713
+ i0.ɵɵelementStart(14, "select", 108);
48557
48714
  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)); });
48558
48715
  i0.ɵɵrepeaterCreate(15, SymphiqFunnelAnalysisDashboardComponent_Conditional_17_Conditional_6_For_16_Template, 2, 1, null, null, _forTrack0$J);
48559
48716
  i0.ɵɵelementEnd()()();
48560
- i0.ɵɵconditionalCreate(17, SymphiqFunnelAnalysisDashboardComponent_Conditional_17_Conditional_6_Conditional_17_Template, 6, 5, "div", 79)(18, SymphiqFunnelAnalysisDashboardComponent_Conditional_17_Conditional_6_Conditional_18_Template, 1, 6, "symphiq-competitive-intelligence-view", 76);
48717
+ 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);
48561
48718
  i0.ɵɵelementEnd()();
48562
48719
  } if (rf & 2) {
48563
48720
  const ctx_r2 = i0.ɵɵnextContext(2);
@@ -48583,7 +48740,7 @@ function SymphiqFunnelAnalysisDashboardComponent_Conditional_17_Conditional_6_Te
48583
48740
  } }
48584
48741
  function SymphiqFunnelAnalysisDashboardComponent_Conditional_17_Template(rf, ctx) { if (rf & 1) {
48585
48742
  i0.ɵɵelementStart(0, "main", 45)(1, "div", 46);
48586
- i0.ɵɵconditionalCreate(2, SymphiqFunnelAnalysisDashboardComponent_Conditional_17_Conditional_2_Template, 3, 1, "div", 77);
48743
+ i0.ɵɵconditionalCreate(2, SymphiqFunnelAnalysisDashboardComponent_Conditional_17_Conditional_2_Template, 3, 1, "div", 78);
48587
48744
  i0.ɵɵconditionalCreate(3, SymphiqFunnelAnalysisDashboardComponent_Conditional_17_Conditional_3_Template, 17, 10);
48588
48745
  i0.ɵɵconditionalCreate(4, SymphiqFunnelAnalysisDashboardComponent_Conditional_17_Conditional_4_Template, 30, 18);
48589
48746
  i0.ɵɵconditionalCreate(5, SymphiqFunnelAnalysisDashboardComponent_Conditional_17_Conditional_5_Template, 18, 12);
@@ -49683,7 +49840,7 @@ class SymphiqFunnelAnalysisDashboardComponent {
49683
49840
  i0.ɵɵqueryRefresh(_t = i0.ɵɵloadQuery()) && (ctx.dashboardContainer = _t.first);
49684
49841
  } }, hostBindings: function SymphiqFunnelAnalysisDashboardComponent_HostBindings(rf, ctx) { if (rf & 1) {
49685
49842
  i0.ɵɵlistener("scroll", function SymphiqFunnelAnalysisDashboardComponent_scroll_HostBindingHandler() { return ctx.onScroll(); }, i0.ɵɵresolveWindow);
49686
- } }, inputs: { requestedByUser: [1, "requestedByUser"], viewMode: [1, "viewMode"], funnelAnalysis: [1, "funnelAnalysis"], businessProfile: [1, "businessProfile"], embedded: [1, "embedded"], scrollEvent: [1, "scrollEvent"], scrollElement: [1, "scrollElement"], isLoading: [1, "isLoading"], isOnboarded: [1, "isOnboarded"], forDemo: [1, "forDemo"], maxAccessibleStepId: [1, "maxAccessibleStepId"], itemStatus: [1, "itemStatus"], isMarkingAsReviewed: [1, "isMarkingAsReviewed"] }, outputs: { stepClick: "stepClick", nextStepClick: "nextStepClick", markAsReviewedClick: "markAsReviewedClick" }, decls: 27, vars: 57, consts: [["dashboardContainer", ""], [1, "bg-transparent"], [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"], [3, "searchClick", "viewModeClick", "title", "subtitle", "viewMode", "viewModeLabel", "isLoading", "requestedByUser", "createdDate", "showControls", "hasCondensedLeftContent", "embedded", "scrollEvent"], ["expandedControls", ""], [1, "flex", "items-center", "gap-2", "sm:gap-3", "whitespace-nowrap"], ["condensedLeftContent", ""], [1, "hidden", "lg:flex", "items-center", "gap-3", "px-4", "py-1.5", "rounded-lg", 3, "ngClass"], ["condensedControls", ""], [1, "sticky", "top-[var(--header-height)]", "z-40", "border-b", "backdrop-blur-md", "animate-slide-up-fade", 3, "ngClass"], [3, "sections", "viewMode", "embedded", "scrollElement"], [1, "fixed", "right-6", "top-1/2", "-translate-y-1/2", "z-40", "hidden", "xl:flex", "flex-col", "gap-4"], [1, "max-w-7xl", "mx-auto", "px-6", "sm:px-8", 3, "pb-32"], [3, "isLightMode", "viewMode", "allMetrics", "allInsights", "allCharts", "currencySymbol", "businessProfile"], [3, "isLightMode", "allMetrics"], [3, "isLightMode"], [3, "resultSelected", "isLightMode"], [3, "close", "modeSelected", "isOpen", "currentMode", "viewMode", "isLoading"], [3, "expandedChange", "scrollToTop", "toggleView", "isLightMode", "isCompactMode", "isExpanded"], [3, "navigate", "isLightMode", "sections", "activeSection"], [3, "markAsReviewedClick", "viewMode", "reviewStatus", "selfContentStatus", "isMarkingAsReviewed", "isLoading"], [1, "text-xs", "sm:text-sm", "font-medium"], [3, "click", "mousedown", "pointerdown"], [1, "px-3", "sm:px-4", "py-1.5", "rounded-lg", "text-xs", "sm:text-sm", "font-medium", "focus:outline-none", "focus:ring-2", "focus:ring-blue-500", "focus:border-transparent", "transition-colors", "duration-200", "cursor-pointer", 3, "ngModelChange", "ngModel"], [3, "value"], [1, "text-xs", "font-medium"], [1, "text-sm", "font-bold"], [1, "text-xs", "font-semibold", 3, "ngClass"], [1, "px-3", "py-1.5", "rounded-lg", "text-xs", "font-medium", "focus:outline-none", "focus:ring-2", "focus:ring-blue-500", "focus:border-transparent", "transition-colors", "duration-200", "cursor-pointer", 3, "ngModelChange", "ngModel"], [1, "max-w-7xl", "mx-auto", "px-6", "sm:px-8", "py-3"], [1, "flex", "items-center", "justify-between", "gap-4"], [1, "flex", "items-center", "gap-3", "flex-1", "min-w-0"], ["fill", "none", "stroke", "currentColor", "viewBox", "0 0 24 24", 1, "w-5", "h-5", "flex-shrink-0", 3, "ngClass"], ["stroke-linecap", "round", "stroke-linejoin", "round", "stroke-width", "2", "d", "M21 21l-6-6m2-5a7 7 0 11-14 0 7 7 0 0114 0z"], [1, "flex", "items-center", "gap-2", "flex-1", "min-w-0"], [1, "text-sm", "font-medium", 3, "ngClass"], [1, "text-sm", "font-semibold", "truncate", 3, "ngClass"], [1, "px-2", "py-0.5", "rounded", "text-xs", "font-medium", "uppercase", "border", "flex-shrink-0", 3, "ngClass"], ["title", "Clear search", 1, "p-2", "rounded-lg", "transition-colors", "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", "M6 18L18 6M6 6l12 12"], [1, "w-3", "h-3", "rounded-full", "transition-all", "duration-200", "hover:scale-150", "active:scale-100", "cursor-pointer", 3, "libSymphiqTooltip", "tooltipPosition", "ngClass"], [1, "w-3", "h-3", "rounded-full", "transition-all", "duration-200", "hover:scale-150", "active:scale-100", "cursor-pointer", 3, "click", "libSymphiqTooltip", "tooltipPosition", "ngClass"], [3, "viewMode", "currentStepId", "showNextStepAction", "forDemo", "maxAccessibleStepId"], [1, "max-w-7xl", "mx-auto", "px-6", "sm:px-8"], [1, "pt-8", "sm:pt-12", "pb-16", "sm:pb-24"], [1, "mb-8"], [3, "viewMode", "isOnboarded", "analysisDate"], ["title", "Loading Your Funnel Analysis", "subtitle", "Please wait while we prepare your personalized insights...", "size", "large", 3, "viewMode", "backdropBlur"], [3, "stepClick", "nextStepClick", "viewMode", "currentStepId", "showNextStepAction", "forDemo", "maxAccessibleStepId"], [3, "viewMode", "itemStatus", "currentStatus", "confettiIntensity", "title", "subtitle"], ["id", "section-insights", 1, "mb-8"], [3, "viewMode"], ["slot", "overall-performance"], [1, "p-6"], ["slot", "performance-metrics"], [1, "p-6", "space-y-8"], ["slot", "performance-breakdowns"], ["slot", "competitive-intelligence"], [1, "flex", "items-center", "justify-between", "mb-6"], [1, "flex", "items-center", "gap-3"], [1, "pl-4", 3, "ngClass"], ["fill", "none", "stroke", "currentColor", "viewBox", "0 0 24 24", 1, "w-6", "h-6", 3, "ngClass"], ["stroke-linecap", "round", "stroke-linejoin", "round", "stroke-width", "2", "d", "M9.663 17h4.673M12 3v1m6.364 1.636l-.707.707M21 12h-1M4 12H3m3.343-5.657l-.707-.707m2.828 9.9a5 5 0 117.072 0l-.548.547A3.374 3.374 0 0014 18.469V19a2 2 0 11-4 0v-.531c0-.895-.356-1.754-.988-2.386l-.548-.547z"], [1, "text-xl", "sm:text-2xl", "font-bold"], [1, "text-xs", "sm:text-sm"], [1, "grid", "grid-cols-1", "md:grid-cols-2", "gap-6"], [3, "insight", "allMetrics", "charts", "allCharts", "allBusinessInsights", "isLightMode", "viewMode", "isCompactMode", "isLoading"], [3, "width", "height", "isLightMode"], [3, "assessment", "revenueMetric", "charts", "metrics", "isLightMode", "isLoading", "isCompactMode", "isChartsLoading", "strengths", "weaknesses", "currencySymbol"], [3, "scrollToSection", "assessment", "revenueMetric", "charts", "metrics", "isLightMode", "isLoading", "isCompactMode", "isChartsLoading", "strengths", "weaknesses", "currencySymbol"], [1, "w-full"], [3, "metric", "insights", "charts", "allCharts", "analysis", "isLightMode", "viewMode", "isCompactMode", "currencySymbol"], [1, "grid", "grid-cols-1", "md:grid-cols-2", "lg:grid-cols-3", "gap-6", "mt-4"], [3, "breakdown", "charts", "isLightMode", "isLoading", "isCompactMode", "currencySymbol"], [3, "metrics", "allCharts", "isLightMode", "isCompactMode", "competitiveBenchmark", "currencySymbol"], ["id", "section-overall", 1, "animate-fade-in-up", "mb-20", "sm:mb-28", 2, "animation-delay", "0.1s"], [1, "rounded-xl", "border", "p-6", "sm:p-8", "animate-pulse", 3, "ngClass"], [1, "space-y-6"], [1, "flex-1", "space-y-2"], [1, "space-y-2"], [1, "grid", "grid-cols-1", "md:grid-cols-2", "gap-4", "mt-6"], ["animationDelay", "0.15s", 3, "viewMode"], ["id", "section-insights", 1, "relative"], [1, "absolute", "inset-0", "-mx-6", "sm:-mx-8", "-mt-8", "rounded-3xl", "opacity-30", "backdrop-blur-sm", 2, "mask-image", "radial-gradient(ellipse at center, black 0%, transparent 70%)", 3, "ngClass"], [1, "relative"], [1, "flex", "items-center", "justify-between", "mb-6", "sm:mb-8", "animate-fade-in", 2, "animation-delay", "0.2s"], [1, "masonry-grid"], [1, "grid", "grid-cols-1", "md:grid-cols-2", "lg:grid-cols-3", "gap-4"], [1, "rounded-xl", "border", "p-6", "animate-pulse", "min-h-[280px]", 3, "ngClass"], [1, "space-y-4"], [1, "flex", "items-center", "gap-3", "mb-4"], [1, "mt-6", "space-y-2"], [1, "flex", "gap-2", "mt-4"], [1, "animate-fade-in-up", 3, "class", "animation-delay", "libSymphiqSearchHighlight", "highlightId"], [1, "animate-fade-in-up", 3, "libSymphiqSearchHighlight", "highlightId"], [3, "insight", "allMetrics", "charts", "allCharts", "allBusinessInsights", "isLightMode", "viewMode", "isCompactMode"], [1, "animate-fade-in-up", 3, "animation-delay", "libSymphiqSearchHighlight", "highlightId"], [1, "relative", "mb-14", "sm:mb-24", "mt-24", "sm:mt-32", "animate-fade-in", 2, "animation-delay", "0.35s"], ["id", "section-metrics", 1, "relative"], [1, "absolute", "inset-0", "-mx-6", "sm:-mx-8", "-mt-8", "rounded-3xl", "opacity-30", "backdrop-blur-sm", 2, "mask-image", "radial-gradient(ellipse at top right, black 0%, transparent 70%)", 3, "ngClass"], [1, "flex", "flex-col", "gap-4", "mb-6", "sm:mb-8", "animate-fade-in", 2, "animation-delay", "0.4s"], [1, "flex", "items-center", "justify-between"], ["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, "hidden", "sm:flex", "gap-2", "sm:gap-3", "items-center", "relative"], [1, "absolute", "-right-2", "top-1/2", "-translate-y-1/2", "z-10"], [1, "px-3", "sm:px-4", "py-2", "rounded-lg", "text-xs", "sm:text-sm", "font-medium", "focus:outline-none", "focus:ring-2", "focus:ring-blue-500", "focus:border-transparent", "transition-all", "duration-200", "cursor-pointer", 3, "ngModelChange", "ngModel"], [1, "px-3", "sm:px-4", "py-2", "rounded-lg", "text-xs", "sm:text-sm", "font-medium", "focus:outline-none", "focus:ring-2", "focus:ring-blue-500", "transition-all", "flex", "items-center", "gap-2", "cursor-pointer", "hover:scale-105", "active:scale-95", 3, "click", "title"], ["fill", "none", "stroke", "currentColor", "viewBox", "0 0 24 24", 1, "w-4", "h-4"], ["stroke-linecap", "round", "stroke-linejoin", "round", "stroke-width", "2", "d", "M3 4h13M3 8h9m-9 4h6m4 0l4-4m0 0l4 4m-4-4v12"], ["stroke-linecap", "round", "stroke-linejoin", "round", "stroke-width", "2", "d", "M3 4h13M3 8h9m-9 4h9m5-4v12m0 0l-4-4m4 4l4-4"], [1, "sm:hidden", "-mx-6", "px-6"], [1, "flex", "gap-2", "overflow-x-auto", "pb-2", "snap-x", "snap-mandatory", "scrollbar-hide"], [1, "space-y-8", "sm:space-y-10"], [1, "space-y-8", "sm:space-y-10", 3, "animate-content-change", "transition-opacity-slow"], ["aria-hidden", "true", 1, "absolute", "inset-0", "flex", "items-center"], [1, "w-full", "h-px", "bg-gradient-to-r", 3, "ngClass"], [1, "relative", "flex", "justify-center"], [1, "px-4", "py-2", "rounded-full", 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", "M7 12l3-3 3 3 4-4M8 21l4-4 4 4M3 4h18M4 4h16v12a1 1 0 01-1 1H5a1 1 0 01-1-1V4z"], [1, "w-4", "h-4", "border-2", "border-blue-500/30", "border-t-blue-500", "rounded-full", "animate-spin"], ["disabled", "", 1, "font-semibold", 3, "value"], [1, "px-4", "py-2", "rounded-full", "text-xs", "font-medium", "whitespace-nowrap", "transition-all", "duration-200", "flex-shrink-0", "snap-start", "active:scale-95", 3, "ngClass", "opacity-70"], [1, "px-4", "py-2", "rounded-full", "text-xs", "font-medium", "whitespace-nowrap", "transition-all", "duration-200", "flex-shrink-0", "snap-start", "active:scale-95", 3, "click", "ngClass"], [1, "rounded-xl", "border", "p-6", "animate-pulse", 3, "ngClass"], [1, "flex", "items-center", "justify-between", "mb-4"], [1, "grid", "grid-cols-2", "md:grid-cols-4", "gap-4", "mt-6"], [1, "rounded-xl", "p-12", "border", "text-center", "animate-fade-in", 3, "ngClass"], [1, "w-full", "animate-fade-in-up", 3, "libSymphiqSearchHighlight", "highlightId"], [1, "bento-grid", "mt-4"], [1, "grid", "grid-cols-1", "md:grid-cols-2", "lg:grid-cols-4", "gap-3", "sm:gap-4", "mt-4"], [1, "animate-fade-in-up", 3, "class", "animation-delay"], [1, "animate-fade-in-up"], [1, "h-full", 3, "metric", "insights", "charts", "allCharts", "analysis", "isLightMode", "viewMode", "isCompactMode", "currencySymbol"], [1, "animate-fade-in-up", 3, "animation-delay"], [1, "rounded-xl", "border", "p-6", "animate-pulse", "min-h-[240px]", 3, "ngClass"], [1, "flex", "items-center", "gap-3", "mt-4"], [1, "mt-4"], ["fill", "none", "stroke", "currentColor", "viewBox", "0 0 24 24", 1, "w-16", "h-16", "mx-auto", "mb-4", 3, "ngClass"], [1, "text-lg", "font-semibold", "mb-2", 3, "ngClass"], [1, "text-sm", 3, "ngClass"], [1, "mt-28", "sm:mt-36"], ["id", "section-breakdowns", 1, "relative"], [1, "absolute", "inset-0", "-mx-6", "sm:-mx-8", "-mt-8", "rounded-3xl", "opacity-30", "backdrop-blur-sm", 2, "mask-image", "radial-gradient(ellipse at bottom left, black 0%, transparent 70%)", 3, "ngClass"], [1, "flex", "flex-col", "sm:flex-row", "sm:items-center", "justify-between", "gap-4", "mb-6", "sm:mb-8", "animate-fade-in", 2, "animation-delay", "0.7s"], ["stroke-linecap", "round", "stroke-linejoin", "round", "stroke-width", "2", "d", "M4 5a1 1 0 011-1h14a1 1 0 011 1v2a1 1 0 01-1 1H5a1 1 0 01-1-1V5zM4 13a1 1 0 011-1h6a1 1 0 011 1v6a1 1 0 01-1 1H5a1 1 0 01-1-1v-6zM16 13a1 1 1 0 011-1h2a1 1 0 011 1v6a1 1 0 01-1 1h-2a1 1 0 01-1-1v-6z"], [1, "relative", "inline-block", 3, "click", "mousedown", "pointerdown"], [1, "px-3", "py-2", "text-sm", "rounded-lg", "border", "transition-all", "duration-200", "cursor-pointer", "focus:ring-2", "focus:ring-blue-500", "focus:outline-none", 3, "ngModelChange", "ngModel", "ngClass"], [1, "space-y-6", 3, "animate-content-change", "transition-opacity-slow"], ["animationDelay", "0.65s", 3, "viewMode"], [1, "w-4", "h-4", "border-2", "border-purple-500/30", "border-t-purple-500", "rounded-full", "animate-spin"], [1, "space-y-3"], [1, "flex", "items-center", "justify-between", "p-3", "rounded-lg", 3, "ngClass"], [3, "breakdown", "charts", "isLightMode", "isCompactMode", "currencySymbol"], ["stroke-linecap", "round", "stroke-linejoin", "round", "stroke-width", "2", "d", "M4 5a1 1 0 011-1h14a1 1 0 011 1v2a1 1 0 01-1 1H5a1 1 0 01-1-1V5zM4 13a1 1 0 011-1h6a1 1 0 011 1v6a1 1 0 01-1 1H5a1 1 0 01-1-1v-6zM16 13a1 1 0 011-1h2a1 1 0 011 1v6a1 1 0 01-1 1h-2a1 1 0 01-1-1v-6z"], ["id", "section-competitive", 1, "relative"], [1, "flex", "items-center", "justify-between", "mb-6", "sm:mb-8", "animate-fade-in", 2, "animation-delay", "0.9s"], ["stroke-linecap", "round", "stroke-linejoin", "round", "stroke-width", "2", "d", "M19 21V5a2 2 0 00-2-2H7a2 2 0 00-2 2v16m14 0h2m-2 0h-5m-9 0H3m2 0h5M9 7h1m-1 4h1m4-4h1m-1 4h1m-5 10v-5a1 1 0 011-1h2a1 1 0 011 1v5m-4 0h4"], [1, "hidden", "sm:block", "relative"], ["animationDelay", "0.85s", 3, "viewMode"], [1, "w-4", "h-4", "border-2", "border-indigo-500/30", "border-t-indigo-500", "rounded-full", "animate-spin"], [1, "grid", "grid-cols-1", "md:grid-cols-3", "gap-4", "mt-6"]], template: function SymphiqFunnelAnalysisDashboardComponent_Template(rf, ctx) { if (rf & 1) {
49843
+ } }, inputs: { requestedByUser: [1, "requestedByUser"], viewMode: [1, "viewMode"], funnelAnalysis: [1, "funnelAnalysis"], businessProfile: [1, "businessProfile"], embedded: [1, "embedded"], scrollEvent: [1, "scrollEvent"], scrollElement: [1, "scrollElement"], isLoading: [1, "isLoading"], isOnboarded: [1, "isOnboarded"], forDemo: [1, "forDemo"], maxAccessibleStepId: [1, "maxAccessibleStepId"], itemStatus: [1, "itemStatus"], isMarkingAsReviewed: [1, "isMarkingAsReviewed"] }, outputs: { stepClick: "stepClick", nextStepClick: "nextStepClick", markAsReviewedClick: "markAsReviewedClick" }, decls: 27, vars: 57, consts: [["dashboardContainer", ""], [1, "bg-transparent"], [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"], [3, "searchClick", "viewModeClick", "title", "subtitle", "viewMode", "viewModeLabel", "isLoading", "requestedByUser", "createdDate", "showControls", "hasCondensedLeftContent", "embedded", "scrollEvent"], ["expandedControls", ""], [1, "flex", "items-center", "gap-2", "sm:gap-3", "whitespace-nowrap"], ["condensedLeftContent", ""], [1, "hidden", "lg:flex", "items-center", "gap-3", "px-4", "py-1.5", "rounded-lg", 3, "ngClass"], ["condensedControls", ""], [1, "sticky", "top-[var(--header-height)]", "z-40", "border-b", "backdrop-blur-md", "animate-slide-up-fade", 3, "ngClass"], [3, "sections", "viewMode", "embedded", "scrollElement"], [1, "fixed", "right-6", "top-1/2", "-translate-y-1/2", "z-40", "hidden", "xl:flex", "flex-col", "gap-4"], [1, "max-w-7xl", "mx-auto", "px-6", "sm:px-8", 3, "pb-32"], [3, "isLightMode", "viewMode", "allMetrics", "allInsights", "allCharts", "currencySymbol", "businessProfile"], [3, "isLightMode", "allMetrics"], [3, "isLightMode"], [3, "resultSelected", "isLightMode"], [3, "close", "modeSelected", "isOpen", "currentMode", "viewMode", "isLoading"], [3, "expandedChange", "scrollToTop", "toggleView", "isLightMode", "isCompactMode", "isExpanded"], [3, "navigate", "isLightMode", "sections", "activeSection"], [3, "markAsReviewedClick", "viewMode", "reviewStatus", "selfContentStatus", "isMarkingAsReviewed", "isLoading"], [1, "text-xs", "sm:text-sm", "font-medium"], [3, "click", "mousedown", "pointerdown"], [1, "px-3", "sm:px-4", "py-1.5", "rounded-lg", "text-xs", "sm:text-sm", "font-medium", "focus:outline-none", "focus:ring-2", "focus:ring-blue-500", "focus:border-transparent", "transition-colors", "duration-200", "cursor-pointer", 3, "ngModelChange", "ngModel"], [3, "value"], [1, "text-xs", "font-medium"], [1, "text-sm", "font-bold"], [1, "text-xs", "font-semibold", 3, "ngClass"], [1, "px-3", "py-1.5", "rounded-lg", "text-xs", "font-medium", "focus:outline-none", "focus:ring-2", "focus:ring-blue-500", "focus:border-transparent", "transition-colors", "duration-200", "cursor-pointer", 3, "ngModelChange", "ngModel"], [1, "max-w-7xl", "mx-auto", "px-6", "sm:px-8", "py-3"], [1, "flex", "items-center", "justify-between", "gap-4"], [1, "flex", "items-center", "gap-3", "flex-1", "min-w-0"], ["fill", "none", "stroke", "currentColor", "viewBox", "0 0 24 24", 1, "w-5", "h-5", "flex-shrink-0", 3, "ngClass"], ["stroke-linecap", "round", "stroke-linejoin", "round", "stroke-width", "2", "d", "M21 21l-6-6m2-5a7 7 0 11-14 0 7 7 0 0114 0z"], [1, "flex", "items-center", "gap-2", "flex-1", "min-w-0"], [1, "text-sm", "font-medium", 3, "ngClass"], [1, "text-sm", "font-semibold", "truncate", 3, "ngClass"], [1, "px-2", "py-0.5", "rounded", "text-xs", "font-medium", "uppercase", "border", "flex-shrink-0", 3, "ngClass"], ["title", "Clear search", 1, "p-2", "rounded-lg", "transition-colors", "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", "M6 18L18 6M6 6l12 12"], [1, "w-3", "h-3", "rounded-full", "transition-all", "duration-200", "hover:scale-150", "active:scale-100", "cursor-pointer", 3, "libSymphiqTooltip", "tooltipPosition", "ngClass"], [1, "w-3", "h-3", "rounded-full", "transition-all", "duration-200", "hover:scale-150", "active:scale-100", "cursor-pointer", 3, "click", "libSymphiqTooltip", "tooltipPosition", "ngClass"], [3, "viewMode", "currentStepId", "showNextStepAction", "forDemo", "maxAccessibleStepId"], [1, "max-w-7xl", "mx-auto", "px-6", "sm:px-8"], [1, "pt-8", "sm:pt-12", "pb-16", "sm:pb-24"], ["title", "Loading Your Funnel Analysis", "subtitle", "Please wait while we prepare your personalized insights...", "size", "large", 3, "viewMode", "backdropBlur"], [3, "stepClick", "nextStepClick", "viewMode", "currentStepId", "showNextStepAction", "forDemo", "maxAccessibleStepId"], [1, "pt-8", "sm:pt-12"], [1, "mb-8"], [3, "viewMode", "isOnboarded", "analysisDate"], [3, "viewMode", "itemStatus", "currentStatus", "confettiIntensity", "title", "subtitle"], ["id", "section-insights", 1, "mb-8"], [3, "viewMode"], ["slot", "overall-performance"], [1, "p-6"], ["slot", "performance-metrics"], [1, "p-6", "space-y-8"], ["slot", "performance-breakdowns"], ["slot", "competitive-intelligence"], [1, "flex", "items-center", "justify-between", "mb-6"], [1, "flex", "items-center", "gap-3"], [1, "pl-4", 3, "ngClass"], ["fill", "none", "stroke", "currentColor", "viewBox", "0 0 24 24", 1, "w-6", "h-6", 3, "ngClass"], ["stroke-linecap", "round", "stroke-linejoin", "round", "stroke-width", "2", "d", "M9.663 17h4.673M12 3v1m6.364 1.636l-.707.707M21 12h-1M4 12H3m3.343-5.657l-.707-.707m2.828 9.9a5 5 0 117.072 0l-.548.547A3.374 3.374 0 0014 18.469V19a2 2 0 11-4 0v-.531c0-.895-.356-1.754-.988-2.386l-.548-.547z"], [1, "text-xl", "sm:text-2xl", "font-bold"], [1, "text-xs", "sm:text-sm"], [1, "grid", "grid-cols-1", "md:grid-cols-2", "gap-6"], [3, "insight", "allMetrics", "charts", "allCharts", "allBusinessInsights", "isLightMode", "viewMode", "isCompactMode", "isLoading"], [3, "width", "height", "isLightMode"], [3, "assessment", "revenueMetric", "charts", "metrics", "isLightMode", "isLoading", "isCompactMode", "isChartsLoading", "strengths", "weaknesses", "currencySymbol"], [3, "scrollToSection", "assessment", "revenueMetric", "charts", "metrics", "isLightMode", "isLoading", "isCompactMode", "isChartsLoading", "strengths", "weaknesses", "currencySymbol"], [1, "w-full"], [3, "metric", "insights", "charts", "allCharts", "analysis", "isLightMode", "viewMode", "isCompactMode", "currencySymbol"], [1, "grid", "grid-cols-1", "md:grid-cols-2", "lg:grid-cols-3", "gap-6", "mt-4"], [3, "breakdown", "charts", "isLightMode", "isLoading", "isCompactMode", "currencySymbol"], [3, "metrics", "allCharts", "isLightMode", "isCompactMode", "competitiveBenchmark", "currencySymbol"], ["id", "section-overall", 1, "animate-fade-in-up", "mb-20", "sm:mb-28", 2, "animation-delay", "0.1s"], [1, "rounded-xl", "border", "p-6", "sm:p-8", "animate-pulse", 3, "ngClass"], [1, "space-y-6"], [1, "flex-1", "space-y-2"], [1, "space-y-2"], [1, "grid", "grid-cols-1", "md:grid-cols-2", "gap-4", "mt-6"], ["animationDelay", "0.15s", 3, "viewMode"], ["id", "section-insights", 1, "relative"], [1, "absolute", "inset-0", "-mx-6", "sm:-mx-8", "-mt-8", "rounded-3xl", "opacity-30", "backdrop-blur-sm", 2, "mask-image", "radial-gradient(ellipse at center, black 0%, transparent 70%)", 3, "ngClass"], [1, "relative"], [1, "flex", "items-center", "justify-between", "mb-6", "sm:mb-8", "animate-fade-in", 2, "animation-delay", "0.2s"], [1, "masonry-grid"], [1, "grid", "grid-cols-1", "md:grid-cols-2", "lg:grid-cols-3", "gap-4"], [1, "rounded-xl", "border", "p-6", "animate-pulse", "min-h-[280px]", 3, "ngClass"], [1, "space-y-4"], [1, "flex", "items-center", "gap-3", "mb-4"], [1, "mt-6", "space-y-2"], [1, "flex", "gap-2", "mt-4"], [1, "animate-fade-in-up", 3, "class", "animation-delay", "libSymphiqSearchHighlight", "highlightId"], [1, "animate-fade-in-up", 3, "libSymphiqSearchHighlight", "highlightId"], [3, "insight", "allMetrics", "charts", "allCharts", "allBusinessInsights", "isLightMode", "viewMode", "isCompactMode"], [1, "animate-fade-in-up", 3, "animation-delay", "libSymphiqSearchHighlight", "highlightId"], [1, "relative", "mb-14", "sm:mb-24", "mt-24", "sm:mt-32", "animate-fade-in", 2, "animation-delay", "0.35s"], ["id", "section-metrics", 1, "relative"], [1, "absolute", "inset-0", "-mx-6", "sm:-mx-8", "-mt-8", "rounded-3xl", "opacity-30", "backdrop-blur-sm", 2, "mask-image", "radial-gradient(ellipse at top right, black 0%, transparent 70%)", 3, "ngClass"], [1, "flex", "flex-col", "gap-4", "mb-6", "sm:mb-8", "animate-fade-in", 2, "animation-delay", "0.4s"], [1, "flex", "items-center", "justify-between"], ["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, "hidden", "sm:flex", "gap-2", "sm:gap-3", "items-center", "relative"], [1, "absolute", "-right-2", "top-1/2", "-translate-y-1/2", "z-10"], [1, "px-3", "sm:px-4", "py-2", "rounded-lg", "text-xs", "sm:text-sm", "font-medium", "focus:outline-none", "focus:ring-2", "focus:ring-blue-500", "focus:border-transparent", "transition-all", "duration-200", "cursor-pointer", 3, "ngModelChange", "ngModel"], [1, "px-3", "sm:px-4", "py-2", "rounded-lg", "text-xs", "sm:text-sm", "font-medium", "focus:outline-none", "focus:ring-2", "focus:ring-blue-500", "transition-all", "flex", "items-center", "gap-2", "cursor-pointer", "hover:scale-105", "active:scale-95", 3, "click", "title"], ["fill", "none", "stroke", "currentColor", "viewBox", "0 0 24 24", 1, "w-4", "h-4"], ["stroke-linecap", "round", "stroke-linejoin", "round", "stroke-width", "2", "d", "M3 4h13M3 8h9m-9 4h6m4 0l4-4m0 0l4 4m-4-4v12"], ["stroke-linecap", "round", "stroke-linejoin", "round", "stroke-width", "2", "d", "M3 4h13M3 8h9m-9 4h9m5-4v12m0 0l-4-4m4 4l4-4"], [1, "sm:hidden", "-mx-6", "px-6"], [1, "flex", "gap-2", "overflow-x-auto", "pb-2", "snap-x", "snap-mandatory", "scrollbar-hide"], [1, "space-y-8", "sm:space-y-10"], [1, "space-y-8", "sm:space-y-10", 3, "animate-content-change", "transition-opacity-slow"], ["aria-hidden", "true", 1, "absolute", "inset-0", "flex", "items-center"], [1, "w-full", "h-px", "bg-gradient-to-r", 3, "ngClass"], [1, "relative", "flex", "justify-center"], [1, "px-4", "py-2", "rounded-full", 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", "M7 12l3-3 3 3 4-4M8 21l4-4 4 4M3 4h18M4 4h16v12a1 1 0 01-1 1H5a1 1 0 01-1-1V4z"], [1, "w-4", "h-4", "border-2", "border-blue-500/30", "border-t-blue-500", "rounded-full", "animate-spin"], ["disabled", "", 1, "font-semibold", 3, "value"], [1, "px-4", "py-2", "rounded-full", "text-xs", "font-medium", "whitespace-nowrap", "transition-all", "duration-200", "flex-shrink-0", "snap-start", "active:scale-95", 3, "ngClass", "opacity-70"], [1, "px-4", "py-2", "rounded-full", "text-xs", "font-medium", "whitespace-nowrap", "transition-all", "duration-200", "flex-shrink-0", "snap-start", "active:scale-95", 3, "click", "ngClass"], [1, "rounded-xl", "border", "p-6", "animate-pulse", 3, "ngClass"], [1, "flex", "items-center", "justify-between", "mb-4"], [1, "grid", "grid-cols-2", "md:grid-cols-4", "gap-4", "mt-6"], [1, "rounded-xl", "p-12", "border", "text-center", "animate-fade-in", 3, "ngClass"], [1, "w-full", "animate-fade-in-up", 3, "libSymphiqSearchHighlight", "highlightId"], [1, "bento-grid", "mt-4"], [1, "grid", "grid-cols-1", "md:grid-cols-2", "lg:grid-cols-4", "gap-3", "sm:gap-4", "mt-4"], [1, "animate-fade-in-up", 3, "class", "animation-delay"], [1, "animate-fade-in-up"], [1, "h-full", 3, "metric", "insights", "charts", "allCharts", "analysis", "isLightMode", "viewMode", "isCompactMode", "currencySymbol"], [1, "animate-fade-in-up", 3, "animation-delay"], [1, "rounded-xl", "border", "p-6", "animate-pulse", "min-h-[240px]", 3, "ngClass"], [1, "flex", "items-center", "gap-3", "mt-4"], [1, "mt-4"], ["fill", "none", "stroke", "currentColor", "viewBox", "0 0 24 24", 1, "w-16", "h-16", "mx-auto", "mb-4", 3, "ngClass"], [1, "text-lg", "font-semibold", "mb-2", 3, "ngClass"], [1, "text-sm", 3, "ngClass"], [1, "mt-28", "sm:mt-36"], ["id", "section-breakdowns", 1, "relative"], [1, "absolute", "inset-0", "-mx-6", "sm:-mx-8", "-mt-8", "rounded-3xl", "opacity-30", "backdrop-blur-sm", 2, "mask-image", "radial-gradient(ellipse at bottom left, black 0%, transparent 70%)", 3, "ngClass"], [1, "flex", "flex-col", "sm:flex-row", "sm:items-center", "justify-between", "gap-4", "mb-6", "sm:mb-8", "animate-fade-in", 2, "animation-delay", "0.7s"], ["stroke-linecap", "round", "stroke-linejoin", "round", "stroke-width", "2", "d", "M4 5a1 1 0 011-1h14a1 1 0 011 1v2a1 1 0 01-1 1H5a1 1 0 01-1-1V5zM4 13a1 1 0 011-1h6a1 1 0 011 1v6a1 1 0 01-1 1H5a1 1 0 01-1-1v-6zM16 13a1 1 1 0 011-1h2a1 1 0 011 1v6a1 1 0 01-1 1h-2a1 1 0 01-1-1v-6z"], [1, "relative", "inline-block", 3, "click", "mousedown", "pointerdown"], [1, "px-3", "py-2", "text-sm", "rounded-lg", "border", "transition-all", "duration-200", "cursor-pointer", "focus:ring-2", "focus:ring-blue-500", "focus:outline-none", 3, "ngModelChange", "ngModel", "ngClass"], [1, "space-y-6", 3, "animate-content-change", "transition-opacity-slow"], ["animationDelay", "0.65s", 3, "viewMode"], [1, "w-4", "h-4", "border-2", "border-purple-500/30", "border-t-purple-500", "rounded-full", "animate-spin"], [1, "space-y-3"], [1, "flex", "items-center", "justify-between", "p-3", "rounded-lg", 3, "ngClass"], [3, "breakdown", "charts", "isLightMode", "isCompactMode", "currencySymbol"], ["stroke-linecap", "round", "stroke-linejoin", "round", "stroke-width", "2", "d", "M4 5a1 1 0 011-1h14a1 1 0 011 1v2a1 1 0 01-1 1H5a1 1 0 01-1-1V5zM4 13a1 1 0 011-1h6a1 1 0 011 1v6a1 1 0 01-1 1H5a1 1 0 01-1-1v-6zM16 13a1 1 0 011-1h2a1 1 0 011 1v6a1 1 0 01-1 1h-2a1 1 0 01-1-1v-6z"], ["id", "section-competitive", 1, "relative"], [1, "flex", "items-center", "justify-between", "mb-6", "sm:mb-8", "animate-fade-in", 2, "animation-delay", "0.9s"], ["stroke-linecap", "round", "stroke-linejoin", "round", "stroke-width", "2", "d", "M19 21V5a2 2 0 00-2-2H7a2 2 0 00-2 2v16m14 0h2m-2 0h-5m-9 0H3m2 0h5M9 7h1m-1 4h1m4-4h1m-1 4h1m-5 10v-5a1 1 0 011-1h2a1 1 0 011 1v5m-4 0h4"], [1, "hidden", "sm:block", "relative"], ["animationDelay", "0.85s", 3, "viewMode"], [1, "w-4", "h-4", "border-2", "border-indigo-500/30", "border-t-indigo-500", "rounded-full", "animate-spin"], [1, "grid", "grid-cols-1", "md:grid-cols-3", "gap-4", "mt-6"]], template: function SymphiqFunnelAnalysisDashboardComponent_Template(rf, ctx) { if (rf & 1) {
49687
49844
  const _r1 = i0.ɵɵgetCurrentView();
49688
49845
  i0.ɵɵelementStart(0, "div", 1, 0);
49689
49846
  i0.ɵɵelement(2, "div", 2)(3, "symphiq-scroll-progress-bar", 3);
@@ -49701,7 +49858,7 @@ class SymphiqFunnelAnalysisDashboardComponent {
49701
49858
  i0.ɵɵconditionalCreate(11, SymphiqFunnelAnalysisDashboardComponent_Conditional_11_Template, 16, 8, "div", 10);
49702
49859
  i0.ɵɵconditionalCreate(12, SymphiqFunnelAnalysisDashboardComponent_Conditional_12_Template, 1, 4, "symphiq-floating-toc", 11);
49703
49860
  i0.ɵɵconditionalCreate(13, SymphiqFunnelAnalysisDashboardComponent_Conditional_13_Template, 6, 5, "div", 12);
49704
- i0.ɵɵconditionalCreate(14, SymphiqFunnelAnalysisDashboardComponent_Conditional_14_Template, 6, 6)(15, SymphiqFunnelAnalysisDashboardComponent_Conditional_15_Template, 6, 10)(16, SymphiqFunnelAnalysisDashboardComponent_Conditional_16_Template, 15, 12)(17, SymphiqFunnelAnalysisDashboardComponent_Conditional_17_Template, 7, 7, "main", 13);
49861
+ i0.ɵɵconditionalCreate(14, SymphiqFunnelAnalysisDashboardComponent_Conditional_14_Template, 4, 3)(15, SymphiqFunnelAnalysisDashboardComponent_Conditional_15_Template, 6, 10)(16, SymphiqFunnelAnalysisDashboardComponent_Conditional_16_Template, 15, 12)(17, SymphiqFunnelAnalysisDashboardComponent_Conditional_17_Template, 7, 7, "main", 13);
49705
49862
  i0.ɵɵelement(18, "symphiq-funnel-analysis-modal", 14)(19, "symphiq-profile-analysis-modal", 15)(20, "symphiq-business-analysis-modal", 16)(21, "symphiq-tooltip-container");
49706
49863
  i0.ɵɵelementStart(22, "symphiq-search-bar", 17);
49707
49864
  i0.ɵɵlistener("resultSelected", function SymphiqFunnelAnalysisDashboardComponent_Template_symphiq_search_bar_resultSelected_22_listener($event) { i0.ɵɵrestoreView(_r1); return i0.ɵɵresetView(ctx.handleSearchResult($event)); });
@@ -50012,15 +50169,6 @@ class SymphiqFunnelAnalysisDashboardComponent {
50012
50169
 
50013
50170
  <main class="max-w-7xl mx-auto px-6 sm:px-8">
50014
50171
  <div class="pt-8 sm:pt-12 pb-16 sm:pb-24">
50015
- <!-- Welcome Banner -->
50016
- <div class="mb-8">
50017
- <symphiq-funnel-welcome-banner
50018
- [viewMode]="isLightMode() ? ViewModeEnum.LIGHT : ViewModeEnum.DARK"
50019
- [isOnboarded]="isOnboarded()"
50020
- [analysisDate]="funnelAnalysis()?.selfContentCompletedDate"
50021
- />
50022
- </div>
50023
-
50024
50172
  <!-- Loading Card -->
50025
50173
  <symphiq-loading-card
50026
50174
  [viewMode]="isLightMode() ? ViewModeEnum.LIGHT : ViewModeEnum.DARK"
@@ -50046,7 +50194,7 @@ class SymphiqFunnelAnalysisDashboardComponent {
50046
50194
  }
50047
50195
 
50048
50196
  <main class="max-w-7xl mx-auto px-6 sm:px-8">
50049
- <div class="pt-8 sm:pt-12 pb-16 sm:pb-24">
50197
+ <div class="pt-8 sm:pt-12">
50050
50198
  <div class="mb-8">
50051
50199
  <symphiq-funnel-welcome-banner
50052
50200
  [viewMode]="isLightMode() ? ViewModeEnum.LIGHT : ViewModeEnum.DARK"
@@ -50815,7 +50963,7 @@ class SymphiqFunnelAnalysisDashboardComponent {
50815
50963
  type: HostListener,
50816
50964
  args: ['window:scroll']
50817
50965
  }] }); })();
50818
- (() => { (typeof ngDevMode === "undefined" || ngDevMode) && i0.ɵsetClassDebugInfo(SymphiqFunnelAnalysisDashboardComponent, { className: "SymphiqFunnelAnalysisDashboardComponent", filePath: "lib/components/funnel-analysis-dashboard/symphiq-funnel-analysis-dashboard.component.ts", lineNumber: 1205 }); })();
50966
+ (() => { (typeof ngDevMode === "undefined" || ngDevMode) && i0.ɵsetClassDebugInfo(SymphiqFunnelAnalysisDashboardComponent, { className: "SymphiqFunnelAnalysisDashboardComponent", filePath: "lib/components/funnel-analysis-dashboard/symphiq-funnel-analysis-dashboard.component.ts", lineNumber: 1196 }); })();
50819
50967
 
50820
50968
  /**
50821
50969
  * Shared Theme Color Utilities
@@ -54854,14 +55002,169 @@ class SymphiqCreateAccountDashboardComponent {
54854
55002
  }] }); })();
54855
55003
  (() => { (typeof ngDevMode === "undefined" || ngDevMode) && i0.ɵsetClassDebugInfo(SymphiqCreateAccountDashboardComponent, { className: "SymphiqCreateAccountDashboardComponent", filePath: "lib/components/create-account-dashboard/symphiq-create-account-dashboard.component.ts", lineNumber: 618 }); })();
54856
55004
 
55005
+ function ConnectGaWelcomeBannerComponent_Conditional_8_Template(rf, ctx) { if (rf & 1) {
55006
+ i0.ɵɵtext(0, " Your Google Analytics Connection ");
55007
+ } }
55008
+ function ConnectGaWelcomeBannerComponent_Conditional_9_Template(rf, ctx) { if (rf & 1) {
55009
+ i0.ɵɵtext(0, " Connect Google Analytics 4 ");
55010
+ } }
55011
+ class ConnectGaWelcomeBannerComponent {
55012
+ constructor() {
55013
+ this.viewMode = input(ViewModeEnum.LIGHT, ...(ngDevMode ? [{ debugName: "viewMode" }] : []));
55014
+ this.isOnboarded = input(false, ...(ngDevMode ? [{ debugName: "isOnboarded" }] : []));
55015
+ this.whatYoullSeeBelowItems = [
55016
+ { title: 'Google Sign-In', description: 'Authenticate securely with your Google account to grant Symphiq read-only access to your analytics data' },
55017
+ { title: 'Property Selection', description: 'Choose the GA4 property associated with your shop from your available properties' },
55018
+ { title: 'Data Connection', description: 'Link your analytics data to enable funnel analysis, performance tracking, and personalized recommendations' }
55019
+ ];
55020
+ }
55021
+ containerClasses() {
55022
+ return this.viewMode() === ViewModeEnum.DARK
55023
+ ? 'bg-slate-800/40 border-slate-700/50'
55024
+ : 'bg-white border-slate-200';
55025
+ }
55026
+ contentClasses() {
55027
+ return this.viewMode() === ViewModeEnum.DARK
55028
+ ? 'bg-gradient-to-br from-slate-800/60 via-slate-800/40 to-slate-800/60'
55029
+ : 'bg-gradient-to-br from-blue-50/30 via-white to-purple-50/30';
55030
+ }
55031
+ iconContainerClasses() {
55032
+ return this.viewMode() === ViewModeEnum.DARK
55033
+ ? 'bg-gradient-to-br from-blue-500/20 to-purple-500/20 text-blue-400'
55034
+ : 'bg-gradient-to-br from-blue-100 to-purple-100 text-blue-600';
55035
+ }
55036
+ titleClasses() {
55037
+ return this.viewMode() === ViewModeEnum.DARK
55038
+ ? 'text-white'
55039
+ : 'bg-gradient-to-r from-blue-600 to-purple-600 bg-clip-text text-transparent';
55040
+ }
55041
+ textClasses() {
55042
+ return this.viewMode() === ViewModeEnum.DARK
55043
+ ? 'text-slate-300'
55044
+ : 'text-slate-700';
55045
+ }
55046
+ static { this.ɵfac = function ConnectGaWelcomeBannerComponent_Factory(__ngFactoryType__) { return new (__ngFactoryType__ || ConnectGaWelcomeBannerComponent)(); }; }
55047
+ static { this.ɵcmp = /*@__PURE__*/ i0.ɵɵdefineComponent({ type: ConnectGaWelcomeBannerComponent, selectors: [["symphiq-connect-ga-welcome-banner"]], inputs: { viewMode: [1, "viewMode"], isOnboarded: [1, "isOnboarded"] }, decls: 22, vars: 12, 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", "M21 12a9 9 0 01-9 9m9-9a9 9 0 00-9-9m9 9H3m9 9a9 9 0 01-9-9m9 9c1.657 0 3-4.03 3-9s-1.343-9-3-9m0 18c-1.657 0-3-4.03-3-9s1.343-9 3-9m-9 9a9 9 0 019-9"], [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, "lg:col-span-1"], ["currentStepId", "connect-ga4", 3, "viewMode"], [1, "mt-6", "block", 3, "viewMode", "items"], ["title", "What Happens Next", "onboardedTitle", "Manage Your Connection", "description", "After connecting GA4, you'll set revenue targets that define your growth goals. Symphiq will then analyze your funnel performance against these targets to deliver precise, actionable recommendations.", "onboardedDescription", "Your GA4 connection remains active, continuously syncing your latest performance data. You can change your connected property or Google account at any time if your analytics setup evolves.", 1, "mt-6", "block", 3, "viewMode", "isOnboarded"]], template: function ConnectGaWelcomeBannerComponent_Template(rf, ctx) { if (rf & 1) {
55048
+ i0.ɵɵelementStart(0, "div", 0)(1, "div", 1)(2, "div", 2)(3, "div", 3);
55049
+ i0.ɵɵnamespaceSVG();
55050
+ i0.ɵɵelementStart(4, "svg", 4);
55051
+ i0.ɵɵelement(5, "path", 5);
55052
+ i0.ɵɵelementEnd()();
55053
+ i0.ɵɵnamespaceHTML();
55054
+ i0.ɵɵelementStart(6, "div", 6)(7, "h2", 7);
55055
+ i0.ɵɵconditionalCreate(8, ConnectGaWelcomeBannerComponent_Conditional_8_Template, 1, 0)(9, ConnectGaWelcomeBannerComponent_Conditional_9_Template, 1, 0);
55056
+ i0.ɵɵelementEnd();
55057
+ i0.ɵɵelementStart(10, "div", 8)(11, "div", 9)(12, "p", 10);
55058
+ i0.ɵɵtext(13, " Connecting Google Analytics 4 enables Symphiq to access your performance data in read-only mode. This integration provides the quantitative foundation that powers all of Symphiq's insights and recommendations. ");
55059
+ i0.ɵɵelementEnd();
55060
+ i0.ɵɵelementStart(14, "p", 10)(15, "strong", 11);
55061
+ i0.ɵɵtext(16, "Why this matters:");
55062
+ i0.ɵɵelementEnd();
55063
+ i0.ɵɵtext(17, " Your GA4 data reveals how visitors interact with your site\u2014from initial page views through purchases. Combined with your business context, this data enables Symphiq to identify specific opportunities and provide actionable, data-driven recommendations. ");
55064
+ i0.ɵɵelementEnd()();
55065
+ i0.ɵɵelementStart(18, "div", 12);
55066
+ i0.ɵɵelement(19, "symphiq-confidence-level-card", 13);
55067
+ i0.ɵɵelementEnd()();
55068
+ i0.ɵɵelement(20, "symphiq-what-youll-see-below", 14)(21, "symphiq-continue-your-journey", 15);
55069
+ i0.ɵɵelementEnd()()()();
55070
+ } if (rf & 2) {
55071
+ i0.ɵɵproperty("ngClass", ctx.containerClasses());
55072
+ i0.ɵɵadvance();
55073
+ i0.ɵɵproperty("ngClass", ctx.contentClasses());
55074
+ i0.ɵɵadvance(2);
55075
+ i0.ɵɵproperty("ngClass", ctx.iconContainerClasses());
55076
+ i0.ɵɵadvance(4);
55077
+ i0.ɵɵproperty("ngClass", ctx.titleClasses());
55078
+ i0.ɵɵadvance();
55079
+ i0.ɵɵconditional(ctx.isOnboarded() ? 8 : 9);
55080
+ i0.ɵɵadvance(4);
55081
+ i0.ɵɵproperty("ngClass", ctx.textClasses());
55082
+ i0.ɵɵadvance(2);
55083
+ i0.ɵɵproperty("ngClass", ctx.textClasses());
55084
+ i0.ɵɵadvance(5);
55085
+ i0.ɵɵproperty("viewMode", ctx.viewMode());
55086
+ i0.ɵɵadvance();
55087
+ i0.ɵɵproperty("viewMode", ctx.viewMode())("items", ctx.whatYoullSeeBelowItems);
55088
+ i0.ɵɵadvance();
55089
+ i0.ɵɵproperty("viewMode", ctx.viewMode())("isOnboarded", ctx.isOnboarded());
55090
+ } }, dependencies: [CommonModule, i1$1.NgClass, ConfidenceLevelCardComponent, ContinueYourJourneyComponent, WhatYoullSeeBelowComponent], encapsulation: 2, changeDetection: 0 }); }
55091
+ }
55092
+ (() => { (typeof ngDevMode === "undefined" || ngDevMode) && i0.ɵsetClassMetadata(ConnectGaWelcomeBannerComponent, [{
55093
+ type: Component,
55094
+ args: [{
55095
+ selector: 'symphiq-connect-ga-welcome-banner',
55096
+ standalone: true,
55097
+ imports: [CommonModule, ConfidenceLevelCardComponent, ContinueYourJourneyComponent, WhatYoullSeeBelowComponent],
55098
+ changeDetection: ChangeDetectionStrategy.OnPush,
55099
+ template: `
55100
+ <div [ngClass]="containerClasses()" class="rounded-2xl border shadow-lg overflow-hidden">
55101
+ <div [ngClass]="contentClasses()" class="px-8 py-8">
55102
+ <div class="flex items-start gap-6">
55103
+ <div [ngClass]="iconContainerClasses()" class="flex-shrink-0 w-16 h-16 rounded-2xl flex items-center justify-center">
55104
+ <svg class="w-8 h-8" fill="none" stroke="currentColor" viewBox="0 0 24 24">
55105
+ <path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M21 12a9 9 0 01-9 9m9-9a9 9 0 00-9-9m9 9H3m9 9a9 9 0 01-9-9m9 9c1.657 0 3-4.03 3-9s-1.343-9-3-9m0 18c-1.657 0-3-4.03-3-9s1.343-9 3-9m-9 9a9 9 0 019-9"></path>
55106
+ </svg>
55107
+ </div>
55108
+
55109
+ <div class="flex-1">
55110
+ <h2 [ngClass]="titleClasses()" class="text-2xl sm:text-3xl font-bold mb-3">
55111
+ @if (isOnboarded()) {
55112
+ Your Google Analytics Connection
55113
+ } @else {
55114
+ Connect Google Analytics 4
55115
+ }
55116
+ </h2>
55117
+
55118
+ <div class="grid grid-cols-1 lg:grid-cols-3 gap-6 mb-6">
55119
+ <div class="lg:col-span-2 space-y-3">
55120
+ <p [ngClass]="textClasses()" class="text-base leading-relaxed">
55121
+ Connecting Google Analytics 4 enables Symphiq to access your performance data in read-only mode. This integration provides the quantitative foundation that powers all of Symphiq's insights and recommendations.
55122
+ </p>
55123
+ <p [ngClass]="textClasses()" class="text-base leading-relaxed">
55124
+ <strong class="font-semibold">Why this matters:</strong> Your GA4 data reveals how visitors interact with your site—from initial page views through purchases. Combined with your business context, this data enables Symphiq to identify specific opportunities and provide actionable, data-driven recommendations.
55125
+ </p>
55126
+ </div>
55127
+
55128
+ <div class="lg:col-span-1">
55129
+ <symphiq-confidence-level-card
55130
+ [viewMode]="viewMode()"
55131
+ currentStepId="connect-ga4"
55132
+ />
55133
+ </div>
55134
+ </div>
55135
+
55136
+ <symphiq-what-youll-see-below
55137
+ class="mt-6 block"
55138
+ [viewMode]="viewMode()"
55139
+ [items]="whatYoullSeeBelowItems"
55140
+ />
55141
+
55142
+ <symphiq-continue-your-journey
55143
+ class="mt-6 block"
55144
+ [viewMode]="viewMode()"
55145
+ [isOnboarded]="isOnboarded()"
55146
+ title="What Happens Next"
55147
+ onboardedTitle="Manage Your Connection"
55148
+ description="After connecting GA4, you'll set revenue targets that define your growth goals. Symphiq will then analyze your funnel performance against these targets to deliver precise, actionable recommendations."
55149
+ onboardedDescription="Your GA4 connection remains active, continuously syncing your latest performance data. You can change your connected property or Google account at any time if your analytics setup evolves."
55150
+ />
55151
+ </div>
55152
+ </div>
55153
+ </div>
55154
+ </div>
55155
+ `
55156
+ }]
55157
+ }], null, { viewMode: [{ type: i0.Input, args: [{ isSignal: true, alias: "viewMode", required: false }] }], isOnboarded: [{ type: i0.Input, args: [{ isSignal: true, alias: "isOnboarded", required: false }] }] }); })();
55158
+ (() => { (typeof ngDevMode === "undefined" || ngDevMode) && i0.ɵsetClassDebugInfo(ConnectGaWelcomeBannerComponent, { className: "ConnectGaWelcomeBannerComponent", filePath: "lib/components/connect-ga-dashboard/connect-ga-welcome-banner.component.ts", lineNumber: 71 }); })();
55159
+
54857
55160
  const _forTrack0$D = ($index, $item) => $item.property.id;
54858
- function SymphiqConnectGaDashboardComponent_Conditional_7_Template(rf, ctx) { if (rf & 1) {
54859
- i0.ɵɵelementStart(0, "div", 7)(1, "div", 9)(2, "div", 10);
54860
- i0.ɵɵelement(3, "symphiq-indeterminate-spinner", 11);
54861
- i0.ɵɵelementStart(4, "h2", 12);
55161
+ function SymphiqConnectGaDashboardComponent_Conditional_8_Template(rf, ctx) { if (rf & 1) {
55162
+ i0.ɵɵelementStart(0, "div", 8)(1, "div", 10)(2, "div", 11);
55163
+ i0.ɵɵelement(3, "symphiq-indeterminate-spinner", 12);
55164
+ i0.ɵɵelementStart(4, "h2", 13);
54862
55165
  i0.ɵɵtext(5, " Connecting to Google ");
54863
55166
  i0.ɵɵelementEnd();
54864
- i0.ɵɵelementStart(6, "p", 13);
55167
+ i0.ɵɵelementStart(6, "p", 14);
54865
55168
  i0.ɵɵtext(7, " Please complete the sign-in process in the popup window. Once authorized, your Google Analytics properties will appear here. ");
54866
55169
  i0.ɵɵelementEnd()()()();
54867
55170
  } if (rf & 2) {
@@ -54876,83 +55179,83 @@ function SymphiqConnectGaDashboardComponent_Conditional_7_Template(rf, ctx) { if
54876
55179
  i0.ɵɵadvance(2);
54877
55180
  i0.ɵɵproperty("ngClass", ctx_r0.textClasses());
54878
55181
  } }
54879
- function SymphiqConnectGaDashboardComponent_Conditional_8_Conditional_9_Template(rf, ctx) { if (rf & 1) {
55182
+ function SymphiqConnectGaDashboardComponent_Conditional_9_Conditional_9_Template(rf, ctx) { if (rf & 1) {
54880
55183
  i0.ɵɵtext(0, " Change Google Account ");
54881
55184
  } }
54882
- function SymphiqConnectGaDashboardComponent_Conditional_8_Conditional_10_Template(rf, ctx) { if (rf & 1) {
55185
+ function SymphiqConnectGaDashboardComponent_Conditional_9_Conditional_10_Template(rf, ctx) { if (rf & 1) {
54883
55186
  i0.ɵɵtext(0, " Connect Google Analytics 4 ");
54884
55187
  } }
54885
- function SymphiqConnectGaDashboardComponent_Conditional_8_Conditional_11_Template(rf, ctx) { if (rf & 1) {
55188
+ function SymphiqConnectGaDashboardComponent_Conditional_9_Conditional_11_Template(rf, ctx) { if (rf & 1) {
54886
55189
  const _r3 = i0.ɵɵgetCurrentView();
54887
- i0.ɵɵelementStart(0, "button", 50);
54888
- i0.ɵɵlistener("click", function SymphiqConnectGaDashboardComponent_Conditional_8_Conditional_11_Template_button_click_0_listener() { i0.ɵɵrestoreView(_r3); const ctx_r0 = i0.ɵɵnextContext(2); return i0.ɵɵresetView(ctx_r0.cancelReconnectMode()); });
55190
+ i0.ɵɵelementStart(0, "button", 51);
55191
+ i0.ɵɵlistener("click", function SymphiqConnectGaDashboardComponent_Conditional_9_Conditional_11_Template_button_click_0_listener() { i0.ɵɵrestoreView(_r3); const ctx_r0 = i0.ɵɵnextContext(2); return i0.ɵɵresetView(ctx_r0.cancelReconnectMode()); });
54889
55192
  i0.ɵɵtext(1, " Cancel ");
54890
55193
  i0.ɵɵelementEnd();
54891
55194
  } if (rf & 2) {
54892
55195
  const ctx_r0 = i0.ɵɵnextContext(2);
54893
55196
  i0.ɵɵproperty("ngClass", ctx_r0.headerCancelButtonClasses());
54894
55197
  } }
54895
- function SymphiqConnectGaDashboardComponent_Conditional_8_Conditional_13_Template(rf, ctx) { if (rf & 1) {
55198
+ function SymphiqConnectGaDashboardComponent_Conditional_9_Conditional_13_Template(rf, ctx) { if (rf & 1) {
54896
55199
  i0.ɵɵtext(0, " Sign in with a different Google account to access other Google Analytics properties. ");
54897
55200
  } }
54898
- function SymphiqConnectGaDashboardComponent_Conditional_8_Conditional_14_Template(rf, ctx) { if (rf & 1) {
55201
+ function SymphiqConnectGaDashboardComponent_Conditional_9_Conditional_14_Template(rf, ctx) { if (rf & 1) {
54899
55202
  i0.ɵɵtext(0, " Integrating Google Analytics is essential. We use it to pull the majority of your data in a read-only format, ensuring no changes are made to your analytics. Please make sure you have access to the Google Analytics property associated with this shop to ensure proper integration. ");
54900
55203
  } }
54901
- function SymphiqConnectGaDashboardComponent_Conditional_8_Template(rf, ctx) { if (rf & 1) {
55204
+ function SymphiqConnectGaDashboardComponent_Conditional_9_Template(rf, ctx) { if (rf & 1) {
54902
55205
  const _r2 = i0.ɵɵgetCurrentView();
54903
- i0.ɵɵelementStart(0, "div", 7)(1, "div", 14)(2, "div", 15)(3, "div", 16);
55206
+ i0.ɵɵelementStart(0, "div", 8)(1, "div", 15)(2, "div", 16)(3, "div", 17);
54904
55207
  i0.ɵɵnamespaceSVG();
54905
- i0.ɵɵelementStart(4, "svg", 17);
54906
- i0.ɵɵelement(5, "path", 18);
55208
+ i0.ɵɵelementStart(4, "svg", 18);
55209
+ i0.ɵɵelement(5, "path", 19);
54907
55210
  i0.ɵɵelementEnd()();
54908
55211
  i0.ɵɵnamespaceHTML();
54909
- i0.ɵɵelementStart(6, "div", 19)(7, "div", 20)(8, "h2", 21);
54910
- i0.ɵɵconditionalCreate(9, SymphiqConnectGaDashboardComponent_Conditional_8_Conditional_9_Template, 1, 0)(10, SymphiqConnectGaDashboardComponent_Conditional_8_Conditional_10_Template, 1, 0);
55212
+ i0.ɵɵelementStart(6, "div", 20)(7, "div", 21)(8, "h2", 22);
55213
+ i0.ɵɵconditionalCreate(9, SymphiqConnectGaDashboardComponent_Conditional_9_Conditional_9_Template, 1, 0)(10, SymphiqConnectGaDashboardComponent_Conditional_9_Conditional_10_Template, 1, 0);
54911
55214
  i0.ɵɵelementEnd();
54912
- i0.ɵɵconditionalCreate(11, SymphiqConnectGaDashboardComponent_Conditional_8_Conditional_11_Template, 2, 1, "button", 22);
55215
+ i0.ɵɵconditionalCreate(11, SymphiqConnectGaDashboardComponent_Conditional_9_Conditional_11_Template, 2, 1, "button", 23);
54913
55216
  i0.ɵɵelementEnd();
54914
- i0.ɵɵelementStart(12, "p", 23);
54915
- i0.ɵɵconditionalCreate(13, SymphiqConnectGaDashboardComponent_Conditional_8_Conditional_13_Template, 1, 0)(14, SymphiqConnectGaDashboardComponent_Conditional_8_Conditional_14_Template, 1, 0);
55217
+ i0.ɵɵelementStart(12, "p", 24);
55218
+ i0.ɵɵconditionalCreate(13, SymphiqConnectGaDashboardComponent_Conditional_9_Conditional_13_Template, 1, 0)(14, SymphiqConnectGaDashboardComponent_Conditional_9_Conditional_14_Template, 1, 0);
54916
55219
  i0.ɵɵelementEnd();
54917
- i0.ɵɵelementStart(15, "div", 24)(16, "button", 25);
54918
- i0.ɵɵlistener("click", function SymphiqConnectGaDashboardComponent_Conditional_8_Template_button_click_16_listener() { i0.ɵɵrestoreView(_r2); const ctx_r0 = i0.ɵɵnextContext(); return i0.ɵɵresetView(ctx_r0.onGoogleButtonClick()); });
54919
- i0.ɵɵelement(17, "div", 26);
54920
- i0.ɵɵelementStart(18, "div", 27)(19, "div", 28);
55220
+ i0.ɵɵelementStart(15, "div", 25)(16, "button", 26);
55221
+ i0.ɵɵlistener("click", function SymphiqConnectGaDashboardComponent_Conditional_9_Template_button_click_16_listener() { i0.ɵɵrestoreView(_r2); const ctx_r0 = i0.ɵɵnextContext(); return i0.ɵɵresetView(ctx_r0.onGoogleButtonClick()); });
55222
+ i0.ɵɵelement(17, "div", 27);
55223
+ i0.ɵɵelementStart(18, "div", 28)(19, "div", 29);
54921
55224
  i0.ɵɵnamespaceSVG();
54922
- i0.ɵɵelementStart(20, "svg", 29);
54923
- i0.ɵɵelement(21, "path", 30)(22, "path", 31)(23, "path", 32)(24, "path", 33)(25, "path", 34);
55225
+ i0.ɵɵelementStart(20, "svg", 30);
55226
+ i0.ɵɵelement(21, "path", 31)(22, "path", 32)(23, "path", 33)(24, "path", 34)(25, "path", 35);
54924
55227
  i0.ɵɵelementEnd()();
54925
55228
  i0.ɵɵnamespaceHTML();
54926
- i0.ɵɵelementStart(26, "span", 35);
55229
+ i0.ɵɵelementStart(26, "span", 36);
54927
55230
  i0.ɵɵtext(27, "Continue with Google");
54928
55231
  i0.ɵɵelementEnd()()()();
54929
- i0.ɵɵelementStart(28, "div", 36);
55232
+ i0.ɵɵelementStart(28, "div", 37);
54930
55233
  i0.ɵɵnamespaceSVG();
54931
- i0.ɵɵelementStart(29, "svg", 37);
54932
- i0.ɵɵelement(30, "path", 38);
55234
+ i0.ɵɵelementStart(29, "svg", 38);
55235
+ i0.ɵɵelement(30, "path", 39);
54933
55236
  i0.ɵɵelementEnd();
54934
55237
  i0.ɵɵnamespaceHTML();
54935
- i0.ɵɵelementStart(31, "div", 19)(32, "p", 39)(33, "strong", 40);
55238
+ i0.ɵɵelementStart(31, "div", 20)(32, "p", 40)(33, "strong", 41);
54936
55239
  i0.ɵɵtext(34, "Note:");
54937
55240
  i0.ɵɵelementEnd();
54938
55241
  i0.ɵɵtext(35, " When you click \"Continue with Google\", you'll be asked to sign in to your Google account and select the Analytics property associated with your shop. ");
54939
55242
  i0.ɵɵelementEnd()()();
54940
- i0.ɵɵelementStart(36, "div", 41)(37, "div", 42);
54941
- i0.ɵɵlistener("click", function SymphiqConnectGaDashboardComponent_Conditional_8_Template_div_click_37_listener() { i0.ɵɵrestoreView(_r2); const ctx_r0 = i0.ɵɵnextContext(); return i0.ɵɵresetView(ctx_r0.toggleExpanded()); });
54942
- i0.ɵɵelementStart(38, "span", 43);
55243
+ i0.ɵɵelementStart(36, "div", 42)(37, "div", 43);
55244
+ i0.ɵɵlistener("click", function SymphiqConnectGaDashboardComponent_Conditional_9_Template_div_click_37_listener() { i0.ɵɵrestoreView(_r2); const ctx_r0 = i0.ɵɵnextContext(); return i0.ɵɵresetView(ctx_r0.toggleExpanded()); });
55245
+ i0.ɵɵelementStart(38, "span", 44);
54943
55246
  i0.ɵɵtext(39, " How do we use your Google Analytics data? ");
54944
55247
  i0.ɵɵelementEnd();
54945
55248
  i0.ɵɵnamespaceSVG();
54946
- i0.ɵɵelementStart(40, "svg", 44);
54947
- i0.ɵɵelement(41, "path", 45);
55249
+ i0.ɵɵelementStart(40, "svg", 45);
55250
+ i0.ɵɵelement(41, "path", 46);
54948
55251
  i0.ɵɵelementEnd()();
54949
55252
  i0.ɵɵnamespaceHTML();
54950
- i0.ɵɵelementStart(42, "div", 46)(43, "div", 47)(44, "p", 48);
55253
+ i0.ɵɵelementStart(42, "div", 47)(43, "div", 48)(44, "p", 49);
54951
55254
  i0.ɵɵtext(45, " We request access to your Google Analytics data to aggregate this information into funnel stages and display trends within our application. This allows us to provide you with a clear overview of your web performance. By analyzing the data, we can map out recommendations, measure the impact of your current strategies, and suggest actionable next steps for improvement. ");
54952
55255
  i0.ɵɵelementEnd();
54953
- i0.ɵɵelementStart(46, "p", 39);
55256
+ i0.ɵɵelementStart(46, "p", 40);
54954
55257
  i0.ɵɵtext(47, " Symphiq's use and transfer to any other app of information received from Google APIs will adhere to ");
54955
- i0.ɵɵelementStart(48, "strong", 49);
55258
+ i0.ɵɵelementStart(48, "strong", 50);
54956
55259
  i0.ɵɵtext(49, "Google API Services User Data Policy");
54957
55260
  i0.ɵɵelementEnd();
54958
55261
  i0.ɵɵtext(50, " including the Limited Use requirements. ");
@@ -54998,33 +55301,33 @@ function SymphiqConnectGaDashboardComponent_Conditional_8_Template(rf, ctx) { if
54998
55301
  i0.ɵɵadvance(2);
54999
55302
  i0.ɵɵproperty("ngClass", ctx_r0.expandedTextClasses());
55000
55303
  } }
55001
- function SymphiqConnectGaDashboardComponent_Conditional_9_Conditional_9_Template(rf, ctx) { if (rf & 1) {
55304
+ function SymphiqConnectGaDashboardComponent_Conditional_10_Conditional_9_Template(rf, ctx) { if (rf & 1) {
55002
55305
  i0.ɵɵtext(0, " Change Google Analytics Property ");
55003
55306
  } }
55004
- function SymphiqConnectGaDashboardComponent_Conditional_9_Conditional_10_Template(rf, ctx) { if (rf & 1) {
55307
+ function SymphiqConnectGaDashboardComponent_Conditional_10_Conditional_10_Template(rf, ctx) { if (rf & 1) {
55005
55308
  i0.ɵɵtext(0, " Choose Your Property ");
55006
55309
  } }
55007
- function SymphiqConnectGaDashboardComponent_Conditional_9_Conditional_11_Template(rf, ctx) { if (rf & 1) {
55310
+ function SymphiqConnectGaDashboardComponent_Conditional_10_Conditional_11_Template(rf, ctx) { if (rf & 1) {
55008
55311
  const _r4 = i0.ɵɵgetCurrentView();
55009
- i0.ɵɵelementStart(0, "button", 50);
55010
- i0.ɵɵlistener("click", function SymphiqConnectGaDashboardComponent_Conditional_9_Conditional_11_Template_button_click_0_listener() { i0.ɵɵrestoreView(_r4); const ctx_r0 = i0.ɵɵnextContext(2); return i0.ɵɵresetView(ctx_r0.cancelEditMode()); });
55312
+ i0.ɵɵelementStart(0, "button", 51);
55313
+ i0.ɵɵlistener("click", function SymphiqConnectGaDashboardComponent_Conditional_10_Conditional_11_Template_button_click_0_listener() { i0.ɵɵrestoreView(_r4); const ctx_r0 = i0.ɵɵnextContext(2); return i0.ɵɵresetView(ctx_r0.cancelEditMode()); });
55011
55314
  i0.ɵɵtext(1, " Cancel ");
55012
55315
  i0.ɵɵelementEnd();
55013
55316
  } if (rf & 2) {
55014
55317
  const ctx_r0 = i0.ɵɵnextContext(2);
55015
55318
  i0.ɵɵproperty("ngClass", ctx_r0.headerCancelButtonClasses());
55016
55319
  } }
55017
- function SymphiqConnectGaDashboardComponent_Conditional_9_Conditional_14_For_2_Conditional_3_Template(rf, ctx) { if (rf & 1) {
55018
- i0.ɵɵelement(0, "div", 61);
55320
+ function SymphiqConnectGaDashboardComponent_Conditional_10_Conditional_14_For_2_Conditional_3_Template(rf, ctx) { if (rf & 1) {
55321
+ i0.ɵɵelement(0, "div", 62);
55019
55322
  } }
55020
- function SymphiqConnectGaDashboardComponent_Conditional_9_Conditional_14_For_2_Conditional_10_Conditional_0_Template(rf, ctx) { if (rf & 1) {
55021
- i0.ɵɵelementStart(0, "div", 66);
55323
+ function SymphiqConnectGaDashboardComponent_Conditional_10_Conditional_14_For_2_Conditional_10_Conditional_0_Template(rf, ctx) { if (rf & 1) {
55324
+ i0.ɵɵelementStart(0, "div", 67);
55022
55325
  i0.ɵɵnamespaceSVG();
55023
- i0.ɵɵelementStart(1, "svg", 67);
55024
- i0.ɵɵelement(2, "path", 68);
55326
+ i0.ɵɵelementStart(1, "svg", 68);
55327
+ i0.ɵɵelement(2, "path", 69);
55025
55328
  i0.ɵɵelementEnd();
55026
55329
  i0.ɵɵnamespaceHTML();
55027
- i0.ɵɵelementStart(3, "span", 65);
55330
+ i0.ɵɵelementStart(3, "span", 66);
55028
55331
  i0.ɵɵtext(4);
55029
55332
  i0.ɵɵelementEnd()();
55030
55333
  } if (rf & 2) {
@@ -55036,31 +55339,31 @@ function SymphiqConnectGaDashboardComponent_Conditional_9_Conditional_14_For_2_C
55036
55339
  i0.ɵɵadvance();
55037
55340
  i0.ɵɵtextInterpolate1(" Account: ", ctx.name || "Unnamed Account", " ");
55038
55341
  } }
55039
- function SymphiqConnectGaDashboardComponent_Conditional_9_Conditional_14_For_2_Conditional_10_Template(rf, ctx) { if (rf & 1) {
55040
- i0.ɵɵconditionalCreate(0, SymphiqConnectGaDashboardComponent_Conditional_9_Conditional_14_For_2_Conditional_10_Conditional_0_Template, 5, 3, "div", 66);
55342
+ function SymphiqConnectGaDashboardComponent_Conditional_10_Conditional_14_For_2_Conditional_10_Template(rf, ctx) { if (rf & 1) {
55343
+ i0.ɵɵconditionalCreate(0, SymphiqConnectGaDashboardComponent_Conditional_10_Conditional_14_For_2_Conditional_10_Conditional_0_Template, 5, 3, "div", 67);
55041
55344
  } if (rf & 2) {
55042
55345
  let tmp_13_0;
55043
55346
  const item_r7 = i0.ɵɵnextContext().$implicit;
55044
55347
  const ctx_r0 = i0.ɵɵnextContext(3);
55045
55348
  i0.ɵɵconditional((tmp_13_0 = ctx_r0.getAccountForProperty(item_r7.property)) ? 0 : -1, tmp_13_0);
55046
55349
  } }
55047
- function SymphiqConnectGaDashboardComponent_Conditional_9_Conditional_14_For_2_Template(rf, ctx) { if (rf & 1) {
55350
+ function SymphiqConnectGaDashboardComponent_Conditional_10_Conditional_14_For_2_Template(rf, ctx) { if (rf & 1) {
55048
55351
  const _r6 = i0.ɵɵgetCurrentView();
55049
- i0.ɵɵelementStart(0, "label", 58);
55050
- i0.ɵɵlistener("click", function SymphiqConnectGaDashboardComponent_Conditional_9_Conditional_14_For_2_Template_label_click_0_listener() { const item_r7 = i0.ɵɵrestoreView(_r6).$implicit; const ctx_r0 = i0.ɵɵnextContext(3); return i0.ɵɵresetView(ctx_r0.selectProperty(item_r7.property.id)); })("keydown.enter", function SymphiqConnectGaDashboardComponent_Conditional_9_Conditional_14_For_2_Template_label_keydown_enter_0_listener() { const item_r7 = i0.ɵɵrestoreView(_r6).$implicit; const ctx_r0 = i0.ɵɵnextContext(3); return i0.ɵɵresetView(ctx_r0.selectProperty(item_r7.property.id)); })("keydown.space", function SymphiqConnectGaDashboardComponent_Conditional_9_Conditional_14_For_2_Template_label_keydown_space_0_listener($event) { const item_r7 = i0.ɵɵrestoreView(_r6).$implicit; const ctx_r0 = i0.ɵɵnextContext(3); ctx_r0.selectProperty(item_r7.property.id); return i0.ɵɵresetView($event.preventDefault()); });
55051
- i0.ɵɵelementStart(1, "div", 59)(2, "div", 60);
55052
- i0.ɵɵconditionalCreate(3, SymphiqConnectGaDashboardComponent_Conditional_9_Conditional_14_For_2_Conditional_3_Template, 1, 0, "div", 61);
55352
+ i0.ɵɵelementStart(0, "label", 59);
55353
+ i0.ɵɵlistener("click", function SymphiqConnectGaDashboardComponent_Conditional_10_Conditional_14_For_2_Template_label_click_0_listener() { const item_r7 = i0.ɵɵrestoreView(_r6).$implicit; const ctx_r0 = i0.ɵɵnextContext(3); return i0.ɵɵresetView(ctx_r0.selectProperty(item_r7.property.id)); })("keydown.enter", function SymphiqConnectGaDashboardComponent_Conditional_10_Conditional_14_For_2_Template_label_keydown_enter_0_listener() { const item_r7 = i0.ɵɵrestoreView(_r6).$implicit; const ctx_r0 = i0.ɵɵnextContext(3); return i0.ɵɵresetView(ctx_r0.selectProperty(item_r7.property.id)); })("keydown.space", function SymphiqConnectGaDashboardComponent_Conditional_10_Conditional_14_For_2_Template_label_keydown_space_0_listener($event) { const item_r7 = i0.ɵɵrestoreView(_r6).$implicit; const ctx_r0 = i0.ɵɵnextContext(3); ctx_r0.selectProperty(item_r7.property.id); return i0.ɵɵresetView($event.preventDefault()); });
55354
+ i0.ɵɵelementStart(1, "div", 60)(2, "div", 61);
55355
+ i0.ɵɵconditionalCreate(3, SymphiqConnectGaDashboardComponent_Conditional_10_Conditional_14_For_2_Conditional_3_Template, 1, 0, "div", 62);
55053
55356
  i0.ɵɵelementEnd();
55054
- i0.ɵɵelementStart(4, "div", 62)(5, "div", 63);
55357
+ i0.ɵɵelementStart(4, "div", 63)(5, "div", 64);
55055
55358
  i0.ɵɵnamespaceSVG();
55056
- i0.ɵɵelementStart(6, "svg", 64);
55057
- i0.ɵɵelement(7, "path", 18);
55359
+ i0.ɵɵelementStart(6, "svg", 65);
55360
+ i0.ɵɵelement(7, "path", 19);
55058
55361
  i0.ɵɵelementEnd();
55059
55362
  i0.ɵɵnamespaceHTML();
55060
- i0.ɵɵelementStart(8, "div", 65);
55363
+ i0.ɵɵelementStart(8, "div", 66);
55061
55364
  i0.ɵɵtext(9);
55062
55365
  i0.ɵɵelementEnd()();
55063
- i0.ɵɵconditionalCreate(10, SymphiqConnectGaDashboardComponent_Conditional_9_Conditional_14_For_2_Conditional_10_Template, 1, 1);
55366
+ i0.ɵɵconditionalCreate(10, SymphiqConnectGaDashboardComponent_Conditional_10_Conditional_14_For_2_Conditional_10_Template, 1, 1);
55064
55367
  i0.ɵɵelementEnd()()();
55065
55368
  } if (rf & 2) {
55066
55369
  const item_r7 = ctx.$implicit;
@@ -55080,17 +55383,17 @@ function SymphiqConnectGaDashboardComponent_Conditional_9_Conditional_14_For_2_T
55080
55383
  i0.ɵɵadvance();
55081
55384
  i0.ɵɵconditional(item_r7.property.gaAccountId ? 10 : -1);
55082
55385
  } }
55083
- function SymphiqConnectGaDashboardComponent_Conditional_9_Conditional_14_Template(rf, ctx) { if (rf & 1) {
55386
+ function SymphiqConnectGaDashboardComponent_Conditional_10_Conditional_14_Template(rf, ctx) { if (rf & 1) {
55084
55387
  const _r5 = i0.ɵɵgetCurrentView();
55085
- i0.ɵɵelementStart(0, "div", 52);
55086
- i0.ɵɵrepeaterCreate(1, SymphiqConnectGaDashboardComponent_Conditional_9_Conditional_14_For_2_Template, 11, 8, "label", 53, _forTrack0$D);
55388
+ i0.ɵɵelementStart(0, "div", 53);
55389
+ i0.ɵɵrepeaterCreate(1, SymphiqConnectGaDashboardComponent_Conditional_10_Conditional_14_For_2_Template, 11, 8, "label", 54, _forTrack0$D);
55087
55390
  i0.ɵɵelementEnd();
55088
- i0.ɵɵelement(3, "div", 54);
55089
- i0.ɵɵelementStart(4, "button", 55);
55090
- i0.ɵɵlistener("click", function SymphiqConnectGaDashboardComponent_Conditional_9_Conditional_14_Template_button_click_4_listener() { i0.ɵɵrestoreView(_r5); const ctx_r0 = i0.ɵɵnextContext(2); return i0.ɵɵresetView(ctx_r0.useDifferentGoogleAccount()); });
55391
+ i0.ɵɵelement(3, "div", 55);
55392
+ i0.ɵɵelementStart(4, "button", 56);
55393
+ i0.ɵɵlistener("click", function SymphiqConnectGaDashboardComponent_Conditional_10_Conditional_14_Template_button_click_4_listener() { i0.ɵɵrestoreView(_r5); const ctx_r0 = i0.ɵɵnextContext(2); return i0.ɵɵresetView(ctx_r0.useDifferentGoogleAccount()); });
55091
55394
  i0.ɵɵnamespaceSVG();
55092
- i0.ɵɵelementStart(5, "svg", 56);
55093
- i0.ɵɵelement(6, "path", 57);
55395
+ i0.ɵɵelementStart(5, "svg", 57);
55396
+ i0.ɵɵelement(6, "path", 58);
55094
55397
  i0.ɵɵelementEnd();
55095
55398
  i0.ɵɵtext(7, " Use Different Google Account ");
55096
55399
  i0.ɵɵelementEnd();
@@ -55103,8 +55406,8 @@ function SymphiqConnectGaDashboardComponent_Conditional_9_Conditional_14_Templat
55103
55406
  i0.ɵɵadvance();
55104
55407
  i0.ɵɵproperty("ngClass", ctx_r0.useDifferentAccountButtonClasses());
55105
55408
  } }
55106
- function SymphiqConnectGaDashboardComponent_Conditional_9_Conditional_15_Template(rf, ctx) { if (rf & 1) {
55107
- i0.ɵɵelementStart(0, "div", 51)(1, "p", 69);
55409
+ function SymphiqConnectGaDashboardComponent_Conditional_10_Conditional_15_Template(rf, ctx) { if (rf & 1) {
55410
+ i0.ɵɵelementStart(0, "div", 52)(1, "p", 70);
55108
55411
  i0.ɵɵtext(2, " No properties found. Please connect your Google Analytics account. ");
55109
55412
  i0.ɵɵelementEnd()();
55110
55413
  } if (rf & 2) {
@@ -55112,22 +55415,22 @@ function SymphiqConnectGaDashboardComponent_Conditional_9_Conditional_15_Templat
55112
55415
  i0.ɵɵadvance();
55113
55416
  i0.ɵɵproperty("ngClass", ctx_r0.emptyStateTextClasses());
55114
55417
  } }
55115
- function SymphiqConnectGaDashboardComponent_Conditional_9_Template(rf, ctx) { if (rf & 1) {
55116
- i0.ɵɵelementStart(0, "div", 7)(1, "div", 14)(2, "div", 15)(3, "div", 16);
55418
+ function SymphiqConnectGaDashboardComponent_Conditional_10_Template(rf, ctx) { if (rf & 1) {
55419
+ i0.ɵɵelementStart(0, "div", 8)(1, "div", 15)(2, "div", 16)(3, "div", 17);
55117
55420
  i0.ɵɵnamespaceSVG();
55118
- i0.ɵɵelementStart(4, "svg", 17);
55119
- i0.ɵɵelement(5, "path", 18);
55421
+ i0.ɵɵelementStart(4, "svg", 18);
55422
+ i0.ɵɵelement(5, "path", 19);
55120
55423
  i0.ɵɵelementEnd()();
55121
55424
  i0.ɵɵnamespaceHTML();
55122
- i0.ɵɵelementStart(6, "div", 19)(7, "div", 20)(8, "h2", 21);
55123
- i0.ɵɵconditionalCreate(9, SymphiqConnectGaDashboardComponent_Conditional_9_Conditional_9_Template, 1, 0)(10, SymphiqConnectGaDashboardComponent_Conditional_9_Conditional_10_Template, 1, 0);
55425
+ i0.ɵɵelementStart(6, "div", 20)(7, "div", 21)(8, "h2", 22);
55426
+ i0.ɵɵconditionalCreate(9, SymphiqConnectGaDashboardComponent_Conditional_10_Conditional_9_Template, 1, 0)(10, SymphiqConnectGaDashboardComponent_Conditional_10_Conditional_10_Template, 1, 0);
55124
55427
  i0.ɵɵelementEnd();
55125
- i0.ɵɵconditionalCreate(11, SymphiqConnectGaDashboardComponent_Conditional_9_Conditional_11_Template, 2, 1, "button", 22);
55428
+ i0.ɵɵconditionalCreate(11, SymphiqConnectGaDashboardComponent_Conditional_10_Conditional_11_Template, 2, 1, "button", 23);
55126
55429
  i0.ɵɵelementEnd();
55127
- i0.ɵɵelementStart(12, "p", 23);
55430
+ i0.ɵɵelementStart(12, "p", 24);
55128
55431
  i0.ɵɵtext(13, " Please choose the Google Analytics property you'd like to link to your shop. ");
55129
55432
  i0.ɵɵelementEnd();
55130
- i0.ɵɵconditionalCreate(14, SymphiqConnectGaDashboardComponent_Conditional_9_Conditional_14_Template, 8, 2)(15, SymphiqConnectGaDashboardComponent_Conditional_9_Conditional_15_Template, 3, 1, "div", 51);
55433
+ i0.ɵɵconditionalCreate(14, SymphiqConnectGaDashboardComponent_Conditional_10_Conditional_14_Template, 8, 2)(15, SymphiqConnectGaDashboardComponent_Conditional_10_Conditional_15_Template, 3, 1, "div", 52);
55131
55434
  i0.ɵɵelementEnd()()()();
55132
55435
  } if (rf & 2) {
55133
55436
  const ctx_r0 = i0.ɵɵnextContext();
@@ -55147,11 +55450,11 @@ function SymphiqConnectGaDashboardComponent_Conditional_9_Template(rf, ctx) { if
55147
55450
  i0.ɵɵadvance(2);
55148
55451
  i0.ɵɵconditional(ctx_r0.propertiesDisplay().length > 0 ? 14 : 15);
55149
55452
  } }
55150
- function SymphiqConnectGaDashboardComponent_Conditional_10_Conditional_17_Conditional_10_Template(rf, ctx) { if (rf & 1) {
55151
- i0.ɵɵelementStart(0, "div", 66);
55453
+ function SymphiqConnectGaDashboardComponent_Conditional_11_Conditional_17_Conditional_10_Template(rf, ctx) { if (rf & 1) {
55454
+ i0.ɵɵelementStart(0, "div", 67);
55152
55455
  i0.ɵɵnamespaceSVG();
55153
- i0.ɵɵelementStart(1, "svg", 67);
55154
- i0.ɵɵelement(2, "path", 68);
55456
+ i0.ɵɵelementStart(1, "svg", 68);
55457
+ i0.ɵɵelement(2, "path", 69);
55155
55458
  i0.ɵɵelementEnd();
55156
55459
  i0.ɵɵnamespaceHTML();
55157
55460
  i0.ɵɵelementStart(3, "span", 0);
@@ -55166,20 +55469,20 @@ function SymphiqConnectGaDashboardComponent_Conditional_10_Conditional_17_Condit
55166
55469
  i0.ɵɵadvance();
55167
55470
  i0.ɵɵtextInterpolate1(" ", ctx.name || "Unnamed Account", " ");
55168
55471
  } }
55169
- function SymphiqConnectGaDashboardComponent_Conditional_10_Conditional_17_Template(rf, ctx) { if (rf & 1) {
55170
- i0.ɵɵelementStart(0, "div", 75)(1, "div", 77)(2, "div", 78);
55472
+ function SymphiqConnectGaDashboardComponent_Conditional_11_Conditional_17_Template(rf, ctx) { if (rf & 1) {
55473
+ i0.ɵɵelementStart(0, "div", 76)(1, "div", 78)(2, "div", 79);
55171
55474
  i0.ɵɵtext(3, " Connected ");
55172
55475
  i0.ɵɵelementEnd()();
55173
- i0.ɵɵelementStart(4, "div", 79);
55476
+ i0.ɵɵelementStart(4, "div", 80);
55174
55477
  i0.ɵɵnamespaceSVG();
55175
- i0.ɵɵelementStart(5, "svg", 80);
55176
- i0.ɵɵelement(6, "path", 18);
55478
+ i0.ɵɵelementStart(5, "svg", 81);
55479
+ i0.ɵɵelement(6, "path", 19);
55177
55480
  i0.ɵɵelementEnd();
55178
55481
  i0.ɵɵnamespaceHTML();
55179
- i0.ɵɵelementStart(7, "div")(8, "div", 81);
55482
+ i0.ɵɵelementStart(7, "div")(8, "div", 82);
55180
55483
  i0.ɵɵtext(9);
55181
55484
  i0.ɵɵelementEnd();
55182
- i0.ɵɵconditionalCreate(10, SymphiqConnectGaDashboardComponent_Conditional_10_Conditional_17_Conditional_10_Template, 5, 3, "div", 66);
55485
+ i0.ɵɵconditionalCreate(10, SymphiqConnectGaDashboardComponent_Conditional_11_Conditional_17_Conditional_10_Template, 5, 3, "div", 67);
55183
55486
  i0.ɵɵelementEnd()()();
55184
55487
  } if (rf & 2) {
55185
55488
  let tmp_8_0;
@@ -55196,35 +55499,35 @@ function SymphiqConnectGaDashboardComponent_Conditional_10_Conditional_17_Templa
55196
55499
  i0.ɵɵadvance();
55197
55500
  i0.ɵɵconditional((tmp_8_0 = ctx_r0.selectedPropertyAccount()) ? 10 : -1, tmp_8_0);
55198
55501
  } }
55199
- function SymphiqConnectGaDashboardComponent_Conditional_10_Template(rf, ctx) { if (rf & 1) {
55502
+ function SymphiqConnectGaDashboardComponent_Conditional_11_Template(rf, ctx) { if (rf & 1) {
55200
55503
  const _r8 = i0.ɵɵgetCurrentView();
55201
- i0.ɵɵelementStart(0, "div", 7)(1, "div", 14)(2, "div", 15)(3, "div", 16);
55504
+ i0.ɵɵelementStart(0, "div", 8)(1, "div", 15)(2, "div", 16)(3, "div", 17);
55202
55505
  i0.ɵɵnamespaceSVG();
55203
- i0.ɵɵelementStart(4, "svg", 17);
55204
- i0.ɵɵelement(5, "path", 70);
55506
+ i0.ɵɵelementStart(4, "svg", 18);
55507
+ i0.ɵɵelement(5, "path", 71);
55205
55508
  i0.ɵɵelementEnd()();
55206
55509
  i0.ɵɵnamespaceHTML();
55207
- i0.ɵɵelementStart(6, "div", 19)(7, "div", 71)(8, "div")(9, "h2", 72);
55510
+ i0.ɵɵelementStart(6, "div", 20)(7, "div", 72)(8, "div")(9, "h2", 73);
55208
55511
  i0.ɵɵtext(10, " Connected to Google Analytics ");
55209
55512
  i0.ɵɵelementEnd();
55210
- i0.ɵɵelementStart(11, "p", 69);
55513
+ i0.ɵɵelementStart(11, "p", 70);
55211
55514
  i0.ɵɵtext(12, " Your analytics data is linked ");
55212
55515
  i0.ɵɵelementEnd()();
55213
- i0.ɵɵelementStart(13, "button", 73);
55214
- i0.ɵɵlistener("click", function SymphiqConnectGaDashboardComponent_Conditional_10_Template_button_click_13_listener() { i0.ɵɵrestoreView(_r8); const ctx_r0 = i0.ɵɵnextContext(); return i0.ɵɵresetView(ctx_r0.enableEditMode()); });
55516
+ i0.ɵɵelementStart(13, "button", 74);
55517
+ i0.ɵɵlistener("click", function SymphiqConnectGaDashboardComponent_Conditional_11_Template_button_click_13_listener() { i0.ɵɵrestoreView(_r8); const ctx_r0 = i0.ɵɵnextContext(); return i0.ɵɵresetView(ctx_r0.enableEditMode()); });
55215
55518
  i0.ɵɵnamespaceSVG();
55216
- i0.ɵɵelementStart(14, "svg", 56);
55217
- i0.ɵɵelement(15, "path", 74);
55519
+ i0.ɵɵelementStart(14, "svg", 57);
55520
+ i0.ɵɵelement(15, "path", 75);
55218
55521
  i0.ɵɵelementEnd();
55219
55522
  i0.ɵɵtext(16, " Edit ");
55220
55523
  i0.ɵɵelementEnd()();
55221
- i0.ɵɵconditionalCreate(17, SymphiqConnectGaDashboardComponent_Conditional_10_Conditional_17_Template, 11, 6, "div", 75);
55524
+ i0.ɵɵconditionalCreate(17, SymphiqConnectGaDashboardComponent_Conditional_11_Conditional_17_Template, 11, 6, "div", 76);
55222
55525
  i0.ɵɵnamespaceHTML();
55223
- i0.ɵɵelementStart(18, "button", 76);
55224
- i0.ɵɵlistener("click", function SymphiqConnectGaDashboardComponent_Conditional_10_Template_button_click_18_listener() { i0.ɵɵrestoreView(_r8); const ctx_r0 = i0.ɵɵnextContext(); return i0.ɵɵresetView(ctx_r0.reconnectWithDifferentAccount()); });
55526
+ i0.ɵɵelementStart(18, "button", 77);
55527
+ i0.ɵɵlistener("click", function SymphiqConnectGaDashboardComponent_Conditional_11_Template_button_click_18_listener() { i0.ɵɵrestoreView(_r8); const ctx_r0 = i0.ɵɵnextContext(); return i0.ɵɵresetView(ctx_r0.reconnectWithDifferentAccount()); });
55225
55528
  i0.ɵɵnamespaceSVG();
55226
- i0.ɵɵelementStart(19, "svg", 56);
55227
- i0.ɵɵelement(20, "path", 57);
55529
+ i0.ɵɵelementStart(19, "svg", 57);
55530
+ i0.ɵɵelement(20, "path", 58);
55228
55531
  i0.ɵɵelementEnd();
55229
55532
  i0.ɵɵtext(21, " Use Different Google Account ");
55230
55533
  i0.ɵɵelementEnd()()()()();
@@ -55247,14 +55550,14 @@ function SymphiqConnectGaDashboardComponent_Conditional_10_Template(rf, ctx) { i
55247
55550
  i0.ɵɵadvance();
55248
55551
  i0.ɵɵproperty("ngClass", ctx_r0.reconnectButtonClasses());
55249
55552
  } }
55250
- function SymphiqConnectGaDashboardComponent_Conditional_11_Conditional_3_Template(rf, ctx) { if (rf & 1) {
55553
+ function SymphiqConnectGaDashboardComponent_Conditional_12_Conditional_3_Template(rf, ctx) { if (rf & 1) {
55251
55554
  const _r9 = i0.ɵɵgetCurrentView();
55252
- i0.ɵɵelementStart(0, "button", 85);
55253
- i0.ɵɵlistener("click", function SymphiqConnectGaDashboardComponent_Conditional_11_Conditional_3_Template_button_click_0_listener() { i0.ɵɵrestoreView(_r9); const ctx_r0 = i0.ɵɵnextContext(2); return i0.ɵɵresetView(ctx_r0.cancelEditMode()); });
55555
+ i0.ɵɵelementStart(0, "button", 86);
55556
+ i0.ɵɵlistener("click", function SymphiqConnectGaDashboardComponent_Conditional_12_Conditional_3_Template_button_click_0_listener() { i0.ɵɵrestoreView(_r9); const ctx_r0 = i0.ɵɵnextContext(2); return i0.ɵɵresetView(ctx_r0.cancelEditMode()); });
55254
55557
  i0.ɵɵtext(1, " Cancel ");
55255
55558
  i0.ɵɵelementEnd();
55256
- i0.ɵɵelementStart(2, "button", 86);
55257
- i0.ɵɵlistener("click", function SymphiqConnectGaDashboardComponent_Conditional_11_Conditional_3_Template_button_click_2_listener() { i0.ɵɵrestoreView(_r9); const ctx_r0 = i0.ɵɵnextContext(2); return i0.ɵɵresetView(ctx_r0.submitPropertyChange()); });
55559
+ i0.ɵɵelementStart(2, "button", 87);
55560
+ i0.ɵɵlistener("click", function SymphiqConnectGaDashboardComponent_Conditional_12_Conditional_3_Template_button_click_2_listener() { i0.ɵɵrestoreView(_r9); const ctx_r0 = i0.ɵɵnextContext(2); return i0.ɵɵresetView(ctx_r0.submitPropertyChange()); });
55258
55561
  i0.ɵɵtext(3, " Submit ");
55259
55562
  i0.ɵɵelementEnd();
55260
55563
  } if (rf & 2) {
@@ -55263,19 +55566,19 @@ function SymphiqConnectGaDashboardComponent_Conditional_11_Conditional_3_Templat
55263
55566
  i0.ɵɵadvance(2);
55264
55567
  i0.ɵɵproperty("disabled", !ctx_r0.hasPropertyChanged())("ngClass", ctx_r0.submitButtonClasses());
55265
55568
  } }
55266
- function SymphiqConnectGaDashboardComponent_Conditional_11_Conditional_4_Template(rf, ctx) { if (rf & 1) {
55569
+ function SymphiqConnectGaDashboardComponent_Conditional_12_Conditional_4_Template(rf, ctx) { if (rf & 1) {
55267
55570
  const _r10 = i0.ɵɵgetCurrentView();
55268
- i0.ɵɵelementStart(0, "button", 86);
55269
- i0.ɵɵlistener("click", function SymphiqConnectGaDashboardComponent_Conditional_11_Conditional_4_Template_button_click_0_listener() { i0.ɵɵrestoreView(_r10); const ctx_r0 = i0.ɵɵnextContext(2); return i0.ɵɵresetView(ctx_r0.submitPropertySelection()); });
55571
+ i0.ɵɵelementStart(0, "button", 87);
55572
+ i0.ɵɵlistener("click", function SymphiqConnectGaDashboardComponent_Conditional_12_Conditional_4_Template_button_click_0_listener() { i0.ɵɵrestoreView(_r10); const ctx_r0 = i0.ɵɵnextContext(2); return i0.ɵɵresetView(ctx_r0.submitPropertySelection()); });
55270
55573
  i0.ɵɵtext(1, " Continue ");
55271
55574
  i0.ɵɵelementEnd();
55272
55575
  } if (rf & 2) {
55273
55576
  const ctx_r0 = i0.ɵɵnextContext(2);
55274
55577
  i0.ɵɵproperty("disabled", !ctx_r0.hasPropertySelected())("ngClass", ctx_r0.submitButtonClasses());
55275
55578
  } }
55276
- function SymphiqConnectGaDashboardComponent_Conditional_11_Template(rf, ctx) { if (rf & 1) {
55277
- i0.ɵɵelementStart(0, "div", 8)(1, "div", 82)(2, "div", 83);
55278
- i0.ɵɵconditionalCreate(3, SymphiqConnectGaDashboardComponent_Conditional_11_Conditional_3_Template, 4, 3)(4, SymphiqConnectGaDashboardComponent_Conditional_11_Conditional_4_Template, 2, 2, "button", 84);
55579
+ function SymphiqConnectGaDashboardComponent_Conditional_12_Template(rf, ctx) { if (rf & 1) {
55580
+ i0.ɵɵelementStart(0, "div", 9)(1, "div", 83)(2, "div", 84);
55581
+ i0.ɵɵconditionalCreate(3, SymphiqConnectGaDashboardComponent_Conditional_12_Conditional_3_Template, 4, 3)(4, SymphiqConnectGaDashboardComponent_Conditional_12_Conditional_4_Template, 2, 2, "button", 85);
55279
55582
  i0.ɵɵelementEnd()()();
55280
55583
  } if (rf & 2) {
55281
55584
  const ctx_r0 = i0.ɵɵnextContext();
@@ -55313,6 +55616,7 @@ class SymphiqConnectGaDashboardComponent {
55313
55616
  this.forDemo = input(false, ...(ngDevMode ? [{ debugName: "forDemo" }] : []));
55314
55617
  this.maxAccessibleStepId = input(undefined, ...(ngDevMode ? [{ debugName: "maxAccessibleStepId" }] : []));
55315
55618
  this.showNextStepAction = input(true, ...(ngDevMode ? [{ debugName: "showNextStepAction" }] : []));
55619
+ this.isOnboarded = input(false, ...(ngDevMode ? [{ debugName: "isOnboarded" }] : []));
55316
55620
  this.gaProperties = input(undefined, ...(ngDevMode ? [{ debugName: "gaProperties" }] : []));
55317
55621
  this.gaAccounts = input(undefined, ...(ngDevMode ? [{ debugName: "gaAccounts" }] : []));
55318
55622
  this.selectedGaPropertyId = input(undefined, ...(ngDevMode ? [{ debugName: "selectedGaPropertyId" }] : []));
@@ -55699,7 +56003,7 @@ class SymphiqConnectGaDashboardComponent {
55699
56003
  i0.ɵɵlistener("scroll", function SymphiqConnectGaDashboardComponent_scroll_HostBindingHandler() { return ctx.onScroll(); }, i0.ɵɵresolveWindow);
55700
56004
  } if (rf & 2) {
55701
56005
  i0.ɵɵclassProp("light", ctx.isLightMode())("dark", !ctx.isLightMode());
55702
- } }, inputs: { embedded: [1, "embedded"], parentHeaderOffset: [1, "parentHeaderOffset"], viewMode: [1, "viewMode"], scrollEvent: [1, "scrollEvent"], scrollElement: [1, "scrollElement"], forDemo: [1, "forDemo"], maxAccessibleStepId: [1, "maxAccessibleStepId"], showNextStepAction: [1, "showNextStepAction"], gaProperties: [1, "gaProperties"], gaAccounts: [1, "gaAccounts"], selectedGaPropertyId: [1, "selectedGaPropertyId"], isConnectingToGoogle: [1, "isConnectingToGoogle"] }, outputs: { stepClick: "stepClick", nextStepClick: "nextStepClick", googleButtonClick: "googleButtonClick", onPropertySelect: "onPropertySelect", onPropertyChange: "onPropertyChange" }, decls: 12, vars: 19, consts: [[3, "ngClass"], [1, "animated-bubbles", 2, "position", "fixed", "top", "0", "left", "0", "right", "0", "bottom", "0", "width", "100vw", "height", "100vh", "z-index", "1", "pointer-events", "none"], [1, "relative", "z-[51]"], [3, "title", "subtitle", "viewMode", "showControls", "embedded", "scrollEvent"], [3, "stepClick", "nextStepClick", "viewMode", "currentStepId", "showNextStepAction", "forDemo", "maxAccessibleStepId"], [1, "relative", "pb-32"], [1, "max-w-3xl", "mx-auto", "px-4", "sm:px-6", "lg:px-8", "py-8"], [1, "rounded-2xl", "border", "shadow-lg", "overflow-hidden", "mb-8", 3, "ngClass"], [1, "fixed", "bottom-0", "left-0", "right-0", "z-50", "border-t", "backdrop-blur-sm", 3, "ngClass"], [1, "px-8", "py-16", 3, "ngClass"], [1, "flex", "flex-col", "items-center", "justify-center", "text-center", "gap-8"], ["size", "large", 3, "viewMode"], [1, "text-2xl", "sm:text-3xl", "font-bold", "mb-4", 3, "ngClass"], [1, "text-base", "leading-relaxed", "max-w-md", 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", "M21 12a9 9 0 01-9 9m9-9a9 9 0 00-9-9m9 9H3m9 9a9 9 0 01-9-9m9 9c1.657 0 3-4.03 3-9s-1.343-9-3-9m0 18c-1.657 0-3-4.03-3-9s1.343-9 3-9m-9 9a9 9 0 019-9"], [1, "flex-1"], [1, "flex", "items-start", "justify-between", "gap-4", "mb-4"], [1, "text-2xl", "sm:text-3xl", "font-bold", 3, "ngClass"], ["type", "button", 1, "px-4", "py-2", "rounded-lg", "font-semibold", "text-sm", "transition-all", "duration-200", "hover:scale-105", "cursor-pointer", "flex-shrink-0", 3, "ngClass"], [1, "text-base", "leading-relaxed", "mb-6", 3, "ngClass"], [1, "mb-6"], ["type", "button", 1, "gsi-material-button", 3, "click"], [1, "gsi-material-button-state"], [1, "gsi-material-button-content-wrapper"], [1, "gsi-material-button-icon"], ["version", "1.1", "xmlns", "http://www.w3.org/2000/svg", "viewBox", "0 0 48 48", 0, "xmlns", "xlink", "http://www.w3.org/1999/xlink", 2, "display", "block"], ["fill", "#EA4335", "d", "M24 9.5c3.54 0 6.71 1.22 9.21 3.6l6.85-6.85C35.9 2.38 30.47 0 24 0 14.62 0 6.51 5.38 2.56 13.22l7.98 6.19C12.43 13.72 17.74 9.5 24 9.5z"], ["fill", "#4285F4", "d", "M46.98 24.55c0-1.57-.15-3.09-.38-4.55H24v9.02h12.94c-.58 2.96-2.26 5.48-4.78 7.18l7.73 6c4.51-4.18 7.09-10.36 7.09-17.65z"], ["fill", "#FBBC05", "d", "M10.53 28.59c-.48-1.45-.76-2.99-.76-4.59s.27-3.14.76-4.59l-7.98-6.19C.92 16.46 0 20.12 0 24c0 3.88.92 7.54 2.56 10.78l7.97-6.19z"], ["fill", "#34A853", "d", "M24 48c6.48 0 11.93-2.13 15.89-5.81l-7.73-6c-2.15 1.45-4.92 2.3-8.16 2.3-6.26 0-11.57-4.22-13.47-9.91l-7.98 6.19C6.51 42.62 14.62 48 24 48z"], ["fill", "none", "d", "M0 0h48v48H0z"], [1, "gsi-material-button-contents"], [1, "p-4", "rounded-lg", "border", "flex", "items-start", "gap-3", 3, "ngClass"], ["fill", "none", "stroke", "currentColor", "viewBox", "0 0 24 24", 1, "w-5", "h-5", "flex-shrink-0", "mt-0.5", 3, "ngClass"], ["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, "text-sm", "leading-relaxed", 3, "ngClass"], [1, "font-semibold"], [1, "mt-6", "rounded-lg", "border", "overflow-hidden", 3, "ngClass"], [1, "px-4", "py-4", "cursor-pointer", "flex", "items-center", "justify-between", "gap-3", "transition-colors", "duration-200", 3, "click", "ngClass"], [1, "text-base", "font-semibold", 3, "ngClass"], ["fill", "none", "stroke", "currentColor", "viewBox", "0 0 24 24", 1, "w-5", "h-5", "flex-shrink-0", "transition-transform", "duration-300", 3, "ngClass"], ["stroke-linecap", "round", "stroke-linejoin", "round", "stroke-width", "2", "d", "M19 9l-7 7-7-7"], [1, "transition-all", "duration-300", "ease-in-out", "overflow-hidden"], [1, "px-4", "pb-4", "pt-2", 3, "ngClass"], [1, "text-sm", "leading-relaxed", "mb-4", 3, "ngClass"], [1, "font-bold"], ["type", "button", 1, "px-4", "py-2", "rounded-lg", "font-semibold", "text-sm", "transition-all", "duration-200", "hover:scale-105", "cursor-pointer", "flex-shrink-0", 3, "click", "ngClass"], [1, "text-center", "py-8"], ["role", "radiogroup", "aria-label", "Google Analytics Properties", 1, "space-y-3"], ["tabindex", "0", "role", "radio", 1, "block", 3, "ngClass"], [1, "my-6", "border-t", 3, "ngClass"], ["type", "button", 1, "w-full", "px-4", "py-3", "rounded-lg", "font-medium", "text-sm", "transition-all", "duration-200", "flex", "items-center", "justify-center", "gap-2", "cursor-pointer", 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", "M12 9v2m0 4h.01m-6.938 4h13.856c1.54 0 2.502-1.667 1.732-3L13.732 4c-.77-1.333-2.694-1.333-3.464 0L3.34 16c-.77 1.333.192 3 1.732 3z"], ["tabindex", "0", "role", "radio", 1, "block", 3, "click", "keydown.enter", "keydown.space", "ngClass"], [1, "flex", "items-center", "gap-4", "p-4"], [1, "w-5", "h-5", "rounded-full", "border-2", "flex", "items-center", "justify-center", "flex-shrink-0", 3, "ngClass"], [1, "w-3", "h-3", "rounded-full", "bg-current"], [1, "flex-1", "min-w-0"], [1, "flex", "items-center", "gap-2", "mb-1"], ["fill", "none", "stroke", "currentColor", "viewBox", "0 0 24 24", 1, "w-5", "h-5", "flex-shrink-0", 3, "ngClass"], [1, "truncate", 3, "ngClass"], [1, "flex", "items-center", "gap-2", "mt-1"], ["fill", "none", "stroke", "currentColor", "viewBox", "0 0 24 24", 1, "w-4", "h-4", "flex-shrink-0", 3, "ngClass"], ["stroke-linecap", "round", "stroke-linejoin", "round", "stroke-width", "2", "d", "M21 13.255A23.931 23.931 0 0112 15c-3.183 0-6.22-.62-9-1.745M16 6V4a2 2 0 00-2-2h-4a2 2 0 00-2 2v2m4 6h.01M5 20h14a2 2 0 002-2V8a2 2 0 00-2-2H5a2 2 0 00-2 2v10a2 2 0 002 2z"], [1, "text-base", 3, "ngClass"], ["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", "items-start", "justify-between", "mb-6"], [1, "text-2xl", "sm:text-3xl", "font-bold", "mb-2", 3, "ngClass"], ["type", "button", 1, "px-4", "py-2", "rounded-lg", "font-medium", "text-sm", "transition-all", "duration-200", "hover:scale-105", "flex", "items-center", "gap-2", "cursor-pointer", 3, "click", "ngClass"], ["stroke-linecap", "round", "stroke-linejoin", "round", "stroke-width", "2", "d", "M11 5H6a2 2 0 00-2 2v11a2 2 0 002 2h11a2 2 0 002-2v-5m-1.414-9.414a2 2 0 112.828 2.828L11.828 15H9v-2.828l8.586-8.586z"], [1, "rounded-xl", "border-2", "p-6", "mb-6", 3, "ngClass"], ["type", "button", 1, "px-4", "py-2", "rounded-lg", "font-medium", "text-sm", "transition-all", "duration-200", "flex", "items-center", "gap-2", "cursor-pointer", 3, "click", "ngClass"], [1, "flex", "items-start", "gap-3", "mb-4"], [1, "px-3", "py-1", "rounded-full", "text-xs", "font-semibold", "border", 3, "ngClass"], [1, "flex", "items-center", "gap-3", "mb-3"], ["fill", "none", "stroke", "currentColor", "viewBox", "0 0 24 24", 1, "w-6", "h-6", "flex-shrink-0", 3, "ngClass"], [1, "text-lg", 3, "ngClass"], [1, "max-w-3xl", "mx-auto", "px-4", "sm:px-6", "lg:px-8", "py-4"], [1, "flex", "items-center", "gap-3"], ["type", "button", 1, "flex-1", "px-6", "py-4", "rounded-xl", "font-bold", "text-base", "transition-all", "duration-200", "hover:scale-105", "cursor-pointer", 3, "disabled", "ngClass"], ["type", "button", 1, "flex-1", "sm:flex-none", "px-6", "py-4", "rounded-xl", "font-bold", "text-base", "transition-all", "duration-200", "hover:scale-105", "cursor-pointer", 3, "click", "ngClass"], ["type", "button", 1, "flex-1", "px-6", "py-4", "rounded-xl", "font-bold", "text-base", "transition-all", "duration-200", "hover:scale-105", "cursor-pointer", 3, "click", "disabled", "ngClass"]], template: function SymphiqConnectGaDashboardComponent_Template(rf, ctx) { if (rf & 1) {
56006
+ } }, inputs: { embedded: [1, "embedded"], parentHeaderOffset: [1, "parentHeaderOffset"], viewMode: [1, "viewMode"], scrollEvent: [1, "scrollEvent"], scrollElement: [1, "scrollElement"], forDemo: [1, "forDemo"], maxAccessibleStepId: [1, "maxAccessibleStepId"], showNextStepAction: [1, "showNextStepAction"], isOnboarded: [1, "isOnboarded"], gaProperties: [1, "gaProperties"], gaAccounts: [1, "gaAccounts"], selectedGaPropertyId: [1, "selectedGaPropertyId"], isConnectingToGoogle: [1, "isConnectingToGoogle"] }, outputs: { stepClick: "stepClick", nextStepClick: "nextStepClick", googleButtonClick: "googleButtonClick", onPropertySelect: "onPropertySelect", onPropertyChange: "onPropertyChange" }, decls: 13, vars: 21, consts: [[3, "ngClass"], [1, "animated-bubbles", 2, "position", "fixed", "top", "0", "left", "0", "right", "0", "bottom", "0", "width", "100vw", "height", "100vh", "z-index", "1", "pointer-events", "none"], [1, "relative", "z-[51]"], [3, "title", "subtitle", "viewMode", "showControls", "embedded", "scrollEvent"], [3, "stepClick", "nextStepClick", "viewMode", "currentStepId", "showNextStepAction", "forDemo", "maxAccessibleStepId"], [1, "relative", "pb-32"], [1, "max-w-3xl", "mx-auto", "px-4", "sm:px-6", "lg:px-8", "py-8"], [1, "block", "mb-8", 3, "viewMode", "isOnboarded"], [1, "rounded-2xl", "border", "shadow-lg", "overflow-hidden", "mb-8", 3, "ngClass"], [1, "fixed", "bottom-0", "left-0", "right-0", "z-50", "border-t", "backdrop-blur-sm", 3, "ngClass"], [1, "px-8", "py-16", 3, "ngClass"], [1, "flex", "flex-col", "items-center", "justify-center", "text-center", "gap-8"], ["size", "large", 3, "viewMode"], [1, "text-2xl", "sm:text-3xl", "font-bold", "mb-4", 3, "ngClass"], [1, "text-base", "leading-relaxed", "max-w-md", 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", "M21 12a9 9 0 01-9 9m9-9a9 9 0 00-9-9m9 9H3m9 9a9 9 0 01-9-9m9 9c1.657 0 3-4.03 3-9s-1.343-9-3-9m0 18c-1.657 0-3-4.03-3-9s1.343-9 3-9m-9 9a9 9 0 019-9"], [1, "flex-1"], [1, "flex", "items-start", "justify-between", "gap-4", "mb-4"], [1, "text-2xl", "sm:text-3xl", "font-bold", 3, "ngClass"], ["type", "button", 1, "px-4", "py-2", "rounded-lg", "font-semibold", "text-sm", "transition-all", "duration-200", "hover:scale-105", "cursor-pointer", "flex-shrink-0", 3, "ngClass"], [1, "text-base", "leading-relaxed", "mb-6", 3, "ngClass"], [1, "mb-6"], ["type", "button", 1, "gsi-material-button", 3, "click"], [1, "gsi-material-button-state"], [1, "gsi-material-button-content-wrapper"], [1, "gsi-material-button-icon"], ["version", "1.1", "xmlns", "http://www.w3.org/2000/svg", "viewBox", "0 0 48 48", 0, "xmlns", "xlink", "http://www.w3.org/1999/xlink", 2, "display", "block"], ["fill", "#EA4335", "d", "M24 9.5c3.54 0 6.71 1.22 9.21 3.6l6.85-6.85C35.9 2.38 30.47 0 24 0 14.62 0 6.51 5.38 2.56 13.22l7.98 6.19C12.43 13.72 17.74 9.5 24 9.5z"], ["fill", "#4285F4", "d", "M46.98 24.55c0-1.57-.15-3.09-.38-4.55H24v9.02h12.94c-.58 2.96-2.26 5.48-4.78 7.18l7.73 6c4.51-4.18 7.09-10.36 7.09-17.65z"], ["fill", "#FBBC05", "d", "M10.53 28.59c-.48-1.45-.76-2.99-.76-4.59s.27-3.14.76-4.59l-7.98-6.19C.92 16.46 0 20.12 0 24c0 3.88.92 7.54 2.56 10.78l7.97-6.19z"], ["fill", "#34A853", "d", "M24 48c6.48 0 11.93-2.13 15.89-5.81l-7.73-6c-2.15 1.45-4.92 2.3-8.16 2.3-6.26 0-11.57-4.22-13.47-9.91l-7.98 6.19C6.51 42.62 14.62 48 24 48z"], ["fill", "none", "d", "M0 0h48v48H0z"], [1, "gsi-material-button-contents"], [1, "p-4", "rounded-lg", "border", "flex", "items-start", "gap-3", 3, "ngClass"], ["fill", "none", "stroke", "currentColor", "viewBox", "0 0 24 24", 1, "w-5", "h-5", "flex-shrink-0", "mt-0.5", 3, "ngClass"], ["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, "text-sm", "leading-relaxed", 3, "ngClass"], [1, "font-semibold"], [1, "mt-6", "rounded-lg", "border", "overflow-hidden", 3, "ngClass"], [1, "px-4", "py-4", "cursor-pointer", "flex", "items-center", "justify-between", "gap-3", "transition-colors", "duration-200", 3, "click", "ngClass"], [1, "text-base", "font-semibold", 3, "ngClass"], ["fill", "none", "stroke", "currentColor", "viewBox", "0 0 24 24", 1, "w-5", "h-5", "flex-shrink-0", "transition-transform", "duration-300", 3, "ngClass"], ["stroke-linecap", "round", "stroke-linejoin", "round", "stroke-width", "2", "d", "M19 9l-7 7-7-7"], [1, "transition-all", "duration-300", "ease-in-out", "overflow-hidden"], [1, "px-4", "pb-4", "pt-2", 3, "ngClass"], [1, "text-sm", "leading-relaxed", "mb-4", 3, "ngClass"], [1, "font-bold"], ["type", "button", 1, "px-4", "py-2", "rounded-lg", "font-semibold", "text-sm", "transition-all", "duration-200", "hover:scale-105", "cursor-pointer", "flex-shrink-0", 3, "click", "ngClass"], [1, "text-center", "py-8"], ["role", "radiogroup", "aria-label", "Google Analytics Properties", 1, "space-y-3"], ["tabindex", "0", "role", "radio", 1, "block", 3, "ngClass"], [1, "my-6", "border-t", 3, "ngClass"], ["type", "button", 1, "w-full", "px-4", "py-3", "rounded-lg", "font-medium", "text-sm", "transition-all", "duration-200", "flex", "items-center", "justify-center", "gap-2", "cursor-pointer", 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", "M12 9v2m0 4h.01m-6.938 4h13.856c1.54 0 2.502-1.667 1.732-3L13.732 4c-.77-1.333-2.694-1.333-3.464 0L3.34 16c-.77 1.333.192 3 1.732 3z"], ["tabindex", "0", "role", "radio", 1, "block", 3, "click", "keydown.enter", "keydown.space", "ngClass"], [1, "flex", "items-center", "gap-4", "p-4"], [1, "w-5", "h-5", "rounded-full", "border-2", "flex", "items-center", "justify-center", "flex-shrink-0", 3, "ngClass"], [1, "w-3", "h-3", "rounded-full", "bg-current"], [1, "flex-1", "min-w-0"], [1, "flex", "items-center", "gap-2", "mb-1"], ["fill", "none", "stroke", "currentColor", "viewBox", "0 0 24 24", 1, "w-5", "h-5", "flex-shrink-0", 3, "ngClass"], [1, "truncate", 3, "ngClass"], [1, "flex", "items-center", "gap-2", "mt-1"], ["fill", "none", "stroke", "currentColor", "viewBox", "0 0 24 24", 1, "w-4", "h-4", "flex-shrink-0", 3, "ngClass"], ["stroke-linecap", "round", "stroke-linejoin", "round", "stroke-width", "2", "d", "M21 13.255A23.931 23.931 0 0112 15c-3.183 0-6.22-.62-9-1.745M16 6V4a2 2 0 00-2-2h-4a2 2 0 00-2 2v2m4 6h.01M5 20h14a2 2 0 002-2V8a2 2 0 00-2-2H5a2 2 0 00-2 2v10a2 2 0 002 2z"], [1, "text-base", 3, "ngClass"], ["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", "items-start", "justify-between", "mb-6"], [1, "text-2xl", "sm:text-3xl", "font-bold", "mb-2", 3, "ngClass"], ["type", "button", 1, "px-4", "py-2", "rounded-lg", "font-medium", "text-sm", "transition-all", "duration-200", "hover:scale-105", "flex", "items-center", "gap-2", "cursor-pointer", 3, "click", "ngClass"], ["stroke-linecap", "round", "stroke-linejoin", "round", "stroke-width", "2", "d", "M11 5H6a2 2 0 00-2 2v11a2 2 0 002 2h11a2 2 0 002-2v-5m-1.414-9.414a2 2 0 112.828 2.828L11.828 15H9v-2.828l8.586-8.586z"], [1, "rounded-xl", "border-2", "p-6", "mb-6", 3, "ngClass"], ["type", "button", 1, "px-4", "py-2", "rounded-lg", "font-medium", "text-sm", "transition-all", "duration-200", "flex", "items-center", "gap-2", "cursor-pointer", 3, "click", "ngClass"], [1, "flex", "items-start", "gap-3", "mb-4"], [1, "px-3", "py-1", "rounded-full", "text-xs", "font-semibold", "border", 3, "ngClass"], [1, "flex", "items-center", "gap-3", "mb-3"], ["fill", "none", "stroke", "currentColor", "viewBox", "0 0 24 24", 1, "w-6", "h-6", "flex-shrink-0", 3, "ngClass"], [1, "text-lg", 3, "ngClass"], [1, "max-w-3xl", "mx-auto", "px-4", "sm:px-6", "lg:px-8", "py-4"], [1, "flex", "items-center", "gap-3"], ["type", "button", 1, "flex-1", "px-6", "py-4", "rounded-xl", "font-bold", "text-base", "transition-all", "duration-200", "hover:scale-105", "cursor-pointer", 3, "disabled", "ngClass"], ["type", "button", 1, "flex-1", "sm:flex-none", "px-6", "py-4", "rounded-xl", "font-bold", "text-base", "transition-all", "duration-200", "hover:scale-105", "cursor-pointer", 3, "click", "ngClass"], ["type", "button", 1, "flex-1", "px-6", "py-4", "rounded-xl", "font-bold", "text-base", "transition-all", "duration-200", "hover:scale-105", "cursor-pointer", 3, "click", "disabled", "ngClass"]], template: function SymphiqConnectGaDashboardComponent_Template(rf, ctx) { if (rf & 1) {
55703
56007
  i0.ɵɵelementStart(0, "div", 0);
55704
56008
  i0.ɵɵelement(1, "div", 1);
55705
56009
  i0.ɵɵelementStart(2, "div", 2);
@@ -55708,12 +56012,13 @@ class SymphiqConnectGaDashboardComponent {
55708
56012
  i0.ɵɵlistener("stepClick", function SymphiqConnectGaDashboardComponent_Template_symphiq_journey_progress_indicator_stepClick_4_listener($event) { return ctx.stepClick.emit($event); })("nextStepClick", function SymphiqConnectGaDashboardComponent_Template_symphiq_journey_progress_indicator_nextStepClick_4_listener() { return ctx.nextStepClick.emit(); });
55709
56013
  i0.ɵɵelementEnd();
55710
56014
  i0.ɵɵelementStart(5, "main", 5)(6, "div", 6);
55711
- i0.ɵɵconditionalCreate(7, SymphiqConnectGaDashboardComponent_Conditional_7_Template, 8, 5, "div", 7);
55712
- i0.ɵɵconditionalCreate(8, SymphiqConnectGaDashboardComponent_Conditional_8_Template, 51, 28, "div", 7);
55713
- i0.ɵɵconditionalCreate(9, SymphiqConnectGaDashboardComponent_Conditional_9_Template, 16, 8, "div", 7);
55714
- i0.ɵɵconditionalCreate(10, SymphiqConnectGaDashboardComponent_Conditional_10_Template, 22, 8, "div", 7);
56015
+ i0.ɵɵelement(7, "symphiq-connect-ga-welcome-banner", 7);
56016
+ i0.ɵɵconditionalCreate(8, SymphiqConnectGaDashboardComponent_Conditional_8_Template, 8, 5, "div", 8);
56017
+ i0.ɵɵconditionalCreate(9, SymphiqConnectGaDashboardComponent_Conditional_9_Template, 51, 28, "div", 8);
56018
+ i0.ɵɵconditionalCreate(10, SymphiqConnectGaDashboardComponent_Conditional_10_Template, 16, 8, "div", 8);
56019
+ i0.ɵɵconditionalCreate(11, SymphiqConnectGaDashboardComponent_Conditional_11_Template, 22, 8, "div", 8);
55715
56020
  i0.ɵɵelementEnd();
55716
- i0.ɵɵconditionalCreate(11, SymphiqConnectGaDashboardComponent_Conditional_11_Template, 5, 2, "div", 8);
56021
+ i0.ɵɵconditionalCreate(12, SymphiqConnectGaDashboardComponent_Conditional_12_Template, 5, 2, "div", 9);
55717
56022
  i0.ɵɵelementEnd()()();
55718
56023
  } if (rf & 2) {
55719
56024
  i0.ɵɵproperty("ngClass", ctx.getContainerClasses());
@@ -55724,20 +56029,22 @@ class SymphiqConnectGaDashboardComponent {
55724
56029
  i0.ɵɵadvance();
55725
56030
  i0.ɵɵproperty("viewMode", ctx.viewMode())("currentStepId", ctx.JourneyStepIdEnum.CONNECT_GA4)("showNextStepAction", ctx.showNextStepAction())("forDemo", ctx.forDemo())("maxAccessibleStepId", ctx.maxAccessibleStepId());
55726
56031
  i0.ɵɵadvance(3);
55727
- i0.ɵɵconditional(ctx.isConnecting() ? 7 : -1);
56032
+ i0.ɵɵproperty("viewMode", ctx.viewMode())("isOnboarded", ctx.isOnboarded());
55728
56033
  i0.ɵɵadvance();
55729
- i0.ɵɵconditional(ctx.isConnectState() && !ctx.isConnecting() ? 8 : -1);
56034
+ i0.ɵɵconditional(ctx.isConnecting() ? 8 : -1);
55730
56035
  i0.ɵɵadvance();
55731
- i0.ɵɵconditional(ctx.isSelectionState() && !ctx.isConnecting() ? 9 : -1);
56036
+ i0.ɵɵconditional(ctx.isConnectState() && !ctx.isConnecting() ? 9 : -1);
55732
56037
  i0.ɵɵadvance();
55733
- i0.ɵɵconditional(ctx.isSelectedState() && !ctx.isConnecting() ? 10 : -1);
56038
+ i0.ɵɵconditional(ctx.isSelectionState() && !ctx.isConnecting() ? 10 : -1);
55734
56039
  i0.ɵɵadvance();
55735
- i0.ɵɵconditional(ctx.showSubmitButton() ? 11 : -1);
55736
- } }, dependencies: [CommonModule, i1$1.NgClass, JourneyProgressIndicatorComponent, IndeterminateSpinnerComponent, DashboardHeaderComponent], styles: ["[_nghost-%COMP%]{display:block}.animated-bubbles[_ngcontent-%COMP%]{overflow:hidden}.animated-bubbles[_ngcontent-%COMP%]:before, .animated-bubbles[_ngcontent-%COMP%]:after{content:\"\";position:absolute;border-radius:50%;animation:_ngcontent-%COMP%_float 20s infinite ease-in-out;opacity:.05}.animated-bubbles[_ngcontent-%COMP%]:before{width:600px;height:600px;background:radial-gradient(circle,#3b82f6 0%,transparent 70%);top:-300px;left:-300px;animation-delay:-5s}.animated-bubbles[_ngcontent-%COMP%]:after{width:800px;height:800px;background:radial-gradient(circle,#06b6d4 0%,transparent 70%);bottom:-400px;right:-400px;animation-delay:-10s}.animated-bubbles.light-mode[_ngcontent-%COMP%]:before, .animated-bubbles.light-mode[_ngcontent-%COMP%]:after{opacity:.03}@keyframes _ngcontent-%COMP%_float{0%,to{transform:translate(0) scale(1)}33%{transform:translate(50px,-50px) scale(1.1)}66%{transform:translate(-30px,30px) scale(.9)}}.light[_nghost-%COMP%] .gsi-material-button[_ngcontent-%COMP%]{-moz-user-select:none;-webkit-user-select:none;-ms-user-select:none;-webkit-appearance:none;background-color:#fff;background-image:none;border:1px solid #747775;-webkit-border-radius:4px;border-radius:4px;-webkit-box-sizing:border-box;box-sizing:border-box;color:#1f1f1f;cursor:pointer;font-family:Roboto,arial,sans-serif;font-size:14px;height:40px;letter-spacing:.25px;outline:none;overflow:hidden;padding:0 12px;position:relative;text-align:center;-webkit-transition:background-color .218s,border-color .218s,box-shadow .218s;transition:background-color .218s,border-color .218s,box-shadow .218s;vertical-align:middle;white-space:nowrap;width:auto;max-width:400px;min-width:min-content}.light[_nghost-%COMP%] .gsi-material-button[_ngcontent-%COMP%] .gsi-material-button-icon[_ngcontent-%COMP%]{height:20px;margin-right:12px;min-width:20px;width:20px}.light[_nghost-%COMP%] .gsi-material-button[_ngcontent-%COMP%] .gsi-material-button-content-wrapper[_ngcontent-%COMP%]{-webkit-align-items:center;align-items:center;display:flex;-webkit-flex-direction:row;flex-direction:row;-webkit-flex-wrap:nowrap;flex-wrap:nowrap;height:100%;justify-content:space-between;position:relative;width:100%}.light[_nghost-%COMP%] .gsi-material-button[_ngcontent-%COMP%] .gsi-material-button-contents[_ngcontent-%COMP%]{-webkit-flex-grow:1;flex-grow:1;font-family:Roboto,arial,sans-serif;font-weight:500;overflow:hidden;text-overflow:ellipsis;vertical-align:top}.light[_nghost-%COMP%] .gsi-material-button[_ngcontent-%COMP%] .gsi-material-button-state[_ngcontent-%COMP%]{-webkit-transition:opacity .218s;transition:opacity .218s;inset:0;opacity:0;position:absolute}.light[_nghost-%COMP%] .gsi-material-button[_ngcontent-%COMP%]:disabled{cursor:default;background-color:#ffffff61;border-color:#1f1f1f1f}.light[_nghost-%COMP%] .gsi-material-button[_ngcontent-%COMP%]:disabled .gsi-material-button-contents[_ngcontent-%COMP%]{opacity:38%}.light[_nghost-%COMP%] .gsi-material-button[_ngcontent-%COMP%]:disabled .gsi-material-button-icon[_ngcontent-%COMP%]{opacity:38%}.light[_nghost-%COMP%] .gsi-material-button[_ngcontent-%COMP%]:not(:disabled):active .gsi-material-button-state[_ngcontent-%COMP%], .light[_nghost-%COMP%] .gsi-material-button[_ngcontent-%COMP%]:not(:disabled):focus .gsi-material-button-state[_ngcontent-%COMP%]{background-color:#303030;opacity:12%}.light[_nghost-%COMP%] .gsi-material-button[_ngcontent-%COMP%]:not(:disabled):hover{-webkit-box-shadow:0 1px 2px 0 rgba(60,64,67,.3),0 1px 3px 1px rgba(60,64,67,.15);box-shadow:0 1px 2px #3c40434d,0 1px 3px 1px #3c404326}.light[_nghost-%COMP%] .gsi-material-button[_ngcontent-%COMP%]:not(:disabled):hover .gsi-material-button-state[_ngcontent-%COMP%]{background-color:#303030;opacity:8%}.dark[_nghost-%COMP%] .gsi-material-button[_ngcontent-%COMP%]{-moz-user-select:none;-webkit-user-select:none;-ms-user-select:none;-webkit-appearance:none;background-color:#131314;background-image:none;border:1px solid #747775;-webkit-border-radius:4px;border-radius:4px;-webkit-box-sizing:border-box;box-sizing:border-box;color:#e3e3e3;cursor:pointer;font-family:Roboto,arial,sans-serif;font-size:14px;height:40px;letter-spacing:.25px;outline:none;overflow:hidden;padding:0 12px;position:relative;text-align:center;-webkit-transition:background-color .218s,border-color .218s,box-shadow .218s;transition:background-color .218s,border-color .218s,box-shadow .218s;vertical-align:middle;white-space:nowrap;width:auto;max-width:400px;min-width:min-content;border-color:#8e918f}.dark[_nghost-%COMP%] .gsi-material-button[_ngcontent-%COMP%] .gsi-material-button-icon[_ngcontent-%COMP%]{height:20px;margin-right:12px;min-width:20px;width:20px}.dark[_nghost-%COMP%] .gsi-material-button[_ngcontent-%COMP%] .gsi-material-button-content-wrapper[_ngcontent-%COMP%]{-webkit-align-items:center;align-items:center;display:flex;-webkit-flex-direction:row;flex-direction:row;-webkit-flex-wrap:nowrap;flex-wrap:nowrap;height:100%;justify-content:space-between;position:relative;width:100%}.dark[_nghost-%COMP%] .gsi-material-button[_ngcontent-%COMP%] .gsi-material-button-contents[_ngcontent-%COMP%]{-webkit-flex-grow:1;flex-grow:1;font-family:Roboto,arial,sans-serif;font-weight:500;overflow:hidden;text-overflow:ellipsis;vertical-align:top}.dark[_nghost-%COMP%] .gsi-material-button[_ngcontent-%COMP%] .gsi-material-button-state[_ngcontent-%COMP%]{-webkit-transition:opacity .218s;transition:opacity .218s;inset:0;opacity:0;position:absolute}.dark[_nghost-%COMP%] .gsi-material-button[_ngcontent-%COMP%]:disabled{cursor:default;background-color:#13131461;border-color:#8e918f1f}.dark[_nghost-%COMP%] .gsi-material-button[_ngcontent-%COMP%]:disabled .gsi-material-button-state[_ngcontent-%COMP%]{background-color:#e3e3e31f}.dark[_nghost-%COMP%] .gsi-material-button[_ngcontent-%COMP%]:disabled .gsi-material-button-contents[_ngcontent-%COMP%]{opacity:38%}.dark[_nghost-%COMP%] .gsi-material-button[_ngcontent-%COMP%]:disabled .gsi-material-button-icon[_ngcontent-%COMP%]{opacity:38%}.dark[_nghost-%COMP%] .gsi-material-button[_ngcontent-%COMP%]:not(:disabled):active .gsi-material-button-state[_ngcontent-%COMP%], .dark[_nghost-%COMP%] .gsi-material-button[_ngcontent-%COMP%]:not(:disabled):focus .gsi-material-button-state[_ngcontent-%COMP%]{background-color:#fff;opacity:12%}.dark[_nghost-%COMP%] .gsi-material-button[_ngcontent-%COMP%]:not(:disabled):hover{-webkit-box-shadow:0 1px 2px 0 rgba(60,64,67,.3),0 1px 3px 1px rgba(60,64,67,.15);box-shadow:0 1px 2px #3c40434d,0 1px 3px 1px #3c404326}.dark[_nghost-%COMP%] .gsi-material-button[_ngcontent-%COMP%]:not(:disabled):hover .gsi-material-button-state[_ngcontent-%COMP%]{background-color:#fff;opacity:8%}"], changeDetection: 0 }); }
56040
+ i0.ɵɵconditional(ctx.isSelectedState() && !ctx.isConnecting() ? 11 : -1);
56041
+ i0.ɵɵadvance();
56042
+ i0.ɵɵconditional(ctx.showSubmitButton() ? 12 : -1);
56043
+ } }, dependencies: [CommonModule, i1$1.NgClass, JourneyProgressIndicatorComponent, IndeterminateSpinnerComponent, DashboardHeaderComponent, ConnectGaWelcomeBannerComponent], styles: ["[_nghost-%COMP%]{display:block}.animated-bubbles[_ngcontent-%COMP%]{overflow:hidden}.animated-bubbles[_ngcontent-%COMP%]:before, .animated-bubbles[_ngcontent-%COMP%]:after{content:\"\";position:absolute;border-radius:50%;animation:_ngcontent-%COMP%_float 20s infinite ease-in-out;opacity:.05}.animated-bubbles[_ngcontent-%COMP%]:before{width:600px;height:600px;background:radial-gradient(circle,#3b82f6 0%,transparent 70%);top:-300px;left:-300px;animation-delay:-5s}.animated-bubbles[_ngcontent-%COMP%]:after{width:800px;height:800px;background:radial-gradient(circle,#06b6d4 0%,transparent 70%);bottom:-400px;right:-400px;animation-delay:-10s}.animated-bubbles.light-mode[_ngcontent-%COMP%]:before, .animated-bubbles.light-mode[_ngcontent-%COMP%]:after{opacity:.03}@keyframes _ngcontent-%COMP%_float{0%,to{transform:translate(0) scale(1)}33%{transform:translate(50px,-50px) scale(1.1)}66%{transform:translate(-30px,30px) scale(.9)}}.light[_nghost-%COMP%] .gsi-material-button[_ngcontent-%COMP%]{-moz-user-select:none;-webkit-user-select:none;-ms-user-select:none;-webkit-appearance:none;background-color:#fff;background-image:none;border:1px solid #747775;-webkit-border-radius:4px;border-radius:4px;-webkit-box-sizing:border-box;box-sizing:border-box;color:#1f1f1f;cursor:pointer;font-family:Roboto,arial,sans-serif;font-size:14px;height:40px;letter-spacing:.25px;outline:none;overflow:hidden;padding:0 12px;position:relative;text-align:center;-webkit-transition:background-color .218s,border-color .218s,box-shadow .218s;transition:background-color .218s,border-color .218s,box-shadow .218s;vertical-align:middle;white-space:nowrap;width:auto;max-width:400px;min-width:min-content}.light[_nghost-%COMP%] .gsi-material-button[_ngcontent-%COMP%] .gsi-material-button-icon[_ngcontent-%COMP%]{height:20px;margin-right:12px;min-width:20px;width:20px}.light[_nghost-%COMP%] .gsi-material-button[_ngcontent-%COMP%] .gsi-material-button-content-wrapper[_ngcontent-%COMP%]{-webkit-align-items:center;align-items:center;display:flex;-webkit-flex-direction:row;flex-direction:row;-webkit-flex-wrap:nowrap;flex-wrap:nowrap;height:100%;justify-content:space-between;position:relative;width:100%}.light[_nghost-%COMP%] .gsi-material-button[_ngcontent-%COMP%] .gsi-material-button-contents[_ngcontent-%COMP%]{-webkit-flex-grow:1;flex-grow:1;font-family:Roboto,arial,sans-serif;font-weight:500;overflow:hidden;text-overflow:ellipsis;vertical-align:top}.light[_nghost-%COMP%] .gsi-material-button[_ngcontent-%COMP%] .gsi-material-button-state[_ngcontent-%COMP%]{-webkit-transition:opacity .218s;transition:opacity .218s;inset:0;opacity:0;position:absolute}.light[_nghost-%COMP%] .gsi-material-button[_ngcontent-%COMP%]:disabled{cursor:default;background-color:#ffffff61;border-color:#1f1f1f1f}.light[_nghost-%COMP%] .gsi-material-button[_ngcontent-%COMP%]:disabled .gsi-material-button-contents[_ngcontent-%COMP%]{opacity:38%}.light[_nghost-%COMP%] .gsi-material-button[_ngcontent-%COMP%]:disabled .gsi-material-button-icon[_ngcontent-%COMP%]{opacity:38%}.light[_nghost-%COMP%] .gsi-material-button[_ngcontent-%COMP%]:not(:disabled):active .gsi-material-button-state[_ngcontent-%COMP%], .light[_nghost-%COMP%] .gsi-material-button[_ngcontent-%COMP%]:not(:disabled):focus .gsi-material-button-state[_ngcontent-%COMP%]{background-color:#303030;opacity:12%}.light[_nghost-%COMP%] .gsi-material-button[_ngcontent-%COMP%]:not(:disabled):hover{-webkit-box-shadow:0 1px 2px 0 rgba(60,64,67,.3),0 1px 3px 1px rgba(60,64,67,.15);box-shadow:0 1px 2px #3c40434d,0 1px 3px 1px #3c404326}.light[_nghost-%COMP%] .gsi-material-button[_ngcontent-%COMP%]:not(:disabled):hover .gsi-material-button-state[_ngcontent-%COMP%]{background-color:#303030;opacity:8%}.dark[_nghost-%COMP%] .gsi-material-button[_ngcontent-%COMP%]{-moz-user-select:none;-webkit-user-select:none;-ms-user-select:none;-webkit-appearance:none;background-color:#131314;background-image:none;border:1px solid #747775;-webkit-border-radius:4px;border-radius:4px;-webkit-box-sizing:border-box;box-sizing:border-box;color:#e3e3e3;cursor:pointer;font-family:Roboto,arial,sans-serif;font-size:14px;height:40px;letter-spacing:.25px;outline:none;overflow:hidden;padding:0 12px;position:relative;text-align:center;-webkit-transition:background-color .218s,border-color .218s,box-shadow .218s;transition:background-color .218s,border-color .218s,box-shadow .218s;vertical-align:middle;white-space:nowrap;width:auto;max-width:400px;min-width:min-content;border-color:#8e918f}.dark[_nghost-%COMP%] .gsi-material-button[_ngcontent-%COMP%] .gsi-material-button-icon[_ngcontent-%COMP%]{height:20px;margin-right:12px;min-width:20px;width:20px}.dark[_nghost-%COMP%] .gsi-material-button[_ngcontent-%COMP%] .gsi-material-button-content-wrapper[_ngcontent-%COMP%]{-webkit-align-items:center;align-items:center;display:flex;-webkit-flex-direction:row;flex-direction:row;-webkit-flex-wrap:nowrap;flex-wrap:nowrap;height:100%;justify-content:space-between;position:relative;width:100%}.dark[_nghost-%COMP%] .gsi-material-button[_ngcontent-%COMP%] .gsi-material-button-contents[_ngcontent-%COMP%]{-webkit-flex-grow:1;flex-grow:1;font-family:Roboto,arial,sans-serif;font-weight:500;overflow:hidden;text-overflow:ellipsis;vertical-align:top}.dark[_nghost-%COMP%] .gsi-material-button[_ngcontent-%COMP%] .gsi-material-button-state[_ngcontent-%COMP%]{-webkit-transition:opacity .218s;transition:opacity .218s;inset:0;opacity:0;position:absolute}.dark[_nghost-%COMP%] .gsi-material-button[_ngcontent-%COMP%]:disabled{cursor:default;background-color:#13131461;border-color:#8e918f1f}.dark[_nghost-%COMP%] .gsi-material-button[_ngcontent-%COMP%]:disabled .gsi-material-button-state[_ngcontent-%COMP%]{background-color:#e3e3e31f}.dark[_nghost-%COMP%] .gsi-material-button[_ngcontent-%COMP%]:disabled .gsi-material-button-contents[_ngcontent-%COMP%]{opacity:38%}.dark[_nghost-%COMP%] .gsi-material-button[_ngcontent-%COMP%]:disabled .gsi-material-button-icon[_ngcontent-%COMP%]{opacity:38%}.dark[_nghost-%COMP%] .gsi-material-button[_ngcontent-%COMP%]:not(:disabled):active .gsi-material-button-state[_ngcontent-%COMP%], .dark[_nghost-%COMP%] .gsi-material-button[_ngcontent-%COMP%]:not(:disabled):focus .gsi-material-button-state[_ngcontent-%COMP%]{background-color:#fff;opacity:12%}.dark[_nghost-%COMP%] .gsi-material-button[_ngcontent-%COMP%]:not(:disabled):hover{-webkit-box-shadow:0 1px 2px 0 rgba(60,64,67,.3),0 1px 3px 1px rgba(60,64,67,.15);box-shadow:0 1px 2px #3c40434d,0 1px 3px 1px #3c404326}.dark[_nghost-%COMP%] .gsi-material-button[_ngcontent-%COMP%]:not(:disabled):hover .gsi-material-button-state[_ngcontent-%COMP%]{background-color:#fff;opacity:8%}"], changeDetection: 0 }); }
55737
56044
  }
55738
56045
  (() => { (typeof ngDevMode === "undefined" || ngDevMode) && i0.ɵsetClassMetadata(SymphiqConnectGaDashboardComponent, [{
55739
56046
  type: Component,
55740
- args: [{ selector: 'symphiq-connect-ga-dashboard', standalone: true, imports: [CommonModule, JourneyProgressIndicatorComponent, IndeterminateSpinnerComponent, DashboardHeaderComponent], changeDetection: ChangeDetectionStrategy.OnPush, host: {
56047
+ args: [{ selector: 'symphiq-connect-ga-dashboard', standalone: true, imports: [CommonModule, JourneyProgressIndicatorComponent, IndeterminateSpinnerComponent, DashboardHeaderComponent, ConnectGaWelcomeBannerComponent], changeDetection: ChangeDetectionStrategy.OnPush, host: {
55741
56048
  '[class.light]': 'isLightMode()',
55742
56049
  '[class.dark]': '!isLightMode()'
55743
56050
  }, template: `
@@ -55767,6 +56074,13 @@ class SymphiqConnectGaDashboardComponent {
55767
56074
 
55768
56075
  <main class="relative pb-32">
55769
56076
  <div class="max-w-3xl mx-auto px-4 sm:px-6 lg:px-8 py-8">
56077
+ <!-- Welcome Banner -->
56078
+ <symphiq-connect-ga-welcome-banner
56079
+ class="block mb-8"
56080
+ [viewMode]="viewMode()"
56081
+ [isOnboarded]="isOnboarded()"
56082
+ />
56083
+
55770
56084
  <!-- Connecting to Google State -->
55771
56085
  @if (isConnecting()) {
55772
56086
  <div [ngClass]="containerClasses()" class="rounded-2xl border shadow-lg overflow-hidden mb-8">
@@ -56111,11 +56425,11 @@ class SymphiqConnectGaDashboardComponent {
56111
56425
  </div>
56112
56426
  </div>
56113
56427
  `, styles: [":host{display:block}.animated-bubbles{overflow:hidden}.animated-bubbles:before,.animated-bubbles:after{content:\"\";position:absolute;border-radius:50%;animation:float 20s infinite ease-in-out;opacity:.05}.animated-bubbles:before{width:600px;height:600px;background:radial-gradient(circle,#3b82f6 0%,transparent 70%);top:-300px;left:-300px;animation-delay:-5s}.animated-bubbles:after{width:800px;height:800px;background:radial-gradient(circle,#06b6d4 0%,transparent 70%);bottom:-400px;right:-400px;animation-delay:-10s}.animated-bubbles.light-mode:before,.animated-bubbles.light-mode:after{opacity:.03}@keyframes float{0%,to{transform:translate(0) scale(1)}33%{transform:translate(50px,-50px) scale(1.1)}66%{transform:translate(-30px,30px) scale(.9)}}:host.light .gsi-material-button{-moz-user-select:none;-webkit-user-select:none;-ms-user-select:none;-webkit-appearance:none;background-color:#fff;background-image:none;border:1px solid #747775;-webkit-border-radius:4px;border-radius:4px;-webkit-box-sizing:border-box;box-sizing:border-box;color:#1f1f1f;cursor:pointer;font-family:Roboto,arial,sans-serif;font-size:14px;height:40px;letter-spacing:.25px;outline:none;overflow:hidden;padding:0 12px;position:relative;text-align:center;-webkit-transition:background-color .218s,border-color .218s,box-shadow .218s;transition:background-color .218s,border-color .218s,box-shadow .218s;vertical-align:middle;white-space:nowrap;width:auto;max-width:400px;min-width:min-content}:host.light .gsi-material-button .gsi-material-button-icon{height:20px;margin-right:12px;min-width:20px;width:20px}:host.light .gsi-material-button .gsi-material-button-content-wrapper{-webkit-align-items:center;align-items:center;display:flex;-webkit-flex-direction:row;flex-direction:row;-webkit-flex-wrap:nowrap;flex-wrap:nowrap;height:100%;justify-content:space-between;position:relative;width:100%}:host.light .gsi-material-button .gsi-material-button-contents{-webkit-flex-grow:1;flex-grow:1;font-family:Roboto,arial,sans-serif;font-weight:500;overflow:hidden;text-overflow:ellipsis;vertical-align:top}:host.light .gsi-material-button .gsi-material-button-state{-webkit-transition:opacity .218s;transition:opacity .218s;inset:0;opacity:0;position:absolute}:host.light .gsi-material-button:disabled{cursor:default;background-color:#ffffff61;border-color:#1f1f1f1f}:host.light .gsi-material-button:disabled .gsi-material-button-contents{opacity:38%}:host.light .gsi-material-button:disabled .gsi-material-button-icon{opacity:38%}:host.light .gsi-material-button:not(:disabled):active .gsi-material-button-state,:host.light .gsi-material-button:not(:disabled):focus .gsi-material-button-state{background-color:#303030;opacity:12%}:host.light .gsi-material-button:not(:disabled):hover{-webkit-box-shadow:0 1px 2px 0 rgba(60,64,67,.3),0 1px 3px 1px rgba(60,64,67,.15);box-shadow:0 1px 2px #3c40434d,0 1px 3px 1px #3c404326}:host.light .gsi-material-button:not(:disabled):hover .gsi-material-button-state{background-color:#303030;opacity:8%}:host.dark .gsi-material-button{-moz-user-select:none;-webkit-user-select:none;-ms-user-select:none;-webkit-appearance:none;background-color:#131314;background-image:none;border:1px solid #747775;-webkit-border-radius:4px;border-radius:4px;-webkit-box-sizing:border-box;box-sizing:border-box;color:#e3e3e3;cursor:pointer;font-family:Roboto,arial,sans-serif;font-size:14px;height:40px;letter-spacing:.25px;outline:none;overflow:hidden;padding:0 12px;position:relative;text-align:center;-webkit-transition:background-color .218s,border-color .218s,box-shadow .218s;transition:background-color .218s,border-color .218s,box-shadow .218s;vertical-align:middle;white-space:nowrap;width:auto;max-width:400px;min-width:min-content;border-color:#8e918f}:host.dark .gsi-material-button .gsi-material-button-icon{height:20px;margin-right:12px;min-width:20px;width:20px}:host.dark .gsi-material-button .gsi-material-button-content-wrapper{-webkit-align-items:center;align-items:center;display:flex;-webkit-flex-direction:row;flex-direction:row;-webkit-flex-wrap:nowrap;flex-wrap:nowrap;height:100%;justify-content:space-between;position:relative;width:100%}:host.dark .gsi-material-button .gsi-material-button-contents{-webkit-flex-grow:1;flex-grow:1;font-family:Roboto,arial,sans-serif;font-weight:500;overflow:hidden;text-overflow:ellipsis;vertical-align:top}:host.dark .gsi-material-button .gsi-material-button-state{-webkit-transition:opacity .218s;transition:opacity .218s;inset:0;opacity:0;position:absolute}:host.dark .gsi-material-button:disabled{cursor:default;background-color:#13131461;border-color:#8e918f1f}:host.dark .gsi-material-button:disabled .gsi-material-button-state{background-color:#e3e3e31f}:host.dark .gsi-material-button:disabled .gsi-material-button-contents{opacity:38%}:host.dark .gsi-material-button:disabled .gsi-material-button-icon{opacity:38%}:host.dark .gsi-material-button:not(:disabled):active .gsi-material-button-state,:host.dark .gsi-material-button:not(:disabled):focus .gsi-material-button-state{background-color:#fff;opacity:12%}:host.dark .gsi-material-button:not(:disabled):hover{-webkit-box-shadow:0 1px 2px 0 rgba(60,64,67,.3),0 1px 3px 1px rgba(60,64,67,.15);box-shadow:0 1px 2px #3c40434d,0 1px 3px 1px #3c404326}:host.dark .gsi-material-button:not(:disabled):hover .gsi-material-button-state{background-color:#fff;opacity:8%}\n"] }]
56114
- }], () => [], { embedded: [{ type: i0.Input, args: [{ isSignal: true, alias: "embedded", required: false }] }], parentHeaderOffset: [{ type: i0.Input, args: [{ isSignal: true, alias: "parentHeaderOffset", required: false }] }], viewMode: [{ type: i0.Input, args: [{ isSignal: true, alias: "viewMode", required: false }] }], scrollEvent: [{ type: i0.Input, args: [{ isSignal: true, alias: "scrollEvent", required: false }] }], scrollElement: [{ type: i0.Input, args: [{ isSignal: true, alias: "scrollElement", required: false }] }], forDemo: [{ type: i0.Input, args: [{ isSignal: true, alias: "forDemo", required: false }] }], maxAccessibleStepId: [{ type: i0.Input, args: [{ isSignal: true, alias: "maxAccessibleStepId", required: false }] }], showNextStepAction: [{ type: i0.Input, args: [{ isSignal: true, alias: "showNextStepAction", required: false }] }], gaProperties: [{ type: i0.Input, args: [{ isSignal: true, alias: "gaProperties", required: false }] }], gaAccounts: [{ type: i0.Input, args: [{ isSignal: true, alias: "gaAccounts", required: false }] }], selectedGaPropertyId: [{ type: i0.Input, args: [{ isSignal: true, alias: "selectedGaPropertyId", required: false }] }], isConnectingToGoogle: [{ type: i0.Input, args: [{ isSignal: true, alias: "isConnectingToGoogle", required: false }] }], stepClick: [{ type: i0.Output, args: ["stepClick"] }], nextStepClick: [{ type: i0.Output, args: ["nextStepClick"] }], googleButtonClick: [{ type: i0.Output, args: ["googleButtonClick"] }], onPropertySelect: [{ type: i0.Output, args: ["onPropertySelect"] }], onPropertyChange: [{ type: i0.Output, args: ["onPropertyChange"] }], onScroll: [{
56428
+ }], () => [], { embedded: [{ type: i0.Input, args: [{ isSignal: true, alias: "embedded", required: false }] }], parentHeaderOffset: [{ type: i0.Input, args: [{ isSignal: true, alias: "parentHeaderOffset", required: false }] }], viewMode: [{ type: i0.Input, args: [{ isSignal: true, alias: "viewMode", required: false }] }], scrollEvent: [{ type: i0.Input, args: [{ isSignal: true, alias: "scrollEvent", required: false }] }], scrollElement: [{ type: i0.Input, args: [{ isSignal: true, alias: "scrollElement", required: false }] }], forDemo: [{ type: i0.Input, args: [{ isSignal: true, alias: "forDemo", required: false }] }], maxAccessibleStepId: [{ type: i0.Input, args: [{ isSignal: true, alias: "maxAccessibleStepId", required: false }] }], showNextStepAction: [{ type: i0.Input, args: [{ isSignal: true, alias: "showNextStepAction", required: false }] }], isOnboarded: [{ type: i0.Input, args: [{ isSignal: true, alias: "isOnboarded", required: false }] }], gaProperties: [{ type: i0.Input, args: [{ isSignal: true, alias: "gaProperties", required: false }] }], gaAccounts: [{ type: i0.Input, args: [{ isSignal: true, alias: "gaAccounts", required: false }] }], selectedGaPropertyId: [{ type: i0.Input, args: [{ isSignal: true, alias: "selectedGaPropertyId", required: false }] }], isConnectingToGoogle: [{ type: i0.Input, args: [{ isSignal: true, alias: "isConnectingToGoogle", required: false }] }], stepClick: [{ type: i0.Output, args: ["stepClick"] }], nextStepClick: [{ type: i0.Output, args: ["nextStepClick"] }], googleButtonClick: [{ type: i0.Output, args: ["googleButtonClick"] }], onPropertySelect: [{ type: i0.Output, args: ["onPropertySelect"] }], onPropertyChange: [{ type: i0.Output, args: ["onPropertyChange"] }], onScroll: [{
56115
56429
  type: HostListener,
56116
56430
  args: ['window:scroll']
56117
56431
  }] }); })();
56118
- (() => { (typeof ngDevMode === "undefined" || ngDevMode) && i0.ɵsetClassDebugInfo(SymphiqConnectGaDashboardComponent, { className: "SymphiqConnectGaDashboardComponent", filePath: "lib/components/connect-ga-dashboard/symphiq-connect-ga-dashboard.component.ts", lineNumber: 671 }); })();
56432
+ (() => { (typeof ngDevMode === "undefined" || ngDevMode) && i0.ɵsetClassDebugInfo(SymphiqConnectGaDashboardComponent, { className: "SymphiqConnectGaDashboardComponent", filePath: "lib/components/connect-ga-dashboard/symphiq-connect-ga-dashboard.component.ts", lineNumber: 679 }); })();
56119
56433
 
56120
56434
  class RevenueCalculatorWelcomeBannerComponent {
56121
56435
  constructor() {
@@ -56123,6 +56437,12 @@ class RevenueCalculatorWelcomeBannerComponent {
56123
56437
  this.dataLoadStatus = input(ShopDataLoadStatusEnum.NOT_LOADED, ...(ngDevMode ? [{ debugName: "dataLoadStatus" }] : []));
56124
56438
  this.hasTargets = input(false, ...(ngDevMode ? [{ debugName: "hasTargets" }] : []));
56125
56439
  this.isOnboarded = input(false, ...(ngDevMode ? [{ debugName: "isOnboarded" }] : []));
56440
+ this.targets = input(...(ngDevMode ? [undefined, { debugName: "targets" }] : []));
56441
+ this.whatYoullSeeBelowItems = [
56442
+ { title: 'Revenue Target Input', description: 'Set your desired revenue goal for the year, either as an absolute amount or percentage increase' },
56443
+ { title: 'Automatic Metric Distribution', description: 'See calculated metric improvements needed across your funnel to achieve your revenue target' },
56444
+ { title: 'Target Refinement Controls', description: 'Adjust individual metric targets to align with your team\'s capacity and strategic priorities' }
56445
+ ];
56126
56446
  this.isDataFullyLoaded = computed(() => this.dataLoadStatus() === ShopDataLoadStatusEnum.FULLY_LOADED, ...(ngDevMode ? [{ debugName: "isDataFullyLoaded" }] : []));
56127
56447
  }
56128
56448
  getNextStepsMessage() {
@@ -56165,26 +56485,6 @@ class RevenueCalculatorWelcomeBannerComponent {
56165
56485
  ? 'text-slate-300'
56166
56486
  : 'text-slate-700';
56167
56487
  }
56168
- highlightBoxClasses() {
56169
- return this.viewMode() === ViewModeEnum.DARK
56170
- ? 'bg-blue-500/10 border-blue-500/30'
56171
- : 'bg-blue-50 border-blue-300';
56172
- }
56173
- highlightIconClasses() {
56174
- return this.viewMode() === ViewModeEnum.DARK
56175
- ? 'text-blue-400'
56176
- : 'text-blue-600';
56177
- }
56178
- highlightTitleClasses() {
56179
- return this.viewMode() === ViewModeEnum.DARK
56180
- ? 'text-blue-400'
56181
- : 'text-blue-700';
56182
- }
56183
- highlightListClasses() {
56184
- return this.viewMode() === ViewModeEnum.DARK
56185
- ? 'text-slate-300'
56186
- : 'text-slate-700';
56187
- }
56188
56488
  nextStepsBoxClasses() {
56189
56489
  return this.viewMode() === ViewModeEnum.DARK
56190
56490
  ? 'bg-amber-500/10 border-amber-500/30'
@@ -56206,7 +56506,7 @@ class RevenueCalculatorWelcomeBannerComponent {
56206
56506
  : 'text-slate-700';
56207
56507
  }
56208
56508
  static { this.ɵfac = function RevenueCalculatorWelcomeBannerComponent_Factory(__ngFactoryType__) { return new (__ngFactoryType__ || RevenueCalculatorWelcomeBannerComponent)(); }; }
56209
- static { this.ɵcmp = /*@__PURE__*/ i0.ɵɵdefineComponent({ type: RevenueCalculatorWelcomeBannerComponent, selectors: [["symphiq-revenue-calculator-welcome-banner"]], inputs: { viewMode: [1, "viewMode"], dataLoadStatus: [1, "dataLoadStatus"], hasTargets: [1, "hasTargets"], isOnboarded: [1, "isOnboarded"] }, decls: 52, vars: 15, 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 7h6m0 10v-3m-3 3h.01M9 17h.01M9 14h.01M12 14h.01M15 11h.01M12 11h.01M9 11h.01M7 21h10a2 2 0 002-2V5a2 2 0 00-2-2H7a2 2 0 00-2 2v14a2 2 0 002 2z"], [1, "flex-1"], [1, "text-2xl", "sm:text-3xl", "font-bold", "mb-3", 3, "ngClass"], [1, "space-y-3", "mb-6"], [1, "text-base", "leading-relaxed", 3, "ngClass"], [1, "font-semibold"], [1, "mt-6", "p-5", "rounded-xl", "border-l-4", "flex", "items-start", "gap-4", 3, "ngClass"], ["fill", "none", "stroke", "currentColor", "viewBox", "0 0 24 24", 1, "w-6", "h-6", "flex-shrink-0", "mt-0.5", 3, "ngClass"], ["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, "font-bold", "text-lg", "mb-2", 3, "ngClass"], [1, "space-y-2", "text-sm", 3, "ngClass"], [1, "flex", "items-start", "gap-2"], ["fill", "currentColor", "viewBox", "0 0 20 20", 1, "w-5", "h-5", "flex-shrink-0", "mt-0.5"], ["fill-rule", "evenodd", "d", "M10 18a8 8 0 100-16 8 8 0 000 16zm3.707-9.293a1 1 0 00-1.414-1.414L9 10.586 7.707 9.293a1 1 0 00-1.414 1.414l2 2a1 1 0 001.414 0l4-4z", "clip-rule", "evenodd"], [1, "mt-6", "p-5", "rounded-xl", "border", "flex", "items-start", "gap-4", 3, "ngClass"], ["stroke-linecap", "round", "stroke-linejoin", "round", "stroke-width", "2", "d", "M13 7l5 5m0 0l-5 5m5-5H6"], [1, "font-bold", "mb-1", 3, "ngClass"], [1, "text-sm", "leading-relaxed", 3, "ngClass"]], template: function RevenueCalculatorWelcomeBannerComponent_Template(rf, ctx) { if (rf & 1) {
56509
+ static { this.ɵcmp = /*@__PURE__*/ i0.ɵɵdefineComponent({ type: RevenueCalculatorWelcomeBannerComponent, selectors: [["symphiq-revenue-calculator-welcome-banner"]], inputs: { viewMode: [1, "viewMode"], dataLoadStatus: [1, "dataLoadStatus"], hasTargets: [1, "hasTargets"], isOnboarded: [1, "isOnboarded"], targets: [1, "targets"] }, decls: 28, vars: 15, 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 7h6m0 10v-3m-3 3h.01M9 17h.01M9 14h.01M12 14h.01M15 11h.01M12 11h.01M9 11h.01M7 21h10a2 2 0 002-2V5a2 2 0 00-2-2H7a2 2 0 00-2 2v14a2 2 0 002 2z"], [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, "lg:col-span-1"], ["currentStepId", "revenue-calculator", 3, "viewMode", "targets"], [1, "mt-6", "block", 3, "viewMode", "items"], [1, "mt-6", "p-5", "rounded-xl", "border", "flex", "items-start", "gap-4", 3, "ngClass"], ["fill", "none", "stroke", "currentColor", "viewBox", "0 0 24 24", 1, "w-6", "h-6", "flex-shrink-0", "mt-0.5", 3, "ngClass"], ["stroke-linecap", "round", "stroke-linejoin", "round", "stroke-width", "2", "d", "M13 7l5 5m0 0l-5 5m5-5H6"], [1, "font-bold", "mb-1", 3, "ngClass"], [1, "text-sm", "leading-relaxed", 3, "ngClass"]], template: function RevenueCalculatorWelcomeBannerComponent_Template(rf, ctx) { if (rf & 1) {
56210
56510
  i0.ɵɵelementStart(0, "div", 0)(1, "div", 1)(2, "div", 2)(3, "div", 3);
56211
56511
  i0.ɵɵnamespaceSVG();
56212
56512
  i0.ɵɵelementStart(4, "svg", 4);
@@ -56216,67 +56516,29 @@ class RevenueCalculatorWelcomeBannerComponent {
56216
56516
  i0.ɵɵelementStart(6, "div", 6)(7, "h2", 7);
56217
56517
  i0.ɵɵtext(8, " Welcome to Your Revenue Calculator ");
56218
56518
  i0.ɵɵelementEnd();
56219
- i0.ɵɵelementStart(9, "div", 8)(10, "p", 9);
56220
- i0.ɵɵtext(11, " The Revenue Calculator empowers you to achieve your revenue goals with precision. Start by setting your target revenue for the year, and Symphiq will automatically calculate the specific metric improvements needed across your funnel. You can then refine individual metric targets to match your team's capabilities and strategic focus. ");
56221
- i0.ɵɵelementEnd();
56222
- i0.ɵɵelementStart(12, "p", 9)(13, "strong", 10);
56223
- i0.ɵɵtext(14, "Why this matters:");
56224
- i0.ɵɵelementEnd();
56225
- i0.ɵɵtext(15, " This approach bridges strategy and execution. By starting with your revenue ambition and translating it into specific, measurable metric targets, your team gains clarity on exactly what needs to improve. You maintain full control to adjust targets based on your resources, historical performance, and growth opportunities at each funnel stage. ");
56226
- i0.ɵɵelementEnd()();
56227
- i0.ɵɵelementStart(16, "div", 11);
56228
- i0.ɵɵnamespaceSVG();
56229
- i0.ɵɵelementStart(17, "svg", 12);
56230
- i0.ɵɵelement(18, "path", 13);
56231
- i0.ɵɵelementEnd();
56232
- i0.ɵɵnamespaceHTML();
56233
- i0.ɵɵelementStart(19, "div", 6)(20, "h3", 14);
56234
- i0.ɵɵtext(21, " What You'll See Below ");
56235
- i0.ɵɵelementEnd();
56236
- i0.ɵɵelementStart(22, "ul", 15)(23, "li", 16);
56237
- i0.ɵɵnamespaceSVG();
56238
- i0.ɵɵelementStart(24, "svg", 17);
56239
- i0.ɵɵelement(25, "path", 18);
56519
+ i0.ɵɵelementStart(9, "div", 8)(10, "div", 9)(11, "p", 10);
56520
+ i0.ɵɵtext(12, " The Revenue Calculator empowers you to achieve your revenue goals with precision. Start by setting your target revenue for the year, and Symphiq will automatically calculate the specific metric improvements needed across your funnel. You can then refine individual metric targets to match your team's capabilities and strategic focus. ");
56240
56521
  i0.ɵɵelementEnd();
56241
- i0.ɵɵnamespaceHTML();
56242
- i0.ɵɵelementStart(26, "span")(27, "strong", 10);
56243
- i0.ɵɵtext(28, "Revenue Target Input");
56522
+ i0.ɵɵelementStart(13, "p", 10)(14, "strong", 11);
56523
+ i0.ɵɵtext(15, "Why this matters:");
56244
56524
  i0.ɵɵelementEnd();
56245
- i0.ɵɵtext(29, " \u2014 Set your desired revenue goal for the year, either as an absolute amount or percentage increase");
56525
+ i0.ɵɵtext(16, " This approach bridges strategy and execution. By starting with your revenue ambition and translating it into specific, measurable metric targets, your team gains clarity on exactly what needs to improve. You maintain full control to adjust targets based on your resources, historical performance, and growth opportunities at each funnel stage. ");
56246
56526
  i0.ɵɵelementEnd()();
56247
- i0.ɵɵelementStart(30, "li", 16);
56248
- i0.ɵɵnamespaceSVG();
56249
- i0.ɵɵelementStart(31, "svg", 17);
56250
- i0.ɵɵelement(32, "path", 18);
56251
- i0.ɵɵelementEnd();
56252
- i0.ɵɵnamespaceHTML();
56253
- i0.ɵɵelementStart(33, "span")(34, "strong", 10);
56254
- i0.ɵɵtext(35, "Automatic Metric Distribution");
56255
- i0.ɵɵelementEnd();
56256
- i0.ɵɵtext(36, " \u2014 See calculated metric improvements needed across your funnel to achieve your revenue target");
56527
+ i0.ɵɵelementStart(17, "div", 12);
56528
+ i0.ɵɵelement(18, "symphiq-confidence-level-card", 13);
56257
56529
  i0.ɵɵelementEnd()();
56258
- i0.ɵɵelementStart(37, "li", 16);
56259
- i0.ɵɵnamespaceSVG();
56260
- i0.ɵɵelementStart(38, "svg", 17);
56261
- i0.ɵɵelement(39, "path", 18);
56262
- i0.ɵɵelementEnd();
56263
- i0.ɵɵnamespaceHTML();
56264
- i0.ɵɵelementStart(40, "span")(41, "strong", 10);
56265
- i0.ɵɵtext(42, "Target Refinement Controls");
56266
- i0.ɵɵelementEnd();
56267
- i0.ɵɵtext(43, " \u2014 Adjust individual metric targets to align with your team's capacity and strategic priorities");
56268
- i0.ɵɵelementEnd()()()()();
56269
- i0.ɵɵelementStart(44, "div", 19);
56530
+ i0.ɵɵelement(19, "symphiq-what-youll-see-below", 14);
56531
+ i0.ɵɵelementStart(20, "div", 15);
56270
56532
  i0.ɵɵnamespaceSVG();
56271
- i0.ɵɵelementStart(45, "svg", 12);
56272
- i0.ɵɵelement(46, "path", 20);
56533
+ i0.ɵɵelementStart(21, "svg", 16);
56534
+ i0.ɵɵelement(22, "path", 17);
56273
56535
  i0.ɵɵelementEnd();
56274
56536
  i0.ɵɵnamespaceHTML();
56275
- i0.ɵɵelementStart(47, "div", 6)(48, "h3", 21);
56276
- i0.ɵɵtext(49, " This is Just the Beginning ");
56537
+ i0.ɵɵelementStart(23, "div", 6)(24, "h3", 18);
56538
+ i0.ɵɵtext(25, " This is Just the Beginning ");
56277
56539
  i0.ɵɵelementEnd();
56278
- i0.ɵɵelementStart(50, "p", 22);
56279
- i0.ɵɵtext(51);
56540
+ i0.ɵɵelementStart(26, "p", 19);
56541
+ i0.ɵɵtext(27);
56280
56542
  i0.ɵɵelementEnd()()()()()()();
56281
56543
  } if (rf & 2) {
56282
56544
  i0.ɵɵproperty("ngClass", ctx.containerClasses());
@@ -56286,19 +56548,15 @@ class RevenueCalculatorWelcomeBannerComponent {
56286
56548
  i0.ɵɵproperty("ngClass", ctx.iconContainerClasses());
56287
56549
  i0.ɵɵadvance(4);
56288
56550
  i0.ɵɵproperty("ngClass", ctx.titleClasses());
56289
- i0.ɵɵadvance(3);
56551
+ i0.ɵɵadvance(4);
56290
56552
  i0.ɵɵproperty("ngClass", ctx.textClasses());
56291
56553
  i0.ɵɵadvance(2);
56292
56554
  i0.ɵɵproperty("ngClass", ctx.textClasses());
56293
- i0.ɵɵadvance(4);
56294
- i0.ɵɵproperty("ngClass", ctx.highlightBoxClasses());
56555
+ i0.ɵɵadvance(5);
56556
+ i0.ɵɵproperty("viewMode", ctx.viewMode())("targets", ctx.targets());
56557
+ i0.ɵɵadvance();
56558
+ i0.ɵɵproperty("viewMode", ctx.viewMode())("items", ctx.whatYoullSeeBelowItems);
56295
56559
  i0.ɵɵadvance();
56296
- i0.ɵɵproperty("ngClass", ctx.highlightIconClasses());
56297
- i0.ɵɵadvance(3);
56298
- i0.ɵɵproperty("ngClass", ctx.highlightTitleClasses());
56299
- i0.ɵɵadvance(2);
56300
- i0.ɵɵproperty("ngClass", ctx.highlightListClasses());
56301
- i0.ɵɵadvance(22);
56302
56560
  i0.ɵɵproperty("ngClass", ctx.nextStepsBoxClasses());
56303
56561
  i0.ɵɵadvance();
56304
56562
  i0.ɵɵproperty("ngClass", ctx.nextStepsIconClasses());
@@ -56308,14 +56566,14 @@ class RevenueCalculatorWelcomeBannerComponent {
56308
56566
  i0.ɵɵproperty("ngClass", ctx.nextStepsTextClasses());
56309
56567
  i0.ɵɵadvance();
56310
56568
  i0.ɵɵtextInterpolate1(" ", ctx.getNextStepsMessage(), " ");
56311
- } }, dependencies: [CommonModule, i1$1.NgClass], encapsulation: 2, changeDetection: 0 }); }
56569
+ } }, dependencies: [CommonModule, i1$1.NgClass, WhatYoullSeeBelowComponent, ConfidenceLevelCardComponent], encapsulation: 2, changeDetection: 0 }); }
56312
56570
  }
56313
56571
  (() => { (typeof ngDevMode === "undefined" || ngDevMode) && i0.ɵsetClassMetadata(RevenueCalculatorWelcomeBannerComponent, [{
56314
56572
  type: Component,
56315
56573
  args: [{
56316
56574
  selector: 'symphiq-revenue-calculator-welcome-banner',
56317
56575
  standalone: true,
56318
- imports: [CommonModule],
56576
+ imports: [CommonModule, WhatYoullSeeBelowComponent, ConfidenceLevelCardComponent],
56319
56577
  changeDetection: ChangeDetectionStrategy.OnPush,
56320
56578
  template: `
56321
56579
  <div [ngClass]="containerClasses()" class="rounded-2xl border shadow-lg overflow-hidden">
@@ -56332,47 +56590,34 @@ class RevenueCalculatorWelcomeBannerComponent {
56332
56590
  Welcome to Your Revenue Calculator
56333
56591
  </h2>
56334
56592
 
56335
- <!-- Description (full width, no confidence card) -->
56336
- <div class="space-y-3 mb-6">
56337
- <p [ngClass]="textClasses()" class="text-base leading-relaxed">
56338
- The Revenue Calculator empowers you to achieve your revenue goals with precision. Start by setting your target revenue for the year, and Symphiq will automatically calculate the specific metric improvements needed across your funnel. You can then refine individual metric targets to match your team's capabilities and strategic focus.
56339
- </p>
56340
- <p [ngClass]="textClasses()" class="text-base leading-relaxed">
56341
- <strong class="font-semibold">Why this matters:</strong> This approach bridges strategy and execution. By starting with your revenue ambition and translating it into specific, measurable metric targets, your team gains clarity on exactly what needs to improve. You maintain full control to adjust targets based on your resources, historical performance, and growth opportunities at each funnel stage.
56342
- </p>
56343
- </div>
56593
+ <!-- Description and Confidence Card in Responsive Layout -->
56594
+ <div class="grid grid-cols-1 lg:grid-cols-3 gap-6 mb-6">
56595
+ <!-- Description (takes 2 columns on large screens) -->
56596
+ <div class="lg:col-span-2 space-y-3">
56597
+ <p [ngClass]="textClasses()" class="text-base leading-relaxed">
56598
+ The Revenue Calculator empowers you to achieve your revenue goals with precision. Start by setting your target revenue for the year, and Symphiq will automatically calculate the specific metric improvements needed across your funnel. You can then refine individual metric targets to match your team's capabilities and strategic focus.
56599
+ </p>
56600
+ <p [ngClass]="textClasses()" class="text-base leading-relaxed">
56601
+ <strong class="font-semibold">Why this matters:</strong> This approach bridges strategy and execution. By starting with your revenue ambition and translating it into specific, measurable metric targets, your team gains clarity on exactly what needs to improve. You maintain full control to adjust targets based on your resources, historical performance, and growth opportunities at each funnel stage.
56602
+ </p>
56603
+ </div>
56344
56604
 
56345
- <div [ngClass]="highlightBoxClasses()" class="mt-6 p-5 rounded-xl border-l-4 flex items-start gap-4">
56346
- <svg class="w-6 h-6 flex-shrink-0 mt-0.5" [ngClass]="highlightIconClasses()" fill="none" stroke="currentColor" viewBox="0 0 24 24">
56347
- <path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M9 12l2 2 4-4m6 2a9 9 0 11-18 0 9 9 0 0118 0z"></path>
56348
- </svg>
56349
- <div class="flex-1">
56350
- <h3 [ngClass]="highlightTitleClasses()" class="font-bold text-lg mb-2">
56351
- What You'll See Below
56352
- </h3>
56353
- <ul [ngClass]="highlightListClasses()" class="space-y-2 text-sm">
56354
- <li class="flex items-start gap-2">
56355
- <svg class="w-5 h-5 flex-shrink-0 mt-0.5" fill="currentColor" viewBox="0 0 20 20">
56356
- <path fill-rule="evenodd" d="M10 18a8 8 0 100-16 8 8 0 000 16zm3.707-9.293a1 1 0 00-1.414-1.414L9 10.586 7.707 9.293a1 1 0 00-1.414 1.414l2 2a1 1 0 001.414 0l4-4z" clip-rule="evenodd"></path>
56357
- </svg>
56358
- <span><strong class="font-semibold">Revenue Target Input</strong> — Set your desired revenue goal for the year, either as an absolute amount or percentage increase</span>
56359
- </li>
56360
- <li class="flex items-start gap-2">
56361
- <svg class="w-5 h-5 flex-shrink-0 mt-0.5" fill="currentColor" viewBox="0 0 20 20">
56362
- <path fill-rule="evenodd" d="M10 18a8 8 0 100-16 8 8 0 000 16zm3.707-9.293a1 1 0 00-1.414-1.414L9 10.586 7.707 9.293a1 1 0 00-1.414 1.414l2 2a1 1 0 001.414 0l4-4z" clip-rule="evenodd"></path>
56363
- </svg>
56364
- <span><strong class="font-semibold">Automatic Metric Distribution</strong> — See calculated metric improvements needed across your funnel to achieve your revenue target</span>
56365
- </li>
56366
- <li class="flex items-start gap-2">
56367
- <svg class="w-5 h-5 flex-shrink-0 mt-0.5" fill="currentColor" viewBox="0 0 20 20">
56368
- <path fill-rule="evenodd" d="M10 18a8 8 0 100-16 8 8 0 000 16zm3.707-9.293a1 1 0 00-1.414-1.414L9 10.586 7.707 9.293a1 1 0 00-1.414 1.414l2 2a1 1 0 001.414 0l4-4z" clip-rule="evenodd"></path>
56369
- </svg>
56370
- <span><strong class="font-semibold">Target Refinement Controls</strong> — Adjust individual metric targets to align with your team's capacity and strategic priorities</span>
56371
- </li>
56372
- </ul>
56605
+ <!-- Confidence Card (takes 1 column on large screens, full width on mobile) -->
56606
+ <div class="lg:col-span-1">
56607
+ <symphiq-confidence-level-card
56608
+ [viewMode]="viewMode()"
56609
+ currentStepId="revenue-calculator"
56610
+ [targets]="targets()"
56611
+ />
56373
56612
  </div>
56374
56613
  </div>
56375
56614
 
56615
+ <symphiq-what-youll-see-below
56616
+ class="mt-6 block"
56617
+ [viewMode]="viewMode()"
56618
+ [items]="whatYoullSeeBelowItems"
56619
+ />
56620
+
56376
56621
  <div [ngClass]="nextStepsBoxClasses()" class="mt-6 p-5 rounded-xl border flex items-start gap-4">
56377
56622
  <svg class="w-6 h-6 flex-shrink-0 mt-0.5" [ngClass]="nextStepsIconClasses()" fill="none" stroke="currentColor" viewBox="0 0 24 24">
56378
56623
  <path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M13 7l5 5m0 0l-5 5m5-5H6"></path>
@@ -56392,8 +56637,8 @@ class RevenueCalculatorWelcomeBannerComponent {
56392
56637
  </div>
56393
56638
  `
56394
56639
  }]
56395
- }], null, { viewMode: [{ type: i0.Input, args: [{ isSignal: true, alias: "viewMode", required: false }] }], dataLoadStatus: [{ type: i0.Input, args: [{ isSignal: true, alias: "dataLoadStatus", required: false }] }], hasTargets: [{ type: i0.Input, args: [{ isSignal: true, alias: "hasTargets", required: false }] }], isOnboarded: [{ type: i0.Input, args: [{ isSignal: true, alias: "isOnboarded", required: false }] }] }); })();
56396
- (() => { (typeof ngDevMode === "undefined" || ngDevMode) && i0.ɵsetClassDebugInfo(RevenueCalculatorWelcomeBannerComponent, { className: "RevenueCalculatorWelcomeBannerComponent", filePath: "lib/components/revenue-calculator-dashboard/revenue-calculator-welcome-banner.component.ts", lineNumber: 85 }); })();
56640
+ }], null, { viewMode: [{ type: i0.Input, args: [{ isSignal: true, alias: "viewMode", required: false }] }], dataLoadStatus: [{ type: i0.Input, args: [{ isSignal: true, alias: "dataLoadStatus", required: false }] }], hasTargets: [{ type: i0.Input, args: [{ isSignal: true, alias: "hasTargets", required: false }] }], isOnboarded: [{ type: i0.Input, args: [{ isSignal: true, alias: "isOnboarded", required: false }] }], targets: [{ type: i0.Input, args: [{ isSignal: true, alias: "targets", required: false }] }] }); })();
56641
+ (() => { (typeof ngDevMode === "undefined" || ngDevMode) && i0.ɵsetClassDebugInfo(RevenueCalculatorWelcomeBannerComponent, { className: "RevenueCalculatorWelcomeBannerComponent", filePath: "lib/components/revenue-calculator-dashboard/revenue-calculator-welcome-banner.component.ts", lineNumber: 74 }); })();
56397
56642
 
56398
56643
  function calculatePacingStatus(projectedValue, targetValue, increaseBad = false) {
56399
56644
  if (targetValue <= 0)
@@ -64753,7 +64998,7 @@ function SymphiqRevenueCalculatorDashboardComponent_Conditional_9_Template(rf, c
64753
64998
  i0.ɵɵelementEnd();
64754
64999
  } if (rf & 2) {
64755
65000
  const ctx_r0 = i0.ɵɵnextContext();
64756
- i0.ɵɵproperty("viewMode", ctx_r0.viewMode())("dataLoadStatus", ctx_r0.dataLoadStatus() ?? ctx_r0.ShopDataLoadStatusEnum.NOT_LOADED)("hasTargets", false);
65001
+ i0.ɵɵproperty("viewMode", ctx_r0.viewMode())("dataLoadStatus", ctx_r0.dataLoadStatus() ?? ctx_r0.ShopDataLoadStatusEnum.NOT_LOADED)("hasTargets", false)("targets", ctx_r0.targets());
64757
65002
  i0.ɵɵadvance(2);
64758
65003
  i0.ɵɵproperty("viewMode", ctx_r0.viewMode());
64759
65004
  } }
@@ -64772,7 +65017,7 @@ function SymphiqRevenueCalculatorDashboardComponent_Conditional_10_Template(rf,
64772
65017
  i0.ɵɵconditionalCreate(1, SymphiqRevenueCalculatorDashboardComponent_Conditional_10_Conditional_1_Template, 2, 16, "div", 8);
64773
65018
  } if (rf & 2) {
64774
65019
  const ctx_r0 = i0.ɵɵnextContext();
64775
- i0.ɵɵproperty("viewMode", ctx_r0.viewMode())("dataLoadStatus", ctx_r0.dataLoadStatus() ?? ctx_r0.ShopDataLoadStatusEnum.NOT_LOADED)("hasTargets", ctx_r0.hasCurrentYearTargets())("isOnboarded", ctx_r0.isOnboarded());
65020
+ i0.ɵɵproperty("viewMode", ctx_r0.viewMode())("dataLoadStatus", ctx_r0.dataLoadStatus() ?? ctx_r0.ShopDataLoadStatusEnum.NOT_LOADED)("hasTargets", ctx_r0.hasCurrentYearTargets())("isOnboarded", ctx_r0.isOnboarded())("targets", ctx_r0.targets());
64776
65021
  i0.ɵɵadvance();
64777
65022
  i0.ɵɵconditional(!ctx_r0.isLoading() ? 1 : -1);
64778
65023
  } }
@@ -64969,7 +65214,7 @@ class SymphiqRevenueCalculatorDashboardComponent {
64969
65214
  static { this.ɵfac = function SymphiqRevenueCalculatorDashboardComponent_Factory(__ngFactoryType__) { return new (__ngFactoryType__ || SymphiqRevenueCalculatorDashboardComponent)(); }; }
64970
65215
  static { this.ɵcmp = /*@__PURE__*/ i0.ɵɵdefineComponent({ type: SymphiqRevenueCalculatorDashboardComponent, selectors: [["symphiq-revenue-calculator-dashboard"]], hostBindings: function SymphiqRevenueCalculatorDashboardComponent_HostBindings(rf, ctx) { if (rf & 1) {
64971
65216
  i0.ɵɵlistener("scroll", function SymphiqRevenueCalculatorDashboardComponent_scroll_HostBindingHandler() { return ctx.onWindowScroll(); }, i0.ɵɵresolveWindow);
64972
- } }, inputs: { viewMode: [1, "viewMode"], isLoading: [1, "isLoading"], dataLoadStatus: [1, "dataLoadStatus"], targets: [1, "targets"], funnelMetrics: [1, "funnelMetrics"], mainUiData: [1, "mainUiData"], ytdComparisonUiData: [1, "ytdComparisonUiData"], trendUiData: [1, "trendUiData"], pacingResponse: [1, "pacingResponse"], dataResults: [1, "dataResults"], shopId: [1, "shopId"], embedded: [1, "embedded"], scrollEvent: [1, "scrollEvent"], scrollElement: [1, "scrollElement"], forDemo: [1, "forDemo"], maxAccessibleStepId: [1, "maxAccessibleStepId"], calculateRevenueReverseResponse: [1, "calculateRevenueReverseResponse"], calculateRevenueResponse: [1, "calculateRevenueResponse"], isCalculatingTargets: [1, "isCalculatingTargets"], targetHistories: [1, "targetHistories"], users: [1, "users"], isOnboarded: [1, "isOnboarded"], isContinueLoading: [1, "isContinueLoading"] }, outputs: { stepClick: "stepClick", nextStepClick: "nextStepClick", targetsCreated: "targetsCreated", targetsUpdated: "targetsUpdated", saveTargetsClick: "saveTargetsClick", calculateRevenueRequest: "calculateRevenueRequest", calculateRevenueReverseRequest: "calculateRevenueReverseRequest", editRelatedMetricTarget: "editRelatedMetricTarget", discardChangesClick: "discardChangesClick" }, decls: 12, vars: 19, consts: [[3, "ngClass"], [3, "viewMode", "progress", "embedded"], [1, "animated-bubbles", 2, "position", "fixed", "top", "0", "left", "0", "right", "0", "bottom", "0", "width", "100vw", "height", "100vh", "z-index", "1", "pointer-events", "none"], [1, "relative", "z-[51]"], [3, "title", "subtitle", "viewMode", "showControls", "embedded", "scrollEvent"], [3, "stepClick", "nextStepClick", "viewMode", "currentStepId", "showNextStepAction", "forDemo", "maxAccessibleStepId"], [1, "relative"], [1, "max-w-7xl", "mx-auto", "px-4", "sm:px-6", "lg:px-8", "py-8"], [1, "mt-8"], [1, "sticky", "bottom-0", "z-50", "border-t", "py-4", "px-4", "sm:px-6", "lg:px-8", 3, "ngClass"], ["title", "Loading Revenue Calculator", "subtitle", "Please wait while we prepare your revenue calculator...", "size", "large", 3, "viewMode"], [3, "viewMode", "dataLoadStatus", "hasTargets"], ["title", "Downloading Your Google Analytics 4 Data", "subtitle", "Symphiq is fetching your historical metrics to establish baseline performance. This may take a moment as we gather your funnel data.", "size", "large", 3, "viewMode"], [3, "viewMode", "dataLoadStatus", "hasTargets", "isOnboarded"], [3, "targetsCreated", "calculateRevenueReverseRequest", "calculateRevenueRequest", "editRelatedMetricTarget", "saveTargetsClick", "targetsUpdated", "discardChangesClick", "viewMode", "funnelMetrics", "mainUiData", "trendUiData", "shopId", "pacingResponse", "dataResults", "calculateRevenueReverseResponse", "calculateRevenueResponse", "isCalculatingTargets", "targets", "targetHistories", "users"], [1, "max-w-7xl", "mx-auto", "flex", "items-center", "justify-between", "gap-4"], [1, "text-sm", 3, "ngClass"], ["type", "button", 1, "px-4", "py-2", "rounded-lg", "font-medium", "text-sm", "transition-all", "duration-200", "flex", "items-center", "gap-2", "whitespace-nowrap", "disabled:opacity-50", "disabled:cursor-not-allowed", "disabled:hover:scale-100", 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"]], template: function SymphiqRevenueCalculatorDashboardComponent_Template(rf, ctx) { if (rf & 1) {
65217
+ } }, inputs: { viewMode: [1, "viewMode"], isLoading: [1, "isLoading"], dataLoadStatus: [1, "dataLoadStatus"], targets: [1, "targets"], funnelMetrics: [1, "funnelMetrics"], mainUiData: [1, "mainUiData"], ytdComparisonUiData: [1, "ytdComparisonUiData"], trendUiData: [1, "trendUiData"], pacingResponse: [1, "pacingResponse"], dataResults: [1, "dataResults"], shopId: [1, "shopId"], embedded: [1, "embedded"], scrollEvent: [1, "scrollEvent"], scrollElement: [1, "scrollElement"], forDemo: [1, "forDemo"], maxAccessibleStepId: [1, "maxAccessibleStepId"], calculateRevenueReverseResponse: [1, "calculateRevenueReverseResponse"], calculateRevenueResponse: [1, "calculateRevenueResponse"], isCalculatingTargets: [1, "isCalculatingTargets"], targetHistories: [1, "targetHistories"], users: [1, "users"], isOnboarded: [1, "isOnboarded"], isContinueLoading: [1, "isContinueLoading"] }, outputs: { stepClick: "stepClick", nextStepClick: "nextStepClick", targetsCreated: "targetsCreated", targetsUpdated: "targetsUpdated", saveTargetsClick: "saveTargetsClick", calculateRevenueRequest: "calculateRevenueRequest", calculateRevenueReverseRequest: "calculateRevenueReverseRequest", editRelatedMetricTarget: "editRelatedMetricTarget", discardChangesClick: "discardChangesClick" }, decls: 12, vars: 19, consts: [[3, "ngClass"], [3, "viewMode", "progress", "embedded"], [1, "animated-bubbles", 2, "position", "fixed", "top", "0", "left", "0", "right", "0", "bottom", "0", "width", "100vw", "height", "100vh", "z-index", "1", "pointer-events", "none"], [1, "relative", "z-[51]"], [3, "title", "subtitle", "viewMode", "showControls", "embedded", "scrollEvent"], [3, "stepClick", "nextStepClick", "viewMode", "currentStepId", "showNextStepAction", "forDemo", "maxAccessibleStepId"], [1, "relative"], [1, "max-w-7xl", "mx-auto", "px-4", "sm:px-6", "lg:px-8", "py-8"], [1, "mt-8"], [1, "sticky", "bottom-0", "z-50", "border-t", "py-4", "px-4", "sm:px-6", "lg:px-8", 3, "ngClass"], ["title", "Loading Revenue Calculator", "subtitle", "Please wait while we prepare your revenue calculator...", "size", "large", 3, "viewMode"], [3, "viewMode", "dataLoadStatus", "hasTargets", "targets"], ["title", "Downloading Your Google Analytics 4 Data", "subtitle", "Symphiq is fetching your historical metrics to establish baseline performance. This may take a moment as we gather your funnel data.", "size", "large", 3, "viewMode"], [3, "viewMode", "dataLoadStatus", "hasTargets", "isOnboarded", "targets"], [3, "targetsCreated", "calculateRevenueReverseRequest", "calculateRevenueRequest", "editRelatedMetricTarget", "saveTargetsClick", "targetsUpdated", "discardChangesClick", "viewMode", "funnelMetrics", "mainUiData", "trendUiData", "shopId", "pacingResponse", "dataResults", "calculateRevenueReverseResponse", "calculateRevenueResponse", "isCalculatingTargets", "targets", "targetHistories", "users"], [1, "max-w-7xl", "mx-auto", "flex", "items-center", "justify-between", "gap-4"], [1, "text-sm", 3, "ngClass"], ["type", "button", 1, "px-4", "py-2", "rounded-lg", "font-medium", "text-sm", "transition-all", "duration-200", "flex", "items-center", "gap-2", "whitespace-nowrap", "disabled:opacity-50", "disabled:cursor-not-allowed", "disabled:hover:scale-100", 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"]], template: function SymphiqRevenueCalculatorDashboardComponent_Template(rf, ctx) { if (rf & 1) {
64973
65218
  i0.ɵɵelementStart(0, "div", 0);
64974
65219
  i0.ɵɵelement(1, "symphiq-scroll-progress-bar", 1)(2, "div", 2);
64975
65220
  i0.ɵɵelementStart(3, "div", 3);
@@ -64978,7 +65223,7 @@ class SymphiqRevenueCalculatorDashboardComponent {
64978
65223
  i0.ɵɵlistener("stepClick", function SymphiqRevenueCalculatorDashboardComponent_Template_symphiq_journey_progress_indicator_stepClick_5_listener($event) { return ctx.stepClick.emit($event); })("nextStepClick", function SymphiqRevenueCalculatorDashboardComponent_Template_symphiq_journey_progress_indicator_nextStepClick_5_listener() { return ctx.nextStepClick.emit(); });
64979
65224
  i0.ɵɵelementEnd();
64980
65225
  i0.ɵɵelementStart(6, "main", 6)(7, "div", 7);
64981
- i0.ɵɵconditionalCreate(8, SymphiqRevenueCalculatorDashboardComponent_Conditional_8_Template, 2, 1, "div", 8)(9, SymphiqRevenueCalculatorDashboardComponent_Conditional_9_Template, 3, 4)(10, SymphiqRevenueCalculatorDashboardComponent_Conditional_10_Template, 2, 5);
65226
+ i0.ɵɵconditionalCreate(8, SymphiqRevenueCalculatorDashboardComponent_Conditional_8_Template, 2, 1, "div", 8)(9, SymphiqRevenueCalculatorDashboardComponent_Conditional_9_Template, 3, 5)(10, SymphiqRevenueCalculatorDashboardComponent_Conditional_10_Template, 2, 6);
64982
65227
  i0.ɵɵelementEnd()();
64983
65228
  i0.ɵɵconditionalCreate(11, SymphiqRevenueCalculatorDashboardComponent_Conditional_11_Template, 7, 7, "div", 9);
64984
65229
  i0.ɵɵelementEnd()();
@@ -65072,6 +65317,7 @@ class SymphiqRevenueCalculatorDashboardComponent {
65072
65317
  [viewMode]="viewMode()"
65073
65318
  [dataLoadStatus]="dataLoadStatus() ?? ShopDataLoadStatusEnum.NOT_LOADED"
65074
65319
  [hasTargets]="false"
65320
+ [targets]="targets()"
65075
65321
  />
65076
65322
 
65077
65323
  <!-- Loading Message Card -->
@@ -65092,6 +65338,7 @@ class SymphiqRevenueCalculatorDashboardComponent {
65092
65338
  [dataLoadStatus]="dataLoadStatus() ?? ShopDataLoadStatusEnum.NOT_LOADED"
65093
65339
  [hasTargets]="hasCurrentYearTargets()"
65094
65340
  [isOnboarded]="isOnboarded()"
65341
+ [targets]="targets()"
65095
65342
  />
65096
65343
 
65097
65344
  @if (!isLoading()) {
@@ -65163,7 +65410,7 @@ class SymphiqRevenueCalculatorDashboardComponent {
65163
65410
  type: HostListener,
65164
65411
  args: ['window:scroll']
65165
65412
  }] }); })();
65166
- (() => { (typeof ngDevMode === "undefined" || ngDevMode) && i0.ɵsetClassDebugInfo(SymphiqRevenueCalculatorDashboardComponent, { className: "SymphiqRevenueCalculatorDashboardComponent", filePath: "lib/components/revenue-calculator-dashboard/symphiq-revenue-calculator-dashboard.component.ts", lineNumber: 201 }); })();
65413
+ (() => { (typeof ngDevMode === "undefined" || ngDevMode) && i0.ɵsetClassDebugInfo(SymphiqRevenueCalculatorDashboardComponent, { className: "SymphiqRevenueCalculatorDashboardComponent", filePath: "lib/components/revenue-calculator-dashboard/symphiq-revenue-calculator-dashboard.component.ts", lineNumber: 203 }); })();
65167
65414
 
65168
65415
  function HierarchyDisplayComponent_Conditional_1_Template(rf, ctx) { if (rf & 1) {
65169
65416
  i0.ɵɵelementStart(0, "div", 1)(1, "div", 1);
@@ -68350,7 +68597,7 @@ class CollapsibleSectionGroupComponent {
68350
68597
  const _c0$w = () => [];
68351
68598
  function SymphiqBusinessAnalysisDashboardComponent_Conditional_6_Conditional_0_Template(rf, ctx) { if (rf & 1) {
68352
68599
  const _r1 = i0.ɵɵgetCurrentView();
68353
- i0.ɵɵelementStart(0, "symphiq-journey-progress-indicator", 17);
68600
+ i0.ɵɵelementStart(0, "symphiq-journey-progress-indicator", 15);
68354
68601
  i0.ɵɵlistener("stepClick", function SymphiqBusinessAnalysisDashboardComponent_Conditional_6_Conditional_0_Template_symphiq_journey_progress_indicator_stepClick_0_listener($event) { i0.ɵɵrestoreView(_r1); const ctx_r1 = i0.ɵɵnextContext(2); return i0.ɵɵresetView(ctx_r1.stepClick.emit($event)); })("nextStepClick", function SymphiqBusinessAnalysisDashboardComponent_Conditional_6_Conditional_0_Template_symphiq_journey_progress_indicator_nextStepClick_0_listener() { i0.ɵɵrestoreView(_r1); const ctx_r1 = i0.ɵɵnextContext(2); return i0.ɵɵresetView(ctx_r1.nextStepClick.emit()); });
68355
68602
  i0.ɵɵelementEnd();
68356
68603
  } if (rf & 2) {
@@ -68359,24 +68606,18 @@ function SymphiqBusinessAnalysisDashboardComponent_Conditional_6_Conditional_0_T
68359
68606
  } }
68360
68607
  function SymphiqBusinessAnalysisDashboardComponent_Conditional_6_Template(rf, ctx) { if (rf & 1) {
68361
68608
  i0.ɵɵconditionalCreate(0, SymphiqBusinessAnalysisDashboardComponent_Conditional_6_Conditional_0_Template, 1, 5, "symphiq-journey-progress-indicator", 12);
68362
- i0.ɵɵelementStart(1, "div", 13)(2, "div", 14);
68363
- i0.ɵɵelement(3, "symphiq-welcome-banner", 15);
68364
- i0.ɵɵelementEnd();
68365
- i0.ɵɵelement(4, "symphiq-loading-card", 16);
68609
+ i0.ɵɵelementStart(1, "div", 13);
68610
+ i0.ɵɵelement(2, "symphiq-loading-card", 14);
68366
68611
  i0.ɵɵelementEnd();
68367
68612
  } if (rf & 2) {
68368
- let tmp_3_0;
68369
- let tmp_5_0;
68370
68613
  const ctx_r1 = i0.ɵɵnextContext();
68371
68614
  i0.ɵɵconditional(!ctx_r1.isOnboarded() ? 0 : -1);
68372
- i0.ɵɵadvance(3);
68373
- i0.ɵɵproperty("viewMode", ctx_r1.viewMode())("businessName", ((tmp_3_0 = ctx_r1.currentProfile()) == null ? null : tmp_3_0.profileStructured == null ? null : tmp_3_0.profileStructured.businessName) || "your business")("isOnboarded", ctx_r1.isOnboarded())("analysisDate", (tmp_5_0 = ctx_r1.profile()) == null ? null : tmp_5_0.selfContentCompletedDate);
68374
- i0.ɵɵadvance();
68615
+ i0.ɵɵadvance(2);
68375
68616
  i0.ɵɵproperty("viewMode", ctx_r1.viewMode())("title", "Loading Business Analysis...")("subtitle", "Please wait while we fetch your data.");
68376
68617
  } }
68377
68618
  function SymphiqBusinessAnalysisDashboardComponent_Conditional_7_Conditional_0_Template(rf, ctx) { if (rf & 1) {
68378
68619
  const _r3 = i0.ɵɵgetCurrentView();
68379
- i0.ɵɵelementStart(0, "symphiq-journey-progress-indicator", 17);
68620
+ i0.ɵɵelementStart(0, "symphiq-journey-progress-indicator", 15);
68380
68621
  i0.ɵɵlistener("stepClick", function SymphiqBusinessAnalysisDashboardComponent_Conditional_7_Conditional_0_Template_symphiq_journey_progress_indicator_stepClick_0_listener($event) { i0.ɵɵrestoreView(_r3); const ctx_r1 = i0.ɵɵnextContext(2); return i0.ɵɵresetView(ctx_r1.stepClick.emit($event)); })("nextStepClick", function SymphiqBusinessAnalysisDashboardComponent_Conditional_7_Conditional_0_Template_symphiq_journey_progress_indicator_nextStepClick_0_listener() { i0.ɵɵrestoreView(_r3); const ctx_r1 = i0.ɵɵnextContext(2); return i0.ɵɵresetView(ctx_r1.nextStepClick.emit()); });
68381
68622
  i0.ɵɵelementEnd();
68382
68623
  } if (rf & 2) {
@@ -68385,8 +68626,8 @@ function SymphiqBusinessAnalysisDashboardComponent_Conditional_7_Conditional_0_T
68385
68626
  } }
68386
68627
  function SymphiqBusinessAnalysisDashboardComponent_Conditional_7_Template(rf, ctx) { if (rf & 1) {
68387
68628
  i0.ɵɵconditionalCreate(0, SymphiqBusinessAnalysisDashboardComponent_Conditional_7_Conditional_0_Template, 1, 5, "symphiq-journey-progress-indicator", 12);
68388
- i0.ɵɵelementStart(1, "div", 13)(2, "div", 14);
68389
- i0.ɵɵelement(3, "symphiq-welcome-banner", 15);
68629
+ i0.ɵɵelementStart(1, "div", 13)(2, "div", 16);
68630
+ i0.ɵɵelement(3, "symphiq-welcome-banner", 17);
68390
68631
  i0.ɵɵelementEnd()();
68391
68632
  i0.ɵɵelement(4, "symphiq-content-generation-progress-with-confetti", 18);
68392
68633
  } if (rf & 2) {
@@ -68403,7 +68644,7 @@ function SymphiqBusinessAnalysisDashboardComponent_Conditional_7_Template(rf, ct
68403
68644
  } }
68404
68645
  function SymphiqBusinessAnalysisDashboardComponent_Conditional_8_Conditional_0_Conditional_0_Template(rf, ctx) { if (rf & 1) {
68405
68646
  const _r5 = i0.ɵɵgetCurrentView();
68406
- i0.ɵɵelementStart(0, "symphiq-journey-progress-indicator", 17);
68647
+ i0.ɵɵelementStart(0, "symphiq-journey-progress-indicator", 15);
68407
68648
  i0.ɵɵlistener("stepClick", function SymphiqBusinessAnalysisDashboardComponent_Conditional_8_Conditional_0_Conditional_0_Template_symphiq_journey_progress_indicator_stepClick_0_listener($event) { i0.ɵɵrestoreView(_r5); const ctx_r1 = i0.ɵɵnextContext(3); return i0.ɵɵresetView(ctx_r1.stepClick.emit($event)); })("nextStepClick", function SymphiqBusinessAnalysisDashboardComponent_Conditional_8_Conditional_0_Conditional_0_Template_symphiq_journey_progress_indicator_nextStepClick_0_listener() { i0.ɵɵrestoreView(_r5); const ctx_r1 = i0.ɵɵnextContext(3); return i0.ɵɵresetView(ctx_r1.nextStepClick.emit()); });
68408
68649
  i0.ɵɵelementEnd();
68409
68650
  } if (rf & 2) {
@@ -68413,10 +68654,10 @@ function SymphiqBusinessAnalysisDashboardComponent_Conditional_8_Conditional_0_C
68413
68654
  function SymphiqBusinessAnalysisDashboardComponent_Conditional_8_Conditional_0_Template(rf, ctx) { if (rf & 1) {
68414
68655
  const _r4 = i0.ɵɵgetCurrentView();
68415
68656
  i0.ɵɵconditionalCreate(0, SymphiqBusinessAnalysisDashboardComponent_Conditional_8_Conditional_0_Conditional_0_Template, 1, 5, "symphiq-journey-progress-indicator", 12);
68416
- i0.ɵɵelementStart(1, "div", 13)(2, "div", 14);
68417
- i0.ɵɵelement(3, "symphiq-welcome-banner", 15);
68657
+ i0.ɵɵelementStart(1, "div", 13)(2, "div", 16);
68658
+ i0.ɵɵelement(3, "symphiq-welcome-banner", 17);
68418
68659
  i0.ɵɵelementEnd();
68419
- i0.ɵɵelementStart(4, "div", 14)(5, "symphiq-recommendations-tiled-grid", 19);
68660
+ i0.ɵɵelementStart(4, "div", 16)(5, "symphiq-recommendations-tiled-grid", 19);
68420
68661
  i0.ɵɵlistener("viewMoreClick", function SymphiqBusinessAnalysisDashboardComponent_Conditional_8_Conditional_0_Template_symphiq_recommendations_tiled_grid_viewMoreClick_5_listener($event) { i0.ɵɵrestoreView(_r4); const ctx_r1 = i0.ɵɵnextContext(2); return i0.ɵɵresetView(ctx_r1.openRecommendationDetailsModal($event)); });
68421
68662
  i0.ɵɵelementEnd()();
68422
68663
  i0.ɵɵelementStart(6, "div");
@@ -68439,22 +68680,22 @@ function SymphiqBusinessAnalysisDashboardComponent_Conditional_8_Conditional_1_F
68439
68680
  i0.ɵɵelement(1, "symphiq-section-divider", 23);
68440
68681
  i0.ɵɵelementEnd();
68441
68682
  } if (rf & 2) {
68442
- const ɵ$index_57_r6 = i0.ɵɵnextContext().$index;
68683
+ const ɵ$index_53_r6 = i0.ɵɵnextContext().$index;
68443
68684
  const ctx_r1 = i0.ɵɵnextContext(3);
68444
68685
  i0.ɵɵadvance();
68445
- i0.ɵɵproperty("viewMode", ctx_r1.viewMode())("subsections", ctx_r1.sections()[ɵ$index_57_r6 + 1].subsections || i0.ɵɵpureFunction0(2, _c0$w));
68686
+ i0.ɵɵproperty("viewMode", ctx_r1.viewMode())("subsections", ctx_r1.sections()[ɵ$index_53_r6 + 1].subsections || i0.ɵɵpureFunction0(2, _c0$w));
68446
68687
  } }
68447
68688
  function SymphiqBusinessAnalysisDashboardComponent_Conditional_8_Conditional_1_For_1_Template(rf, ctx) { if (rf & 1) {
68448
68689
  i0.ɵɵelement(0, "symphiq-profile-section", 21);
68449
68690
  i0.ɵɵconditionalCreate(1, SymphiqBusinessAnalysisDashboardComponent_Conditional_8_Conditional_1_For_1_Conditional_1_Template, 2, 3, "div", 22);
68450
68691
  } if (rf & 2) {
68451
68692
  const section_r7 = ctx.$implicit;
68452
- const ɵ$index_57_r6 = ctx.$index;
68453
- const ɵ$count_57_r8 = ctx.$count;
68693
+ const ɵ$index_53_r6 = ctx.$index;
68694
+ const ɵ$count_53_r8 = ctx.$count;
68454
68695
  const ctx_r1 = i0.ɵɵnextContext(3);
68455
68696
  i0.ɵɵproperty("section", section_r7)("viewMode", ctx_r1.viewMode())("forceExpanded", !ctx_r1.isCompactView());
68456
68697
  i0.ɵɵadvance();
68457
- i0.ɵɵconditional(!(ɵ$index_57_r6 === ɵ$count_57_r8 - 1) ? 1 : -1);
68698
+ i0.ɵɵconditional(!(ɵ$index_53_r6 === ɵ$count_53_r8 - 1) ? 1 : -1);
68458
68699
  } }
68459
68700
  function SymphiqBusinessAnalysisDashboardComponent_Conditional_8_Conditional_1_Template(rf, ctx) { if (rf & 1) {
68460
68701
  i0.ɵɵrepeaterCreate(0, SymphiqBusinessAnalysisDashboardComponent_Conditional_8_Conditional_1_For_1_Template, 2, 4, null, null, i0.ɵɵcomponentInstance().trackBySectionId, true);
@@ -69005,14 +69246,14 @@ class SymphiqBusinessAnalysisDashboardComponent {
69005
69246
  static { this.ɵfac = function SymphiqBusinessAnalysisDashboardComponent_Factory(__ngFactoryType__) { return new (__ngFactoryType__ || SymphiqBusinessAnalysisDashboardComponent)(); }; }
69006
69247
  static { this.ɵcmp = /*@__PURE__*/ i0.ɵɵdefineComponent({ type: SymphiqBusinessAnalysisDashboardComponent, selectors: [["symphiq-business-analysis-dashboard"]], hostBindings: function SymphiqBusinessAnalysisDashboardComponent_HostBindings(rf, ctx) { if (rf & 1) {
69007
69248
  i0.ɵɵlistener("scroll", function SymphiqBusinessAnalysisDashboardComponent_scroll_HostBindingHandler() { return ctx.onScroll(); }, i0.ɵɵresolveWindow)("keydown", function SymphiqBusinessAnalysisDashboardComponent_keydown_HostBindingHandler($event) { return ctx.handleKeyDown($event); }, i0.ɵɵresolveDocument);
69008
- } }, inputs: { embedded: [1, "embedded"], profile: [1, "profile"], parentHeaderOffset: [1, "parentHeaderOffset"], requestedByUser: [1, "requestedByUser"], viewMode: [1, "viewMode"], scrollEvent: [1, "scrollEvent"], scrollElement: [1, "scrollElement"], isLoading: [1, "isLoading"], isOnboarded: [1, "isOnboarded"], forDemo: [1, "forDemo"], maxAccessibleStepId: [1, "maxAccessibleStepId"], itemStatus: [1, "itemStatus"], isMarkingAsReviewed: [1, "isMarkingAsReviewed"] }, outputs: { stepClick: "stepClick", nextStepClick: "nextStepClick", markAsReviewedClick: "markAsReviewedClick" }, decls: 17, vars: 41, consts: [[3, "ngClass"], [3, "viewMode", "progress", "embedded"], [1, "animated-bubbles", 2, "position", "fixed", "top", "0", "left", "0", "right", "0", "bottom", "0", "width", "100vw", "height", "100vh", "z-index", "1", "pointer-events", "none"], [1, "relative", "z-[51]"], [3, "searchClick", "viewModeClick", "title", "subtitle", "viewMode", "viewModeLabel", "currentSection", "currentSubsection", "sectionFading", "subsectionFading", "showControls", "embedded", "scrollEvent"], [1, "relative"], [3, "sections", "viewMode", "embedded", "scrollElement"], [3, "viewMode", "embedded"], [3, "viewInContextRequested", "isLightMode"], [3, "searchChange", "resultSelected", "close", "isLightMode", "isOpen", "searchQuery", "results", "hasResults", "selectedIndex", "placeholder"], [3, "close", "modeSelected", "isOpen", "currentMode", "viewMode", "isLoading"], [3, "markAsReviewedClick", "viewMode", "reviewStatus", "selfContentStatus", "isMarkingAsReviewed", "isLoading"], [3, "viewMode", "currentStepId", "showNextStepAction", "forDemo", "maxAccessibleStepId"], [1, "max-w-7xl", "mx-auto", "px-4", "sm:px-6", "lg:px-8", "py-8"], [1, "mb-8"], [3, "viewMode", "businessName", "isOnboarded", "analysisDate"], ["size", "large", 3, "viewMode", "title", "subtitle"], [3, "stepClick", "nextStepClick", "viewMode", "currentStepId", "showNextStepAction", "forDemo", "maxAccessibleStepId"], [3, "viewMode", "itemStatus", "currentStatus", "confettiIntensity", "title", "subtitle"], [3, "viewMoreClick", "recommendations", "viewMode"], [3, "sections", "viewMode"], [3, "section", "viewMode", "forceExpanded"], [1, "max-w-7xl", "mx-auto", "px-4", "sm:px-6", "lg:px-8"], [3, "viewMode", "subsections"]], template: function SymphiqBusinessAnalysisDashboardComponent_Template(rf, ctx) { if (rf & 1) {
69249
+ } }, inputs: { embedded: [1, "embedded"], profile: [1, "profile"], parentHeaderOffset: [1, "parentHeaderOffset"], requestedByUser: [1, "requestedByUser"], viewMode: [1, "viewMode"], scrollEvent: [1, "scrollEvent"], scrollElement: [1, "scrollElement"], isLoading: [1, "isLoading"], isOnboarded: [1, "isOnboarded"], forDemo: [1, "forDemo"], maxAccessibleStepId: [1, "maxAccessibleStepId"], itemStatus: [1, "itemStatus"], isMarkingAsReviewed: [1, "isMarkingAsReviewed"] }, outputs: { stepClick: "stepClick", nextStepClick: "nextStepClick", markAsReviewedClick: "markAsReviewedClick" }, decls: 17, vars: 41, consts: [[3, "ngClass"], [3, "viewMode", "progress", "embedded"], [1, "animated-bubbles", 2, "position", "fixed", "top", "0", "left", "0", "right", "0", "bottom", "0", "width", "100vw", "height", "100vh", "z-index", "1", "pointer-events", "none"], [1, "relative", "z-[51]"], [3, "searchClick", "viewModeClick", "title", "subtitle", "viewMode", "viewModeLabel", "currentSection", "currentSubsection", "sectionFading", "subsectionFading", "showControls", "embedded", "scrollEvent"], [1, "relative"], [3, "sections", "viewMode", "embedded", "scrollElement"], [3, "viewMode", "embedded"], [3, "viewInContextRequested", "isLightMode"], [3, "searchChange", "resultSelected", "close", "isLightMode", "isOpen", "searchQuery", "results", "hasResults", "selectedIndex", "placeholder"], [3, "close", "modeSelected", "isOpen", "currentMode", "viewMode", "isLoading"], [3, "markAsReviewedClick", "viewMode", "reviewStatus", "selfContentStatus", "isMarkingAsReviewed", "isLoading"], [3, "viewMode", "currentStepId", "showNextStepAction", "forDemo", "maxAccessibleStepId"], [1, "max-w-7xl", "mx-auto", "px-4", "sm:px-6", "lg:px-8", "py-8"], ["size", "large", 3, "viewMode", "title", "subtitle"], [3, "stepClick", "nextStepClick", "viewMode", "currentStepId", "showNextStepAction", "forDemo", "maxAccessibleStepId"], [1, "mb-8"], [3, "viewMode", "businessName", "isOnboarded", "analysisDate"], [3, "viewMode", "itemStatus", "currentStatus", "confettiIntensity", "title", "subtitle"], [3, "viewMoreClick", "recommendations", "viewMode"], [3, "sections", "viewMode"], [3, "section", "viewMode", "forceExpanded"], [1, "max-w-7xl", "mx-auto", "px-4", "sm:px-6", "lg:px-8"], [3, "viewMode", "subsections"]], template: function SymphiqBusinessAnalysisDashboardComponent_Template(rf, ctx) { if (rf & 1) {
69009
69250
  i0.ɵɵelementStart(0, "div", 0);
69010
69251
  i0.ɵɵelement(1, "symphiq-scroll-progress-bar", 1)(2, "div", 2);
69011
69252
  i0.ɵɵelementStart(3, "div", 3)(4, "symphiq-dashboard-header", 4);
69012
69253
  i0.ɵɵlistener("searchClick", function SymphiqBusinessAnalysisDashboardComponent_Template_symphiq_dashboard_header_searchClick_4_listener() { return ctx.openSearch(); })("viewModeClick", function SymphiqBusinessAnalysisDashboardComponent_Template_symphiq_dashboard_header_viewModeClick_4_listener() { return ctx.openViewModeSwitcher(); });
69013
69254
  i0.ɵɵelementEnd();
69014
69255
  i0.ɵɵelementStart(5, "main", 5);
69015
- i0.ɵɵconditionalCreate(6, SymphiqBusinessAnalysisDashboardComponent_Conditional_6_Template, 5, 8)(7, SymphiqBusinessAnalysisDashboardComponent_Conditional_7_Template, 5, 11)(8, SymphiqBusinessAnalysisDashboardComponent_Conditional_8_Template, 2, 1);
69256
+ i0.ɵɵconditionalCreate(6, SymphiqBusinessAnalysisDashboardComponent_Conditional_6_Template, 3, 4)(7, SymphiqBusinessAnalysisDashboardComponent_Conditional_7_Template, 5, 11)(8, SymphiqBusinessAnalysisDashboardComponent_Conditional_8_Template, 2, 1);
69016
69257
  i0.ɵɵelementEnd();
69017
69258
  i0.ɵɵconditionalCreate(9, SymphiqBusinessAnalysisDashboardComponent_Conditional_9_Template, 1, 4, "symphiq-section-navigation", 6);
69018
69259
  i0.ɵɵconditionalCreate(10, SymphiqBusinessAnalysisDashboardComponent_Conditional_10_Template, 1, 4, "symphiq-floating-toc", 6);
@@ -69107,15 +69348,6 @@ class SymphiqBusinessAnalysisDashboardComponent {
69107
69348
  }
69108
69349
 
69109
69350
  <div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8 py-8">
69110
- <div class="mb-8">
69111
- <symphiq-welcome-banner
69112
- [viewMode]="viewMode()"
69113
- [businessName]="currentProfile()?.profileStructured?.businessName || 'your business'"
69114
- [isOnboarded]="isOnboarded()"
69115
- [analysisDate]="profile()?.selfContentCompletedDate"
69116
- />
69117
- </div>
69118
-
69119
69351
  <symphiq-loading-card
69120
69352
  [viewMode]="viewMode()"
69121
69353
  [title]="'Loading Business Analysis...'"
@@ -69285,7 +69517,7 @@ class SymphiqBusinessAnalysisDashboardComponent {
69285
69517
  type: HostListener,
69286
69518
  args: ['document:keydown', ['$event']]
69287
69519
  }] }); })();
69288
- (() => { (typeof ngDevMode === "undefined" || ngDevMode) && i0.ɵsetClassDebugInfo(SymphiqBusinessAnalysisDashboardComponent, { className: "SymphiqBusinessAnalysisDashboardComponent", filePath: "lib/components/business-analysis-dashboard/symphiq-business-analysis-dashboard.component.ts", lineNumber: 302 }); })();
69520
+ (() => { (typeof ngDevMode === "undefined" || ngDevMode) && i0.ɵsetClassDebugInfo(SymphiqBusinessAnalysisDashboardComponent, { className: "SymphiqBusinessAnalysisDashboardComponent", filePath: "lib/components/business-analysis-dashboard/symphiq-business-analysis-dashboard.component.ts", lineNumber: 293 }); })();
69289
69521
 
69290
69522
  class GradeBadgeComponent {
69291
69523
  constructor() {
@@ -92912,7 +93144,7 @@ const _forTrack0$8 = ($index, $item) => $item.index;
92912
93144
  const _forTrack1$1 = ($index, $item) => $item.id;
92913
93145
  function SymphiqProfileShopAnalysisDashboardComponent_Conditional_5_Template(rf, ctx) { if (rf & 1) {
92914
93146
  const _r1 = i0.ɵɵgetCurrentView();
92915
- i0.ɵɵelementStart(0, "symphiq-journey-progress-indicator", 27);
93147
+ i0.ɵɵelementStart(0, "symphiq-journey-progress-indicator", 29);
92916
93148
  i0.ɵɵlistener("nextStepClick", function SymphiqProfileShopAnalysisDashboardComponent_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 SymphiqProfileShopAnalysisDashboardComponent_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)); });
92917
93149
  i0.ɵɵelementEnd();
92918
93150
  } if (rf & 2) {
@@ -92920,7 +93152,7 @@ function SymphiqProfileShopAnalysisDashboardComponent_Conditional_5_Template(rf,
92920
93152
  i0.ɵɵproperty("viewMode", ctx_r1.viewMode())("currentStepId", ctx_r1.currentStepId())("showNextStepAction", ctx_r1.shouldShowContinueButton())("forDemo", ctx_r1.forDemo())("maxAccessibleStepId", ctx_r1.maxAccessibleStepId());
92921
93153
  } }
92922
93154
  function SymphiqProfileShopAnalysisDashboardComponent_Conditional_7_Conditional_1_Template(rf, ctx) { if (rf & 1) {
92923
- i0.ɵɵelement(0, "symphiq-shop-welcome-banner", 29);
93155
+ i0.ɵɵelement(0, "symphiq-shop-welcome-banner", 30);
92924
93156
  } if (rf & 2) {
92925
93157
  let tmp_3_0;
92926
93158
  let tmp_5_0;
@@ -92928,45 +93160,42 @@ function SymphiqProfileShopAnalysisDashboardComponent_Conditional_7_Conditional_
92928
93160
  i0.ɵɵproperty("viewMode", ctx_r1.viewMode())("businessName", ((tmp_3_0 = ctx_r1.profileAnalysis()) == null ? null : tmp_3_0.profileAnalysisStructured == null ? null : tmp_3_0.profileAnalysisStructured.businessName) || "your shop")("isOnboarded", ctx_r1.isOnboarded())("analysisDate", (tmp_5_0 = ctx_r1.profileAnalysis()) == null ? null : tmp_5_0.selfContentCompletedDate);
92929
93161
  } }
92930
93162
  function SymphiqProfileShopAnalysisDashboardComponent_Conditional_7_Conditional_2_Template(rf, ctx) { if (rf & 1) {
92931
- i0.ɵɵelement(0, "symphiq-metric-welcome-banner", 30);
93163
+ i0.ɵɵelement(0, "symphiq-metric-welcome-banner", 31);
92932
93164
  } if (rf & 2) {
92933
93165
  let tmp_3_0;
92934
93166
  let tmp_5_0;
92935
93167
  const ctx_r1 = i0.ɵɵnextContext(2);
92936
93168
  i0.ɵɵproperty("viewMode", ctx_r1.viewMode())("metricName", (tmp_3_0 = ctx_r1.profileAnalysis()) == null ? null : tmp_3_0.profileAnalysisStructured == null ? null : tmp_3_0.profileAnalysisStructured.metricExecutiveSummary == null ? null : tmp_3_0.profileAnalysisStructured.metricExecutiveSummary.metric)("isOnboarded", ctx_r1.isOnboarded())("analysisDate", (tmp_5_0 = ctx_r1.profileAnalysis()) == null ? null : tmp_5_0.selfContentCompletedDate);
92937
93169
  } }
92938
- function SymphiqProfileShopAnalysisDashboardComponent_Conditional_7_Conditional_3_Template(rf, ctx) { if (rf & 1) {
92939
- i0.ɵɵelement(0, "symphiq-loading-card", 31);
92940
- } if (rf & 2) {
92941
- const ctx_r1 = i0.ɵɵnextContext(2);
92942
- i0.ɵɵproperty("viewMode", ctx_r1.viewMode())("backdropBlur", true);
92943
- } }
92944
93170
  function SymphiqProfileShopAnalysisDashboardComponent_Conditional_7_Template(rf, ctx) { if (rf & 1) {
92945
- i0.ɵɵelementStart(0, "div", 28);
92946
- i0.ɵɵconditionalCreate(1, SymphiqProfileShopAnalysisDashboardComponent_Conditional_7_Conditional_1_Template, 1, 4, "symphiq-shop-welcome-banner", 29);
92947
- i0.ɵɵconditionalCreate(2, SymphiqProfileShopAnalysisDashboardComponent_Conditional_7_Conditional_2_Template, 1, 4, "symphiq-metric-welcome-banner", 30);
93171
+ i0.ɵɵelementStart(0, "div", 9);
93172
+ i0.ɵɵconditionalCreate(1, SymphiqProfileShopAnalysisDashboardComponent_Conditional_7_Conditional_1_Template, 1, 4, "symphiq-shop-welcome-banner", 30);
93173
+ i0.ɵɵconditionalCreate(2, SymphiqProfileShopAnalysisDashboardComponent_Conditional_7_Conditional_2_Template, 1, 4, "symphiq-metric-welcome-banner", 31);
92948
93174
  i0.ɵɵelementEnd();
92949
- i0.ɵɵconditionalCreate(3, SymphiqProfileShopAnalysisDashboardComponent_Conditional_7_Conditional_3_Template, 1, 2, "symphiq-loading-card", 31);
92950
93175
  } if (rf & 2) {
92951
93176
  const ctx_r1 = i0.ɵɵnextContext();
92952
93177
  i0.ɵɵadvance();
92953
93178
  i0.ɵɵconditional(!ctx_r1.isMetricAnalysis() ? 1 : -1);
92954
93179
  i0.ɵɵadvance();
92955
93180
  i0.ɵɵconditional(ctx_r1.isMetricAnalysis() ? 2 : -1);
92956
- i0.ɵɵadvance();
92957
- i0.ɵɵconditional(ctx_r1.isLoading() ? 3 : -1);
92958
93181
  } }
92959
- function SymphiqProfileShopAnalysisDashboardComponent_Conditional_8_Conditional_0_Template(rf, ctx) { if (rf & 1) {
93182
+ function SymphiqProfileShopAnalysisDashboardComponent_Conditional_8_Template(rf, ctx) { if (rf & 1) {
93183
+ i0.ɵɵelement(0, "symphiq-loading-card", 10);
93184
+ } if (rf & 2) {
93185
+ const ctx_r1 = i0.ɵɵnextContext();
93186
+ i0.ɵɵproperty("viewMode", ctx_r1.viewMode())("backdropBlur", true);
93187
+ } }
93188
+ function SymphiqProfileShopAnalysisDashboardComponent_Conditional_9_Conditional_0_Template(rf, ctx) { if (rf & 1) {
92960
93189
  const _r3 = i0.ɵɵgetCurrentView();
92961
93190
  i0.ɵɵelementStart(0, "div", 32)(1, "symphiq-profile-status-card", 34, 0);
92962
- i0.ɵɵlistener("startCategoryQuestions", function SymphiqProfileShopAnalysisDashboardComponent_Conditional_8_Conditional_0_Template_symphiq_profile_status_card_startCategoryQuestions_1_listener($event) { i0.ɵɵrestoreView(_r3); const ctx_r1 = i0.ɵɵnextContext(2); return i0.ɵɵresetView(ctx_r1.handleStartCategoryQuestions($event)); })("answerSave", function SymphiqProfileShopAnalysisDashboardComponent_Conditional_8_Conditional_0_Template_symphiq_profile_status_card_answerSave_1_listener($event) { i0.ɵɵrestoreView(_r3); const ctx_r1 = i0.ɵɵnextContext(2); return i0.ɵɵresetView(ctx_r1.handleProfileQuestionAnswerSave($event)); })("adminAnswerAction", function SymphiqProfileShopAnalysisDashboardComponent_Conditional_8_Conditional_0_Template_symphiq_profile_status_card_adminAnswerAction_1_listener($event) { i0.ɵɵrestoreView(_r3); const ctx_r1 = i0.ɵɵnextContext(2); return i0.ɵɵresetView(ctx_r1.shopProfileAdminAnswerAction.emit($event)); });
93191
+ i0.ɵɵlistener("startCategoryQuestions", function SymphiqProfileShopAnalysisDashboardComponent_Conditional_9_Conditional_0_Template_symphiq_profile_status_card_startCategoryQuestions_1_listener($event) { i0.ɵɵrestoreView(_r3); const ctx_r1 = i0.ɵɵnextContext(2); return i0.ɵɵresetView(ctx_r1.handleStartCategoryQuestions($event)); })("answerSave", function SymphiqProfileShopAnalysisDashboardComponent_Conditional_9_Conditional_0_Template_symphiq_profile_status_card_answerSave_1_listener($event) { i0.ɵɵrestoreView(_r3); const ctx_r1 = i0.ɵɵnextContext(2); return i0.ɵɵresetView(ctx_r1.handleProfileQuestionAnswerSave($event)); })("adminAnswerAction", function SymphiqProfileShopAnalysisDashboardComponent_Conditional_9_Conditional_0_Template_symphiq_profile_status_card_adminAnswerAction_1_listener($event) { i0.ɵɵrestoreView(_r3); const ctx_r1 = i0.ɵɵnextContext(2); return i0.ɵɵresetView(ctx_r1.shopProfileAdminAnswerAction.emit($event)); });
92963
93192
  i0.ɵɵelementEnd()();
92964
93193
  } if (rf & 2) {
92965
93194
  const ctx_r1 = i0.ɵɵnextContext(2);
92966
93195
  i0.ɵɵadvance();
92967
93196
  i0.ɵɵproperty("viewMode", ctx_r1.viewMode())("totalQuestions", ctx_r1.totalShopQuestions())("answeredQuestions", ctx_r1.answeredShopQuestions())("questions", ctx_r1.profileShopQuestions() || i0.ɵɵpureFunction0(10, _c2$2))("profileAnswers", ctx_r1.profileAnswers() || i0.ɵɵpureFunction0(11, _c2$2))("profileAnswerHistories", ctx_r1.profileAnswerHistories() || i0.ɵɵpureFunction0(12, _c2$2))("users", ctx_r1.users() || i0.ɵɵpureFunction0(13, _c2$2))("config", ctx_r1.shopProfileStatusCardConfig)("groupConfig", ctx_r1.shopProfileStatusCardGroupConfig)("currentUser", ctx_r1.currentUser());
92968
93197
  } }
92969
- function SymphiqProfileShopAnalysisDashboardComponent_Conditional_8_Conditional_1_Template(rf, ctx) { if (rf & 1) {
93198
+ function SymphiqProfileShopAnalysisDashboardComponent_Conditional_9_Conditional_1_Template(rf, ctx) { if (rf & 1) {
92970
93199
  i0.ɵɵelementStart(0, "div", 32)(1, "div", 33);
92971
93200
  i0.ɵɵelement(2, "symphiq-content-generation-progress", 35);
92972
93201
  i0.ɵɵelementEnd()();
@@ -92977,7 +93206,7 @@ function SymphiqProfileShopAnalysisDashboardComponent_Conditional_8_Conditional_
92977
93206
  i0.ɵɵadvance();
92978
93207
  i0.ɵɵproperty("itemStatus", ctx_r1.itemStatusProfileShop())("viewMode", ctx_r1.viewMode());
92979
93208
  } }
92980
- function SymphiqProfileShopAnalysisDashboardComponent_Conditional_8_Conditional_2_Conditional_1_Template(rf, ctx) { if (rf & 1) {
93209
+ function SymphiqProfileShopAnalysisDashboardComponent_Conditional_9_Conditional_2_Conditional_1_Template(rf, ctx) { if (rf & 1) {
92981
93210
  i0.ɵɵelementStart(0, "div", 33);
92982
93211
  i0.ɵɵelement(1, "symphiq-content-generation-progress", 35);
92983
93212
  i0.ɵɵelementEnd();
@@ -92987,7 +93216,7 @@ function SymphiqProfileShopAnalysisDashboardComponent_Conditional_8_Conditional_
92987
93216
  i0.ɵɵadvance();
92988
93217
  i0.ɵɵproperty("itemStatus", ctx_r1.itemStatusProfileShop())("viewMode", ctx_r1.viewMode());
92989
93218
  } }
92990
- function SymphiqProfileShopAnalysisDashboardComponent_Conditional_8_Conditional_2_Conditional_2_Template(rf, ctx) { if (rf & 1) {
93219
+ function SymphiqProfileShopAnalysisDashboardComponent_Conditional_9_Conditional_2_Conditional_2_Template(rf, ctx) { if (rf & 1) {
92991
93220
  i0.ɵɵelementStart(0, "div", 33);
92992
93221
  i0.ɵɵelement(1, "symphiq-content-generation-progress", 37);
92993
93222
  i0.ɵɵelementEnd();
@@ -92997,25 +93226,25 @@ function SymphiqProfileShopAnalysisDashboardComponent_Conditional_8_Conditional_
92997
93226
  i0.ɵɵadvance();
92998
93227
  i0.ɵɵproperty("itemStatus", ctx_r1.itemStatusProfileAnalysis())("viewMode", ctx_r1.viewMode())("title", ctx_r1.profileAnalysisGeneratingTitle());
92999
93228
  } }
93000
- function SymphiqProfileShopAnalysisDashboardComponent_Conditional_8_Conditional_2_Conditional_3_Template(rf, ctx) { if (rf & 1) {
93229
+ function SymphiqProfileShopAnalysisDashboardComponent_Conditional_9_Conditional_2_Conditional_3_Template(rf, ctx) { if (rf & 1) {
93001
93230
  const _r4 = i0.ɵɵgetCurrentView();
93002
93231
  i0.ɵɵelementStart(0, "symphiq-strategic-goals-tiled-grid", 38);
93003
- i0.ɵɵlistener("viewMoreClick", function SymphiqProfileShopAnalysisDashboardComponent_Conditional_8_Conditional_2_Conditional_3_Template_symphiq_strategic_goals_tiled_grid_viewMoreClick_0_listener($event) { i0.ɵɵrestoreView(_r4); const ctx_r1 = i0.ɵɵnextContext(3); return i0.ɵɵresetView(ctx_r1.openGoalModal($event)); });
93232
+ i0.ɵɵlistener("viewMoreClick", function SymphiqProfileShopAnalysisDashboardComponent_Conditional_9_Conditional_2_Conditional_3_Template_symphiq_strategic_goals_tiled_grid_viewMoreClick_0_listener($event) { i0.ɵɵrestoreView(_r4); const ctx_r1 = i0.ɵɵnextContext(3); return i0.ɵɵresetView(ctx_r1.openGoalModal($event)); });
93004
93233
  i0.ɵɵelementEnd();
93005
93234
  } if (rf & 2) {
93006
93235
  const ctx_r1 = i0.ɵɵnextContext(3);
93007
93236
  i0.ɵɵproperty("goals", ctx_r1.strategicRoadmapGoals())("viewMode", ctx_r1.viewMode());
93008
93237
  } }
93009
- function SymphiqProfileShopAnalysisDashboardComponent_Conditional_8_Conditional_2_Template(rf, ctx) { if (rf & 1) {
93238
+ function SymphiqProfileShopAnalysisDashboardComponent_Conditional_9_Conditional_2_Template(rf, ctx) { if (rf & 1) {
93010
93239
  i0.ɵɵelementStart(0, "div", 32);
93011
- i0.ɵɵconditionalCreate(1, SymphiqProfileShopAnalysisDashboardComponent_Conditional_8_Conditional_2_Conditional_1_Template, 2, 3, "div", 33)(2, SymphiqProfileShopAnalysisDashboardComponent_Conditional_8_Conditional_2_Conditional_2_Template, 2, 4, "div", 33)(3, SymphiqProfileShopAnalysisDashboardComponent_Conditional_8_Conditional_2_Conditional_3_Template, 1, 2, "symphiq-strategic-goals-tiled-grid", 36);
93240
+ i0.ɵɵconditionalCreate(1, SymphiqProfileShopAnalysisDashboardComponent_Conditional_9_Conditional_2_Conditional_1_Template, 2, 3, "div", 33)(2, SymphiqProfileShopAnalysisDashboardComponent_Conditional_9_Conditional_2_Conditional_2_Template, 2, 4, "div", 33)(3, SymphiqProfileShopAnalysisDashboardComponent_Conditional_9_Conditional_2_Conditional_3_Template, 1, 2, "symphiq-strategic-goals-tiled-grid", 36);
93012
93241
  i0.ɵɵelementEnd();
93013
93242
  } if (rf & 2) {
93014
93243
  const ctx_r1 = i0.ɵɵnextContext(2);
93015
93244
  i0.ɵɵadvance();
93016
93245
  i0.ɵɵconditional(ctx_r1.isProfileShopGenerating() && !ctx_r1.isMetricAnalysis() ? 1 : ctx_r1.isProfileAnalysisGenerating() ? 2 : 3);
93017
93246
  } }
93018
- function SymphiqProfileShopAnalysisDashboardComponent_Conditional_8_Conditional_3_Conditional_1_Conditional_0_Template(rf, ctx) { if (rf & 1) {
93247
+ function SymphiqProfileShopAnalysisDashboardComponent_Conditional_9_Conditional_3_Conditional_1_Conditional_0_Template(rf, ctx) { if (rf & 1) {
93019
93248
  i0.ɵɵelementStart(0, "div", 32);
93020
93249
  i0.ɵɵelement(1, "symphiq-subscription-value-proposition-card", 41);
93021
93250
  i0.ɵɵelementEnd();
@@ -93024,11 +93253,11 @@ function SymphiqProfileShopAnalysisDashboardComponent_Conditional_8_Conditional_
93024
93253
  i0.ɵɵadvance();
93025
93254
  i0.ɵɵproperty("viewMode", ctx_r1.viewMode());
93026
93255
  } }
93027
- function SymphiqProfileShopAnalysisDashboardComponent_Conditional_8_Conditional_3_Conditional_1_Template(rf, ctx) { if (rf & 1) {
93256
+ function SymphiqProfileShopAnalysisDashboardComponent_Conditional_9_Conditional_3_Conditional_1_Template(rf, ctx) { if (rf & 1) {
93028
93257
  const _r5 = i0.ɵɵgetCurrentView();
93029
- i0.ɵɵconditionalCreate(0, SymphiqProfileShopAnalysisDashboardComponent_Conditional_8_Conditional_3_Conditional_1_Conditional_0_Template, 2, 1, "div", 32);
93258
+ i0.ɵɵconditionalCreate(0, SymphiqProfileShopAnalysisDashboardComponent_Conditional_9_Conditional_3_Conditional_1_Conditional_0_Template, 2, 1, "div", 32);
93030
93259
  i0.ɵɵelementStart(1, "symphiq-billing-currency-selector-card", 40);
93031
- i0.ɵɵlistener("currencySelected", function SymphiqProfileShopAnalysisDashboardComponent_Conditional_8_Conditional_3_Conditional_1_Template_symphiq_billing_currency_selector_card_currencySelected_1_listener($event) { i0.ɵɵrestoreView(_r5); const ctx_r1 = i0.ɵɵnextContext(3); return i0.ɵɵresetView(ctx_r1.handleCurrencyChange($event)); })("selectionChanged", function SymphiqProfileShopAnalysisDashboardComponent_Conditional_8_Conditional_3_Conditional_1_Template_symphiq_billing_currency_selector_card_selectionChanged_1_listener($event) { i0.ɵɵrestoreView(_r5); const ctx_r1 = i0.ɵɵnextContext(3); return i0.ɵɵresetView(ctx_r1.handleCurrencySelectionChange($event)); });
93260
+ i0.ɵɵlistener("currencySelected", function SymphiqProfileShopAnalysisDashboardComponent_Conditional_9_Conditional_3_Conditional_1_Template_symphiq_billing_currency_selector_card_currencySelected_1_listener($event) { i0.ɵɵrestoreView(_r5); const ctx_r1 = i0.ɵɵnextContext(3); return i0.ɵɵresetView(ctx_r1.handleCurrencyChange($event)); })("selectionChanged", function SymphiqProfileShopAnalysisDashboardComponent_Conditional_9_Conditional_3_Conditional_1_Template_symphiq_billing_currency_selector_card_selectionChanged_1_listener($event) { i0.ɵɵrestoreView(_r5); const ctx_r1 = i0.ɵɵnextContext(3); return i0.ɵɵresetView(ctx_r1.handleCurrencySelectionChange($event)); });
93032
93261
  i0.ɵɵelementEnd();
93033
93262
  } if (rf & 2) {
93034
93263
  let tmp_6_0;
@@ -93037,13 +93266,13 @@ function SymphiqProfileShopAnalysisDashboardComponent_Conditional_8_Conditional_
93037
93266
  i0.ɵɵadvance();
93038
93267
  i0.ɵɵproperty("viewMode", ctx_r1.viewMode())("isLoading", ctx_r1.isCurrencySelectionLoading())("initialCurrency", ctx_r1.isEditingCurrency() ? ((tmp_6_0 = ctx_r1.account()) == null ? null : tmp_6_0.billingCurrencyCode) || null : null);
93039
93268
  } }
93040
- function SymphiqProfileShopAnalysisDashboardComponent_Conditional_8_Conditional_3_Conditional_2_Template(rf, ctx) { if (rf & 1) {
93269
+ function SymphiqProfileShopAnalysisDashboardComponent_Conditional_9_Conditional_3_Conditional_2_Template(rf, ctx) { if (rf & 1) {
93041
93270
  const _r6 = i0.ɵɵgetCurrentView();
93042
93271
  i0.ɵɵelementStart(0, "div", 32);
93043
93272
  i0.ɵɵelement(1, "symphiq-subscription-value-proposition-card", 41);
93044
93273
  i0.ɵɵelementEnd();
93045
93274
  i0.ɵɵelementStart(2, "div", 42, 1)(4, "symphiq-plan-selection-container", 43);
93046
- i0.ɵɵlistener("periodUnitChanged", function SymphiqProfileShopAnalysisDashboardComponent_Conditional_8_Conditional_3_Conditional_2_Template_symphiq_plan_selection_container_periodUnitChanged_4_listener($event) { i0.ɵɵrestoreView(_r6); const ctx_r1 = i0.ɵɵnextContext(3); return i0.ɵɵresetView(ctx_r1.handlePeriodUnitChange($event)); })("planSelected", function SymphiqProfileShopAnalysisDashboardComponent_Conditional_8_Conditional_3_Conditional_2_Template_symphiq_plan_selection_container_planSelected_4_listener($event) { i0.ɵɵrestoreView(_r6); const ctx_r1 = i0.ɵɵnextContext(3); return i0.ɵɵresetView(ctx_r1.handlePlanSelection($event)); })("editCurrency", function SymphiqProfileShopAnalysisDashboardComponent_Conditional_8_Conditional_3_Conditional_2_Template_symphiq_plan_selection_container_editCurrency_4_listener() { i0.ɵɵrestoreView(_r6); const ctx_r1 = i0.ɵɵnextContext(3); return i0.ɵɵresetView(ctx_r1.handleEditCurrencyClick()); })("checkout", function SymphiqProfileShopAnalysisDashboardComponent_Conditional_8_Conditional_3_Conditional_2_Template_symphiq_plan_selection_container_checkout_4_listener($event) { i0.ɵɵrestoreView(_r6); const ctx_r1 = i0.ɵɵnextContext(3); return i0.ɵɵresetView(ctx_r1.checkoutPlanClick.emit($event)); });
93275
+ i0.ɵɵlistener("periodUnitChanged", function SymphiqProfileShopAnalysisDashboardComponent_Conditional_9_Conditional_3_Conditional_2_Template_symphiq_plan_selection_container_periodUnitChanged_4_listener($event) { i0.ɵɵrestoreView(_r6); const ctx_r1 = i0.ɵɵnextContext(3); return i0.ɵɵresetView(ctx_r1.handlePeriodUnitChange($event)); })("planSelected", function SymphiqProfileShopAnalysisDashboardComponent_Conditional_9_Conditional_3_Conditional_2_Template_symphiq_plan_selection_container_planSelected_4_listener($event) { i0.ɵɵrestoreView(_r6); const ctx_r1 = i0.ɵɵnextContext(3); return i0.ɵɵresetView(ctx_r1.handlePlanSelection($event)); })("editCurrency", function SymphiqProfileShopAnalysisDashboardComponent_Conditional_9_Conditional_3_Conditional_2_Template_symphiq_plan_selection_container_editCurrency_4_listener() { i0.ɵɵrestoreView(_r6); const ctx_r1 = i0.ɵɵnextContext(3); return i0.ɵɵresetView(ctx_r1.handleEditCurrencyClick()); })("checkout", function SymphiqProfileShopAnalysisDashboardComponent_Conditional_9_Conditional_3_Conditional_2_Template_symphiq_plan_selection_container_checkout_4_listener($event) { i0.ɵɵrestoreView(_r6); const ctx_r1 = i0.ɵɵnextContext(3); return i0.ɵɵresetView(ctx_r1.checkoutPlanClick.emit($event)); });
93047
93276
  i0.ɵɵelementEnd()();
93048
93277
  } if (rf & 2) {
93049
93278
  let tmp_6_0;
@@ -93053,26 +93282,26 @@ function SymphiqProfileShopAnalysisDashboardComponent_Conditional_8_Conditional_
93053
93282
  i0.ɵɵadvance(3);
93054
93283
  i0.ɵɵproperty("viewMode", ctx_r1.viewMode())("selectedCurrency", ((tmp_6_0 = ctx_r1.account()) == null ? null : tmp_6_0.billingCurrencyCode) || ctx_r1.CurrencyCodeEnum.USD)("planCardInfos", ctx_r1.planCardInfos())("isLoading", ctx_r1.isPlanLoading())("selectedPeriodUnit", ctx_r1.selectedPeriodUnit());
93055
93284
  } }
93056
- function SymphiqProfileShopAnalysisDashboardComponent_Conditional_8_Conditional_3_Conditional_3_Template(rf, ctx) { if (rf & 1) {
93285
+ function SymphiqProfileShopAnalysisDashboardComponent_Conditional_9_Conditional_3_Conditional_3_Template(rf, ctx) { if (rf & 1) {
93057
93286
  const _r7 = i0.ɵɵgetCurrentView();
93058
93287
  i0.ɵɵelementStart(0, "symphiq-plan-selection-placeholder-card", 44);
93059
- i0.ɵɵlistener("editCurrency", function SymphiqProfileShopAnalysisDashboardComponent_Conditional_8_Conditional_3_Conditional_3_Template_symphiq_plan_selection_placeholder_card_editCurrency_0_listener() { i0.ɵɵrestoreView(_r7); const ctx_r1 = i0.ɵɵnextContext(3); return i0.ɵɵresetView(ctx_r1.handleEditCurrencyClick()); });
93288
+ i0.ɵɵlistener("editCurrency", function SymphiqProfileShopAnalysisDashboardComponent_Conditional_9_Conditional_3_Conditional_3_Template_symphiq_plan_selection_placeholder_card_editCurrency_0_listener() { i0.ɵɵrestoreView(_r7); const ctx_r1 = i0.ɵɵnextContext(3); return i0.ɵɵresetView(ctx_r1.handleEditCurrencyClick()); });
93060
93289
  i0.ɵɵelementEnd();
93061
93290
  } if (rf & 2) {
93062
93291
  let tmp_4_0;
93063
93292
  const ctx_r1 = i0.ɵɵnextContext(3);
93064
93293
  i0.ɵɵproperty("viewMode", ctx_r1.viewMode())("selectedCurrency", ((tmp_4_0 = ctx_r1.account()) == null ? null : tmp_4_0.billingCurrencyCode) || ctx_r1.CurrencyCodeEnum.USD);
93065
93294
  } }
93066
- function SymphiqProfileShopAnalysisDashboardComponent_Conditional_8_Conditional_3_Template(rf, ctx) { if (rf & 1) {
93295
+ function SymphiqProfileShopAnalysisDashboardComponent_Conditional_9_Conditional_3_Template(rf, ctx) { if (rf & 1) {
93067
93296
  i0.ɵɵelementStart(0, "div", 32);
93068
- i0.ɵɵconditionalCreate(1, SymphiqProfileShopAnalysisDashboardComponent_Conditional_8_Conditional_3_Conditional_1_Template, 2, 4)(2, SymphiqProfileShopAnalysisDashboardComponent_Conditional_8_Conditional_3_Conditional_2_Template, 5, 6)(3, SymphiqProfileShopAnalysisDashboardComponent_Conditional_8_Conditional_3_Conditional_3_Template, 1, 2, "symphiq-plan-selection-placeholder-card", 39);
93297
+ i0.ɵɵconditionalCreate(1, SymphiqProfileShopAnalysisDashboardComponent_Conditional_9_Conditional_3_Conditional_1_Template, 2, 4)(2, SymphiqProfileShopAnalysisDashboardComponent_Conditional_9_Conditional_3_Conditional_2_Template, 5, 6)(3, SymphiqProfileShopAnalysisDashboardComponent_Conditional_9_Conditional_3_Conditional_3_Template, 1, 2, "symphiq-plan-selection-placeholder-card", 39);
93069
93298
  i0.ɵɵelementEnd();
93070
93299
  } if (rf & 2) {
93071
93300
  const ctx_r1 = i0.ɵɵnextContext(2);
93072
93301
  i0.ɵɵadvance();
93073
93302
  i0.ɵɵconditional(!ctx_r1.hasBillingCurrency() || ctx_r1.isEditingCurrency() ? 1 : ctx_r1.showPlanSelection() ? 2 : 3);
93074
93303
  } }
93075
- function SymphiqProfileShopAnalysisDashboardComponent_Conditional_8_Conditional_4_Template(rf, ctx) { if (rf & 1) {
93304
+ function SymphiqProfileShopAnalysisDashboardComponent_Conditional_9_Conditional_4_Template(rf, ctx) { if (rf & 1) {
93076
93305
  i0.ɵɵelementStart(0, "div");
93077
93306
  i0.ɵɵelement(1, "symphiq-collapsible-analysis-section-group", 45);
93078
93307
  i0.ɵɵelementEnd();
@@ -93081,10 +93310,10 @@ function SymphiqProfileShopAnalysisDashboardComponent_Conditional_8_Conditional_
93081
93310
  i0.ɵɵadvance();
93082
93311
  i0.ɵɵproperty("sections", ctx_r1.nonStrategicSections())("viewMode", ctx_r1.viewMode())("executiveSummary", ctx_r1.executiveSummary())("metricExecutiveSummary", ctx_r1.metricExecutiveSummary())("metricName", ctx_r1.metricName())("allGoals", ctx_r1.allGoals())("allMetrics", ctx_r1.allMetrics())("allCharts", ctx_r1.allCharts())("allInsights", ctx_r1.allInsights())("businessProfile", ctx_r1.profile());
93083
93312
  } }
93084
- function SymphiqProfileShopAnalysisDashboardComponent_Conditional_8_Conditional_5_Template(rf, ctx) { if (rf & 1) {
93313
+ function SymphiqProfileShopAnalysisDashboardComponent_Conditional_9_Conditional_5_Template(rf, ctx) { if (rf & 1) {
93085
93314
  const _r8 = i0.ɵɵgetCurrentView();
93086
93315
  i0.ɵɵelementStart(0, "div", 33)(1, "button", 46);
93087
- i0.ɵɵlistener("click", function SymphiqProfileShopAnalysisDashboardComponent_Conditional_8_Conditional_5_Template_button_click_1_listener() { i0.ɵɵrestoreView(_r8); const ctx_r1 = i0.ɵɵnextContext(2); return i0.ɵɵresetView(ctx_r1.toggleShopProfileCard()); });
93316
+ i0.ɵɵlistener("click", function SymphiqProfileShopAnalysisDashboardComponent_Conditional_9_Conditional_5_Template_button_click_1_listener() { i0.ɵɵrestoreView(_r8); const ctx_r1 = i0.ɵɵnextContext(2); return i0.ɵɵresetView(ctx_r1.toggleShopProfileCard()); });
93088
93317
  i0.ɵɵelementStart(2, "div", 47)(3, "div", 48);
93089
93318
  i0.ɵɵnamespaceSVG();
93090
93319
  i0.ɵɵelementStart(4, "svg", 49);
@@ -93103,7 +93332,7 @@ function SymphiqProfileShopAnalysisDashboardComponent_Conditional_8_Conditional_
93103
93332
  i0.ɵɵelementEnd()();
93104
93333
  i0.ɵɵnamespaceHTML();
93105
93334
  i0.ɵɵelementStart(13, "div", 55)(14, "div", 56)(15, "div", 57)(16, "symphiq-profile-status-card", 58);
93106
- i0.ɵɵlistener("startCategoryQuestions", function SymphiqProfileShopAnalysisDashboardComponent_Conditional_8_Conditional_5_Template_symphiq_profile_status_card_startCategoryQuestions_16_listener($event) { i0.ɵɵrestoreView(_r8); const ctx_r1 = i0.ɵɵnextContext(2); return i0.ɵɵresetView(ctx_r1.handleStartCategoryQuestions($event)); })("answerSave", function SymphiqProfileShopAnalysisDashboardComponent_Conditional_8_Conditional_5_Template_symphiq_profile_status_card_answerSave_16_listener($event) { i0.ɵɵrestoreView(_r8); const ctx_r1 = i0.ɵɵnextContext(2); return i0.ɵɵresetView(ctx_r1.handleProfileQuestionAnswerSave($event)); })("adminAnswerAction", function SymphiqProfileShopAnalysisDashboardComponent_Conditional_8_Conditional_5_Template_symphiq_profile_status_card_adminAnswerAction_16_listener($event) { i0.ɵɵrestoreView(_r8); const ctx_r1 = i0.ɵɵnextContext(2); return i0.ɵɵresetView(ctx_r1.shopProfileAdminAnswerAction.emit($event)); });
93335
+ i0.ɵɵlistener("startCategoryQuestions", function SymphiqProfileShopAnalysisDashboardComponent_Conditional_9_Conditional_5_Template_symphiq_profile_status_card_startCategoryQuestions_16_listener($event) { i0.ɵɵrestoreView(_r8); const ctx_r1 = i0.ɵɵnextContext(2); return i0.ɵɵresetView(ctx_r1.handleStartCategoryQuestions($event)); })("answerSave", function SymphiqProfileShopAnalysisDashboardComponent_Conditional_9_Conditional_5_Template_symphiq_profile_status_card_answerSave_16_listener($event) { i0.ɵɵrestoreView(_r8); const ctx_r1 = i0.ɵɵnextContext(2); return i0.ɵɵresetView(ctx_r1.handleProfileQuestionAnswerSave($event)); })("adminAnswerAction", function SymphiqProfileShopAnalysisDashboardComponent_Conditional_9_Conditional_5_Template_symphiq_profile_status_card_adminAnswerAction_16_listener($event) { i0.ɵɵrestoreView(_r8); const ctx_r1 = i0.ɵɵnextContext(2); return i0.ɵɵresetView(ctx_r1.shopProfileAdminAnswerAction.emit($event)); });
93107
93336
  i0.ɵɵelementEnd()()()()();
93108
93337
  } if (rf & 2) {
93109
93338
  const ctx_r1 = i0.ɵɵnextContext(2);
@@ -93128,13 +93357,13 @@ function SymphiqProfileShopAnalysisDashboardComponent_Conditional_8_Conditional_
93128
93357
  i0.ɵɵadvance();
93129
93358
  i0.ɵɵproperty("viewMode", ctx_r1.viewMode())("totalQuestions", ctx_r1.totalShopQuestions())("answeredQuestions", ctx_r1.answeredShopQuestions())("questions", ctx_r1.profileShopQuestions() || i0.ɵɵpureFunction0(24, _c2$2))("profileAnswers", ctx_r1.profileAnswers() || i0.ɵɵpureFunction0(25, _c2$2))("profileAnswerHistories", ctx_r1.profileAnswerHistories() || i0.ɵɵpureFunction0(26, _c2$2))("users", ctx_r1.users() || i0.ɵɵpureFunction0(27, _c2$2))("config", ctx_r1.shopProfilePostAnalysisCardConfig)("groupConfig", ctx_r1.shopProfileStatusCardGroupConfig)("currentUser", ctx_r1.currentUser())("hideHeader", true);
93130
93359
  } }
93131
- function SymphiqProfileShopAnalysisDashboardComponent_Conditional_8_Template(rf, ctx) { if (rf & 1) {
93132
- i0.ɵɵconditionalCreate(0, SymphiqProfileShopAnalysisDashboardComponent_Conditional_8_Conditional_0_Template, 3, 14, "div", 32);
93133
- i0.ɵɵconditionalCreate(1, SymphiqProfileShopAnalysisDashboardComponent_Conditional_8_Conditional_1_Template, 3, 3, "div", 32);
93134
- i0.ɵɵconditionalCreate(2, SymphiqProfileShopAnalysisDashboardComponent_Conditional_8_Conditional_2_Template, 4, 1, "div", 32);
93135
- i0.ɵɵconditionalCreate(3, SymphiqProfileShopAnalysisDashboardComponent_Conditional_8_Conditional_3_Template, 4, 1, "div", 32);
93136
- i0.ɵɵconditionalCreate(4, SymphiqProfileShopAnalysisDashboardComponent_Conditional_8_Conditional_4_Template, 2, 10, "div");
93137
- i0.ɵɵconditionalCreate(5, SymphiqProfileShopAnalysisDashboardComponent_Conditional_8_Conditional_5_Template, 17, 28, "div", 33);
93360
+ function SymphiqProfileShopAnalysisDashboardComponent_Conditional_9_Template(rf, ctx) { if (rf & 1) {
93361
+ i0.ɵɵconditionalCreate(0, SymphiqProfileShopAnalysisDashboardComponent_Conditional_9_Conditional_0_Template, 3, 14, "div", 32);
93362
+ i0.ɵɵconditionalCreate(1, SymphiqProfileShopAnalysisDashboardComponent_Conditional_9_Conditional_1_Template, 3, 3, "div", 32);
93363
+ i0.ɵɵconditionalCreate(2, SymphiqProfileShopAnalysisDashboardComponent_Conditional_9_Conditional_2_Template, 4, 1, "div", 32);
93364
+ i0.ɵɵconditionalCreate(3, SymphiqProfileShopAnalysisDashboardComponent_Conditional_9_Conditional_3_Template, 4, 1, "div", 32);
93365
+ i0.ɵɵconditionalCreate(4, SymphiqProfileShopAnalysisDashboardComponent_Conditional_9_Conditional_4_Template, 2, 10, "div");
93366
+ i0.ɵɵconditionalCreate(5, SymphiqProfileShopAnalysisDashboardComponent_Conditional_9_Conditional_5_Template, 17, 28, "div", 33);
93138
93367
  } if (rf & 2) {
93139
93368
  const ctx_r1 = i0.ɵɵnextContext();
93140
93369
  i0.ɵɵconditional(ctx_r1.shouldShowShopProfileStatus() && !ctx_r1.isMetricAnalysis() && !ctx_r1.profileAnalysis() ? 0 : -1);
@@ -93149,14 +93378,14 @@ function SymphiqProfileShopAnalysisDashboardComponent_Conditional_8_Template(rf,
93149
93378
  i0.ɵɵadvance();
93150
93379
  i0.ɵɵconditional(ctx_r1.shouldShowPostAnalysisShopProfile() ? 5 : -1);
93151
93380
  } }
93152
- function SymphiqProfileShopAnalysisDashboardComponent_Conditional_9_Conditional_0_Conditional_9_Template(rf, ctx) { if (rf & 1) {
93381
+ function SymphiqProfileShopAnalysisDashboardComponent_Conditional_10_Conditional_0_Conditional_9_Template(rf, ctx) { if (rf & 1) {
93153
93382
  i0.ɵɵelement(0, "symphiq-grade-badge", 68);
93154
93383
  } if (rf & 2) {
93155
93384
  const summary_r10 = i0.ɵɵnextContext();
93156
93385
  const ctx_r1 = i0.ɵɵnextContext(2);
93157
93386
  i0.ɵɵproperty("grade", summary_r10.overallGrade)("gradeRationale", summary_r10.gradeRationale || "")("viewMode", ctx_r1.viewMode());
93158
93387
  } }
93159
- function SymphiqProfileShopAnalysisDashboardComponent_Conditional_9_Conditional_0_Conditional_10_Conditional_4_Template(rf, ctx) { if (rf & 1) {
93388
+ function SymphiqProfileShopAnalysisDashboardComponent_Conditional_10_Conditional_0_Conditional_10_Conditional_4_Template(rf, ctx) { if (rf & 1) {
93160
93389
  i0.ɵɵelementStart(0, "div", 81);
93161
93390
  i0.ɵɵelement(1, "symphiq-napkin-visual-placeholder", 84);
93162
93391
  i0.ɵɵelementEnd();
@@ -93166,12 +93395,12 @@ function SymphiqProfileShopAnalysisDashboardComponent_Conditional_9_Conditional_
93166
93395
  i0.ɵɵadvance();
93167
93396
  i0.ɵɵproperty("visual", summary_r10.napkinVisual)("viewMode", ctx_r1.viewMode());
93168
93397
  } }
93169
- function SymphiqProfileShopAnalysisDashboardComponent_Conditional_9_Conditional_0_Conditional_10_Template(rf, ctx) { if (rf & 1) {
93398
+ function SymphiqProfileShopAnalysisDashboardComponent_Conditional_10_Conditional_0_Conditional_10_Template(rf, ctx) { if (rf & 1) {
93170
93399
  i0.ɵɵelementStart(0, "div", 69)(1, "h3", 79);
93171
93400
  i0.ɵɵtext(2, " Analysis Narrative ");
93172
93401
  i0.ɵɵelementEnd();
93173
93402
  i0.ɵɵelementStart(3, "div", 80);
93174
- i0.ɵɵconditionalCreate(4, SymphiqProfileShopAnalysisDashboardComponent_Conditional_9_Conditional_0_Conditional_10_Conditional_4_Template, 2, 2, "div", 81);
93403
+ i0.ɵɵconditionalCreate(4, SymphiqProfileShopAnalysisDashboardComponent_Conditional_10_Conditional_0_Conditional_10_Conditional_4_Template, 2, 2, "div", 81);
93175
93404
  i0.ɵɵelementStart(5, "p", 82);
93176
93405
  i0.ɵɵtext(6);
93177
93406
  i0.ɵɵelementEnd();
@@ -93190,7 +93419,7 @@ function SymphiqProfileShopAnalysisDashboardComponent_Conditional_9_Conditional_
93190
93419
  i0.ɵɵadvance();
93191
93420
  i0.ɵɵtextInterpolate1(" ", summary_r10.narrative, " ");
93192
93421
  } }
93193
- function SymphiqProfileShopAnalysisDashboardComponent_Conditional_9_Conditional_0_Conditional_39_For_5_Conditional_12_Template(rf, ctx) { if (rf & 1) {
93422
+ function SymphiqProfileShopAnalysisDashboardComponent_Conditional_10_Conditional_0_Conditional_39_For_5_Conditional_12_Template(rf, ctx) { if (rf & 1) {
93194
93423
  i0.ɵɵelementStart(0, "div", 93);
93195
93424
  i0.ɵɵnamespaceSVG();
93196
93425
  i0.ɵɵelementStart(1, "svg", 95);
@@ -93207,7 +93436,7 @@ function SymphiqProfileShopAnalysisDashboardComponent_Conditional_9_Conditional_
93207
93436
  i0.ɵɵadvance(4);
93208
93437
  i0.ɵɵtextInterpolate(entry_r11.win.estimatedTimeframe);
93209
93438
  } }
93210
- function SymphiqProfileShopAnalysisDashboardComponent_Conditional_9_Conditional_0_Conditional_39_For_5_Conditional_13_Template(rf, ctx) { if (rf & 1) {
93439
+ function SymphiqProfileShopAnalysisDashboardComponent_Conditional_10_Conditional_0_Conditional_39_For_5_Conditional_13_Template(rf, ctx) { if (rf & 1) {
93211
93440
  i0.ɵɵelementStart(0, "div", 94)(1, "h4", 97);
93212
93441
  i0.ɵɵtext(2, " Related Goal ");
93213
93442
  i0.ɵɵelementEnd();
@@ -93221,7 +93450,7 @@ function SymphiqProfileShopAnalysisDashboardComponent_Conditional_9_Conditional_
93221
93450
  i0.ɵɵadvance(2);
93222
93451
  i0.ɵɵproperty("relatedGoalIds", i0.ɵɵpureFunction1(4, _c5, entry_r11.win.relatedGoalId))("allGoals", ctx_r1.allGoals())("viewMode", ctx_r1.viewMode());
93223
93452
  } }
93224
- function SymphiqProfileShopAnalysisDashboardComponent_Conditional_9_Conditional_0_Conditional_39_For_5_Template(rf, ctx) { if (rf & 1) {
93453
+ function SymphiqProfileShopAnalysisDashboardComponent_Conditional_10_Conditional_0_Conditional_39_For_5_Template(rf, ctx) { if (rf & 1) {
93225
93454
  i0.ɵɵelementStart(0, "div", 86)(1, "div", 87)(2, "div", 88)(3, "span", 89);
93226
93455
  i0.ɵɵtext(4);
93227
93456
  i0.ɵɵelementEnd();
@@ -93234,8 +93463,8 @@ function SymphiqProfileShopAnalysisDashboardComponent_Conditional_9_Conditional_
93234
93463
  i0.ɵɵelementStart(10, "span", 92);
93235
93464
  i0.ɵɵtext(11);
93236
93465
  i0.ɵɵelementEnd()();
93237
- i0.ɵɵconditionalCreate(12, SymphiqProfileShopAnalysisDashboardComponent_Conditional_9_Conditional_0_Conditional_39_For_5_Conditional_12_Template, 5, 2, "div", 93);
93238
- i0.ɵɵconditionalCreate(13, SymphiqProfileShopAnalysisDashboardComponent_Conditional_9_Conditional_0_Conditional_39_For_5_Conditional_13_Template, 4, 6, "div", 94);
93466
+ i0.ɵɵconditionalCreate(12, SymphiqProfileShopAnalysisDashboardComponent_Conditional_10_Conditional_0_Conditional_39_For_5_Conditional_12_Template, 5, 2, "div", 93);
93467
+ i0.ɵɵconditionalCreate(13, SymphiqProfileShopAnalysisDashboardComponent_Conditional_10_Conditional_0_Conditional_39_For_5_Conditional_13_Template, 4, 6, "div", 94);
93239
93468
  i0.ɵɵelementEnd()();
93240
93469
  } if (rf & 2) {
93241
93470
  const entry_r11 = ctx.$implicit;
@@ -93262,12 +93491,12 @@ function SymphiqProfileShopAnalysisDashboardComponent_Conditional_9_Conditional_
93262
93491
  i0.ɵɵadvance();
93263
93492
  i0.ɵɵconditional(entry_r11.win.relatedGoalId ? 13 : -1);
93264
93493
  } }
93265
- function SymphiqProfileShopAnalysisDashboardComponent_Conditional_9_Conditional_0_Conditional_39_Template(rf, ctx) { if (rf & 1) {
93494
+ function SymphiqProfileShopAnalysisDashboardComponent_Conditional_10_Conditional_0_Conditional_39_Template(rf, ctx) { if (rf & 1) {
93266
93495
  i0.ɵɵelementStart(0, "div", 78)(1, "h3", 51);
93267
93496
  i0.ɵɵtext(2, " Quick Wins ");
93268
93497
  i0.ɵɵelementEnd();
93269
93498
  i0.ɵɵelementStart(3, "div", 85);
93270
- i0.ɵɵrepeaterCreate(4, SymphiqProfileShopAnalysisDashboardComponent_Conditional_9_Conditional_0_Conditional_39_For_5_Template, 14, 11, "div", 86, _forTrack0$8);
93499
+ i0.ɵɵrepeaterCreate(4, SymphiqProfileShopAnalysisDashboardComponent_Conditional_10_Conditional_0_Conditional_39_For_5_Template, 14, 11, "div", 86, _forTrack0$8);
93271
93500
  i0.ɵɵelementEnd()();
93272
93501
  } if (rf & 2) {
93273
93502
  const ctx_r1 = i0.ɵɵnextContext(3);
@@ -93276,7 +93505,7 @@ function SymphiqProfileShopAnalysisDashboardComponent_Conditional_9_Conditional_
93276
93505
  i0.ɵɵadvance(3);
93277
93506
  i0.ɵɵrepeater(ctx_r1.quickWinsDisplay());
93278
93507
  } }
93279
- function SymphiqProfileShopAnalysisDashboardComponent_Conditional_9_Conditional_0_Template(rf, ctx) { if (rf & 1) {
93508
+ function SymphiqProfileShopAnalysisDashboardComponent_Conditional_10_Conditional_0_Template(rf, ctx) { if (rf & 1) {
93280
93509
  const _r9 = i0.ɵɵgetCurrentView();
93281
93510
  i0.ɵɵelementStart(0, "section", 59)(1, "div", 62)(2, "div", 63)(3, "div", 64)(4, "div", 65)(5, "h2", 66);
93282
93511
  i0.ɵɵtext(6, " Executive Summary ");
@@ -93284,11 +93513,11 @@ function SymphiqProfileShopAnalysisDashboardComponent_Conditional_9_Conditional_
93284
93513
  i0.ɵɵelementStart(7, "p", 67);
93285
93514
  i0.ɵɵtext(8);
93286
93515
  i0.ɵɵelementEnd()();
93287
- i0.ɵɵconditionalCreate(9, SymphiqProfileShopAnalysisDashboardComponent_Conditional_9_Conditional_0_Conditional_9_Template, 1, 3, "symphiq-grade-badge", 68);
93516
+ i0.ɵɵconditionalCreate(9, SymphiqProfileShopAnalysisDashboardComponent_Conditional_10_Conditional_0_Conditional_9_Template, 1, 3, "symphiq-grade-badge", 68);
93288
93517
  i0.ɵɵelementEnd();
93289
- i0.ɵɵconditionalCreate(10, SymphiqProfileShopAnalysisDashboardComponent_Conditional_9_Conditional_0_Conditional_10_Template, 8, 5, "div", 69);
93518
+ i0.ɵɵconditionalCreate(10, SymphiqProfileShopAnalysisDashboardComponent_Conditional_10_Conditional_0_Conditional_10_Template, 8, 5, "div", 69);
93290
93519
  i0.ɵɵelementStart(11, "div", 70)(12, "button", 71);
93291
- i0.ɵɵlistener("click", function SymphiqProfileShopAnalysisDashboardComponent_Conditional_9_Conditional_0_Template_button_click_12_listener() { const summary_r10 = i0.ɵɵrestoreView(_r9); const ctx_r1 = i0.ɵɵnextContext(2); return i0.ɵɵresetView(ctx_r1.onKeyStrengthsClick(summary_r10)); });
93520
+ i0.ɵɵlistener("click", function SymphiqProfileShopAnalysisDashboardComponent_Conditional_10_Conditional_0_Template_button_click_12_listener() { const summary_r10 = i0.ɵɵrestoreView(_r9); const ctx_r1 = i0.ɵɵnextContext(2); return i0.ɵɵresetView(ctx_r1.onKeyStrengthsClick(summary_r10)); });
93292
93521
  i0.ɵɵelementStart(13, "div", 72);
93293
93522
  i0.ɵɵtext(14, " Key Strengths ");
93294
93523
  i0.ɵɵelementEnd();
@@ -93301,7 +93530,7 @@ function SymphiqProfileShopAnalysisDashboardComponent_Conditional_9_Conditional_
93301
93530
  i0.ɵɵelement(20, "symphiq-icon", 76);
93302
93531
  i0.ɵɵelementEnd()();
93303
93532
  i0.ɵɵelementStart(21, "button", 71);
93304
- i0.ɵɵlistener("click", function SymphiqProfileShopAnalysisDashboardComponent_Conditional_9_Conditional_0_Template_button_click_21_listener() { const summary_r10 = i0.ɵɵrestoreView(_r9); const ctx_r1 = i0.ɵɵnextContext(2); return i0.ɵɵresetView(ctx_r1.onCriticalGapsClick(summary_r10)); });
93533
+ i0.ɵɵlistener("click", function SymphiqProfileShopAnalysisDashboardComponent_Conditional_10_Conditional_0_Template_button_click_21_listener() { const summary_r10 = i0.ɵɵrestoreView(_r9); const ctx_r1 = i0.ɵɵnextContext(2); return i0.ɵɵresetView(ctx_r1.onCriticalGapsClick(summary_r10)); });
93305
93534
  i0.ɵɵelementStart(22, "div", 72);
93306
93535
  i0.ɵɵtext(23, " Critical Gaps ");
93307
93536
  i0.ɵɵelementEnd();
@@ -93314,7 +93543,7 @@ function SymphiqProfileShopAnalysisDashboardComponent_Conditional_9_Conditional_
93314
93543
  i0.ɵɵelement(29, "symphiq-icon", 76);
93315
93544
  i0.ɵɵelementEnd()();
93316
93545
  i0.ɵɵelementStart(30, "button", 71);
93317
- i0.ɵɵlistener("click", function SymphiqProfileShopAnalysisDashboardComponent_Conditional_9_Conditional_0_Template_button_click_30_listener() { i0.ɵɵrestoreView(_r9); const ctx_r1 = i0.ɵɵnextContext(2); return i0.ɵɵresetView(ctx_r1.scrollToQuickWins()); });
93546
+ i0.ɵɵlistener("click", function SymphiqProfileShopAnalysisDashboardComponent_Conditional_10_Conditional_0_Template_button_click_30_listener() { i0.ɵɵrestoreView(_r9); const ctx_r1 = i0.ɵɵnextContext(2); return i0.ɵɵresetView(ctx_r1.scrollToQuickWins()); });
93318
93547
  i0.ɵɵelementStart(31, "div", 72);
93319
93548
  i0.ɵɵtext(32, " Quick Wins ");
93320
93549
  i0.ɵɵelementEnd();
@@ -93326,7 +93555,7 @@ function SymphiqProfileShopAnalysisDashboardComponent_Conditional_9_Conditional_
93326
93555
  i0.ɵɵelementEnd();
93327
93556
  i0.ɵɵelement(38, "symphiq-icon", 77);
93328
93557
  i0.ɵɵelementEnd()()()()();
93329
- i0.ɵɵconditionalCreate(39, SymphiqProfileShopAnalysisDashboardComponent_Conditional_9_Conditional_0_Conditional_39_Template, 6, 1, "div", 78);
93558
+ i0.ɵɵconditionalCreate(39, SymphiqProfileShopAnalysisDashboardComponent_Conditional_10_Conditional_0_Conditional_39_Template, 6, 1, "div", 78);
93330
93559
  i0.ɵɵelementEnd();
93331
93560
  } if (rf & 2) {
93332
93561
  const summary_r10 = ctx;
@@ -93382,29 +93611,29 @@ function SymphiqProfileShopAnalysisDashboardComponent_Conditional_9_Conditional_
93382
93611
  i0.ɵɵadvance();
93383
93612
  i0.ɵɵconditional(ctx_r1.quickWinsDisplay().length > 0 ? 39 : -1);
93384
93613
  } }
93385
- function SymphiqProfileShopAnalysisDashboardComponent_Conditional_9_Conditional_1_Template(rf, ctx) { if (rf & 1) {
93614
+ function SymphiqProfileShopAnalysisDashboardComponent_Conditional_10_Conditional_1_Template(rf, ctx) { if (rf & 1) {
93386
93615
  const _r12 = i0.ɵɵgetCurrentView();
93387
93616
  i0.ɵɵelementStart(0, "symphiq-metric-executive-summary", 99);
93388
- i0.ɵɵlistener("topPrioritiesClick", function SymphiqProfileShopAnalysisDashboardComponent_Conditional_9_Conditional_1_Template_symphiq_metric_executive_summary_topPrioritiesClick_0_listener() { i0.ɵɵrestoreView(_r12); const ctx_r1 = i0.ɵɵnextContext(2); return i0.ɵɵresetView(ctx_r1.handleMetricTopPrioritiesClick()); })("priorityDetailClick", function SymphiqProfileShopAnalysisDashboardComponent_Conditional_9_Conditional_1_Template_symphiq_metric_executive_summary_priorityDetailClick_0_listener($event) { i0.ɵɵrestoreView(_r12); const ctx_r1 = i0.ɵɵnextContext(2); return i0.ɵɵresetView(ctx_r1.handleMetricPriorityDetailClick($event)); })("viewMetricDetailsClick", function SymphiqProfileShopAnalysisDashboardComponent_Conditional_9_Conditional_1_Template_symphiq_metric_executive_summary_viewMetricDetailsClick_0_listener() { i0.ɵɵrestoreView(_r12); const ctx_r1 = i0.ɵɵnextContext(2); return i0.ɵɵresetView(ctx_r1.handleMetricViewDetailsClick()); });
93617
+ i0.ɵɵlistener("topPrioritiesClick", function SymphiqProfileShopAnalysisDashboardComponent_Conditional_10_Conditional_1_Template_symphiq_metric_executive_summary_topPrioritiesClick_0_listener() { i0.ɵɵrestoreView(_r12); const ctx_r1 = i0.ɵɵnextContext(2); return i0.ɵɵresetView(ctx_r1.handleMetricTopPrioritiesClick()); })("priorityDetailClick", function SymphiqProfileShopAnalysisDashboardComponent_Conditional_10_Conditional_1_Template_symphiq_metric_executive_summary_priorityDetailClick_0_listener($event) { i0.ɵɵrestoreView(_r12); const ctx_r1 = i0.ɵɵnextContext(2); return i0.ɵɵresetView(ctx_r1.handleMetricPriorityDetailClick($event)); })("viewMetricDetailsClick", function SymphiqProfileShopAnalysisDashboardComponent_Conditional_10_Conditional_1_Template_symphiq_metric_executive_summary_viewMetricDetailsClick_0_listener() { i0.ɵɵrestoreView(_r12); const ctx_r1 = i0.ɵɵnextContext(2); return i0.ɵɵresetView(ctx_r1.handleMetricViewDetailsClick()); });
93389
93618
  i0.ɵɵelementEnd();
93390
93619
  } if (rf & 2) {
93391
93620
  const ctx_r1 = i0.ɵɵnextContext(2);
93392
93621
  i0.ɵɵproperty("viewMode", ctx_r1.viewMode())("summary", ctx)("metricName", ctx_r1.metricName())("allGoals", ctx_r1.allGoals());
93393
93622
  } }
93394
- function SymphiqProfileShopAnalysisDashboardComponent_Conditional_9_Conditional_2_Conditional_0_Template(rf, ctx) { if (rf & 1) {
93623
+ function SymphiqProfileShopAnalysisDashboardComponent_Conditional_10_Conditional_2_Conditional_0_Template(rf, ctx) { if (rf & 1) {
93395
93624
  i0.ɵɵelement(0, "symphiq-section-divider", 100);
93396
93625
  } if (rf & 2) {
93397
93626
  const sectionList_r13 = i0.ɵɵnextContext();
93398
93627
  const ctx_r1 = i0.ɵɵnextContext(2);
93399
93628
  i0.ɵɵproperty("viewMode", ctx_r1.viewMode())("sectionIcon", sectionList_r13[0].icon);
93400
93629
  } }
93401
- function SymphiqProfileShopAnalysisDashboardComponent_Conditional_9_Conditional_2_Template(rf, ctx) { if (rf & 1) {
93402
- i0.ɵɵconditionalCreate(0, SymphiqProfileShopAnalysisDashboardComponent_Conditional_9_Conditional_2_Conditional_0_Template, 1, 2, "symphiq-section-divider", 100);
93630
+ function SymphiqProfileShopAnalysisDashboardComponent_Conditional_10_Conditional_2_Template(rf, ctx) { if (rf & 1) {
93631
+ i0.ɵɵconditionalCreate(0, SymphiqProfileShopAnalysisDashboardComponent_Conditional_10_Conditional_2_Conditional_0_Template, 1, 2, "symphiq-section-divider", 100);
93403
93632
  } if (rf & 2) {
93404
93633
  const sectionList_r13 = ctx;
93405
93634
  i0.ɵɵconditional(sectionList_r13.length > 0 && sectionList_r13[0].icon ? 0 : -1);
93406
93635
  } }
93407
- function SymphiqProfileShopAnalysisDashboardComponent_Conditional_9_Conditional_3_For_2_Conditional_2_Template(rf, ctx) { if (rf & 1) {
93636
+ function SymphiqProfileShopAnalysisDashboardComponent_Conditional_10_Conditional_3_For_2_Conditional_2_Template(rf, ctx) { if (rf & 1) {
93408
93637
  i0.ɵɵelementStart(0, "div", 103);
93409
93638
  i0.ɵɵelement(1, "symphiq-icon", 107);
93410
93639
  i0.ɵɵelementEnd();
@@ -93415,7 +93644,7 @@ function SymphiqProfileShopAnalysisDashboardComponent_Conditional_9_Conditional_
93415
93644
  i0.ɵɵadvance();
93416
93645
  i0.ɵɵproperty("icon", section_r14.icon);
93417
93646
  } }
93418
- function SymphiqProfileShopAnalysisDashboardComponent_Conditional_9_Conditional_3_For_2_Conditional_6_Conditional_1_Template(rf, ctx) { if (rf & 1) {
93647
+ function SymphiqProfileShopAnalysisDashboardComponent_Conditional_10_Conditional_3_For_2_Conditional_6_Conditional_1_Template(rf, ctx) { if (rf & 1) {
93419
93648
  i0.ɵɵelementStart(0, "div", 109);
93420
93649
  i0.ɵɵelement(1, "symphiq-napkin-visual-placeholder", 84);
93421
93650
  i0.ɵɵelementEnd();
@@ -93425,7 +93654,7 @@ function SymphiqProfileShopAnalysisDashboardComponent_Conditional_9_Conditional_
93425
93654
  i0.ɵɵadvance();
93426
93655
  i0.ɵɵproperty("visual", section_r14.visual)("viewMode", ctx_r1.viewMode());
93427
93656
  } }
93428
- function SymphiqProfileShopAnalysisDashboardComponent_Conditional_9_Conditional_3_For_2_Conditional_6_Conditional_2_Template(rf, ctx) { if (rf & 1) {
93657
+ function SymphiqProfileShopAnalysisDashboardComponent_Conditional_10_Conditional_3_For_2_Conditional_6_Conditional_2_Template(rf, ctx) { if (rf & 1) {
93429
93658
  i0.ɵɵelementStart(0, "div", 111)(1, "p", 82);
93430
93659
  i0.ɵɵtext(2);
93431
93660
  i0.ɵɵelementEnd()();
@@ -93438,10 +93667,10 @@ function SymphiqProfileShopAnalysisDashboardComponent_Conditional_9_Conditional_
93438
93667
  i0.ɵɵadvance();
93439
93668
  i0.ɵɵtextInterpolate1(" ", section_r14.description, " ");
93440
93669
  } }
93441
- function SymphiqProfileShopAnalysisDashboardComponent_Conditional_9_Conditional_3_For_2_Conditional_6_Template(rf, ctx) { if (rf & 1) {
93670
+ function SymphiqProfileShopAnalysisDashboardComponent_Conditional_10_Conditional_3_For_2_Conditional_6_Template(rf, ctx) { if (rf & 1) {
93442
93671
  i0.ɵɵelementStart(0, "div", 108);
93443
- i0.ɵɵconditionalCreate(1, SymphiqProfileShopAnalysisDashboardComponent_Conditional_9_Conditional_3_For_2_Conditional_6_Conditional_1_Template, 2, 2, "div", 109);
93444
- i0.ɵɵconditionalCreate(2, SymphiqProfileShopAnalysisDashboardComponent_Conditional_9_Conditional_3_For_2_Conditional_6_Conditional_2_Template, 3, 6, "div", 110);
93672
+ i0.ɵɵconditionalCreate(1, SymphiqProfileShopAnalysisDashboardComponent_Conditional_10_Conditional_3_For_2_Conditional_6_Conditional_1_Template, 2, 2, "div", 109);
93673
+ i0.ɵɵconditionalCreate(2, SymphiqProfileShopAnalysisDashboardComponent_Conditional_10_Conditional_3_For_2_Conditional_6_Conditional_2_Template, 3, 6, "div", 110);
93445
93674
  i0.ɵɵelementEnd();
93446
93675
  } if (rf & 2) {
93447
93676
  const ctx_r14 = i0.ɵɵnextContext();
@@ -93453,7 +93682,7 @@ function SymphiqProfileShopAnalysisDashboardComponent_Conditional_9_Conditional_
93453
93682
  i0.ɵɵadvance();
93454
93683
  i0.ɵɵconditional(section_r14.description ? 2 : -1);
93455
93684
  } }
93456
- function SymphiqProfileShopAnalysisDashboardComponent_Conditional_9_Conditional_3_For_2_Conditional_8_Template(rf, ctx) { if (rf & 1) {
93685
+ function SymphiqProfileShopAnalysisDashboardComponent_Conditional_10_Conditional_3_For_2_Conditional_8_Template(rf, ctx) { if (rf & 1) {
93457
93686
  i0.ɵɵelement(0, "symphiq-section-divider", 100);
93458
93687
  } if (rf & 2) {
93459
93688
  const ɵ$index_261_r16 = i0.ɵɵnextContext().$index;
@@ -93461,16 +93690,16 @@ function SymphiqProfileShopAnalysisDashboardComponent_Conditional_9_Conditional_
93461
93690
  const ctx_r1 = i0.ɵɵnextContext(2);
93462
93691
  i0.ɵɵproperty("viewMode", ctx_r1.viewMode())("sectionIcon", sectionList_r17[ɵ$index_261_r16 + 1].icon);
93463
93692
  } }
93464
- function SymphiqProfileShopAnalysisDashboardComponent_Conditional_9_Conditional_3_For_2_Template(rf, ctx) { if (rf & 1) {
93693
+ function SymphiqProfileShopAnalysisDashboardComponent_Conditional_10_Conditional_3_For_2_Template(rf, ctx) { if (rf & 1) {
93465
93694
  i0.ɵɵelementStart(0, "div", 101)(1, "div", 102);
93466
- i0.ɵɵconditionalCreate(2, SymphiqProfileShopAnalysisDashboardComponent_Conditional_9_Conditional_3_For_2_Conditional_2_Template, 2, 2, "div", 103);
93695
+ i0.ɵɵconditionalCreate(2, SymphiqProfileShopAnalysisDashboardComponent_Conditional_10_Conditional_3_For_2_Conditional_2_Template, 2, 2, "div", 103);
93467
93696
  i0.ɵɵelementStart(3, "div", 65)(4, "h3", 104);
93468
93697
  i0.ɵɵtext(5);
93469
93698
  i0.ɵɵelementEnd()()();
93470
- i0.ɵɵconditionalCreate(6, SymphiqProfileShopAnalysisDashboardComponent_Conditional_9_Conditional_3_For_2_Conditional_6_Template, 3, 4, "div", 105);
93699
+ i0.ɵɵconditionalCreate(6, SymphiqProfileShopAnalysisDashboardComponent_Conditional_10_Conditional_3_For_2_Conditional_6_Template, 3, 4, "div", 105);
93471
93700
  i0.ɵɵelement(7, "symphiq-profile-section-content", 106);
93472
93701
  i0.ɵɵelementEnd();
93473
- i0.ɵɵconditionalCreate(8, SymphiqProfileShopAnalysisDashboardComponent_Conditional_9_Conditional_3_For_2_Conditional_8_Template, 1, 2, "symphiq-section-divider", 100);
93702
+ i0.ɵɵconditionalCreate(8, SymphiqProfileShopAnalysisDashboardComponent_Conditional_10_Conditional_3_For_2_Conditional_8_Template, 1, 2, "symphiq-section-divider", 100);
93474
93703
  } if (rf & 2) {
93475
93704
  const section_r14 = ctx.$implicit;
93476
93705
  const ɵ$index_261_r16 = ctx.$index;
@@ -93490,19 +93719,19 @@ function SymphiqProfileShopAnalysisDashboardComponent_Conditional_9_Conditional_
93490
93719
  i0.ɵɵadvance();
93491
93720
  i0.ɵɵconditional(!(ɵ$index_261_r16 === ɵ$count_261_r18 - 1) ? 8 : -1);
93492
93721
  } }
93493
- function SymphiqProfileShopAnalysisDashboardComponent_Conditional_9_Conditional_3_Template(rf, ctx) { if (rf & 1) {
93722
+ function SymphiqProfileShopAnalysisDashboardComponent_Conditional_10_Conditional_3_Template(rf, ctx) { if (rf & 1) {
93494
93723
  i0.ɵɵelementStart(0, "section", 61);
93495
- i0.ɵɵrepeaterCreate(1, SymphiqProfileShopAnalysisDashboardComponent_Conditional_9_Conditional_3_For_2_Template, 9, 16, null, null, _forTrack1$1);
93724
+ i0.ɵɵrepeaterCreate(1, SymphiqProfileShopAnalysisDashboardComponent_Conditional_10_Conditional_3_For_2_Template, 9, 16, null, null, _forTrack1$1);
93496
93725
  i0.ɵɵelementEnd();
93497
93726
  } if (rf & 2) {
93498
93727
  i0.ɵɵadvance();
93499
93728
  i0.ɵɵrepeater(ctx);
93500
93729
  } }
93501
- function SymphiqProfileShopAnalysisDashboardComponent_Conditional_9_Template(rf, ctx) { if (rf & 1) {
93502
- i0.ɵɵconditionalCreate(0, SymphiqProfileShopAnalysisDashboardComponent_Conditional_9_Conditional_0_Template, 40, 34, "section", 59);
93503
- i0.ɵɵconditionalCreate(1, SymphiqProfileShopAnalysisDashboardComponent_Conditional_9_Conditional_1_Template, 1, 4, "symphiq-metric-executive-summary", 60);
93504
- i0.ɵɵconditionalCreate(2, SymphiqProfileShopAnalysisDashboardComponent_Conditional_9_Conditional_2_Template, 1, 1);
93505
- i0.ɵɵconditionalCreate(3, SymphiqProfileShopAnalysisDashboardComponent_Conditional_9_Conditional_3_Template, 3, 0, "section", 61);
93730
+ function SymphiqProfileShopAnalysisDashboardComponent_Conditional_10_Template(rf, ctx) { if (rf & 1) {
93731
+ i0.ɵɵconditionalCreate(0, SymphiqProfileShopAnalysisDashboardComponent_Conditional_10_Conditional_0_Template, 40, 34, "section", 59);
93732
+ i0.ɵɵconditionalCreate(1, SymphiqProfileShopAnalysisDashboardComponent_Conditional_10_Conditional_1_Template, 1, 4, "symphiq-metric-executive-summary", 60);
93733
+ i0.ɵɵconditionalCreate(2, SymphiqProfileShopAnalysisDashboardComponent_Conditional_10_Conditional_2_Template, 1, 1);
93734
+ i0.ɵɵconditionalCreate(3, SymphiqProfileShopAnalysisDashboardComponent_Conditional_10_Conditional_3_Template, 3, 0, "section", 61);
93506
93735
  } if (rf & 2) {
93507
93736
  let tmp_1_0;
93508
93737
  let tmp_2_0;
@@ -93517,97 +93746,97 @@ function SymphiqProfileShopAnalysisDashboardComponent_Conditional_9_Template(rf,
93517
93746
  i0.ɵɵadvance();
93518
93747
  i0.ɵɵconditional((tmp_4_0 = ctx_r1.sections()) ? 3 : -1, tmp_4_0);
93519
93748
  } }
93520
- function SymphiqProfileShopAnalysisDashboardComponent_Conditional_10_Template(rf, ctx) { if (rf & 1) {
93521
- i0.ɵɵelement(0, "symphiq-floating-toc", 9);
93749
+ function SymphiqProfileShopAnalysisDashboardComponent_Conditional_11_Template(rf, ctx) { if (rf & 1) {
93750
+ i0.ɵɵelement(0, "symphiq-floating-toc", 11);
93522
93751
  } if (rf & 2) {
93523
93752
  const ctx_r1 = i0.ɵɵnextContext();
93524
93753
  i0.ɵɵproperty("sections", ctx_r1.tocSections())("viewMode", ctx_r1.viewMode())("embedded", ctx_r1.embedded())("scrollElement", ctx_r1.scrollElement() ?? undefined);
93525
93754
  } }
93526
- function SymphiqProfileShopAnalysisDashboardComponent_Conditional_11_Template(rf, ctx) { if (rf & 1) {
93527
- i0.ɵɵelement(0, "symphiq-section-navigation", 9);
93755
+ function SymphiqProfileShopAnalysisDashboardComponent_Conditional_12_Template(rf, ctx) { if (rf & 1) {
93756
+ i0.ɵɵelement(0, "symphiq-section-navigation", 11);
93528
93757
  } if (rf & 2) {
93529
93758
  const ctx_r1 = i0.ɵɵnextContext();
93530
93759
  i0.ɵɵproperty("sections", ctx_r1.tocSections())("viewMode", ctx_r1.viewMode())("embedded", ctx_r1.embedded())("scrollElement", ctx_r1.scrollElement() ?? undefined);
93531
93760
  } }
93532
- function SymphiqProfileShopAnalysisDashboardComponent_Conditional_15_Template(rf, ctx) { if (rf & 1) {
93533
- i0.ɵɵelement(0, "symphiq-goal-card", 13);
93761
+ function SymphiqProfileShopAnalysisDashboardComponent_Conditional_16_Template(rf, ctx) { if (rf & 1) {
93762
+ i0.ɵɵelement(0, "symphiq-goal-card", 15);
93534
93763
  } if (rf & 2) {
93535
93764
  const data_r19 = ctx;
93536
93765
  const ctx_r1 = i0.ɵɵnextContext();
93537
93766
  i0.ɵɵproperty("goal", data_r19.goal)("viewMode", data_r19.viewMode)("isInModal", true)("allMetrics", ctx_r1.allMetrics())("allCharts", ctx_r1.allCharts())("allInsights", ctx_r1.allInsights())("currentModalState", ctx_r1.getCurrentModalState())("businessProfile", ctx_r1.profile());
93538
93767
  } }
93539
- function SymphiqProfileShopAnalysisDashboardComponent_Conditional_16_Template(rf, ctx) { if (rf & 1) {
93540
- i0.ɵɵelement(0, "symphiq-goal-objectives-modal-content", 14);
93768
+ function SymphiqProfileShopAnalysisDashboardComponent_Conditional_17_Template(rf, ctx) { if (rf & 1) {
93769
+ i0.ɵɵelement(0, "symphiq-goal-objectives-modal-content", 16);
93541
93770
  } if (rf & 2) {
93542
93771
  const data_r20 = ctx;
93543
93772
  i0.ɵɵproperty("goal", data_r20.goal)("viewMode", data_r20.viewMode);
93544
93773
  } }
93545
- function SymphiqProfileShopAnalysisDashboardComponent_Conditional_17_Template(rf, ctx) { if (rf & 1) {
93546
- i0.ɵɵelement(0, "symphiq-objective-strategies-modal-content", 15);
93774
+ function SymphiqProfileShopAnalysisDashboardComponent_Conditional_18_Template(rf, ctx) { if (rf & 1) {
93775
+ i0.ɵɵelement(0, "symphiq-objective-strategies-modal-content", 17);
93547
93776
  } if (rf & 2) {
93548
93777
  const data_r21 = ctx;
93549
93778
  i0.ɵɵproperty("objective", data_r21.objective)("goalTitle", data_r21.goalTitle)("viewMode", data_r21.viewMode);
93550
93779
  } }
93551
- function SymphiqProfileShopAnalysisDashboardComponent_Conditional_18_Template(rf, ctx) { if (rf & 1) {
93552
- i0.ɵɵelement(0, "symphiq-strategy-recommendations-modal-content", 16);
93780
+ function SymphiqProfileShopAnalysisDashboardComponent_Conditional_19_Template(rf, ctx) { if (rf & 1) {
93781
+ i0.ɵɵelement(0, "symphiq-strategy-recommendations-modal-content", 18);
93553
93782
  } if (rf & 2) {
93554
93783
  const data_r22 = ctx;
93555
93784
  const ctx_r1 = i0.ɵɵnextContext();
93556
93785
  i0.ɵɵproperty("strategy", data_r22.strategy)("objectiveTitle", data_r22.objectiveTitle)("goalTitle", data_r22.goalTitle)("viewMode", data_r22.viewMode)("expandedRecommendationId", data_r22.expandedRecommendationId)("allMetrics", ctx_r1.allMetrics())("allCharts", ctx_r1.allCharts())("allInsights", ctx_r1.allInsights())("allBusinessInsights", ctx_r1.allBusinessInsights())("currentModalState", ctx_r1.getCurrentModalState());
93557
93786
  } }
93558
- function SymphiqProfileShopAnalysisDashboardComponent_Conditional_19_Template(rf, ctx) { if (rf & 1) {
93559
- i0.ɵɵelement(0, "symphiq-category-detail-modal-content", 17);
93787
+ function SymphiqProfileShopAnalysisDashboardComponent_Conditional_20_Template(rf, ctx) { if (rf & 1) {
93788
+ i0.ɵɵelement(0, "symphiq-category-detail-modal-content", 19);
93560
93789
  } if (rf & 2) {
93561
93790
  const data_r23 = ctx;
93562
93791
  i0.ɵɵproperty("category", data_r23.category)("viewMode", data_r23.viewMode)("scrollToSection", data_r23.scrollToSection);
93563
93792
  } }
93564
- function SymphiqProfileShopAnalysisDashboardComponent_Conditional_20_Template(rf, ctx) { if (rf & 1) {
93565
- i0.ɵɵelement(0, "symphiq-strength-detail-modal-content", 18);
93793
+ function SymphiqProfileShopAnalysisDashboardComponent_Conditional_21_Template(rf, ctx) { if (rf & 1) {
93794
+ i0.ɵɵelement(0, "symphiq-strength-detail-modal-content", 20);
93566
93795
  } if (rf & 2) {
93567
93796
  const data_r24 = ctx;
93568
93797
  const ctx_r1 = i0.ɵɵnextContext();
93569
93798
  i0.ɵɵproperty("strength", data_r24.strength)("viewMode", data_r24.viewMode)("allFunnelStrengths", ctx_r1.funnelStrengths())("currentModalState", ctx_r1.getCurrentModalState());
93570
93799
  } }
93571
- function SymphiqProfileShopAnalysisDashboardComponent_Conditional_21_Template(rf, ctx) { if (rf & 1) {
93572
- i0.ɵɵelement(0, "symphiq-gap-detail-modal-content", 19);
93800
+ function SymphiqProfileShopAnalysisDashboardComponent_Conditional_22_Template(rf, ctx) { if (rf & 1) {
93801
+ i0.ɵɵelement(0, "symphiq-gap-detail-modal-content", 21);
93573
93802
  } if (rf & 2) {
93574
93803
  const data_r25 = ctx;
93575
93804
  const ctx_r1 = i0.ɵɵnextContext();
93576
93805
  i0.ɵɵproperty("gap", data_r25.gap)("viewMode", data_r25.viewMode)("allGoals", ctx_r1.allGoals())("allWeaknesses", ctx_r1.funnelWeaknesses())("currentModalState", ctx_r1.getCurrentModalState());
93577
93806
  } }
93578
- function SymphiqProfileShopAnalysisDashboardComponent_Conditional_22_Template(rf, ctx) { if (rf & 1) {
93579
- i0.ɵɵelement(0, "symphiq-opportunity-detail-modal-content", 20);
93807
+ function SymphiqProfileShopAnalysisDashboardComponent_Conditional_23_Template(rf, ctx) { if (rf & 1) {
93808
+ i0.ɵɵelement(0, "symphiq-opportunity-detail-modal-content", 22);
93580
93809
  } if (rf & 2) {
93581
93810
  const data_r26 = ctx;
93582
93811
  const ctx_r1 = i0.ɵɵnextContext();
93583
93812
  i0.ɵɵproperty("opportunity", data_r26.opportunity)("viewMode", data_r26.viewMode)("allStrengths", ctx_r1.funnelStrengths())("currentModalState", ctx_r1.getCurrentModalState());
93584
93813
  } }
93585
- function SymphiqProfileShopAnalysisDashboardComponent_Conditional_26_Template(rf, ctx) { if (rf & 1) {
93814
+ function SymphiqProfileShopAnalysisDashboardComponent_Conditional_27_Template(rf, ctx) { if (rf & 1) {
93586
93815
  const _r27 = i0.ɵɵgetCurrentView();
93587
93816
  i0.ɵɵelementStart(0, "symphiq-sticky-subscription-continue-button", 112);
93588
- i0.ɵɵlistener("continueClick", function SymphiqProfileShopAnalysisDashboardComponent_Conditional_26_Template_symphiq_sticky_subscription_continue_button_continueClick_0_listener() { i0.ɵɵrestoreView(_r27); const ctx_r1 = i0.ɵɵnextContext(); return i0.ɵɵresetView(ctx_r1.handleStickyButtonClick()); });
93817
+ i0.ɵɵlistener("continueClick", function SymphiqProfileShopAnalysisDashboardComponent_Conditional_27_Template_symphiq_sticky_subscription_continue_button_continueClick_0_listener() { i0.ɵɵrestoreView(_r27); const ctx_r1 = i0.ɵɵnextContext(); return i0.ɵɵresetView(ctx_r1.handleStickyButtonClick()); });
93589
93818
  i0.ɵɵelementEnd();
93590
93819
  } if (rf & 2) {
93591
93820
  const ctx_r1 = i0.ɵɵnextContext();
93592
93821
  i0.ɵɵproperty("viewMode", ctx_r1.viewMode())("isEnabled", ctx_r1.hasCurrencySelected())("isLoading", ctx_r1.isCurrencySelectionLoading());
93593
93822
  } }
93594
- function SymphiqProfileShopAnalysisDashboardComponent_Conditional_27_Template(rf, ctx) { if (rf & 1) {
93823
+ function SymphiqProfileShopAnalysisDashboardComponent_Conditional_28_Template(rf, ctx) { if (rf & 1) {
93595
93824
  const _r28 = i0.ɵɵgetCurrentView();
93596
93825
  i0.ɵɵelementStart(0, "symphiq-profile-sticky-footer", 113);
93597
- i0.ɵɵlistener("continueClick", function SymphiqProfileShopAnalysisDashboardComponent_Conditional_27_Template_symphiq_profile_sticky_footer_continueClick_0_listener() { i0.ɵɵrestoreView(_r28); const ctx_r1 = i0.ɵɵnextContext(); return i0.ɵɵresetView(ctx_r1.handleShopProfileContinueClick()); });
93826
+ i0.ɵɵlistener("continueClick", function SymphiqProfileShopAnalysisDashboardComponent_Conditional_28_Template_symphiq_profile_sticky_footer_continueClick_0_listener() { i0.ɵɵrestoreView(_r28); const ctx_r1 = i0.ɵɵnextContext(); return i0.ɵɵresetView(ctx_r1.handleShopProfileContinueClick()); });
93598
93827
  i0.ɵɵelementEnd();
93599
93828
  } if (rf & 2) {
93600
93829
  const ctx_r1 = i0.ɵɵnextContext();
93601
93830
  i0.ɵɵproperty("viewMode", ctx_r1.viewMode())("totalQuestions", ctx_r1.totalShopQuestions())("answeredQuestions", ctx_r1.answeredShopQuestions())("buttonConfig", ctx_r1.shopProfileStickyFooterButtonConfig);
93602
93831
  } }
93603
- function SymphiqProfileShopAnalysisDashboardComponent_Conditional_28_Template(rf, ctx) { if (rf & 1) {
93832
+ function SymphiqProfileShopAnalysisDashboardComponent_Conditional_29_Template(rf, ctx) { if (rf & 1) {
93604
93833
  const _r29 = i0.ɵɵgetCurrentView();
93605
- i0.ɵɵelementStart(0, "div", 25)(1, "div", 114)(2, "div", 115)(3, "button", 116);
93606
- i0.ɵɵlistener("click", function SymphiqProfileShopAnalysisDashboardComponent_Conditional_28_Template_button_click_3_listener() { i0.ɵɵrestoreView(_r29); const ctx_r1 = i0.ɵɵnextContext(); return i0.ɵɵresetView(ctx_r1.handleCancelCurrencyEdit()); });
93834
+ i0.ɵɵelementStart(0, "div", 27)(1, "div", 114)(2, "div", 115)(3, "button", 116);
93835
+ i0.ɵɵlistener("click", function SymphiqProfileShopAnalysisDashboardComponent_Conditional_29_Template_button_click_3_listener() { i0.ɵɵrestoreView(_r29); const ctx_r1 = i0.ɵɵnextContext(); return i0.ɵɵresetView(ctx_r1.handleCancelCurrencyEdit()); });
93607
93836
  i0.ɵɵtext(4, " Cancel ");
93608
93837
  i0.ɵɵelementEnd();
93609
93838
  i0.ɵɵelementStart(5, "button", 117);
93610
- i0.ɵɵlistener("click", function SymphiqProfileShopAnalysisDashboardComponent_Conditional_28_Template_button_click_5_listener() { i0.ɵɵrestoreView(_r29); const ctx_r1 = i0.ɵɵnextContext(); return i0.ɵɵresetView(ctx_r1.handleContinueToPlans()); });
93839
+ i0.ɵɵlistener("click", function SymphiqProfileShopAnalysisDashboardComponent_Conditional_29_Template_button_click_5_listener() { i0.ɵɵrestoreView(_r29); const ctx_r1 = i0.ɵɵnextContext(); return i0.ɵɵresetView(ctx_r1.handleContinueToPlans()); });
93611
93840
  i0.ɵɵelementStart(6, "span");
93612
93841
  i0.ɵɵtext(7, "Continue to Plans");
93613
93842
  i0.ɵɵelementEnd();
@@ -94744,7 +94973,7 @@ class SymphiqProfileShopAnalysisDashboardComponent {
94744
94973
  i0.ɵɵqueryRefresh(_t = i0.ɵɵloadQuery()) && (ctx.planSelectionContainer = _t.first);
94745
94974
  } }, hostBindings: function SymphiqProfileShopAnalysisDashboardComponent_HostBindings(rf, ctx) { if (rf & 1) {
94746
94975
  i0.ɵɵlistener("scroll", function SymphiqProfileShopAnalysisDashboardComponent_scroll_HostBindingHandler() { return ctx.onWindowScroll(); }, i0.ɵɵresolveWindow);
94747
- } }, inputs: { viewMode: [1, "viewMode"], requestedByUser: [1, "requestedByUser"], createdDate: [1, "createdDate"], embedded: [1, "embedded"], profileAnalysis: [1, "profileAnalysis"], profile: [1, "profile"], funnelAnalysis: [1, "funnelAnalysis"], focusAreaDetails: [1, "focusAreaDetails"], account: [1, "account"], profileShop: [1, "profileShop"], profileShopQuestions: [1, "profileShopQuestions"], profileAnswers: [1, "profileAnswers"], profileAnswerHistories: [1, "profileAnswerHistories"], itemStatusProfileShop: [1, "itemStatusProfileShop"], itemStatusProfileAnalysis: [1, "itemStatusProfileAnalysis"], planCardInfos: [1, "planCardInfos"], isOnboarded: [1, "isOnboarded"], scrollEvent: [1, "scrollEvent"], scrollElement: [1, "scrollElement"], users: [1, "users"], isLoading: [1, "isLoading"], forDemo: [1, "forDemo"], currentUser: [1, "currentUser"], maxAccessibleStepId: [1, "maxAccessibleStepId"], isMarkingAsReviewed: [1, "isMarkingAsReviewed"] }, outputs: { stepClick: "stepClick", nextStepClick: "nextStepClick", currencySelectionClick: "currencySelectionClick", editCurrencyClick: "editCurrencyClick", periodUnitChanged: "periodUnitChanged", planSelected: "planSelected", checkoutPlanClick: "checkoutPlanClick", answerShopProfileQuestions: "answerShopProfileQuestions", continueShopProfileQuestions: "continueShopProfileQuestions", profileQuestionAnswerSave: "profileQuestionAnswerSave", shopProfileAdminAnswerAction: "shopProfileAdminAnswerAction", markAsReviewedClick: "markAsReviewedClick" }, features: [i0.ɵɵNgOnChangesFeature], decls: 30, vars: 59, consts: [["shopProfileStatusCard", ""], ["planSelectionContainer", ""], [1, "relative", 3, "ngClass"], [1, "animated-bubbles", 2, "position", "fixed", "top", "0", "left", "0", "right", "0", "bottom", "0", "width", "100vw", "height", "100vh", "z-index", "1", "pointer-events", "none"], [3, "viewMode", "progress", "embedded"], [1, "relative", "z-[51]"], [3, "searchClick", "viewModeClick", "title", "subtitle", "currentSection", "viewMode", "viewModeLabel", "isLoading", "requestedByUser", "createdDate", "showControls", "embedded", "scrollEvent"], [3, "viewMode", "currentStepId", "showNextStepAction", "forDemo", "maxAccessibleStepId"], [1, "relative", "z-10", "max-w-7xl", "mx-auto", "px-4", "sm:px-6", "lg:px-8", "py-12", "space-y-12"], [3, "sections", "viewMode", "embedded", "scrollElement"], [3, "close", "isOpen", "isLightMode"], [3, "close", "modeSelected", "isOpen", "currentMode", "viewMode"], [3, "isLightMode", "allMetrics", "allInsights", "allBusinessInsights", "allCharts"], [3, "goal", "viewMode", "isInModal", "allMetrics", "allCharts", "allInsights", "currentModalState", "businessProfile"], [3, "goal", "viewMode"], [3, "objective", "goalTitle", "viewMode"], [3, "strategy", "objectiveTitle", "goalTitle", "viewMode", "expandedRecommendationId", "allMetrics", "allCharts", "allInsights", "allBusinessInsights", "currentModalState"], [3, "category", "viewMode", "scrollToSection"], [3, "strength", "viewMode", "allFunnelStrengths", "currentModalState"], [3, "gap", "viewMode", "allGoals", "allWeaknesses", "currentModalState"], [3, "opportunity", "viewMode", "allStrengths", "currentModalState"], [3, "isLightMode", "viewMode", "allMetrics", "allInsights", "allCharts"], [3, "isLightMode"], [3, "viewMode", "isEnabled", "isLoading"], [3, "viewMode", "totalQuestions", "answeredQuestions", "buttonConfig"], [1, "fixed", "bottom-0", "left-0", "right-0", "z-50", "border-t", "backdrop-blur-lg", 3, "ngClass"], [3, "markAsReviewedClick", "viewMode", "reviewStatus", "selfContentStatus", "isMarkingAsReviewed", "isLoading"], [3, "nextStepClick", "stepClick", "viewMode", "currentStepId", "showNextStepAction", "forDemo", "maxAccessibleStepId"], [1, "mb-12"], [3, "viewMode", "businessName", "isOnboarded", "analysisDate"], [3, "viewMode", "metricName", "isOnboarded", "analysisDate"], ["title", "Loading Your Shop Profile Analysis", "subtitle", "Please wait while we prepare your personalized insights...", "size", "large", 3, "viewMode", "backdropBlur"], [1, "mb-8"], [1, "rounded-2xl", "border", "shadow-lg", "overflow-hidden", 3, "ngClass"], [3, "startCategoryQuestions", "answerSave", "adminAnswerAction", "viewMode", "totalQuestions", "answeredQuestions", "questions", "profileAnswers", "profileAnswerHistories", "users", "config", "groupConfig", "currentUser"], ["title", "Generating Your Shop Profile", "subtitle", "We're analyzing your data to create shop specific questions and answers. They will appear when ready.", 3, "itemStatus", "viewMode"], [3, "goals", "viewMode"], ["subtitle", "We're analyzing your data to create your personalized analysis. It will appear when ready.", 3, "itemStatus", "viewMode", "title"], [3, "viewMoreClick", "goals", "viewMode"], [3, "viewMode", "selectedCurrency"], [3, "currencySelected", "selectionChanged", "viewMode", "isLoading", "initialCurrency"], [3, "viewMode"], [1, "mb-32"], [3, "periodUnitChanged", "planSelected", "editCurrency", "checkout", "viewMode", "selectedCurrency", "planCardInfos", "isLoading", "selectedPeriodUnit"], [3, "editCurrency", "viewMode", "selectedCurrency"], [3, "sections", "viewMode", "executiveSummary", "metricExecutiveSummary", "metricName", "allGoals", "allMetrics", "allCharts", "allInsights", "businessProfile"], ["type", "button", 1, "cursor-pointer", "w-full", "px-6", "py-5", "flex", "items-center", "justify-between", "gap-4", "text-left", "transition-colors", "duration-200", 3, "click", "ngClass"], [1, "flex", "items-center", "gap-3"], [1, "p-2.5", "rounded-lg", 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 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-3 7h3m-3 4h3m-6-4h.01M9 16h.01"], [1, "text-xl", "font-bold", 3, "ngClass"], [1, "text-sm", "mt-0.5", 3, "ngClass"], ["fill", "none", "stroke", "currentColor", "viewBox", "0 0 24 24", 1, "w-5", "h-5", "flex-shrink-0", "transition-transform", "duration-200", 3, "ngClass"], ["stroke-linecap", "round", "stroke-linejoin", "round", "stroke-width", "2", "d", "M19 9l-7 7-7-7"], [1, "grid", "transition-[grid-template-rows]", "duration-300", "ease-in-out"], [1, "overflow-hidden"], [1, "border-t", 3, "ngClass"], [3, "startCategoryQuestions", "answerSave", "adminAnswerAction", "viewMode", "totalQuestions", "answeredQuestions", "questions", "profileAnswers", "profileAnswerHistories", "users", "config", "groupConfig", "currentUser", "hideHeader"], ["id", "section-executive-summary", 1, "space-y-6", "scroll-mt-24"], [3, "viewMode", "summary", "metricName", "allGoals"], [1, "space-y-8"], [1, "rounded-2xl", "p-8", "shadow-xl", 3, "ngClass"], [1, "space-y-6"], [1, "flex", "items-start", "justify-between", "gap-4"], [1, "flex-1"], [1, "text-2xl", "font-bold", "mb-3", 3, "ngClass"], [1, "text-lg", "leading-relaxed", 3, "ngClass"], [3, "grade", "gradeRationale", "viewMode"], [1, "rounded-xl", "p-6", 3, "ngClass"], [1, "grid", "grid-cols-1", "md:grid-cols-3", "gap-4"], ["type", "button", 1, "p-4", "rounded-xl", "text-left", "transition-all", "duration-200", "hover:scale-[1.02]", "active:scale-[0.98]", "group", "cursor-pointer", 3, "click", "ngClass"], [1, "text-xs", "font-semibold", "uppercase", "mb-1", 3, "ngClass"], [1, "text-3xl", "font-bold", "mb-2", 3, "ngClass"], [1, "flex", "items-center", "gap-1.5", "text-xs", "font-medium"], [3, "ngClass"], ["size", "w-4 h-4", 1, "transition-transform", "group-hover:translate-x-1", 3, "icon", "ngClass"], ["size", "w-4 h-4", 1, "transition-transform", "group-hover:translate-y-1", "animate-bounce", 3, "icon", "ngClass"], ["id", "quick-wins-section", 1, "space-y-4", "scroll-mt-24"], [1, "text-lg", "font-semibold", "mb-3", 3, "ngClass"], [1, "relative"], [1, "mb-6", "lg:float-left", "lg:mr-6", "lg:mb-4", "lg:max-w-[66%]"], [1, "text-sm", "leading-relaxed", "whitespace-pre-line", 3, "ngClass"], [1, "clear-both"], [3, "visual", "viewMode"], [1, "grid", "grid-cols-1", "lg:grid-cols-2", "gap-6"], [1, "rounded-xl", "p-6", "transition-all", "duration-300", 3, "ngClass"], [1, "space-y-4"], [1, "flex", "items-start", "gap-3"], [1, "flex-shrink-0", "w-8", "h-8", "rounded-full", "flex", "items-center", "justify-center", "text-sm", "font-bold", 3, "ngClass"], [1, "font-semibold", "leading-tight", "flex-1", 3, "ngClass"], [1, "flex", "flex-wrap", "gap-2"], [1, "px-3", "py-1", "rounded-full", "text-xs", "font-semibold", 3, "ngClass"], [1, "flex", "items-center", "gap-2", "text-sm", 3, "ngClass"], [1, "space-y-2"], ["fill", "none", "stroke", "currentColor", "viewBox", "0 0 24 24", 1, "w-4", "h-4"], ["stroke-linecap", "round", "stroke-linejoin", "round", "stroke-width", "2", "d", "M12 8v4l3 3m6-3a9 9 0 11-18 0 9 9 0 0118 0z"], [1, "text-xs", "font-semibold", "uppercase", "tracking-wider", 3, "ngClass"], [3, "relatedGoalIds", "allGoals", "viewMode"], [3, "topPrioritiesClick", "priorityDetailClick", "viewMetricDetailsClick", "viewMode", "summary", "metricName", "allGoals"], [3, "viewMode", "sectionIcon"], [1, "rounded-xl", "p-8", "scroll-mt-24", 3, "id", "ngClass"], [1, "flex", "items-start", "gap-3", "mb-6"], [1, "flex-shrink-0", "w-12", "h-12", "rounded-xl", "flex", "items-center", "justify-center", 3, "ngClass"], [1, "text-2xl", "font-bold", 3, "ngClass"], [1, "mb-6", "flex", "flex-col", "lg:flex-row", "gap-6", "items-start", 3, "lg:flex-row-reverse"], [3, "section", "executiveSummary", "viewMode", "sectionIndex", "allGoals", "allMetrics", "allCharts", "allInsights", "businessProfile"], ["size", "w-6 h-6", 3, "icon"], [1, "mb-6", "flex", "flex-col", "lg:flex-row", "gap-6", "items-start"], [1, "w-full", "lg:w-2/3"], [1, "w-full", 3, "lg:w-1/3", "lg:w-full"], [1, "w-full"], [3, "continueClick", "viewMode", "isEnabled", "isLoading"], [3, "continueClick", "viewMode", "totalQuestions", "answeredQuestions", "buttonConfig"], [1, "max-w-7xl", "mx-auto", "px-4", "sm:px-6", "lg:px-8", "py-4"], [1, "flex", "items-center", "gap-4"], [1, "px-6", "py-4", "rounded-xl", "font-semibold", "text-lg", "transition-all", "duration-300", "cursor-pointer", 3, "click", "ngClass"], [1, "flex-1", "px-6", "py-4", "rounded-xl", "font-semibold", "text-lg", "transition-all", "duration-300", "flex", "items-center", "justify-center", "gap-3", "shadow-2xl", 3, "click", "disabled", "ngClass"], ["fill", "none", "stroke", "currentColor", "viewBox", "0 0 24 24", 1, "w-6", "h-6", "transition-transform", "duration-200"], ["stroke-linecap", "round", "stroke-linejoin", "round", "stroke-width", "2", "d", "M13 7l5 5m0 0l-5 5m5-5H6"]], template: function SymphiqProfileShopAnalysisDashboardComponent_Template(rf, ctx) { if (rf & 1) {
94976
+ } }, inputs: { viewMode: [1, "viewMode"], requestedByUser: [1, "requestedByUser"], createdDate: [1, "createdDate"], embedded: [1, "embedded"], profileAnalysis: [1, "profileAnalysis"], profile: [1, "profile"], funnelAnalysis: [1, "funnelAnalysis"], focusAreaDetails: [1, "focusAreaDetails"], account: [1, "account"], profileShop: [1, "profileShop"], profileShopQuestions: [1, "profileShopQuestions"], profileAnswers: [1, "profileAnswers"], profileAnswerHistories: [1, "profileAnswerHistories"], itemStatusProfileShop: [1, "itemStatusProfileShop"], itemStatusProfileAnalysis: [1, "itemStatusProfileAnalysis"], planCardInfos: [1, "planCardInfos"], isOnboarded: [1, "isOnboarded"], scrollEvent: [1, "scrollEvent"], scrollElement: [1, "scrollElement"], users: [1, "users"], isLoading: [1, "isLoading"], forDemo: [1, "forDemo"], currentUser: [1, "currentUser"], maxAccessibleStepId: [1, "maxAccessibleStepId"], isMarkingAsReviewed: [1, "isMarkingAsReviewed"] }, outputs: { stepClick: "stepClick", nextStepClick: "nextStepClick", currencySelectionClick: "currencySelectionClick", editCurrencyClick: "editCurrencyClick", periodUnitChanged: "periodUnitChanged", planSelected: "planSelected", checkoutPlanClick: "checkoutPlanClick", answerShopProfileQuestions: "answerShopProfileQuestions", continueShopProfileQuestions: "continueShopProfileQuestions", profileQuestionAnswerSave: "profileQuestionAnswerSave", shopProfileAdminAnswerAction: "shopProfileAdminAnswerAction", markAsReviewedClick: "markAsReviewedClick" }, features: [i0.ɵɵNgOnChangesFeature], decls: 31, vars: 60, consts: [["shopProfileStatusCard", ""], ["planSelectionContainer", ""], [1, "relative", 3, "ngClass"], [1, "animated-bubbles", 2, "position", "fixed", "top", "0", "left", "0", "right", "0", "bottom", "0", "width", "100vw", "height", "100vh", "z-index", "1", "pointer-events", "none"], [3, "viewMode", "progress", "embedded"], [1, "relative", "z-[51]"], [3, "searchClick", "viewModeClick", "title", "subtitle", "currentSection", "viewMode", "viewModeLabel", "isLoading", "requestedByUser", "createdDate", "showControls", "embedded", "scrollEvent"], [3, "viewMode", "currentStepId", "showNextStepAction", "forDemo", "maxAccessibleStepId"], [1, "relative", "z-10", "max-w-7xl", "mx-auto", "px-4", "sm:px-6", "lg:px-8", "py-12", "space-y-12"], [1, "mb-12"], ["title", "Loading Your Shop Profile Analysis", "subtitle", "Please wait while we prepare your personalized insights...", "size", "large", 3, "viewMode", "backdropBlur"], [3, "sections", "viewMode", "embedded", "scrollElement"], [3, "close", "isOpen", "isLightMode"], [3, "close", "modeSelected", "isOpen", "currentMode", "viewMode"], [3, "isLightMode", "allMetrics", "allInsights", "allBusinessInsights", "allCharts"], [3, "goal", "viewMode", "isInModal", "allMetrics", "allCharts", "allInsights", "currentModalState", "businessProfile"], [3, "goal", "viewMode"], [3, "objective", "goalTitle", "viewMode"], [3, "strategy", "objectiveTitle", "goalTitle", "viewMode", "expandedRecommendationId", "allMetrics", "allCharts", "allInsights", "allBusinessInsights", "currentModalState"], [3, "category", "viewMode", "scrollToSection"], [3, "strength", "viewMode", "allFunnelStrengths", "currentModalState"], [3, "gap", "viewMode", "allGoals", "allWeaknesses", "currentModalState"], [3, "opportunity", "viewMode", "allStrengths", "currentModalState"], [3, "isLightMode", "viewMode", "allMetrics", "allInsights", "allCharts"], [3, "isLightMode"], [3, "viewMode", "isEnabled", "isLoading"], [3, "viewMode", "totalQuestions", "answeredQuestions", "buttonConfig"], [1, "fixed", "bottom-0", "left-0", "right-0", "z-50", "border-t", "backdrop-blur-lg", 3, "ngClass"], [3, "markAsReviewedClick", "viewMode", "reviewStatus", "selfContentStatus", "isMarkingAsReviewed", "isLoading"], [3, "nextStepClick", "stepClick", "viewMode", "currentStepId", "showNextStepAction", "forDemo", "maxAccessibleStepId"], [3, "viewMode", "businessName", "isOnboarded", "analysisDate"], [3, "viewMode", "metricName", "isOnboarded", "analysisDate"], [1, "mb-8"], [1, "rounded-2xl", "border", "shadow-lg", "overflow-hidden", 3, "ngClass"], [3, "startCategoryQuestions", "answerSave", "adminAnswerAction", "viewMode", "totalQuestions", "answeredQuestions", "questions", "profileAnswers", "profileAnswerHistories", "users", "config", "groupConfig", "currentUser"], ["title", "Generating Your Shop Profile", "subtitle", "We're analyzing your data to create shop specific questions and answers. They will appear when ready.", 3, "itemStatus", "viewMode"], [3, "goals", "viewMode"], ["subtitle", "We're analyzing your data to create your personalized analysis. It will appear when ready.", 3, "itemStatus", "viewMode", "title"], [3, "viewMoreClick", "goals", "viewMode"], [3, "viewMode", "selectedCurrency"], [3, "currencySelected", "selectionChanged", "viewMode", "isLoading", "initialCurrency"], [3, "viewMode"], [1, "mb-32"], [3, "periodUnitChanged", "planSelected", "editCurrency", "checkout", "viewMode", "selectedCurrency", "planCardInfos", "isLoading", "selectedPeriodUnit"], [3, "editCurrency", "viewMode", "selectedCurrency"], [3, "sections", "viewMode", "executiveSummary", "metricExecutiveSummary", "metricName", "allGoals", "allMetrics", "allCharts", "allInsights", "businessProfile"], ["type", "button", 1, "cursor-pointer", "w-full", "px-6", "py-5", "flex", "items-center", "justify-between", "gap-4", "text-left", "transition-colors", "duration-200", 3, "click", "ngClass"], [1, "flex", "items-center", "gap-3"], [1, "p-2.5", "rounded-lg", 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 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-3 7h3m-3 4h3m-6-4h.01M9 16h.01"], [1, "text-xl", "font-bold", 3, "ngClass"], [1, "text-sm", "mt-0.5", 3, "ngClass"], ["fill", "none", "stroke", "currentColor", "viewBox", "0 0 24 24", 1, "w-5", "h-5", "flex-shrink-0", "transition-transform", "duration-200", 3, "ngClass"], ["stroke-linecap", "round", "stroke-linejoin", "round", "stroke-width", "2", "d", "M19 9l-7 7-7-7"], [1, "grid", "transition-[grid-template-rows]", "duration-300", "ease-in-out"], [1, "overflow-hidden"], [1, "border-t", 3, "ngClass"], [3, "startCategoryQuestions", "answerSave", "adminAnswerAction", "viewMode", "totalQuestions", "answeredQuestions", "questions", "profileAnswers", "profileAnswerHistories", "users", "config", "groupConfig", "currentUser", "hideHeader"], ["id", "section-executive-summary", 1, "space-y-6", "scroll-mt-24"], [3, "viewMode", "summary", "metricName", "allGoals"], [1, "space-y-8"], [1, "rounded-2xl", "p-8", "shadow-xl", 3, "ngClass"], [1, "space-y-6"], [1, "flex", "items-start", "justify-between", "gap-4"], [1, "flex-1"], [1, "text-2xl", "font-bold", "mb-3", 3, "ngClass"], [1, "text-lg", "leading-relaxed", 3, "ngClass"], [3, "grade", "gradeRationale", "viewMode"], [1, "rounded-xl", "p-6", 3, "ngClass"], [1, "grid", "grid-cols-1", "md:grid-cols-3", "gap-4"], ["type", "button", 1, "p-4", "rounded-xl", "text-left", "transition-all", "duration-200", "hover:scale-[1.02]", "active:scale-[0.98]", "group", "cursor-pointer", 3, "click", "ngClass"], [1, "text-xs", "font-semibold", "uppercase", "mb-1", 3, "ngClass"], [1, "text-3xl", "font-bold", "mb-2", 3, "ngClass"], [1, "flex", "items-center", "gap-1.5", "text-xs", "font-medium"], [3, "ngClass"], ["size", "w-4 h-4", 1, "transition-transform", "group-hover:translate-x-1", 3, "icon", "ngClass"], ["size", "w-4 h-4", 1, "transition-transform", "group-hover:translate-y-1", "animate-bounce", 3, "icon", "ngClass"], ["id", "quick-wins-section", 1, "space-y-4", "scroll-mt-24"], [1, "text-lg", "font-semibold", "mb-3", 3, "ngClass"], [1, "relative"], [1, "mb-6", "lg:float-left", "lg:mr-6", "lg:mb-4", "lg:max-w-[66%]"], [1, "text-sm", "leading-relaxed", "whitespace-pre-line", 3, "ngClass"], [1, "clear-both"], [3, "visual", "viewMode"], [1, "grid", "grid-cols-1", "lg:grid-cols-2", "gap-6"], [1, "rounded-xl", "p-6", "transition-all", "duration-300", 3, "ngClass"], [1, "space-y-4"], [1, "flex", "items-start", "gap-3"], [1, "flex-shrink-0", "w-8", "h-8", "rounded-full", "flex", "items-center", "justify-center", "text-sm", "font-bold", 3, "ngClass"], [1, "font-semibold", "leading-tight", "flex-1", 3, "ngClass"], [1, "flex", "flex-wrap", "gap-2"], [1, "px-3", "py-1", "rounded-full", "text-xs", "font-semibold", 3, "ngClass"], [1, "flex", "items-center", "gap-2", "text-sm", 3, "ngClass"], [1, "space-y-2"], ["fill", "none", "stroke", "currentColor", "viewBox", "0 0 24 24", 1, "w-4", "h-4"], ["stroke-linecap", "round", "stroke-linejoin", "round", "stroke-width", "2", "d", "M12 8v4l3 3m6-3a9 9 0 11-18 0 9 9 0 0118 0z"], [1, "text-xs", "font-semibold", "uppercase", "tracking-wider", 3, "ngClass"], [3, "relatedGoalIds", "allGoals", "viewMode"], [3, "topPrioritiesClick", "priorityDetailClick", "viewMetricDetailsClick", "viewMode", "summary", "metricName", "allGoals"], [3, "viewMode", "sectionIcon"], [1, "rounded-xl", "p-8", "scroll-mt-24", 3, "id", "ngClass"], [1, "flex", "items-start", "gap-3", "mb-6"], [1, "flex-shrink-0", "w-12", "h-12", "rounded-xl", "flex", "items-center", "justify-center", 3, "ngClass"], [1, "text-2xl", "font-bold", 3, "ngClass"], [1, "mb-6", "flex", "flex-col", "lg:flex-row", "gap-6", "items-start", 3, "lg:flex-row-reverse"], [3, "section", "executiveSummary", "viewMode", "sectionIndex", "allGoals", "allMetrics", "allCharts", "allInsights", "businessProfile"], ["size", "w-6 h-6", 3, "icon"], [1, "mb-6", "flex", "flex-col", "lg:flex-row", "gap-6", "items-start"], [1, "w-full", "lg:w-2/3"], [1, "w-full", 3, "lg:w-1/3", "lg:w-full"], [1, "w-full"], [3, "continueClick", "viewMode", "isEnabled", "isLoading"], [3, "continueClick", "viewMode", "totalQuestions", "answeredQuestions", "buttonConfig"], [1, "max-w-7xl", "mx-auto", "px-4", "sm:px-6", "lg:px-8", "py-4"], [1, "flex", "items-center", "gap-4"], [1, "px-6", "py-4", "rounded-xl", "font-semibold", "text-lg", "transition-all", "duration-300", "cursor-pointer", 3, "click", "ngClass"], [1, "flex-1", "px-6", "py-4", "rounded-xl", "font-semibold", "text-lg", "transition-all", "duration-300", "flex", "items-center", "justify-center", "gap-3", "shadow-2xl", 3, "click", "disabled", "ngClass"], ["fill", "none", "stroke", "currentColor", "viewBox", "0 0 24 24", 1, "w-6", "h-6", "transition-transform", "duration-200"], ["stroke-linecap", "round", "stroke-linejoin", "round", "stroke-width", "2", "d", "M13 7l5 5m0 0l-5 5m5-5H6"]], template: function SymphiqProfileShopAnalysisDashboardComponent_Template(rf, ctx) { if (rf & 1) {
94748
94977
  i0.ɵɵelementStart(0, "div", 2);
94749
94978
  i0.ɵɵelement(1, "div", 3)(2, "symphiq-scroll-progress-bar", 4);
94750
94979
  i0.ɵɵelementStart(3, "div", 5)(4, "symphiq-dashboard-header", 6);
@@ -94752,39 +94981,39 @@ class SymphiqProfileShopAnalysisDashboardComponent {
94752
94981
  i0.ɵɵelementEnd();
94753
94982
  i0.ɵɵconditionalCreate(5, SymphiqProfileShopAnalysisDashboardComponent_Conditional_5_Template, 1, 5, "symphiq-journey-progress-indicator", 7);
94754
94983
  i0.ɵɵelementStart(6, "main", 8);
94755
- i0.ɵɵconditionalCreate(7, SymphiqProfileShopAnalysisDashboardComponent_Conditional_7_Template, 4, 3);
94756
- i0.ɵɵconditionalCreate(8, SymphiqProfileShopAnalysisDashboardComponent_Conditional_8_Template, 6, 6);
94757
- i0.ɵɵconditionalCreate(9, SymphiqProfileShopAnalysisDashboardComponent_Conditional_9_Template, 4, 4);
94984
+ i0.ɵɵconditionalCreate(7, SymphiqProfileShopAnalysisDashboardComponent_Conditional_7_Template, 3, 2, "div", 9);
94985
+ i0.ɵɵconditionalCreate(8, SymphiqProfileShopAnalysisDashboardComponent_Conditional_8_Template, 1, 2, "symphiq-loading-card", 10);
94986
+ i0.ɵɵconditionalCreate(9, SymphiqProfileShopAnalysisDashboardComponent_Conditional_9_Template, 6, 6);
94987
+ i0.ɵɵconditionalCreate(10, SymphiqProfileShopAnalysisDashboardComponent_Conditional_10_Template, 4, 4);
94758
94988
  i0.ɵɵelementEnd();
94759
- i0.ɵɵconditionalCreate(10, SymphiqProfileShopAnalysisDashboardComponent_Conditional_10_Template, 1, 4, "symphiq-floating-toc", 9);
94760
- i0.ɵɵconditionalCreate(11, SymphiqProfileShopAnalysisDashboardComponent_Conditional_11_Template, 1, 4, "symphiq-section-navigation", 9);
94761
- i0.ɵɵelementStart(12, "symphiq-search-modal", 10);
94762
- i0.ɵɵlistener("close", function SymphiqProfileShopAnalysisDashboardComponent_Template_symphiq_search_modal_close_12_listener() { return ctx.closeSearch(); });
94989
+ i0.ɵɵconditionalCreate(11, SymphiqProfileShopAnalysisDashboardComponent_Conditional_11_Template, 1, 4, "symphiq-floating-toc", 11);
94990
+ i0.ɵɵconditionalCreate(12, SymphiqProfileShopAnalysisDashboardComponent_Conditional_12_Template, 1, 4, "symphiq-section-navigation", 11);
94991
+ i0.ɵɵelementStart(13, "symphiq-search-modal", 12);
94992
+ i0.ɵɵlistener("close", function SymphiqProfileShopAnalysisDashboardComponent_Template_symphiq_search_modal_close_13_listener() { return ctx.closeSearch(); });
94763
94993
  i0.ɵɵelementEnd();
94764
- i0.ɵɵelementStart(13, "symphiq-view-mode-switcher-modal", 11);
94765
- i0.ɵɵlistener("close", function SymphiqProfileShopAnalysisDashboardComponent_Template_symphiq_view_mode_switcher_modal_close_13_listener() { return ctx.closeViewModeSwitcher(); })("modeSelected", function SymphiqProfileShopAnalysisDashboardComponent_Template_symphiq_view_mode_switcher_modal_modeSelected_13_listener($event) { return ctx.handleDisplayModeChange($event); });
94994
+ i0.ɵɵelementStart(14, "symphiq-view-mode-switcher-modal", 13);
94995
+ i0.ɵɵlistener("close", function SymphiqProfileShopAnalysisDashboardComponent_Template_symphiq_view_mode_switcher_modal_close_14_listener() { return ctx.closeViewModeSwitcher(); })("modeSelected", function SymphiqProfileShopAnalysisDashboardComponent_Template_symphiq_view_mode_switcher_modal_modeSelected_14_listener($event) { return ctx.handleDisplayModeChange($event); });
94766
94996
  i0.ɵɵelementEnd();
94767
- i0.ɵɵelementStart(14, "symphiq-profile-analysis-modal", 12);
94768
- i0.ɵɵconditionalCreate(15, SymphiqProfileShopAnalysisDashboardComponent_Conditional_15_Template, 1, 8, "symphiq-goal-card", 13);
94769
- i0.ɵɵconditionalCreate(16, SymphiqProfileShopAnalysisDashboardComponent_Conditional_16_Template, 1, 2, "symphiq-goal-objectives-modal-content", 14);
94770
- i0.ɵɵconditionalCreate(17, SymphiqProfileShopAnalysisDashboardComponent_Conditional_17_Template, 1, 3, "symphiq-objective-strategies-modal-content", 15);
94771
- i0.ɵɵconditionalCreate(18, SymphiqProfileShopAnalysisDashboardComponent_Conditional_18_Template, 1, 10, "symphiq-strategy-recommendations-modal-content", 16);
94772
- i0.ɵɵconditionalCreate(19, SymphiqProfileShopAnalysisDashboardComponent_Conditional_19_Template, 1, 3, "symphiq-category-detail-modal-content", 17);
94773
- i0.ɵɵconditionalCreate(20, SymphiqProfileShopAnalysisDashboardComponent_Conditional_20_Template, 1, 4, "symphiq-strength-detail-modal-content", 18);
94774
- i0.ɵɵconditionalCreate(21, SymphiqProfileShopAnalysisDashboardComponent_Conditional_21_Template, 1, 5, "symphiq-gap-detail-modal-content", 19);
94775
- i0.ɵɵconditionalCreate(22, SymphiqProfileShopAnalysisDashboardComponent_Conditional_22_Template, 1, 4, "symphiq-opportunity-detail-modal-content", 20);
94997
+ i0.ɵɵelementStart(15, "symphiq-profile-analysis-modal", 14);
94998
+ i0.ɵɵconditionalCreate(16, SymphiqProfileShopAnalysisDashboardComponent_Conditional_16_Template, 1, 8, "symphiq-goal-card", 15);
94999
+ i0.ɵɵconditionalCreate(17, SymphiqProfileShopAnalysisDashboardComponent_Conditional_17_Template, 1, 2, "symphiq-goal-objectives-modal-content", 16);
95000
+ i0.ɵɵconditionalCreate(18, SymphiqProfileShopAnalysisDashboardComponent_Conditional_18_Template, 1, 3, "symphiq-objective-strategies-modal-content", 17);
95001
+ i0.ɵɵconditionalCreate(19, SymphiqProfileShopAnalysisDashboardComponent_Conditional_19_Template, 1, 10, "symphiq-strategy-recommendations-modal-content", 18);
95002
+ i0.ɵɵconditionalCreate(20, SymphiqProfileShopAnalysisDashboardComponent_Conditional_20_Template, 1, 3, "symphiq-category-detail-modal-content", 19);
95003
+ i0.ɵɵconditionalCreate(21, SymphiqProfileShopAnalysisDashboardComponent_Conditional_21_Template, 1, 4, "symphiq-strength-detail-modal-content", 20);
95004
+ i0.ɵɵconditionalCreate(22, SymphiqProfileShopAnalysisDashboardComponent_Conditional_22_Template, 1, 5, "symphiq-gap-detail-modal-content", 21);
95005
+ i0.ɵɵconditionalCreate(23, SymphiqProfileShopAnalysisDashboardComponent_Conditional_23_Template, 1, 4, "symphiq-opportunity-detail-modal-content", 22);
94776
95006
  i0.ɵɵelementEnd();
94777
- i0.ɵɵelement(23, "symphiq-funnel-analysis-modal", 21)(24, "symphiq-business-analysis-modal", 22)(25, "symphiq-tooltip-container");
94778
- i0.ɵɵconditionalCreate(26, SymphiqProfileShopAnalysisDashboardComponent_Conditional_26_Template, 1, 3, "symphiq-sticky-subscription-continue-button", 23);
94779
- i0.ɵɵconditionalCreate(27, SymphiqProfileShopAnalysisDashboardComponent_Conditional_27_Template, 1, 4, "symphiq-profile-sticky-footer", 24);
94780
- i0.ɵɵconditionalCreate(28, SymphiqProfileShopAnalysisDashboardComponent_Conditional_28_Template, 10, 6, "div", 25);
94781
- i0.ɵɵelementStart(29, "symphiq-mark-as-reviewed-footer", 26);
94782
- i0.ɵɵlistener("markAsReviewedClick", function SymphiqProfileShopAnalysisDashboardComponent_Template_symphiq_mark_as_reviewed_footer_markAsReviewedClick_29_listener() { return ctx.handleMarkAsReviewedClick(); });
95007
+ i0.ɵɵelement(24, "symphiq-funnel-analysis-modal", 23)(25, "symphiq-business-analysis-modal", 24)(26, "symphiq-tooltip-container");
95008
+ i0.ɵɵconditionalCreate(27, SymphiqProfileShopAnalysisDashboardComponent_Conditional_27_Template, 1, 3, "symphiq-sticky-subscription-continue-button", 25);
95009
+ i0.ɵɵconditionalCreate(28, SymphiqProfileShopAnalysisDashboardComponent_Conditional_28_Template, 1, 4, "symphiq-profile-sticky-footer", 26);
95010
+ i0.ɵɵconditionalCreate(29, SymphiqProfileShopAnalysisDashboardComponent_Conditional_29_Template, 10, 6, "div", 27);
95011
+ i0.ɵɵelementStart(30, "symphiq-mark-as-reviewed-footer", 28);
95012
+ i0.ɵɵlistener("markAsReviewedClick", function SymphiqProfileShopAnalysisDashboardComponent_Template_symphiq_mark_as_reviewed_footer_markAsReviewedClick_30_listener() { return ctx.handleMarkAsReviewedClick(); });
94783
95013
  i0.ɵɵelementEnd()()();
94784
95014
  } if (rf & 2) {
94785
95015
  let tmp_6_0;
94786
95016
  let tmp_13_0;
94787
- let tmp_34_0;
94788
95017
  let tmp_35_0;
94789
95018
  let tmp_36_0;
94790
95019
  let tmp_37_0;
@@ -94792,8 +95021,9 @@ class SymphiqProfileShopAnalysisDashboardComponent {
94792
95021
  let tmp_39_0;
94793
95022
  let tmp_40_0;
94794
95023
  let tmp_41_0;
94795
- let tmp_52_0;
95024
+ let tmp_42_0;
94796
95025
  let tmp_53_0;
95026
+ let tmp_54_0;
94797
95027
  i0.ɵɵclassProp("min-h-screen", !ctx.embedded());
94798
95028
  i0.ɵɵproperty("ngClass", ctx.getContainerClasses());
94799
95029
  i0.ɵɵadvance();
@@ -94807,49 +95037,51 @@ class SymphiqProfileShopAnalysisDashboardComponent {
94807
95037
  i0.ɵɵadvance();
94808
95038
  i0.ɵɵclassProp("pb-32", ctx.shouldShowStickyButton() || ctx.shouldShowShopProfileStickyFooter() || ctx.shouldShowReviewFooter());
94809
95039
  i0.ɵɵadvance();
94810
- i0.ɵɵconditional(ctx.isSimplifiedView() ? 7 : -1);
95040
+ i0.ɵɵconditional(ctx.isSimplifiedView() && !ctx.isLoading() && (ctx.isSubscriptionActive() || ctx.isMetricAnalysis()) ? 7 : -1);
94811
95041
  i0.ɵɵadvance();
94812
- i0.ɵɵconditional(ctx.isSimplifiedView() ? 8 : -1);
95042
+ i0.ɵɵconditional(ctx.isSimplifiedView() && ctx.isLoading() ? 8 : -1);
94813
95043
  i0.ɵɵadvance();
94814
- i0.ɵɵconditional(!ctx.isSimplifiedView() ? 9 : -1);
95044
+ i0.ɵɵconditional(ctx.isSimplifiedView() ? 9 : -1);
94815
95045
  i0.ɵɵadvance();
94816
- i0.ɵɵconditional(!ctx.isSimplifiedView() && ctx.sections() ? 10 : -1);
95046
+ i0.ɵɵconditional(!ctx.isSimplifiedView() ? 10 : -1);
94817
95047
  i0.ɵɵadvance();
94818
95048
  i0.ɵɵconditional(!ctx.isSimplifiedView() && ctx.sections() ? 11 : -1);
94819
95049
  i0.ɵɵadvance();
95050
+ i0.ɵɵconditional(!ctx.isSimplifiedView() && ctx.sections() ? 12 : -1);
95051
+ i0.ɵɵadvance();
94820
95052
  i0.ɵɵproperty("isOpen", ctx.isSearchOpen())("isLightMode", ctx.isLightMode());
94821
95053
  i0.ɵɵadvance();
94822
95054
  i0.ɵɵproperty("isOpen", ctx.isViewModeSwitcherOpen())("currentMode", ctx.currentDisplayMode())("viewMode", ctx.viewMode());
94823
95055
  i0.ɵɵadvance();
94824
95056
  i0.ɵɵproperty("isLightMode", ctx.isLightMode())("allMetrics", ctx.allMetrics())("allInsights", ctx.allInsights())("allBusinessInsights", ctx.allBusinessInsights())("allCharts", ctx.allCharts());
94825
95057
  i0.ɵɵadvance();
94826
- i0.ɵɵconditional((tmp_34_0 = ctx.modalType() === "goal-detail" && ctx.getGoalDetailData()) ? 15 : -1, tmp_34_0);
95058
+ i0.ɵɵconditional((tmp_35_0 = ctx.modalType() === "goal-detail" && ctx.getGoalDetailData()) ? 16 : -1, tmp_35_0);
94827
95059
  i0.ɵɵadvance();
94828
- i0.ɵɵconditional((tmp_35_0 = ctx.modalType() === "goal-objectives" && ctx.getGoalDetailData()) ? 16 : -1, tmp_35_0);
95060
+ i0.ɵɵconditional((tmp_36_0 = ctx.modalType() === "goal-objectives" && ctx.getGoalDetailData()) ? 17 : -1, tmp_36_0);
94829
95061
  i0.ɵɵadvance();
94830
- i0.ɵɵconditional((tmp_36_0 = ctx.modalType() === "objective-strategies" && ctx.getObjectiveStrategiesData()) ? 17 : -1, tmp_36_0);
95062
+ i0.ɵɵconditional((tmp_37_0 = ctx.modalType() === "objective-strategies" && ctx.getObjectiveStrategiesData()) ? 18 : -1, tmp_37_0);
94831
95063
  i0.ɵɵadvance();
94832
- i0.ɵɵconditional((tmp_37_0 = ctx.modalType() === "strategy-recommendations" && ctx.getStrategyRecommendationsData()) ? 18 : -1, tmp_37_0);
95064
+ i0.ɵɵconditional((tmp_38_0 = ctx.modalType() === "strategy-recommendations" && ctx.getStrategyRecommendationsData()) ? 19 : -1, tmp_38_0);
94833
95065
  i0.ɵɵadvance();
94834
- i0.ɵɵconditional((tmp_38_0 = ctx.modalType() === "category-detail" && ctx.getCategoryDetailData()) ? 19 : -1, tmp_38_0);
95066
+ i0.ɵɵconditional((tmp_39_0 = ctx.modalType() === "category-detail" && ctx.getCategoryDetailData()) ? 20 : -1, tmp_39_0);
94835
95067
  i0.ɵɵadvance();
94836
- i0.ɵɵconditional((tmp_39_0 = ctx.modalType() === "strength-detail" && ctx.getStrengthDetailData()) ? 20 : -1, tmp_39_0);
95068
+ i0.ɵɵconditional((tmp_40_0 = ctx.modalType() === "strength-detail" && ctx.getStrengthDetailData()) ? 21 : -1, tmp_40_0);
94837
95069
  i0.ɵɵadvance();
94838
- i0.ɵɵconditional((tmp_40_0 = ctx.modalType() === "gap-detail" && ctx.getGapDetailData()) ? 21 : -1, tmp_40_0);
95070
+ i0.ɵɵconditional((tmp_41_0 = ctx.modalType() === "gap-detail" && ctx.getGapDetailData()) ? 22 : -1, tmp_41_0);
94839
95071
  i0.ɵɵadvance();
94840
- i0.ɵɵconditional((tmp_41_0 = ctx.modalType() === "opportunity-detail" && ctx.getOpportunityDetailData()) ? 22 : -1, tmp_41_0);
95072
+ i0.ɵɵconditional((tmp_42_0 = ctx.modalType() === "opportunity-detail" && ctx.getOpportunityDetailData()) ? 23 : -1, tmp_42_0);
94841
95073
  i0.ɵɵadvance();
94842
95074
  i0.ɵɵproperty("isLightMode", ctx.isLightMode())("viewMode", ctx.viewMode())("allMetrics", ctx.allMetrics())("allInsights", ctx.allInsights())("allCharts", ctx.allCharts());
94843
95075
  i0.ɵɵadvance();
94844
95076
  i0.ɵɵproperty("isLightMode", ctx.isLightMode());
94845
95077
  i0.ɵɵadvance(2);
94846
- i0.ɵɵconditional(!ctx.isSubscriptionActive() && !ctx.hasBillingCurrency() && ctx.isSimplifiedView() && !ctx.isMetricAnalysis() ? 26 : -1);
95078
+ i0.ɵɵconditional(!ctx.isSubscriptionActive() && !ctx.hasBillingCurrency() && ctx.isSimplifiedView() && !ctx.isMetricAnalysis() ? 27 : -1);
94847
95079
  i0.ɵɵadvance();
94848
- i0.ɵɵconditional(ctx.shouldShowShopProfileStickyFooter() ? 27 : -1);
95080
+ i0.ɵɵconditional(ctx.shouldShowShopProfileStickyFooter() ? 28 : -1);
94849
95081
  i0.ɵɵadvance();
94850
- i0.ɵɵconditional(ctx.isEditingCurrency() ? 28 : -1);
95082
+ i0.ɵɵconditional(ctx.isEditingCurrency() ? 29 : -1);
94851
95083
  i0.ɵɵadvance();
94852
- i0.ɵɵproperty("viewMode", ctx.viewMode())("reviewStatus", (tmp_52_0 = ctx.profileAnalysis()) == null ? null : tmp_52_0.reviewStatus)("selfContentStatus", (tmp_53_0 = ctx.profileAnalysis()) == null ? null : tmp_53_0.selfContentStatus)("isMarkingAsReviewed", ctx.isMarkingAsReviewed())("isLoading", !!ctx.isLoading());
95084
+ i0.ɵɵproperty("viewMode", ctx.viewMode())("reviewStatus", (tmp_53_0 = ctx.profileAnalysis()) == null ? null : tmp_53_0.reviewStatus)("selfContentStatus", (tmp_54_0 = ctx.profileAnalysis()) == null ? null : tmp_54_0.selfContentStatus)("isMarkingAsReviewed", ctx.isMarkingAsReviewed())("isLoading", !!ctx.isLoading());
94853
95085
  } }, dependencies: [CommonModule, i1$1.NgClass, DashboardHeaderComponent, ScrollProgressBarComponent, SearchModalComponent, ViewModeSwitcherModalComponent, JourneyProgressIndicatorComponent, FloatingTocComponent, SectionNavigationComponent, GradeBadgeComponent, ShopWelcomeBannerComponent, MetricWelcomeBannerComponent, MetricExecutiveSummaryComponent, NapkinVisualPlaceholderComponent, TooltipContainerComponent, ProfileSectionContentComponent, ProfileAnalysisModalComponent, ModalComponent, GoalCardComponent, GoalObjectivesModalContentComponent, ObjectiveStrategiesModalContentComponent, StrategyRecommendationsModalContentComponent, CategoryDetailModalContentComponent, StrengthDetailModalContentComponent, GapDetailModalContentComponent, OpportunityDetailModalContentComponent, BusinessAnalysisModalComponent, SectionDividerComponent, SymphiqIconComponent, RelatedGoalChipsComponent, StrategicGoalsTiledGridComponent, CollapsibleAnalysisSectionGroupComponent, BillingCurrencySelectorCardComponent, PlanSelectionPlaceholderCardComponent, PlanSelectionContainerComponent, SubscriptionValuePropositionCardComponent, StickySubscriptionContinueButtonComponent, ContentGenerationProgressComponent, ProfileStatusCardComponent, ProfileStickyFooterComponent, LoadingCardComponent, MarkAsReviewedFooterComponent], encapsulation: 2, changeDetection: 0 }); }
94854
95086
  }
94855
95087
  (() => { (typeof ngDevMode === "undefined" || ngDevMode) && i0.ɵsetClassMetadata(SymphiqProfileShopAnalysisDashboardComponent, [{
@@ -94905,8 +95137,8 @@ class SymphiqProfileShopAnalysisDashboardComponent {
94905
95137
  <main class="relative z-10 max-w-7xl mx-auto px-4 sm:px-6 lg:px-8 py-12 space-y-12"
94906
95138
  [class.pb-32]="shouldShowStickyButton() || shouldShowShopProfileStickyFooter() || shouldShowReviewFooter()">
94907
95139
 
94908
- <!-- Welcome Banner (Simplified View Only) -->
94909
- @if (isSimplifiedView()) {
95140
+ <!-- Welcome Banner (Simplified View Only, not during loading, requires active subscription for shop) -->
95141
+ @if (isSimplifiedView() && !isLoading() && (isSubscriptionActive() || isMetricAnalysis())) {
94910
95142
  <div class="mb-12">
94911
95143
  @if (!isMetricAnalysis()) {
94912
95144
  <symphiq-shop-welcome-banner
@@ -94925,9 +95157,10 @@ class SymphiqProfileShopAnalysisDashboardComponent {
94925
95157
  />
94926
95158
  }
94927
95159
  </div>
95160
+ }
94928
95161
 
94929
- <!-- Loading Card -->
94930
- @if (isLoading()) {
95162
+ <!-- Loading Card -->
95163
+ @if (isSimplifiedView() && isLoading()) {
94931
95164
  <symphiq-loading-card
94932
95165
  [viewMode]="viewMode()"
94933
95166
  title="Loading Your Shop Profile Analysis"
@@ -94935,7 +95168,6 @@ class SymphiqProfileShopAnalysisDashboardComponent {
94935
95168
  size="large"
94936
95169
  [backdropBlur]="true"
94937
95170
  />
94938
- }
94939
95171
  }
94940
95172
 
94941
95173
  <!-- Simplified View Content -->
@@ -96054,31 +96286,19 @@ class ProfileAnalysisStatusSummaryComponent {
96054
96286
  (() => { (typeof ngDevMode === "undefined" || ngDevMode) && i0.ɵsetClassDebugInfo(ProfileAnalysisStatusSummaryComponent, { className: "ProfileAnalysisStatusSummaryComponent", filePath: "lib/components/shared/profile-analysis-status-summary.component.ts", lineNumber: 264 }); })();
96055
96287
 
96056
96288
  function ProfileProgressIndicatorComponent_Conditional_8_Template(rf, ctx) { if (rf & 1) {
96057
- i0.ɵɵdomElementStart(0, "div", 3);
96058
- i0.ɵɵnamespaceSVG();
96059
- i0.ɵɵdomElementStart(1, "svg", 6);
96060
- i0.ɵɵdomElement(2, "path", 7);
96061
- i0.ɵɵdomElementEnd();
96062
- i0.ɵɵtext(3, " Complete ");
96063
- i0.ɵɵdomElementEnd();
96064
- } }
96065
- function ProfileProgressIndicatorComponent_Conditional_9_Template(rf, ctx) { if (rf & 1) {
96066
- i0.ɵɵdomElementStart(0, "div", 4);
96067
- i0.ɵɵnamespaceSVG();
96068
- i0.ɵɵdomElementStart(1, "svg", 6);
96069
- i0.ɵɵdomElement(2, "path", 8);
96070
- i0.ɵɵdomElementEnd();
96071
- i0.ɵɵtext(3, " In Progress ");
96072
- i0.ɵɵdomElementEnd();
96073
- } }
96074
- function ProfileProgressIndicatorComponent_Conditional_10_Template(rf, ctx) { if (rf & 1) {
96075
- i0.ɵɵdomElementStart(0, "div", 5);
96076
- i0.ɵɵnamespaceSVG();
96077
- i0.ɵɵdomElementStart(1, "svg", 6);
96078
- i0.ɵɵdomElement(2, "path", 9);
96079
- i0.ɵɵdomElementEnd();
96080
- i0.ɵɵtext(3, " Not Started ");
96081
- i0.ɵɵdomElementEnd();
96289
+ i0.ɵɵelementStart(0, "div", 5);
96290
+ i0.ɵɵelement(1, "div", 6);
96291
+ i0.ɵɵelementStart(2, "span", 7);
96292
+ i0.ɵɵtext(3);
96293
+ i0.ɵɵelementEnd()();
96294
+ } if (rf & 2) {
96295
+ const ctx_r0 = i0.ɵɵnextContext();
96296
+ i0.ɵɵadvance();
96297
+ i0.ɵɵproperty("ngClass", ctx_r0.statusDotClasses());
96298
+ i0.ɵɵadvance();
96299
+ i0.ɵɵproperty("ngClass", ctx_r0.statusTextClasses());
96300
+ i0.ɵɵadvance();
96301
+ i0.ɵɵtextInterpolate(ctx_r0.statusLabel());
96082
96302
  } }
96083
96303
  class ProfileProgressIndicatorComponent {
96084
96304
  constructor() {
@@ -96089,39 +96309,69 @@ class ProfileProgressIndicatorComponent {
96089
96309
  this.status = input('not-started', ...(ngDevMode ? [{ debugName: "status" }] : []));
96090
96310
  this.label = input('Profile progress', ...(ngDevMode ? [{ debugName: "label" }] : []));
96091
96311
  this.isLightMode = computed(() => this.viewMode() === ViewModeEnum.LIGHT, ...(ngDevMode ? [{ debugName: "isLightMode" }] : []));
96092
- this.labelClasses = computed(() => 'text-slate-600 dark:text-slate-400', ...(ngDevMode ? [{ debugName: "labelClasses" }] : []));
96093
- this.valueClasses = computed(() => 'font-semibold text-slate-900 dark:text-white', ...(ngDevMode ? [{ debugName: "valueClasses" }] : []));
96094
- this.progressBarContainerClasses = computed(() => 'w-full bg-slate-200 dark:bg-slate-700 rounded-full h-2 overflow-hidden', ...(ngDevMode ? [{ debugName: "progressBarContainerClasses" }] : []));
96312
+ this.labelClasses = computed(() => this.isLightMode() ? 'text-slate-600' : 'text-slate-400', ...(ngDevMode ? [{ debugName: "labelClasses" }] : []));
96313
+ this.progressTextClasses = computed(() => this.isLightMode() ? 'text-slate-700' : 'text-slate-300', ...(ngDevMode ? [{ debugName: "progressTextClasses" }] : []));
96314
+ this.progressBarBgClasses = computed(() => this.isLightMode() ? 'bg-slate-200' : 'bg-slate-700', ...(ngDevMode ? [{ debugName: "progressBarBgClasses" }] : []));
96315
+ this.progressBarFillClasses = computed(() => {
96316
+ const s = this.status();
96317
+ if (s === 'complete') {
96318
+ return 'bg-emerald-500';
96319
+ }
96320
+ if (s === 'in-progress') {
96321
+ return 'bg-blue-500';
96322
+ }
96323
+ return this.isLightMode() ? 'bg-slate-400' : 'bg-slate-500';
96324
+ }, ...(ngDevMode ? [{ debugName: "progressBarFillClasses" }] : []));
96325
+ this.statusLabel = computed(() => {
96326
+ const s = this.status();
96327
+ if (s === 'complete')
96328
+ return 'Complete';
96329
+ if (s === 'in-progress')
96330
+ return 'In Progress';
96331
+ if (s === 'not-started')
96332
+ return 'Not Started';
96333
+ return '';
96334
+ }, ...(ngDevMode ? [{ debugName: "statusLabel" }] : []));
96335
+ this.statusDotClasses = computed(() => {
96336
+ const s = this.status();
96337
+ if (s === 'complete')
96338
+ return 'bg-emerald-500';
96339
+ if (s === 'in-progress')
96340
+ return 'bg-blue-500';
96341
+ return this.isLightMode() ? 'bg-slate-400' : 'bg-slate-500';
96342
+ }, ...(ngDevMode ? [{ debugName: "statusDotClasses" }] : []));
96343
+ this.statusTextClasses = computed(() => this.isLightMode() ? 'text-slate-500' : 'text-slate-400', ...(ngDevMode ? [{ debugName: "statusTextClasses" }] : []));
96095
96344
  }
96096
96345
  static { this.ɵfac = function ProfileProgressIndicatorComponent_Factory(__ngFactoryType__) { return new (__ngFactoryType__ || ProfileProgressIndicatorComponent)(); }; }
96097
- static { this.ɵcmp = /*@__PURE__*/ i0.ɵɵdefineComponent({ type: ProfileProgressIndicatorComponent, selectors: [["symphiq-profile-progress-indicator"]], inputs: { viewMode: [1, "viewMode"], questionsAnswered: [1, "questionsAnswered"], totalQuestions: [1, "totalQuestions"], progressPercent: [1, "progressPercent"], status: [1, "status"], label: [1, "label"] }, decls: 11, vars: 12, consts: [[1, "space-y-2"], [1, "flex", "items-center", "justify-between", "text-sm"], [1, "h-full", "bg-gradient-to-r", "from-blue-500", "to-cyan-500", "rounded-full", "transition-all", "duration-500"], [1, "flex", "items-center", "gap-1", "text-xs", "text-green-600", "dark:text-green-400", "font-medium"], [1, "flex", "items-center", "gap-1", "text-xs", "text-blue-600", "dark:text-blue-400", "font-medium"], [1, "flex", "items-center", "gap-1", "text-xs", "text-slate-500", "dark:text-slate-400", "font-medium"], ["fill", "currentColor", "viewBox", "0 0 20 20", 1, "w-4", "h-4"], ["fill-rule", "evenodd", "d", "M10 18a8 8 0 100-16 8 8 0 000 16zm3.707-9.293a1 1 0 00-1.414-1.414L9 10.586 7.707 9.293a1 1 0 00-1.414 1.414l2 2a1 1 0 001.414 0l4-4z", "clip-rule", "evenodd"], ["fill-rule", "evenodd", "d", "M10 18a8 8 0 100-16 8 8 0 000 16zm1-12a1 1 0 10-2 0v4a1 1 0 00.293.707l2.828 2.829a1 1 0 101.415-1.415L11 9.586V6z", "clip-rule", "evenodd"], ["fill-rule", "evenodd", "d", "M10 18a8 8 0 100-16 8 8 0 000 16zM9.555 7.168A1 1 0 008 8v4a1 1 0 001.555.832l3-2a1 1 0 000-1.664l-3-2z", "clip-rule", "evenodd"]], template: function ProfileProgressIndicatorComponent_Template(rf, ctx) { if (rf & 1) {
96098
- i0.ɵɵdomElementStart(0, "div", 0)(1, "div", 1)(2, "span");
96346
+ static { this.ɵcmp = /*@__PURE__*/ i0.ɵɵdefineComponent({ type: ProfileProgressIndicatorComponent, selectors: [["symphiq-profile-progress-indicator"]], inputs: { viewMode: [1, "viewMode"], questionsAnswered: [1, "questionsAnswered"], totalQuestions: [1, "totalQuestions"], progressPercent: [1, "progressPercent"], status: [1, "status"], label: [1, "label"] }, decls: 9, vars: 10, consts: [[1, "space-y-2"], [1, "flex", "items-center", "justify-between"], [1, "text-xs", "font-medium", 3, "ngClass"], [1, "h-1.5", "rounded-full", "overflow-hidden", 3, "ngClass"], [1, "h-full", "rounded-full", "transition-all", "duration-300", 3, "ngClass"], [1, "flex", "items-center", "gap-1.5"], [1, "w-2", "h-2", "rounded-full", 3, "ngClass"], [1, "text-xs", 3, "ngClass"]], template: function ProfileProgressIndicatorComponent_Template(rf, ctx) { if (rf & 1) {
96347
+ i0.ɵɵelementStart(0, "div", 0)(1, "div", 1)(2, "span", 2);
96099
96348
  i0.ɵɵtext(3);
96100
- i0.ɵɵdomElementEnd();
96101
- i0.ɵɵdomElementStart(4, "span");
96349
+ i0.ɵɵelementEnd();
96350
+ i0.ɵɵelementStart(4, "span", 2);
96102
96351
  i0.ɵɵtext(5);
96103
- i0.ɵɵdomElementEnd()();
96104
- i0.ɵɵdomElementStart(6, "div");
96105
- i0.ɵɵdomElement(7, "div", 2);
96106
- i0.ɵɵdomElementEnd();
96107
- i0.ɵɵconditionalCreate(8, ProfileProgressIndicatorComponent_Conditional_8_Template, 4, 0, "div", 3)(9, ProfileProgressIndicatorComponent_Conditional_9_Template, 4, 0, "div", 4)(10, ProfileProgressIndicatorComponent_Conditional_10_Template, 4, 0, "div", 5);
96108
- i0.ɵɵdomElementEnd();
96352
+ i0.ɵɵelementEnd()();
96353
+ i0.ɵɵelementStart(6, "div", 3);
96354
+ i0.ɵɵelement(7, "div", 4);
96355
+ i0.ɵɵelementEnd();
96356
+ i0.ɵɵconditionalCreate(8, ProfileProgressIndicatorComponent_Conditional_8_Template, 4, 3, "div", 5);
96357
+ i0.ɵɵelementEnd();
96109
96358
  } if (rf & 2) {
96110
96359
  i0.ɵɵadvance(2);
96111
- i0.ɵɵclassMap(ctx.labelClasses());
96360
+ i0.ɵɵproperty("ngClass", ctx.labelClasses());
96112
96361
  i0.ɵɵadvance();
96113
96362
  i0.ɵɵtextInterpolate(ctx.label());
96114
96363
  i0.ɵɵadvance();
96115
- i0.ɵɵclassMap(ctx.valueClasses());
96364
+ i0.ɵɵproperty("ngClass", ctx.progressTextClasses());
96116
96365
  i0.ɵɵadvance();
96117
- i0.ɵɵtextInterpolate2("", ctx.questionsAnswered(), " / ", ctx.totalQuestions());
96366
+ i0.ɵɵtextInterpolate2(" ", ctx.questionsAnswered(), "/", ctx.totalQuestions(), " ");
96118
96367
  i0.ɵɵadvance();
96119
- i0.ɵɵclassMap(ctx.progressBarContainerClasses());
96368
+ i0.ɵɵproperty("ngClass", ctx.progressBarBgClasses());
96120
96369
  i0.ɵɵadvance();
96121
96370
  i0.ɵɵstyleProp("width", ctx.progressPercent(), "%");
96371
+ i0.ɵɵproperty("ngClass", ctx.progressBarFillClasses());
96122
96372
  i0.ɵɵadvance();
96123
- i0.ɵɵconditional(ctx.status() === "complete" ? 8 : ctx.status() === "in-progress" ? 9 : 10);
96124
- } }, dependencies: [CommonModule], encapsulation: 2, changeDetection: 0 }); }
96373
+ i0.ɵɵconditional(ctx.statusLabel() ? 8 : -1);
96374
+ } }, dependencies: [CommonModule, i1$1.NgClass], encapsulation: 2, changeDetection: 0 }); }
96125
96375
  }
96126
96376
  (() => { (typeof ngDevMode === "undefined" || ngDevMode) && i0.ɵsetClassMetadata(ProfileProgressIndicatorComponent, [{
96127
96377
  type: Component,
@@ -96132,51 +96382,30 @@ class ProfileProgressIndicatorComponent {
96132
96382
  changeDetection: ChangeDetectionStrategy.OnPush,
96133
96383
  template: `
96134
96384
  <div class="space-y-2">
96135
- <div class="flex items-center justify-between text-sm">
96136
- <span [class]="labelClasses()">{{ label() }}</span>
96137
- <span [class]="valueClasses()">{{ questionsAnswered() }} / {{ totalQuestions() }}</span>
96385
+ <div class="flex items-center justify-between">
96386
+ <span [ngClass]="labelClasses()" class="text-xs font-medium">{{ label() }}</span>
96387
+ <span [ngClass]="progressTextClasses()" class="text-xs font-medium">
96388
+ {{ questionsAnswered() }}/{{ totalQuestions() }}
96389
+ </span>
96138
96390
  </div>
96139
-
96140
- <div [class]="progressBarContainerClasses()">
96391
+ <div [ngClass]="progressBarBgClasses()" class="h-1.5 rounded-full overflow-hidden">
96141
96392
  <div
96142
- class="h-full bg-gradient-to-r from-blue-500 to-cyan-500 rounded-full transition-all duration-500"
96393
+ [ngClass]="progressBarFillClasses()"
96143
96394
  [style.width.%]="progressPercent()"
96144
- ></div>
96145
- </div>
96146
-
96147
- @if (status() === 'complete') {
96148
- <div class="flex items-center gap-1 text-xs text-green-600 dark:text-green-400 font-medium">
96149
- <svg class="w-4 h-4" fill="currentColor" viewBox="0 0 20 20">
96150
- <path fill-rule="evenodd"
96151
- d="M10 18a8 8 0 100-16 8 8 0 000 16zm3.707-9.293a1 1 0 00-1.414-1.414L9 10.586 7.707 9.293a1 1 0 00-1.414 1.414l2 2a1 1 0 001.414 0l4-4z"
96152
- clip-rule="evenodd"/>
96153
- </svg>
96154
- Complete
96155
- </div>
96156
- } @else if (status() === 'in-progress') {
96157
- <div class="flex items-center gap-1 text-xs text-blue-600 dark:text-blue-400 font-medium">
96158
- <svg class="w-4 h-4" fill="currentColor" viewBox="0 0 20 20">
96159
- <path fill-rule="evenodd"
96160
- d="M10 18a8 8 0 100-16 8 8 0 000 16zm1-12a1 1 0 10-2 0v4a1 1 0 00.293.707l2.828 2.829a1 1 0 101.415-1.415L11 9.586V6z"
96161
- clip-rule="evenodd"/>
96162
- </svg>
96163
- In Progress
96395
+ class="h-full rounded-full transition-all duration-300">
96164
96396
  </div>
96165
- } @else {
96166
- <div class="flex items-center gap-1 text-xs text-slate-500 dark:text-slate-400 font-medium">
96167
- <svg class="w-4 h-4" fill="currentColor" viewBox="0 0 20 20">
96168
- <path fill-rule="evenodd"
96169
- d="M10 18a8 8 0 100-16 8 8 0 000 16zM9.555 7.168A1 1 0 008 8v4a1 1 0 001.555.832l3-2a1 1 0 000-1.664l-3-2z"
96170
- clip-rule="evenodd"/>
96171
- </svg>
96172
- Not Started
96397
+ </div>
96398
+ @if (statusLabel()) {
96399
+ <div class="flex items-center gap-1.5">
96400
+ <div [ngClass]="statusDotClasses()" class="w-2 h-2 rounded-full"></div>
96401
+ <span [ngClass]="statusTextClasses()" class="text-xs">{{ statusLabel() }}</span>
96173
96402
  </div>
96174
96403
  }
96175
96404
  </div>
96176
96405
  `
96177
96406
  }]
96178
96407
  }], 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 }] }] }); })();
96179
- (() => { (typeof ngDevMode === "undefined" || ngDevMode) && i0.ɵsetClassDebugInfo(ProfileProgressIndicatorComponent, { className: "ProfileProgressIndicatorComponent", filePath: "lib/components/shared/profile-progress-indicator.component.ts", lineNumber: 62 }); })();
96408
+ (() => { (typeof ngDevMode === "undefined" || ngDevMode) && i0.ɵsetClassDebugInfo(ProfileProgressIndicatorComponent, { className: "ProfileProgressIndicatorComponent", filePath: "lib/components/shared/profile-progress-indicator.component.ts", lineNumber: 36 }); })();
96180
96409
 
96181
96410
  const _forTrack0$7 = ($index, $item) => $item.card.id;
96182
96411
  function ProfileAnalysisCardGridComponent_For_2_Conditional_6_Template(rf, ctx) { if (rf & 1) {