@eric-emg/symphiq-components 1.2.299 → 1.2.300

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.
@@ -45804,6 +45804,140 @@ class ContentGenerationProgressWithConfettiComponent {
45804
45804
  }], () => [], { itemStatus: [{ type: i0.Input, args: [{ isSignal: true, alias: "itemStatus", required: false }] }], title: [{ type: i0.Input, args: [{ isSignal: true, alias: "title", required: false }] }], subtitle: [{ type: i0.Input, args: [{ isSignal: true, alias: "subtitle", required: false }] }], viewMode: [{ type: i0.Input, args: [{ isSignal: true, alias: "viewMode", required: false }] }], showIcon: [{ type: i0.Input, args: [{ isSignal: true, alias: "showIcon", required: false }] }], profile: [{ type: i0.Input, args: [{ isSignal: true, alias: "profile", required: false }] }], funnelAnalysis: [{ type: i0.Input, args: [{ isSignal: true, alias: "funnelAnalysis", required: false }] }], confettiIntensity: [{ type: i0.Input, args: [{ isSignal: true, alias: "confettiIntensity", required: false }] }], enableConfetti: [{ type: i0.Input, args: [{ isSignal: true, alias: "enableConfetti", required: false }] }], confettiDelay: [{ type: i0.Input, args: [{ isSignal: true, alias: "confettiDelay", required: false }] }] }); })();
45805
45805
  (() => { (typeof ngDevMode === "undefined" || ngDevMode) && i0.ɵsetClassDebugInfo(ContentGenerationProgressWithConfettiComponent, { className: "ContentGenerationProgressWithConfettiComponent", filePath: "lib/components/shared/content-generation-progress-with-confetti.component.ts", lineNumber: 29 }); })();
45806
45806
 
45807
+ function IndeterminateSpinnerComponent_For_5_Template(rf, ctx) { if (rf & 1) {
45808
+ i0.ɵɵelement(0, "div", 5);
45809
+ } if (rf & 2) {
45810
+ const dot_r1 = ctx.$implicit;
45811
+ const ctx_r1 = i0.ɵɵnextContext();
45812
+ i0.ɵɵstyleProp("animation-delay", dot_r1.delay)("left", dot_r1.x, "px")("top", dot_r1.y, "px");
45813
+ i0.ɵɵproperty("ngClass", ctx_r1.dotClasses());
45814
+ } }
45815
+ class IndeterminateSpinnerComponent {
45816
+ constructor() {
45817
+ this.viewMode = input(ViewModeEnum.LIGHT, ...(ngDevMode ? [{ debugName: "viewMode" }] : []));
45818
+ this.size = input('medium', ...(ngDevMode ? [{ debugName: "size" }] : []));
45819
+ this.color = input(...(ngDevMode ? [undefined, { debugName: "color" }] : []));
45820
+ this.svgSize = computed(() => {
45821
+ switch (this.size()) {
45822
+ case 'small': return 40;
45823
+ case 'large': return 80;
45824
+ default: return 60;
45825
+ }
45826
+ }, ...(ngDevMode ? [{ debugName: "svgSize" }] : []));
45827
+ this.circleRadius = computed(() => {
45828
+ switch (this.size()) {
45829
+ case 'small': return 16;
45830
+ case 'large': return 36;
45831
+ default: return 26;
45832
+ }
45833
+ }, ...(ngDevMode ? [{ debugName: "circleRadius" }] : []));
45834
+ this.svgCircleRadius = computed(() => {
45835
+ return this.circleRadius() * 100 / this.svgSize();
45836
+ }, ...(ngDevMode ? [{ debugName: "svgCircleRadius" }] : []));
45837
+ this.strokeWidth = computed(() => {
45838
+ switch (this.size()) {
45839
+ case 'small': return 2;
45840
+ case 'large': return 3;
45841
+ default: return 2.5;
45842
+ }
45843
+ }, ...(ngDevMode ? [{ debugName: "strokeWidth" }] : []));
45844
+ this.dotSize = computed(() => {
45845
+ switch (this.size()) {
45846
+ case 'small': return 5;
45847
+ case 'large': return 10;
45848
+ default: return 7;
45849
+ }
45850
+ }, ...(ngDevMode ? [{ debugName: "dotSize" }] : []));
45851
+ this.containerClasses = computed(() => ({
45852
+ 'w-10 h-10': this.size() === 'small',
45853
+ 'w-16 h-16': this.size() === 'medium',
45854
+ 'w-20 h-20': this.size() === 'large'
45855
+ }), ...(ngDevMode ? [{ debugName: "containerClasses" }] : []));
45856
+ this.trackClasses = computed(() => {
45857
+ const isDark = this.viewMode() === ViewModeEnum.DARK;
45858
+ return {
45859
+ 'stroke-slate-200 dark:stroke-slate-700': !this.color(),
45860
+ 'opacity-30': true
45861
+ };
45862
+ }, ...(ngDevMode ? [{ debugName: "trackClasses" }] : []));
45863
+ this.dotClasses = computed(() => {
45864
+ const isDark = this.viewMode() === ViewModeEnum.DARK;
45865
+ const sizeClass = `spinner-dot-${this.size()}`;
45866
+ if (this.color()) {
45867
+ return [sizeClass];
45868
+ }
45869
+ return [
45870
+ sizeClass,
45871
+ isDark ? 'bg-blue-400 text-blue-400' : 'bg-blue-600 text-blue-600'
45872
+ ];
45873
+ }, ...(ngDevMode ? [{ debugName: "dotClasses" }] : []));
45874
+ this.dots = computed(() => {
45875
+ const radius = this.circleRadius();
45876
+ const center = this.svgSize() / 2;
45877
+ const numberOfDots = 8;
45878
+ const dots = [];
45879
+ for (let i = 0; i < numberOfDots; i++) {
45880
+ const angle = (i / numberOfDots) * 2 * Math.PI - Math.PI / 2;
45881
+ const x = center + radius * Math.cos(angle);
45882
+ const y = center + radius * Math.sin(angle);
45883
+ const delay = `${(i / numberOfDots) * 2}s`;
45884
+ dots.push({ x, y, delay });
45885
+ }
45886
+ return dots;
45887
+ }, ...(ngDevMode ? [{ debugName: "dots" }] : []));
45888
+ }
45889
+ static { this.ɵfac = function IndeterminateSpinnerComponent_Factory(__ngFactoryType__) { return new (__ngFactoryType__ || IndeterminateSpinnerComponent)(); }; }
45890
+ static { this.ɵcmp = /*@__PURE__*/ i0.ɵɵdefineComponent({ type: IndeterminateSpinnerComponent, selectors: [["symphiq-indeterminate-spinner"]], inputs: { viewMode: [1, "viewMode"], size: [1, "size"], color: [1, "color"] }, decls: 6, vars: 6, consts: [[1, "flex", "items-center", "justify-center"], [1, "relative", 3, "ngClass"], ["viewBox", "0 0 100 100", 1, "spinner-rotate"], ["cx", "50", "cy", "50", "fill", "none", 3, "ngClass"], [1, "spinner-dot", 3, "ngClass", "animation-delay", "left", "top"], [1, "spinner-dot", 3, "ngClass"]], template: function IndeterminateSpinnerComponent_Template(rf, ctx) { if (rf & 1) {
45891
+ i0.ɵɵelementStart(0, "div", 0)(1, "div", 1);
45892
+ i0.ɵɵnamespaceSVG();
45893
+ i0.ɵɵelementStart(2, "svg", 2);
45894
+ i0.ɵɵelement(3, "circle", 3);
45895
+ i0.ɵɵelementEnd();
45896
+ i0.ɵɵrepeaterCreate(4, IndeterminateSpinnerComponent_For_5_Template, 1, 7, "div", 4, i0.ɵɵrepeaterTrackByIndex);
45897
+ i0.ɵɵelementEnd()();
45898
+ } if (rf & 2) {
45899
+ i0.ɵɵadvance();
45900
+ i0.ɵɵproperty("ngClass", ctx.containerClasses());
45901
+ i0.ɵɵadvance();
45902
+ i0.ɵɵattribute("width", ctx.svgSize())("height", ctx.svgSize());
45903
+ i0.ɵɵadvance();
45904
+ i0.ɵɵproperty("ngClass", ctx.trackClasses());
45905
+ i0.ɵɵattribute("r", ctx.svgCircleRadius())("stroke-width", ctx.strokeWidth());
45906
+ i0.ɵɵadvance();
45907
+ i0.ɵɵrepeater(ctx.dots());
45908
+ } }, dependencies: [CommonModule, i1$1.NgClass], styles: ["@keyframes _ngcontent-%COMP%_spinner-rotate{0%{transform:rotate(0)}to{transform:rotate(360deg)}}@keyframes _ngcontent-%COMP%_dot-pulse{0%,to{transform:translate(-50%,-50%) scale(1);opacity:.3;filter:brightness(1)}50%{transform:translate(-50%,-50%) scale(1.2);opacity:1;filter:brightness(1.5)}}.spinner-rotate[_ngcontent-%COMP%]{animation:_ngcontent-%COMP%_spinner-rotate 3s linear infinite}.spinner-dot[_ngcontent-%COMP%]{position:absolute;border-radius:50%;animation:_ngcontent-%COMP%_dot-pulse 2s ease-in-out infinite;will-change:transform,opacity,filter;left:50%;top:50%;pointer-events:none}.spinner-dot-small[_ngcontent-%COMP%]{width:5px;height:5px;box-shadow:0 0 4px currentColor,0 0 8px currentColor}.spinner-dot-medium[_ngcontent-%COMP%]{width:7px;height:7px;box-shadow:0 0 5px currentColor,0 0 10px currentColor}.spinner-dot-large[_ngcontent-%COMP%]{width:10px;height:10px;box-shadow:0 0 6px currentColor,0 0 12px currentColor}"], changeDetection: 0 }); }
45909
+ }
45910
+ (() => { (typeof ngDevMode === "undefined" || ngDevMode) && i0.ɵsetClassMetadata(IndeterminateSpinnerComponent, [{
45911
+ type: Component,
45912
+ args: [{ selector: 'symphiq-indeterminate-spinner', standalone: true, imports: [CommonModule], changeDetection: ChangeDetectionStrategy.OnPush, template: `
45913
+ <div class="flex items-center justify-center">
45914
+ <div [ngClass]="containerClasses()" class="relative">
45915
+ <svg [attr.width]="svgSize()" [attr.height]="svgSize()" viewBox="0 0 100 100" class="spinner-rotate">
45916
+ <circle
45917
+ cx="50"
45918
+ cy="50"
45919
+ [attr.r]="svgCircleRadius()"
45920
+ fill="none"
45921
+ [ngClass]="trackClasses()"
45922
+ [attr.stroke-width]="strokeWidth()"
45923
+ />
45924
+ </svg>
45925
+
45926
+ @for (dot of dots(); track $index) {
45927
+ <div
45928
+ class="spinner-dot"
45929
+ [ngClass]="dotClasses()"
45930
+ [style.animation-delay]="dot.delay"
45931
+ [style.left.px]="dot.x"
45932
+ [style.top.px]="dot.y">
45933
+ </div>
45934
+ }
45935
+ </div>
45936
+ </div>
45937
+ `, styles: ["@keyframes spinner-rotate{0%{transform:rotate(0)}to{transform:rotate(360deg)}}@keyframes dot-pulse{0%,to{transform:translate(-50%,-50%) scale(1);opacity:.3;filter:brightness(1)}50%{transform:translate(-50%,-50%) scale(1.2);opacity:1;filter:brightness(1.5)}}.spinner-rotate{animation:spinner-rotate 3s linear infinite}.spinner-dot{position:absolute;border-radius:50%;animation:dot-pulse 2s ease-in-out infinite;will-change:transform,opacity,filter;left:50%;top:50%;pointer-events:none}.spinner-dot-small{width:5px;height:5px;box-shadow:0 0 4px currentColor,0 0 8px currentColor}.spinner-dot-medium{width:7px;height:7px;box-shadow:0 0 5px currentColor,0 0 10px currentColor}.spinner-dot-large{width:10px;height:10px;box-shadow:0 0 6px currentColor,0 0 12px currentColor}\n"] }]
45938
+ }], null, { viewMode: [{ type: i0.Input, args: [{ isSignal: true, alias: "viewMode", required: false }] }], size: [{ type: i0.Input, args: [{ isSignal: true, alias: "size", required: false }] }], color: [{ type: i0.Input, args: [{ isSignal: true, alias: "color", required: false }] }] }); })();
45939
+ (() => { (typeof ngDevMode === "undefined" || ngDevMode) && i0.ɵsetClassDebugInfo(IndeterminateSpinnerComponent, { className: "IndeterminateSpinnerComponent", filePath: "lib/components/shared/indeterminate-spinner.component.ts", lineNumber: 94 }); })();
45940
+
45807
45941
  const _c0$w = ["dashboardContainer"];
45808
45942
  const _c1$d = () => ({});
45809
45943
  const _c2$8 = () => [1, 2, 3, 4, 5, 6];
@@ -45816,11 +45950,11 @@ function SymphiqFunnelAnalysisDashboardComponent_Conditional_13_Template(rf, ctx
45816
45950
  } }
45817
45951
  function SymphiqFunnelAnalysisDashboardComponent_Conditional_18_Template(rf, ctx) { if (rf & 1) {
45818
45952
  const _r2 = i0.ɵɵgetCurrentView();
45819
- i0.ɵɵelementStart(0, "button", 44);
45953
+ i0.ɵɵelementStart(0, "button", 45);
45820
45954
  i0.ɵɵlistener("click", function SymphiqFunnelAnalysisDashboardComponent_Conditional_18_Template_button_click_0_listener($event) { i0.ɵɵrestoreView(_r2); const ctx_r2 = i0.ɵɵnextContext(); ctx_r2.searchService.openSearch(); return i0.ɵɵresetView($event.preventDefault()); });
45821
45955
  i0.ɵɵnamespaceSVG();
45822
45956
  i0.ɵɵelementStart(1, "svg", 17);
45823
- i0.ɵɵelement(2, "path", 45);
45957
+ i0.ɵɵelement(2, "path", 46);
45824
45958
  i0.ɵɵelementEnd();
45825
45959
  i0.ɵɵnamespaceHTML();
45826
45960
  i0.ɵɵelementStart(3, "span");
@@ -45831,7 +45965,7 @@ function SymphiqFunnelAnalysisDashboardComponent_Conditional_18_Template(rf, ctx
45831
45965
  i0.ɵɵclassMap(ctx_r2.buttonClass());
45832
45966
  } }
45833
45967
  function SymphiqFunnelAnalysisDashboardComponent_Conditional_25_For_6_Template(rf, ctx) { if (rf & 1) {
45834
- i0.ɵɵelementStart(0, "option", 49);
45968
+ i0.ɵɵelementStart(0, "option", 50);
45835
45969
  i0.ɵɵtext(1);
45836
45970
  i0.ɵɵelementEnd();
45837
45971
  } if (rf & 2) {
@@ -45842,14 +45976,14 @@ function SymphiqFunnelAnalysisDashboardComponent_Conditional_25_For_6_Template(r
45842
45976
  } }
45843
45977
  function SymphiqFunnelAnalysisDashboardComponent_Conditional_25_Template(rf, ctx) { if (rf & 1) {
45844
45978
  const _r4 = i0.ɵɵgetCurrentView();
45845
- i0.ɵɵelementStart(0, "div", 20)(1, "label", 46);
45979
+ i0.ɵɵelementStart(0, "div", 20)(1, "label", 47);
45846
45980
  i0.ɵɵtext(2, "View:");
45847
45981
  i0.ɵɵelementEnd();
45848
- i0.ɵɵelementStart(3, "div", 47);
45982
+ i0.ɵɵelementStart(3, "div", 48);
45849
45983
  i0.ɵɵlistener("click", function SymphiqFunnelAnalysisDashboardComponent_Conditional_25_Template_div_click_3_listener($event) { i0.ɵɵrestoreView(_r4); return i0.ɵɵresetView($event.stopPropagation()); })("mousedown", function SymphiqFunnelAnalysisDashboardComponent_Conditional_25_Template_div_mousedown_3_listener($event) { i0.ɵɵrestoreView(_r4); return i0.ɵɵresetView($event.stopPropagation()); })("pointerdown", function SymphiqFunnelAnalysisDashboardComponent_Conditional_25_Template_div_pointerdown_3_listener($event) { i0.ɵɵrestoreView(_r4); return i0.ɵɵresetView($event.stopPropagation()); });
45850
- i0.ɵɵelementStart(4, "select", 48);
45984
+ i0.ɵɵelementStart(4, "select", 49);
45851
45985
  i0.ɵɵlistener("ngModelChange", function SymphiqFunnelAnalysisDashboardComponent_Conditional_25_Template_select_ngModelChange_4_listener($event) { i0.ɵɵrestoreView(_r4); const ctx_r2 = i0.ɵɵnextContext(); return i0.ɵɵresetView(ctx_r2.changeSectionFilter($event)); });
45852
- i0.ɵɵrepeaterCreate(5, SymphiqFunnelAnalysisDashboardComponent_Conditional_25_For_6_Template, 2, 2, "option", 49, _forTrack0$p);
45986
+ i0.ɵɵrepeaterCreate(5, SymphiqFunnelAnalysisDashboardComponent_Conditional_25_For_6_Template, 2, 2, "option", 50, _forTrack0$p);
45853
45987
  i0.ɵɵelementEnd()()();
45854
45988
  } if (rf & 2) {
45855
45989
  const ctx_r2 = i0.ɵɵnextContext();
@@ -45878,13 +46012,13 @@ function SymphiqFunnelAnalysisDashboardComponent_Conditional_27_Template(rf, ctx
45878
46012
  i0.ɵɵtextInterpolate(ctx_r2.formattedGeneratedDate());
45879
46013
  } }
45880
46014
  function SymphiqFunnelAnalysisDashboardComponent_Conditional_39_Template(rf, ctx) { if (rf & 1) {
45881
- i0.ɵɵelementStart(0, "div", 29)(1, "span", 50);
46015
+ i0.ɵɵelementStart(0, "div", 29)(1, "span", 51);
45882
46016
  i0.ɵɵtext(2, "Revenue:");
45883
46017
  i0.ɵɵelementEnd();
45884
- i0.ɵɵelementStart(3, "span", 51);
46018
+ i0.ɵɵelementStart(3, "span", 52);
45885
46019
  i0.ɵɵtext(4);
45886
46020
  i0.ɵɵelementEnd();
45887
- i0.ɵɵelementStart(5, "span", 52);
46021
+ i0.ɵɵelementStart(5, "span", 53);
45888
46022
  i0.ɵɵtext(6);
45889
46023
  i0.ɵɵelementEnd()();
45890
46024
  } if (rf & 2) {
@@ -45903,18 +46037,18 @@ function SymphiqFunnelAnalysisDashboardComponent_Conditional_39_Template(rf, ctx
45903
46037
  } }
45904
46038
  function SymphiqFunnelAnalysisDashboardComponent_Conditional_41_Template(rf, ctx) { if (rf & 1) {
45905
46039
  const _r6 = i0.ɵɵgetCurrentView();
45906
- i0.ɵɵelementStart(0, "button", 53);
46040
+ i0.ɵɵelementStart(0, "button", 54);
45907
46041
  i0.ɵɵlistener("click", function SymphiqFunnelAnalysisDashboardComponent_Conditional_41_Template_button_click_0_listener($event) { i0.ɵɵrestoreView(_r6); const ctx_r2 = i0.ɵɵnextContext(); ctx_r2.searchService.openSearch(); return i0.ɵɵresetView($event.preventDefault()); });
45908
46042
  i0.ɵɵnamespaceSVG();
45909
46043
  i0.ɵɵelementStart(1, "svg", 32);
45910
- i0.ɵɵelement(2, "path", 45);
46044
+ i0.ɵɵelement(2, "path", 46);
45911
46045
  i0.ɵɵelementEnd()();
45912
46046
  } if (rf & 2) {
45913
46047
  const ctx_r2 = i0.ɵɵnextContext();
45914
46048
  i0.ɵɵclassMap(ctx_r2.buttonClass());
45915
46049
  } }
45916
46050
  function SymphiqFunnelAnalysisDashboardComponent_Conditional_46_For_3_Template(rf, ctx) { if (rf & 1) {
45917
- i0.ɵɵelementStart(0, "option", 49);
46051
+ i0.ɵɵelementStart(0, "option", 50);
45918
46052
  i0.ɵɵtext(1);
45919
46053
  i0.ɵɵelementEnd();
45920
46054
  } if (rf & 2) {
@@ -45925,11 +46059,11 @@ function SymphiqFunnelAnalysisDashboardComponent_Conditional_46_For_3_Template(r
45925
46059
  } }
45926
46060
  function SymphiqFunnelAnalysisDashboardComponent_Conditional_46_Template(rf, ctx) { if (rf & 1) {
45927
46061
  const _r7 = i0.ɵɵgetCurrentView();
45928
- i0.ɵɵelementStart(0, "div", 47);
46062
+ i0.ɵɵelementStart(0, "div", 48);
45929
46063
  i0.ɵɵlistener("click", function SymphiqFunnelAnalysisDashboardComponent_Conditional_46_Template_div_click_0_listener($event) { i0.ɵɵrestoreView(_r7); return i0.ɵɵresetView($event.stopPropagation()); })("mousedown", function SymphiqFunnelAnalysisDashboardComponent_Conditional_46_Template_div_mousedown_0_listener($event) { i0.ɵɵrestoreView(_r7); return i0.ɵɵresetView($event.stopPropagation()); })("pointerdown", function SymphiqFunnelAnalysisDashboardComponent_Conditional_46_Template_div_pointerdown_0_listener($event) { i0.ɵɵrestoreView(_r7); return i0.ɵɵresetView($event.stopPropagation()); });
45930
- i0.ɵɵelementStart(1, "select", 54);
46064
+ i0.ɵɵelementStart(1, "select", 55);
45931
46065
  i0.ɵɵlistener("ngModelChange", function SymphiqFunnelAnalysisDashboardComponent_Conditional_46_Template_select_ngModelChange_1_listener($event) { i0.ɵɵrestoreView(_r7); const ctx_r2 = i0.ɵɵnextContext(); return i0.ɵɵresetView(ctx_r2.changeSectionFilter($event)); });
45932
- i0.ɵɵrepeaterCreate(2, SymphiqFunnelAnalysisDashboardComponent_Conditional_46_For_3_Template, 2, 2, "option", 49, _forTrack0$p);
46066
+ i0.ɵɵrepeaterCreate(2, SymphiqFunnelAnalysisDashboardComponent_Conditional_46_For_3_Template, 2, 2, "option", 50, _forTrack0$p);
45933
46067
  i0.ɵɵelementEnd()();
45934
46068
  } if (rf & 2) {
45935
46069
  const ctx_r2 = i0.ɵɵnextContext();
@@ -45941,26 +46075,26 @@ function SymphiqFunnelAnalysisDashboardComponent_Conditional_46_Template(rf, ctx
45941
46075
  } }
45942
46076
  function SymphiqFunnelAnalysisDashboardComponent_Conditional_47_Template(rf, ctx) { if (rf & 1) {
45943
46077
  const _r9 = i0.ɵɵgetCurrentView();
45944
- i0.ɵɵelementStart(0, "div", 33)(1, "div", 25)(2, "div", 26)(3, "div", 55);
46078
+ i0.ɵɵelementStart(0, "div", 33)(1, "div", 25)(2, "div", 26)(3, "div", 56);
45945
46079
  i0.ɵɵnamespaceSVG();
45946
- i0.ɵɵelementStart(4, "svg", 56);
45947
- i0.ɵɵelement(5, "path", 45);
46080
+ i0.ɵɵelementStart(4, "svg", 57);
46081
+ i0.ɵɵelement(5, "path", 46);
45948
46082
  i0.ɵɵelementEnd();
45949
46083
  i0.ɵɵnamespaceHTML();
45950
- i0.ɵɵelementStart(6, "div", 57)(7, "span", 58);
46084
+ i0.ɵɵelementStart(6, "div", 58)(7, "span", 59);
45951
46085
  i0.ɵɵtext(8, "Showing:");
45952
46086
  i0.ɵɵelementEnd();
45953
- i0.ɵɵelementStart(9, "span", 59);
46087
+ i0.ɵɵelementStart(9, "span", 60);
45954
46088
  i0.ɵɵtext(10);
45955
46089
  i0.ɵɵelementEnd();
45956
- i0.ɵɵelementStart(11, "span", 60);
46090
+ i0.ɵɵelementStart(11, "span", 61);
45957
46091
  i0.ɵɵtext(12);
45958
46092
  i0.ɵɵelementEnd()()();
45959
- i0.ɵɵelementStart(13, "button", 61);
46093
+ i0.ɵɵelementStart(13, "button", 62);
45960
46094
  i0.ɵɵlistener("click", function SymphiqFunnelAnalysisDashboardComponent_Conditional_47_Template_button_click_13_listener($event) { i0.ɵɵrestoreView(_r9); const ctx_r2 = i0.ɵɵnextContext(); ctx_r2.clearSearchResult(); return i0.ɵɵresetView($event.stopPropagation()); });
45961
46095
  i0.ɵɵnamespaceSVG();
45962
46096
  i0.ɵɵelementStart(14, "svg", 32);
45963
- i0.ɵɵelement(15, "path", 62);
46097
+ i0.ɵɵelement(15, "path", 63);
45964
46098
  i0.ɵɵelementEnd()()()()();
45965
46099
  } if (rf & 2) {
45966
46100
  const ctx_r2 = i0.ɵɵnextContext();
@@ -45988,7 +46122,7 @@ function SymphiqFunnelAnalysisDashboardComponent_Conditional_48_Template(rf, ctx
45988
46122
  } }
45989
46123
  function SymphiqFunnelAnalysisDashboardComponent_Conditional_49_Conditional_1_Template(rf, ctx) { if (rf & 1) {
45990
46124
  const _r10 = i0.ɵɵgetCurrentView();
45991
- i0.ɵɵelementStart(0, "button", 64);
46125
+ i0.ɵɵelementStart(0, "button", 65);
45992
46126
  i0.ɵɵlistener("click", function SymphiqFunnelAnalysisDashboardComponent_Conditional_49_Conditional_1_Template_button_click_0_listener() { i0.ɵɵrestoreView(_r10); const ctx_r2 = i0.ɵɵnextContext(2); return i0.ɵɵresetView(ctx_r2.scrollToTop()); });
45993
46127
  i0.ɵɵelementEnd();
45994
46128
  } if (rf & 2) {
@@ -45997,7 +46131,7 @@ function SymphiqFunnelAnalysisDashboardComponent_Conditional_49_Conditional_1_Te
45997
46131
  } }
45998
46132
  function SymphiqFunnelAnalysisDashboardComponent_Conditional_49_Conditional_2_Template(rf, ctx) { if (rf & 1) {
45999
46133
  const _r11 = i0.ɵɵgetCurrentView();
46000
- i0.ɵɵelementStart(0, "button", 64);
46134
+ i0.ɵɵelementStart(0, "button", 65);
46001
46135
  i0.ɵɵlistener("click", function SymphiqFunnelAnalysisDashboardComponent_Conditional_49_Conditional_2_Template_button_click_0_listener() { i0.ɵɵrestoreView(_r11); const ctx_r2 = i0.ɵɵnextContext(2); return i0.ɵɵresetView(ctx_r2.scrollToSection("section-insights")); });
46002
46136
  i0.ɵɵelementEnd();
46003
46137
  } if (rf & 2) {
@@ -46006,7 +46140,7 @@ function SymphiqFunnelAnalysisDashboardComponent_Conditional_49_Conditional_2_Te
46006
46140
  } }
46007
46141
  function SymphiqFunnelAnalysisDashboardComponent_Conditional_49_Conditional_3_Template(rf, ctx) { if (rf & 1) {
46008
46142
  const _r12 = i0.ɵɵgetCurrentView();
46009
- i0.ɵɵelementStart(0, "button", 64);
46143
+ i0.ɵɵelementStart(0, "button", 65);
46010
46144
  i0.ɵɵlistener("click", function SymphiqFunnelAnalysisDashboardComponent_Conditional_49_Conditional_3_Template_button_click_0_listener() { i0.ɵɵrestoreView(_r12); const ctx_r2 = i0.ɵɵnextContext(2); return i0.ɵɵresetView(ctx_r2.scrollToSection("section-metrics")); });
46011
46145
  i0.ɵɵelementEnd();
46012
46146
  } if (rf & 2) {
@@ -46015,7 +46149,7 @@ function SymphiqFunnelAnalysisDashboardComponent_Conditional_49_Conditional_3_Te
46015
46149
  } }
46016
46150
  function SymphiqFunnelAnalysisDashboardComponent_Conditional_49_Conditional_4_Template(rf, ctx) { if (rf & 1) {
46017
46151
  const _r13 = i0.ɵɵgetCurrentView();
46018
- i0.ɵɵelementStart(0, "button", 64);
46152
+ i0.ɵɵelementStart(0, "button", 65);
46019
46153
  i0.ɵɵlistener("click", function SymphiqFunnelAnalysisDashboardComponent_Conditional_49_Conditional_4_Template_button_click_0_listener() { i0.ɵɵrestoreView(_r13); const ctx_r2 = i0.ɵɵnextContext(2); return i0.ɵɵresetView(ctx_r2.scrollToSection("section-breakdowns")); });
46020
46154
  i0.ɵɵelementEnd();
46021
46155
  } if (rf & 2) {
@@ -46024,7 +46158,7 @@ function SymphiqFunnelAnalysisDashboardComponent_Conditional_49_Conditional_4_Te
46024
46158
  } }
46025
46159
  function SymphiqFunnelAnalysisDashboardComponent_Conditional_49_Conditional_5_Template(rf, ctx) { if (rf & 1) {
46026
46160
  const _r14 = i0.ɵɵgetCurrentView();
46027
- i0.ɵɵelementStart(0, "button", 64);
46161
+ i0.ɵɵelementStart(0, "button", 65);
46028
46162
  i0.ɵɵlistener("click", function SymphiqFunnelAnalysisDashboardComponent_Conditional_49_Conditional_5_Template_button_click_0_listener() { i0.ɵɵrestoreView(_r14); const ctx_r2 = i0.ɵɵnextContext(2); return i0.ɵɵresetView(ctx_r2.scrollToSection("section-competitive")); });
46029
46163
  i0.ɵɵelementEnd();
46030
46164
  } if (rf & 2) {
@@ -46033,11 +46167,11 @@ function SymphiqFunnelAnalysisDashboardComponent_Conditional_49_Conditional_5_Te
46033
46167
  } }
46034
46168
  function SymphiqFunnelAnalysisDashboardComponent_Conditional_49_Template(rf, ctx) { if (rf & 1) {
46035
46169
  i0.ɵɵelementStart(0, "div", 35);
46036
- i0.ɵɵconditionalCreate(1, SymphiqFunnelAnalysisDashboardComponent_Conditional_49_Conditional_1_Template, 1, 3, "button", 63);
46037
- i0.ɵɵconditionalCreate(2, SymphiqFunnelAnalysisDashboardComponent_Conditional_49_Conditional_2_Template, 1, 3, "button", 63);
46038
- i0.ɵɵconditionalCreate(3, SymphiqFunnelAnalysisDashboardComponent_Conditional_49_Conditional_3_Template, 1, 3, "button", 63);
46039
- i0.ɵɵconditionalCreate(4, SymphiqFunnelAnalysisDashboardComponent_Conditional_49_Conditional_4_Template, 1, 3, "button", 63);
46040
- i0.ɵɵconditionalCreate(5, SymphiqFunnelAnalysisDashboardComponent_Conditional_49_Conditional_5_Template, 1, 3, "button", 63);
46170
+ i0.ɵɵconditionalCreate(1, SymphiqFunnelAnalysisDashboardComponent_Conditional_49_Conditional_1_Template, 1, 3, "button", 64);
46171
+ i0.ɵɵconditionalCreate(2, SymphiqFunnelAnalysisDashboardComponent_Conditional_49_Conditional_2_Template, 1, 3, "button", 64);
46172
+ i0.ɵɵconditionalCreate(3, SymphiqFunnelAnalysisDashboardComponent_Conditional_49_Conditional_3_Template, 1, 3, "button", 64);
46173
+ i0.ɵɵconditionalCreate(4, SymphiqFunnelAnalysisDashboardComponent_Conditional_49_Conditional_4_Template, 1, 3, "button", 64);
46174
+ i0.ɵɵconditionalCreate(5, SymphiqFunnelAnalysisDashboardComponent_Conditional_49_Conditional_5_Template, 1, 3, "button", 64);
46041
46175
  i0.ɵɵelementEnd();
46042
46176
  } if (rf & 2) {
46043
46177
  const ctx_r2 = i0.ɵɵnextContext();
@@ -46052,55 +46186,64 @@ function SymphiqFunnelAnalysisDashboardComponent_Conditional_49_Template(rf, ctx
46052
46186
  i0.ɵɵadvance();
46053
46187
  i0.ɵɵconditional(ctx_r2.showCompetitiveIntelligence() ? 5 : -1);
46054
46188
  } }
46055
- function SymphiqFunnelAnalysisDashboardComponent_Conditional_50_Conditional_0_Template(rf, ctx) { if (rf & 1) {
46189
+ function SymphiqFunnelAnalysisDashboardComponent_Conditional_50_Template(rf, ctx) { if (rf & 1) {
46190
+ i0.ɵɵelementStart(0, "div", 36);
46191
+ i0.ɵɵelement(1, "symphiq-indeterminate-spinner", 66);
46192
+ i0.ɵɵelementEnd();
46193
+ } if (rf & 2) {
46194
+ const ctx_r2 = i0.ɵɵnextContext();
46195
+ i0.ɵɵadvance();
46196
+ i0.ɵɵproperty("viewMode", ctx_r2.isLightMode() ? ctx_r2.ViewModeEnum.LIGHT : ctx_r2.ViewModeEnum.DARK);
46197
+ } }
46198
+ function SymphiqFunnelAnalysisDashboardComponent_Conditional_51_Conditional_0_Template(rf, ctx) { if (rf & 1) {
46056
46199
  const _r15 = i0.ɵɵgetCurrentView();
46057
- i0.ɵɵelementStart(0, "symphiq-journey-progress-indicator", 67);
46058
- i0.ɵɵlistener("stepClick", function SymphiqFunnelAnalysisDashboardComponent_Conditional_50_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_50_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()); });
46200
+ i0.ɵɵelementStart(0, "symphiq-journey-progress-indicator", 69);
46201
+ i0.ɵɵlistener("stepClick", function SymphiqFunnelAnalysisDashboardComponent_Conditional_51_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_51_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()); });
46059
46202
  i0.ɵɵelementEnd();
46060
46203
  } if (rf & 2) {
46061
46204
  const ctx_r2 = i0.ɵɵnextContext(2);
46062
46205
  i0.ɵɵproperty("viewMode", ctx_r2.isLightMode() ? ctx_r2.ViewModeEnum.LIGHT : ctx_r2.ViewModeEnum.DARK)("currentStepId", ctx_r2.JourneyStepIdEnum.FUNNEL_ANALYSIS)("showNextStepAction", false)("forDemo", ctx_r2.forDemo())("maxAccessibleStepId", ctx_r2.maxAccessibleStepId());
46063
46206
  } }
46064
- function SymphiqFunnelAnalysisDashboardComponent_Conditional_50_Template(rf, ctx) { if (rf & 1) {
46065
- i0.ɵɵconditionalCreate(0, SymphiqFunnelAnalysisDashboardComponent_Conditional_50_Conditional_0_Template, 1, 5, "symphiq-journey-progress-indicator", 65);
46066
- i0.ɵɵelement(1, "symphiq-content-generation-progress-with-confetti", 66);
46207
+ function SymphiqFunnelAnalysisDashboardComponent_Conditional_51_Template(rf, ctx) { if (rf & 1) {
46208
+ i0.ɵɵconditionalCreate(0, SymphiqFunnelAnalysisDashboardComponent_Conditional_51_Conditional_0_Template, 1, 5, "symphiq-journey-progress-indicator", 67);
46209
+ i0.ɵɵelement(1, "symphiq-content-generation-progress-with-confetti", 68);
46067
46210
  } if (rf & 2) {
46068
46211
  const ctx_r2 = i0.ɵɵnextContext();
46069
46212
  i0.ɵɵconditional(!ctx_r2.isOnboarded() ? 0 : -1);
46070
46213
  i0.ɵɵadvance();
46071
46214
  i0.ɵɵproperty("viewMode", ctx_r2.isLightMode() ? ctx_r2.ViewModeEnum.LIGHT : ctx_r2.ViewModeEnum.DARK)("itemStatus", ctx_r2.itemStatus())("funnelAnalysis", ctx_r2.funnelAnalysis())("confettiIntensity", "celebration")("title", "We are generating a new Funnel Analysis for you.")("subtitle", "It will appear here when ready. You can check back later as this will take a few minutes to complete.");
46072
46215
  } }
46073
- function SymphiqFunnelAnalysisDashboardComponent_Conditional_51_Conditional_0_Template(rf, ctx) { if (rf & 1) {
46216
+ function SymphiqFunnelAnalysisDashboardComponent_Conditional_52_Conditional_0_Template(rf, ctx) { if (rf & 1) {
46074
46217
  const _r16 = i0.ɵɵgetCurrentView();
46075
- i0.ɵɵelementStart(0, "symphiq-journey-progress-indicator", 67);
46076
- i0.ɵɵlistener("stepClick", function SymphiqFunnelAnalysisDashboardComponent_Conditional_51_Conditional_0_Template_symphiq_journey_progress_indicator_stepClick_0_listener($event) { i0.ɵɵrestoreView(_r16); const ctx_r2 = i0.ɵɵnextContext(2); return i0.ɵɵresetView(ctx_r2.stepClick.emit($event)); })("nextStepClick", function SymphiqFunnelAnalysisDashboardComponent_Conditional_51_Conditional_0_Template_symphiq_journey_progress_indicator_nextStepClick_0_listener() { i0.ɵɵrestoreView(_r16); const ctx_r2 = i0.ɵɵnextContext(2); return i0.ɵɵresetView(ctx_r2.nextStepClick.emit()); });
46218
+ i0.ɵɵelementStart(0, "symphiq-journey-progress-indicator", 69);
46219
+ i0.ɵɵlistener("stepClick", function SymphiqFunnelAnalysisDashboardComponent_Conditional_52_Conditional_0_Template_symphiq_journey_progress_indicator_stepClick_0_listener($event) { i0.ɵɵrestoreView(_r16); const ctx_r2 = i0.ɵɵnextContext(2); return i0.ɵɵresetView(ctx_r2.stepClick.emit($event)); })("nextStepClick", function SymphiqFunnelAnalysisDashboardComponent_Conditional_52_Conditional_0_Template_symphiq_journey_progress_indicator_nextStepClick_0_listener() { i0.ɵɵrestoreView(_r16); const ctx_r2 = i0.ɵɵnextContext(2); return i0.ɵɵresetView(ctx_r2.nextStepClick.emit()); });
46077
46220
  i0.ɵɵelementEnd();
46078
46221
  } if (rf & 2) {
46079
46222
  const ctx_r2 = i0.ɵɵnextContext(2);
46080
46223
  i0.ɵɵproperty("viewMode", ctx_r2.isLightMode() ? ctx_r2.ViewModeEnum.LIGHT : ctx_r2.ViewModeEnum.DARK)("currentStepId", ctx_r2.JourneyStepIdEnum.FUNNEL_ANALYSIS)("showNextStepAction", true)("forDemo", ctx_r2.forDemo())("maxAccessibleStepId", ctx_r2.maxAccessibleStepId());
46081
46224
  } }
46082
- function SymphiqFunnelAnalysisDashboardComponent_Conditional_51_Conditional_5_For_13_Template(rf, ctx) { if (rf & 1) {
46083
- i0.ɵɵelement(0, "symphiq-funnel-analysis-insight-card", 85);
46225
+ function SymphiqFunnelAnalysisDashboardComponent_Conditional_52_Conditional_5_For_13_Template(rf, ctx) { if (rf & 1) {
46226
+ i0.ɵɵelement(0, "symphiq-funnel-analysis-insight-card", 87);
46084
46227
  } if (rf & 2) {
46085
46228
  const insight_r17 = ctx.$implicit;
46086
46229
  const ctx_r2 = i0.ɵɵnextContext(3);
46087
46230
  i0.ɵɵproperty("insight", insight_r17)("allMetrics", ctx_r2.allMetrics())("charts", ctx_r2.chartsForInsight(insight_r17))("allCharts", ctx_r2.allCharts())("allBusinessInsights", ctx_r2.allBusinessInsights())("isLightMode", ctx_r2.isLightMode())("viewMode", ctx_r2.viewMode())("isCompactMode", true)("isLoading", ctx_r2.isDataLoading());
46088
46231
  } }
46089
- function SymphiqFunnelAnalysisDashboardComponent_Conditional_51_Conditional_5_Template(rf, ctx) { if (rf & 1) {
46090
- i0.ɵɵelementStart(0, "section", 71)(1, "div", 79)(2, "div", 9)(3, "div", 80)(4, "div", 9);
46232
+ function SymphiqFunnelAnalysisDashboardComponent_Conditional_52_Conditional_5_Template(rf, ctx) { if (rf & 1) {
46233
+ i0.ɵɵelementStart(0, "section", 73)(1, "div", 81)(2, "div", 9)(3, "div", 82)(4, "div", 9);
46091
46234
  i0.ɵɵnamespaceSVG();
46092
- i0.ɵɵelementStart(5, "svg", 81);
46093
- i0.ɵɵelement(6, "path", 82);
46235
+ i0.ɵɵelementStart(5, "svg", 83);
46236
+ i0.ɵɵelement(6, "path", 84);
46094
46237
  i0.ɵɵelementEnd();
46095
46238
  i0.ɵɵnamespaceHTML();
46096
- i0.ɵɵelementStart(7, "h2", 83);
46239
+ i0.ɵɵelementStart(7, "h2", 85);
46097
46240
  i0.ɵɵtext(8, "Key Insights");
46098
46241
  i0.ɵɵelementEnd()()()();
46099
46242
  i0.ɵɵelementStart(9, "span", 23);
46100
46243
  i0.ɵɵtext(10);
46101
46244
  i0.ɵɵelementEnd()();
46102
- i0.ɵɵelementStart(11, "div", 84);
46103
- i0.ɵɵrepeaterCreate(12, SymphiqFunnelAnalysisDashboardComponent_Conditional_51_Conditional_5_For_13_Template, 1, 9, "symphiq-funnel-analysis-insight-card", 85, i0.ɵɵrepeaterTrackByIndex);
46245
+ i0.ɵɵelementStart(11, "div", 86);
46246
+ i0.ɵɵrepeaterCreate(12, SymphiqFunnelAnalysisDashboardComponent_Conditional_52_Conditional_5_For_13_Template, 1, 9, "symphiq-funnel-analysis-insight-card", 87, i0.ɵɵrepeaterTrackByIndex);
46104
46247
  i0.ɵɵelementEnd()();
46105
46248
  } if (rf & 2) {
46106
46249
  const ctx_r2 = i0.ɵɵnextContext(2);
@@ -46117,51 +46260,51 @@ function SymphiqFunnelAnalysisDashboardComponent_Conditional_51_Conditional_5_Te
46117
46260
  i0.ɵɵadvance(2);
46118
46261
  i0.ɵɵrepeater(ctx_r2.insights());
46119
46262
  } }
46120
- function SymphiqFunnelAnalysisDashboardComponent_Conditional_51_Conditional_8_Conditional_1_Template(rf, ctx) { if (rf & 1) {
46121
- i0.ɵɵelement(0, "symphiq-skeleton-loader", 86);
46263
+ function SymphiqFunnelAnalysisDashboardComponent_Conditional_52_Conditional_8_Conditional_1_Template(rf, ctx) { if (rf & 1) {
46264
+ i0.ɵɵelement(0, "symphiq-skeleton-loader", 88);
46122
46265
  } if (rf & 2) {
46123
46266
  const ctx_r2 = i0.ɵɵnextContext(3);
46124
46267
  i0.ɵɵproperty("width", "100%")("height", "200px")("isLightMode", ctx_r2.isLightMode());
46125
46268
  } }
46126
- function SymphiqFunnelAnalysisDashboardComponent_Conditional_51_Conditional_8_Conditional_2_Template(rf, ctx) { if (rf & 1) {
46269
+ function SymphiqFunnelAnalysisDashboardComponent_Conditional_52_Conditional_8_Conditional_2_Template(rf, ctx) { if (rf & 1) {
46127
46270
  const _r18 = i0.ɵɵgetCurrentView();
46128
- i0.ɵɵelementStart(0, "symphiq-funnel-analysis-overall-assessment", 88);
46129
- i0.ɵɵlistener("scrollToSection", function SymphiqFunnelAnalysisDashboardComponent_Conditional_51_Conditional_8_Conditional_2_Template_symphiq_funnel_analysis_overall_assessment_scrollToSection_0_listener($event) { i0.ɵɵrestoreView(_r18); const ctx_r2 = i0.ɵɵnextContext(3); return i0.ɵɵresetView(ctx_r2.scrollToSection($event)); });
46271
+ i0.ɵɵelementStart(0, "symphiq-funnel-analysis-overall-assessment", 90);
46272
+ i0.ɵɵlistener("scrollToSection", function SymphiqFunnelAnalysisDashboardComponent_Conditional_52_Conditional_8_Conditional_2_Template_symphiq_funnel_analysis_overall_assessment_scrollToSection_0_listener($event) { i0.ɵɵrestoreView(_r18); const ctx_r2 = i0.ɵɵnextContext(3); return i0.ɵɵresetView(ctx_r2.scrollToSection($event)); });
46130
46273
  i0.ɵɵelementEnd();
46131
46274
  } if (rf & 2) {
46132
46275
  const ctx_r2 = i0.ɵɵnextContext(3);
46133
46276
  i0.ɵɵproperty("assessment", ctx_r2.performanceOverview().overallAssessment || i0.ɵɵpureFunction0(11, _c1$d))("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());
46134
46277
  } }
46135
- function SymphiqFunnelAnalysisDashboardComponent_Conditional_51_Conditional_8_Template(rf, ctx) { if (rf & 1) {
46136
- i0.ɵɵelementStart(0, "div", 74);
46137
- i0.ɵɵconditionalCreate(1, SymphiqFunnelAnalysisDashboardComponent_Conditional_51_Conditional_8_Conditional_1_Template, 1, 3, "symphiq-skeleton-loader", 86)(2, SymphiqFunnelAnalysisDashboardComponent_Conditional_51_Conditional_8_Conditional_2_Template, 1, 12, "symphiq-funnel-analysis-overall-assessment", 87);
46278
+ function SymphiqFunnelAnalysisDashboardComponent_Conditional_52_Conditional_8_Template(rf, ctx) { if (rf & 1) {
46279
+ i0.ɵɵelementStart(0, "div", 76);
46280
+ i0.ɵɵconditionalCreate(1, SymphiqFunnelAnalysisDashboardComponent_Conditional_52_Conditional_8_Conditional_1_Template, 1, 3, "symphiq-skeleton-loader", 88)(2, SymphiqFunnelAnalysisDashboardComponent_Conditional_52_Conditional_8_Conditional_2_Template, 1, 12, "symphiq-funnel-analysis-overall-assessment", 89);
46138
46281
  i0.ɵɵelementEnd();
46139
46282
  } if (rf & 2) {
46140
46283
  const ctx_r2 = i0.ɵɵnextContext(2);
46141
46284
  i0.ɵɵadvance();
46142
46285
  i0.ɵɵconditional(ctx_r2.isDataLoading() ? 1 : 2);
46143
46286
  } }
46144
- function SymphiqFunnelAnalysisDashboardComponent_Conditional_51_Conditional_10_For_2_Conditional_2_For_2_Template(rf, ctx) { if (rf & 1) {
46145
- i0.ɵɵelement(0, "symphiq-funnel-analysis-metric-card", 90);
46287
+ function SymphiqFunnelAnalysisDashboardComponent_Conditional_52_Conditional_10_For_2_Conditional_2_For_2_Template(rf, ctx) { if (rf & 1) {
46288
+ i0.ɵɵelement(0, "symphiq-funnel-analysis-metric-card", 92);
46146
46289
  } if (rf & 2) {
46147
46290
  const metric_r19 = ctx.$implicit;
46148
46291
  const ctx_r2 = i0.ɵɵnextContext(5);
46149
46292
  i0.ɵɵproperty("metric", metric_r19)("insights", ctx_r2.insights())("charts", ctx_r2.chartsForMetric(metric_r19))("allCharts", ctx_r2.allCharts())("analysis", ctx_r2.analysisData())("isLightMode", ctx_r2.isLightMode())("viewMode", ctx_r2.viewMode())("isCompactMode", true)("currencySymbol", ctx_r2.currencySymbol());
46150
46293
  } }
46151
- function SymphiqFunnelAnalysisDashboardComponent_Conditional_51_Conditional_10_For_2_Conditional_2_Template(rf, ctx) { if (rf & 1) {
46152
- i0.ɵɵelementStart(0, "div", 91);
46153
- i0.ɵɵrepeaterCreate(1, SymphiqFunnelAnalysisDashboardComponent_Conditional_51_Conditional_10_For_2_Conditional_2_For_2_Template, 1, 9, "symphiq-funnel-analysis-metric-card", 90, i0.ɵɵrepeaterTrackByIndex);
46294
+ function SymphiqFunnelAnalysisDashboardComponent_Conditional_52_Conditional_10_For_2_Conditional_2_Template(rf, ctx) { if (rf & 1) {
46295
+ i0.ɵɵelementStart(0, "div", 93);
46296
+ i0.ɵɵrepeaterCreate(1, SymphiqFunnelAnalysisDashboardComponent_Conditional_52_Conditional_10_For_2_Conditional_2_For_2_Template, 1, 9, "symphiq-funnel-analysis-metric-card", 92, i0.ɵɵrepeaterTrackByIndex);
46154
46297
  i0.ɵɵelementEnd();
46155
46298
  } if (rf & 2) {
46156
46299
  const funnelGroup_r20 = i0.ɵɵnextContext().$implicit;
46157
46300
  i0.ɵɵadvance();
46158
46301
  i0.ɵɵrepeater(funnelGroup_r20.relatedMetrics);
46159
46302
  } }
46160
- function SymphiqFunnelAnalysisDashboardComponent_Conditional_51_Conditional_10_For_2_Template(rf, ctx) { if (rf & 1) {
46161
- i0.ɵɵelementStart(0, "div", 89);
46162
- i0.ɵɵelement(1, "symphiq-funnel-analysis-metric-card", 90);
46303
+ function SymphiqFunnelAnalysisDashboardComponent_Conditional_52_Conditional_10_For_2_Template(rf, ctx) { if (rf & 1) {
46304
+ i0.ɵɵelementStart(0, "div", 91);
46305
+ i0.ɵɵelement(1, "symphiq-funnel-analysis-metric-card", 92);
46163
46306
  i0.ɵɵelementEnd();
46164
- i0.ɵɵconditionalCreate(2, SymphiqFunnelAnalysisDashboardComponent_Conditional_51_Conditional_10_For_2_Conditional_2_Template, 3, 0, "div", 91);
46307
+ i0.ɵɵconditionalCreate(2, SymphiqFunnelAnalysisDashboardComponent_Conditional_52_Conditional_10_For_2_Conditional_2_Template, 3, 0, "div", 93);
46165
46308
  } if (rf & 2) {
46166
46309
  const funnelGroup_r20 = ctx.$implicit;
46167
46310
  const ctx_r2 = i0.ɵɵnextContext(3);
@@ -46170,34 +46313,34 @@ function SymphiqFunnelAnalysisDashboardComponent_Conditional_51_Conditional_10_F
46170
46313
  i0.ɵɵadvance();
46171
46314
  i0.ɵɵconditional(funnelGroup_r20.relatedMetrics.length > 0 ? 2 : -1);
46172
46315
  } }
46173
- function SymphiqFunnelAnalysisDashboardComponent_Conditional_51_Conditional_10_Template(rf, ctx) { if (rf & 1) {
46174
- i0.ɵɵelementStart(0, "div", 76);
46175
- i0.ɵɵrepeaterCreate(1, SymphiqFunnelAnalysisDashboardComponent_Conditional_51_Conditional_10_For_2_Template, 3, 10, null, null, i0.ɵɵrepeaterTrackByIndex);
46316
+ function SymphiqFunnelAnalysisDashboardComponent_Conditional_52_Conditional_10_Template(rf, ctx) { if (rf & 1) {
46317
+ i0.ɵɵelementStart(0, "div", 78);
46318
+ i0.ɵɵrepeaterCreate(1, SymphiqFunnelAnalysisDashboardComponent_Conditional_52_Conditional_10_For_2_Template, 3, 10, null, null, i0.ɵɵrepeaterTrackByIndex);
46176
46319
  i0.ɵɵelementEnd();
46177
46320
  } if (rf & 2) {
46178
46321
  const ctx_r2 = i0.ɵɵnextContext(2);
46179
46322
  i0.ɵɵadvance();
46180
46323
  i0.ɵɵrepeater(ctx_r2.groupedMetrics());
46181
46324
  } }
46182
- function SymphiqFunnelAnalysisDashboardComponent_Conditional_51_Conditional_12_For_2_Template(rf, ctx) { if (rf & 1) {
46183
- i0.ɵɵelement(0, "symphiq-funnel-analysis-breakdown-section", 92);
46325
+ function SymphiqFunnelAnalysisDashboardComponent_Conditional_52_Conditional_12_For_2_Template(rf, ctx) { if (rf & 1) {
46326
+ i0.ɵɵelement(0, "symphiq-funnel-analysis-breakdown-section", 94);
46184
46327
  } if (rf & 2) {
46185
46328
  const breakdown_r21 = ctx.$implicit;
46186
46329
  const ctx_r2 = i0.ɵɵnextContext(3);
46187
46330
  i0.ɵɵproperty("breakdown", breakdown_r21)("charts", ctx_r2.chartsForBreakdown(breakdown_r21))("isLightMode", ctx_r2.isLightMode())("isLoading", ctx_r2.isDataLoading())("isCompactMode", true)("currencySymbol", ctx_r2.currencySymbol());
46188
46331
  } }
46189
- function SymphiqFunnelAnalysisDashboardComponent_Conditional_51_Conditional_12_Template(rf, ctx) { if (rf & 1) {
46190
- i0.ɵɵelementStart(0, "div", 76);
46191
- i0.ɵɵrepeaterCreate(1, SymphiqFunnelAnalysisDashboardComponent_Conditional_51_Conditional_12_For_2_Template, 1, 6, "symphiq-funnel-analysis-breakdown-section", 92, i0.ɵɵrepeaterTrackByIndex);
46332
+ function SymphiqFunnelAnalysisDashboardComponent_Conditional_52_Conditional_12_Template(rf, ctx) { if (rf & 1) {
46333
+ i0.ɵɵelementStart(0, "div", 78);
46334
+ i0.ɵɵrepeaterCreate(1, SymphiqFunnelAnalysisDashboardComponent_Conditional_52_Conditional_12_For_2_Template, 1, 6, "symphiq-funnel-analysis-breakdown-section", 94, i0.ɵɵrepeaterTrackByIndex);
46192
46335
  i0.ɵɵelementEnd();
46193
46336
  } if (rf & 2) {
46194
46337
  const ctx_r2 = i0.ɵɵnextContext(2);
46195
46338
  i0.ɵɵadvance();
46196
46339
  i0.ɵɵrepeater(ctx_r2.breakdowns());
46197
46340
  } }
46198
- function SymphiqFunnelAnalysisDashboardComponent_Conditional_51_Conditional_14_Template(rf, ctx) { if (rf & 1) {
46199
- i0.ɵɵelementStart(0, "div", 74);
46200
- i0.ɵɵelement(1, "symphiq-competitive-intelligence-view", 93);
46341
+ function SymphiqFunnelAnalysisDashboardComponent_Conditional_52_Conditional_14_Template(rf, ctx) { if (rf & 1) {
46342
+ i0.ɵɵelementStart(0, "div", 76);
46343
+ i0.ɵɵelement(1, "symphiq-competitive-intelligence-view", 95);
46201
46344
  i0.ɵɵelementEnd();
46202
46345
  } if (rf & 2) {
46203
46346
  let tmp_7_0;
@@ -46205,23 +46348,23 @@ function SymphiqFunnelAnalysisDashboardComponent_Conditional_51_Conditional_14_T
46205
46348
  i0.ɵɵadvance();
46206
46349
  i0.ɵɵproperty("metrics", ctx_r2.competitiveMetrics())("allCharts", ctx_r2.allCharts())("isLightMode", ctx_r2.isLightMode())("isCompactMode", true)("competitiveBenchmark", (tmp_7_0 = ctx_r2.performanceOverview().overallAssessment) == null ? null : tmp_7_0.competitiveBenchmark)("currencySymbol", ctx_r2.currencySymbol());
46207
46350
  } }
46208
- function SymphiqFunnelAnalysisDashboardComponent_Conditional_51_Template(rf, ctx) { if (rf & 1) {
46209
- i0.ɵɵconditionalCreate(0, SymphiqFunnelAnalysisDashboardComponent_Conditional_51_Conditional_0_Template, 1, 5, "symphiq-journey-progress-indicator", 65);
46210
- i0.ɵɵelementStart(1, "main", 36)(2, "div", 68)(3, "div", 69);
46211
- i0.ɵɵelement(4, "symphiq-funnel-welcome-banner", 70);
46351
+ function SymphiqFunnelAnalysisDashboardComponent_Conditional_52_Template(rf, ctx) { if (rf & 1) {
46352
+ i0.ɵɵconditionalCreate(0, SymphiqFunnelAnalysisDashboardComponent_Conditional_52_Conditional_0_Template, 1, 5, "symphiq-journey-progress-indicator", 67);
46353
+ i0.ɵɵelementStart(1, "main", 37)(2, "div", 70)(3, "div", 71);
46354
+ i0.ɵɵelement(4, "symphiq-funnel-welcome-banner", 72);
46212
46355
  i0.ɵɵelementEnd();
46213
- i0.ɵɵconditionalCreate(5, SymphiqFunnelAnalysisDashboardComponent_Conditional_51_Conditional_5_Template, 14, 7, "section", 71);
46214
- i0.ɵɵelementStart(6, "symphiq-collapsible-funnel-section-group", 72)(7, "div", 73);
46215
- i0.ɵɵconditionalCreate(8, SymphiqFunnelAnalysisDashboardComponent_Conditional_51_Conditional_8_Template, 3, 1, "div", 74);
46356
+ i0.ɵɵconditionalCreate(5, SymphiqFunnelAnalysisDashboardComponent_Conditional_52_Conditional_5_Template, 14, 7, "section", 73);
46357
+ i0.ɵɵelementStart(6, "symphiq-collapsible-funnel-section-group", 74)(7, "div", 75);
46358
+ i0.ɵɵconditionalCreate(8, SymphiqFunnelAnalysisDashboardComponent_Conditional_52_Conditional_8_Template, 3, 1, "div", 76);
46216
46359
  i0.ɵɵelementEnd();
46217
- i0.ɵɵelementStart(9, "div", 75);
46218
- i0.ɵɵconditionalCreate(10, SymphiqFunnelAnalysisDashboardComponent_Conditional_51_Conditional_10_Template, 3, 0, "div", 76);
46360
+ i0.ɵɵelementStart(9, "div", 77);
46361
+ i0.ɵɵconditionalCreate(10, SymphiqFunnelAnalysisDashboardComponent_Conditional_52_Conditional_10_Template, 3, 0, "div", 78);
46219
46362
  i0.ɵɵelementEnd();
46220
- i0.ɵɵelementStart(11, "div", 77);
46221
- i0.ɵɵconditionalCreate(12, SymphiqFunnelAnalysisDashboardComponent_Conditional_51_Conditional_12_Template, 3, 0, "div", 76);
46363
+ i0.ɵɵelementStart(11, "div", 79);
46364
+ i0.ɵɵconditionalCreate(12, SymphiqFunnelAnalysisDashboardComponent_Conditional_52_Conditional_12_Template, 3, 0, "div", 78);
46222
46365
  i0.ɵɵelementEnd();
46223
- i0.ɵɵelementStart(13, "div", 78);
46224
- i0.ɵɵconditionalCreate(14, SymphiqFunnelAnalysisDashboardComponent_Conditional_51_Conditional_14_Template, 2, 6, "div", 74);
46366
+ i0.ɵɵelementStart(13, "div", 80);
46367
+ i0.ɵɵconditionalCreate(14, SymphiqFunnelAnalysisDashboardComponent_Conditional_52_Conditional_14_Template, 2, 6, "div", 76);
46225
46368
  i0.ɵɵelementEnd()()()();
46226
46369
  } if (rf & 2) {
46227
46370
  const ctx_r2 = i0.ɵɵnextContext();
@@ -46241,17 +46384,17 @@ function SymphiqFunnelAnalysisDashboardComponent_Conditional_51_Template(rf, ctx
46241
46384
  i0.ɵɵadvance(2);
46242
46385
  i0.ɵɵconditional(ctx_r2.showCompetitiveIntelligence() ? 14 : -1);
46243
46386
  } }
46244
- function SymphiqFunnelAnalysisDashboardComponent_Conditional_52_Conditional_2_Conditional_1_Template(rf, ctx) { if (rf & 1) {
46245
- i0.ɵɵelementStart(0, "div", 95)(1, "div", 96)(2, "div", 9);
46246
- i0.ɵɵelement(3, "symphiq-skeleton-loader", 86);
46247
- i0.ɵɵelementStart(4, "div", 97);
46248
- i0.ɵɵelement(5, "symphiq-skeleton-loader", 86)(6, "symphiq-skeleton-loader", 86);
46387
+ function SymphiqFunnelAnalysisDashboardComponent_Conditional_53_Conditional_2_Conditional_1_Template(rf, ctx) { if (rf & 1) {
46388
+ i0.ɵɵelementStart(0, "div", 97)(1, "div", 98)(2, "div", 9);
46389
+ i0.ɵɵelement(3, "symphiq-skeleton-loader", 88);
46390
+ i0.ɵɵelementStart(4, "div", 99);
46391
+ i0.ɵɵelement(5, "symphiq-skeleton-loader", 88)(6, "symphiq-skeleton-loader", 88);
46249
46392
  i0.ɵɵelementEnd()();
46250
- i0.ɵɵelementStart(7, "div", 98);
46251
- i0.ɵɵelement(8, "symphiq-skeleton-loader", 86)(9, "symphiq-skeleton-loader", 86)(10, "symphiq-skeleton-loader", 86);
46393
+ i0.ɵɵelementStart(7, "div", 100);
46394
+ i0.ɵɵelement(8, "symphiq-skeleton-loader", 88)(9, "symphiq-skeleton-loader", 88)(10, "symphiq-skeleton-loader", 88);
46252
46395
  i0.ɵɵelementEnd();
46253
- i0.ɵɵelementStart(11, "div", 99);
46254
- i0.ɵɵelement(12, "symphiq-skeleton-loader", 86)(13, "symphiq-skeleton-loader", 86);
46396
+ i0.ɵɵelementStart(11, "div", 101);
46397
+ i0.ɵɵelement(12, "symphiq-skeleton-loader", 88)(13, "symphiq-skeleton-loader", 88);
46255
46398
  i0.ɵɵelementEnd()()();
46256
46399
  } if (rf & 2) {
46257
46400
  const ctx_r2 = i0.ɵɵnextContext(3);
@@ -46273,40 +46416,40 @@ function SymphiqFunnelAnalysisDashboardComponent_Conditional_52_Conditional_2_Co
46273
46416
  i0.ɵɵadvance();
46274
46417
  i0.ɵɵproperty("width", "100%")("height", "200px")("isLightMode", ctx_r2.isLightMode());
46275
46418
  } }
46276
- function SymphiqFunnelAnalysisDashboardComponent_Conditional_52_Conditional_2_Conditional_2_Template(rf, ctx) { if (rf & 1) {
46419
+ function SymphiqFunnelAnalysisDashboardComponent_Conditional_53_Conditional_2_Conditional_2_Template(rf, ctx) { if (rf & 1) {
46277
46420
  const _r22 = i0.ɵɵgetCurrentView();
46278
- i0.ɵɵelementStart(0, "symphiq-funnel-analysis-overall-assessment", 88);
46279
- i0.ɵɵlistener("scrollToSection", function SymphiqFunnelAnalysisDashboardComponent_Conditional_52_Conditional_2_Conditional_2_Template_symphiq_funnel_analysis_overall_assessment_scrollToSection_0_listener($event) { i0.ɵɵrestoreView(_r22); const ctx_r2 = i0.ɵɵnextContext(3); return i0.ɵɵresetView(ctx_r2.scrollToSection($event)); });
46421
+ i0.ɵɵelementStart(0, "symphiq-funnel-analysis-overall-assessment", 90);
46422
+ i0.ɵɵlistener("scrollToSection", function SymphiqFunnelAnalysisDashboardComponent_Conditional_53_Conditional_2_Conditional_2_Template_symphiq_funnel_analysis_overall_assessment_scrollToSection_0_listener($event) { i0.ɵɵrestoreView(_r22); const ctx_r2 = i0.ɵɵnextContext(3); return i0.ɵɵresetView(ctx_r2.scrollToSection($event)); });
46280
46423
  i0.ɵɵelementEnd();
46281
46424
  } if (rf & 2) {
46282
46425
  const ctx_r2 = i0.ɵɵnextContext(3);
46283
46426
  i0.ɵɵproperty("assessment", ctx_r2.performanceOverview().overallAssessment || i0.ɵɵpureFunction0(11, _c1$d))("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());
46284
46427
  } }
46285
- function SymphiqFunnelAnalysisDashboardComponent_Conditional_52_Conditional_2_Template(rf, ctx) { if (rf & 1) {
46286
- i0.ɵɵelementStart(0, "div", 94);
46287
- i0.ɵɵconditionalCreate(1, SymphiqFunnelAnalysisDashboardComponent_Conditional_52_Conditional_2_Conditional_1_Template, 14, 25, "div", 95)(2, SymphiqFunnelAnalysisDashboardComponent_Conditional_52_Conditional_2_Conditional_2_Template, 1, 12, "symphiq-funnel-analysis-overall-assessment", 87);
46428
+ function SymphiqFunnelAnalysisDashboardComponent_Conditional_53_Conditional_2_Template(rf, ctx) { if (rf & 1) {
46429
+ i0.ɵɵelementStart(0, "div", 96);
46430
+ i0.ɵɵconditionalCreate(1, SymphiqFunnelAnalysisDashboardComponent_Conditional_53_Conditional_2_Conditional_1_Template, 14, 25, "div", 97)(2, SymphiqFunnelAnalysisDashboardComponent_Conditional_53_Conditional_2_Conditional_2_Template, 1, 12, "symphiq-funnel-analysis-overall-assessment", 89);
46288
46431
  i0.ɵɵelementEnd();
46289
46432
  } if (rf & 2) {
46290
46433
  const ctx_r2 = i0.ɵɵnextContext(2);
46291
46434
  i0.ɵɵadvance();
46292
46435
  i0.ɵɵconditional(ctx_r2.isDataLoading() ? 1 : 2);
46293
46436
  } }
46294
- function SymphiqFunnelAnalysisDashboardComponent_Conditional_52_Conditional_3_Conditional_0_Template(rf, ctx) { if (rf & 1) {
46295
- i0.ɵɵelement(0, "symphiq-section-divider", 100);
46437
+ function SymphiqFunnelAnalysisDashboardComponent_Conditional_53_Conditional_3_Conditional_0_Template(rf, ctx) { if (rf & 1) {
46438
+ i0.ɵɵelement(0, "symphiq-section-divider", 102);
46296
46439
  } if (rf & 2) {
46297
46440
  const ctx_r2 = i0.ɵɵnextContext(3);
46298
46441
  i0.ɵɵproperty("viewMode", ctx_r2.viewMode());
46299
46442
  } }
46300
- function SymphiqFunnelAnalysisDashboardComponent_Conditional_52_Conditional_3_Conditional_14_For_2_Template(rf, ctx) { if (rf & 1) {
46301
- i0.ɵɵelementStart(0, "div", 107)(1, "div", 108)(2, "div", 109);
46302
- i0.ɵɵelement(3, "symphiq-skeleton-loader", 86)(4, "symphiq-skeleton-loader", 86);
46443
+ function SymphiqFunnelAnalysisDashboardComponent_Conditional_53_Conditional_3_Conditional_14_For_2_Template(rf, ctx) { if (rf & 1) {
46444
+ i0.ɵɵelementStart(0, "div", 109)(1, "div", 110)(2, "div", 111);
46445
+ i0.ɵɵelement(3, "symphiq-skeleton-loader", 88)(4, "symphiq-skeleton-loader", 88);
46303
46446
  i0.ɵɵelementEnd();
46304
- i0.ɵɵelement(5, "symphiq-skeleton-loader", 86)(6, "symphiq-skeleton-loader", 86)(7, "symphiq-skeleton-loader", 86);
46305
- i0.ɵɵelementStart(8, "div", 110);
46306
- i0.ɵɵelement(9, "symphiq-skeleton-loader", 86)(10, "symphiq-skeleton-loader", 86);
46447
+ i0.ɵɵelement(5, "symphiq-skeleton-loader", 88)(6, "symphiq-skeleton-loader", 88)(7, "symphiq-skeleton-loader", 88);
46448
+ i0.ɵɵelementStart(8, "div", 112);
46449
+ i0.ɵɵelement(9, "symphiq-skeleton-loader", 88)(10, "symphiq-skeleton-loader", 88);
46307
46450
  i0.ɵɵelementEnd();
46308
- i0.ɵɵelementStart(11, "div", 111);
46309
- i0.ɵɵelement(12, "symphiq-skeleton-loader", 86)(13, "symphiq-skeleton-loader", 86);
46451
+ i0.ɵɵelementStart(11, "div", 113);
46452
+ i0.ɵɵelement(12, "symphiq-skeleton-loader", 88)(13, "symphiq-skeleton-loader", 88);
46310
46453
  i0.ɵɵelementEnd()()();
46311
46454
  } if (rf & 2) {
46312
46455
  const ctx_r2 = i0.ɵɵnextContext(4);
@@ -46330,17 +46473,17 @@ function SymphiqFunnelAnalysisDashboardComponent_Conditional_52_Conditional_3_Co
46330
46473
  i0.ɵɵadvance();
46331
46474
  i0.ɵɵproperty("width", "80px")("height", "28px")("isLightMode", ctx_r2.isLightMode());
46332
46475
  } }
46333
- function SymphiqFunnelAnalysisDashboardComponent_Conditional_52_Conditional_3_Conditional_14_Template(rf, ctx) { if (rf & 1) {
46334
- i0.ɵɵelementStart(0, "div", 105);
46335
- i0.ɵɵrepeaterCreate(1, SymphiqFunnelAnalysisDashboardComponent_Conditional_52_Conditional_3_Conditional_14_For_2_Template, 14, 28, "div", 107, i0.ɵɵrepeaterTrackByIdentity);
46476
+ function SymphiqFunnelAnalysisDashboardComponent_Conditional_53_Conditional_3_Conditional_14_Template(rf, ctx) { if (rf & 1) {
46477
+ i0.ɵɵelementStart(0, "div", 107);
46478
+ i0.ɵɵrepeaterCreate(1, SymphiqFunnelAnalysisDashboardComponent_Conditional_53_Conditional_3_Conditional_14_For_2_Template, 14, 28, "div", 109, i0.ɵɵrepeaterTrackByIdentity);
46336
46479
  i0.ɵɵelementEnd();
46337
46480
  } if (rf & 2) {
46338
46481
  i0.ɵɵadvance();
46339
46482
  i0.ɵɵrepeater(i0.ɵɵpureFunction0(0, _c2$8));
46340
46483
  } }
46341
- function SymphiqFunnelAnalysisDashboardComponent_Conditional_52_Conditional_3_Conditional_15_For_2_Template(rf, ctx) { if (rf & 1) {
46342
- i0.ɵɵelementStart(0, "div", 113);
46343
- i0.ɵɵelement(1, "symphiq-funnel-analysis-insight-card", 114);
46484
+ function SymphiqFunnelAnalysisDashboardComponent_Conditional_53_Conditional_3_Conditional_15_For_2_Template(rf, ctx) { if (rf & 1) {
46485
+ i0.ɵɵelementStart(0, "div", 115);
46486
+ i0.ɵɵelement(1, "symphiq-funnel-analysis-insight-card", 116);
46344
46487
  i0.ɵɵelementEnd();
46345
46488
  } if (rf & 2) {
46346
46489
  const insight_r23 = ctx.$implicit;
@@ -46352,18 +46495,18 @@ function SymphiqFunnelAnalysisDashboardComponent_Conditional_52_Conditional_3_Co
46352
46495
  i0.ɵɵadvance();
46353
46496
  i0.ɵɵproperty("insight", insight_r23)("allMetrics", ctx_r2.allMetrics())("charts", ctx_r2.chartsForInsight(insight_r23))("allCharts", ctx_r2.allCharts())("allBusinessInsights", ctx_r2.allBusinessInsights())("isLightMode", ctx_r2.isLightMode())("viewMode", ctx_r2.viewMode())("isCompactMode", false);
46354
46497
  } }
46355
- function SymphiqFunnelAnalysisDashboardComponent_Conditional_52_Conditional_3_Conditional_15_Template(rf, ctx) { if (rf & 1) {
46356
- i0.ɵɵelementStart(0, "div", 105);
46357
- i0.ɵɵrepeaterCreate(1, SymphiqFunnelAnalysisDashboardComponent_Conditional_52_Conditional_3_Conditional_15_For_2_Template, 2, 14, "div", 112, i0.ɵɵrepeaterTrackByIndex);
46498
+ function SymphiqFunnelAnalysisDashboardComponent_Conditional_53_Conditional_3_Conditional_15_Template(rf, ctx) { if (rf & 1) {
46499
+ i0.ɵɵelementStart(0, "div", 107);
46500
+ i0.ɵɵrepeaterCreate(1, SymphiqFunnelAnalysisDashboardComponent_Conditional_53_Conditional_3_Conditional_15_For_2_Template, 2, 14, "div", 114, i0.ɵɵrepeaterTrackByIndex);
46358
46501
  i0.ɵɵelementEnd();
46359
46502
  } if (rf & 2) {
46360
46503
  const ctx_r2 = i0.ɵɵnextContext(3);
46361
46504
  i0.ɵɵadvance();
46362
46505
  i0.ɵɵrepeater(ctx_r2.insights());
46363
46506
  } }
46364
- function SymphiqFunnelAnalysisDashboardComponent_Conditional_52_Conditional_3_Conditional_16_For_2_Template(rf, ctx) { if (rf & 1) {
46365
- i0.ɵɵelementStart(0, "div", 113);
46366
- i0.ɵɵelement(1, "symphiq-funnel-analysis-insight-card", 114);
46507
+ function SymphiqFunnelAnalysisDashboardComponent_Conditional_53_Conditional_3_Conditional_16_For_2_Template(rf, ctx) { if (rf & 1) {
46508
+ i0.ɵɵelementStart(0, "div", 115);
46509
+ i0.ɵɵelement(1, "symphiq-funnel-analysis-insight-card", 116);
46367
46510
  i0.ɵɵelementEnd();
46368
46511
  } if (rf & 2) {
46369
46512
  const insight_r25 = ctx.$implicit;
@@ -46374,32 +46517,32 @@ function SymphiqFunnelAnalysisDashboardComponent_Conditional_52_Conditional_3_Co
46374
46517
  i0.ɵɵadvance();
46375
46518
  i0.ɵɵproperty("insight", insight_r25)("allMetrics", ctx_r2.allMetrics())("charts", ctx_r2.chartsForInsight(insight_r25))("allCharts", ctx_r2.allCharts())("allBusinessInsights", ctx_r2.allBusinessInsights())("isLightMode", ctx_r2.isLightMode())("viewMode", ctx_r2.viewMode())("isCompactMode", true);
46376
46519
  } }
46377
- function SymphiqFunnelAnalysisDashboardComponent_Conditional_52_Conditional_3_Conditional_16_Template(rf, ctx) { if (rf & 1) {
46378
- i0.ɵɵelementStart(0, "div", 106);
46379
- i0.ɵɵrepeaterCreate(1, SymphiqFunnelAnalysisDashboardComponent_Conditional_52_Conditional_3_Conditional_16_For_2_Template, 2, 12, "div", 115, i0.ɵɵrepeaterTrackByIndex);
46520
+ function SymphiqFunnelAnalysisDashboardComponent_Conditional_53_Conditional_3_Conditional_16_Template(rf, ctx) { if (rf & 1) {
46521
+ i0.ɵɵelementStart(0, "div", 108);
46522
+ i0.ɵɵrepeaterCreate(1, SymphiqFunnelAnalysisDashboardComponent_Conditional_53_Conditional_3_Conditional_16_For_2_Template, 2, 12, "div", 117, i0.ɵɵrepeaterTrackByIndex);
46380
46523
  i0.ɵɵelementEnd();
46381
46524
  } if (rf & 2) {
46382
46525
  const ctx_r2 = i0.ɵɵnextContext(3);
46383
46526
  i0.ɵɵadvance();
46384
46527
  i0.ɵɵrepeater(ctx_r2.insights());
46385
46528
  } }
46386
- function SymphiqFunnelAnalysisDashboardComponent_Conditional_52_Conditional_3_Template(rf, ctx) { if (rf & 1) {
46387
- i0.ɵɵconditionalCreate(0, SymphiqFunnelAnalysisDashboardComponent_Conditional_52_Conditional_3_Conditional_0_Template, 1, 1, "symphiq-section-divider", 100);
46388
- i0.ɵɵelementStart(1, "section", 101);
46389
- i0.ɵɵelement(2, "div", 102);
46390
- i0.ɵɵelementStart(3, "div", 103)(4, "div", 104)(5, "div", 9)(6, "div", 80)(7, "div", 9);
46529
+ function SymphiqFunnelAnalysisDashboardComponent_Conditional_53_Conditional_3_Template(rf, ctx) { if (rf & 1) {
46530
+ i0.ɵɵconditionalCreate(0, SymphiqFunnelAnalysisDashboardComponent_Conditional_53_Conditional_3_Conditional_0_Template, 1, 1, "symphiq-section-divider", 102);
46531
+ i0.ɵɵelementStart(1, "section", 103);
46532
+ i0.ɵɵelement(2, "div", 104);
46533
+ i0.ɵɵelementStart(3, "div", 105)(4, "div", 106)(5, "div", 9)(6, "div", 82)(7, "div", 9);
46391
46534
  i0.ɵɵnamespaceSVG();
46392
- i0.ɵɵelementStart(8, "svg", 81);
46393
- i0.ɵɵelement(9, "path", 82);
46535
+ i0.ɵɵelementStart(8, "svg", 83);
46536
+ i0.ɵɵelement(9, "path", 84);
46394
46537
  i0.ɵɵelementEnd();
46395
46538
  i0.ɵɵnamespaceHTML();
46396
- i0.ɵɵelementStart(10, "h2", 83);
46539
+ i0.ɵɵelementStart(10, "h2", 85);
46397
46540
  i0.ɵɵtext(11, "Key Insights");
46398
46541
  i0.ɵɵelementEnd()()()();
46399
46542
  i0.ɵɵelementStart(12, "span", 23);
46400
46543
  i0.ɵɵtext(13);
46401
46544
  i0.ɵɵelementEnd()();
46402
- i0.ɵɵconditionalCreate(14, SymphiqFunnelAnalysisDashboardComponent_Conditional_52_Conditional_3_Conditional_14_Template, 3, 1, "div", 105)(15, SymphiqFunnelAnalysisDashboardComponent_Conditional_52_Conditional_3_Conditional_15_Template, 3, 0, "div", 105)(16, SymphiqFunnelAnalysisDashboardComponent_Conditional_52_Conditional_3_Conditional_16_Template, 3, 0, "div", 106);
46545
+ i0.ɵɵconditionalCreate(14, SymphiqFunnelAnalysisDashboardComponent_Conditional_53_Conditional_3_Conditional_14_Template, 3, 1, "div", 107)(15, SymphiqFunnelAnalysisDashboardComponent_Conditional_53_Conditional_3_Conditional_15_Template, 3, 0, "div", 107)(16, SymphiqFunnelAnalysisDashboardComponent_Conditional_53_Conditional_3_Conditional_16_Template, 3, 0, "div", 108);
46403
46546
  i0.ɵɵelementEnd()();
46404
46547
  } if (rf & 2) {
46405
46548
  const ctx_r2 = i0.ɵɵnextContext(2);
@@ -46419,14 +46562,14 @@ function SymphiqFunnelAnalysisDashboardComponent_Conditional_52_Conditional_3_Te
46419
46562
  i0.ɵɵadvance();
46420
46563
  i0.ɵɵconditional(ctx_r2.isDataLoading() || ctx_r2.viewModeService.isExpanded() && ctx_r2.viewModeService.getIsTransitioning() ? 14 : ctx_r2.viewModeService.isExpanded() ? 15 : 16);
46421
46564
  } }
46422
- function SymphiqFunnelAnalysisDashboardComponent_Conditional_52_Conditional_4_Conditional_0_Template(rf, ctx) { if (rf & 1) {
46423
- i0.ɵɵelementStart(0, "div", 116)(1, "div", 132);
46424
- i0.ɵɵelement(2, "div", 133);
46565
+ function SymphiqFunnelAnalysisDashboardComponent_Conditional_53_Conditional_4_Conditional_0_Template(rf, ctx) { if (rf & 1) {
46566
+ i0.ɵɵelementStart(0, "div", 118)(1, "div", 134);
46567
+ i0.ɵɵelement(2, "div", 135);
46425
46568
  i0.ɵɵelementEnd();
46426
- i0.ɵɵelementStart(3, "div", 134)(4, "div", 135);
46569
+ i0.ɵɵelementStart(3, "div", 136)(4, "div", 137);
46427
46570
  i0.ɵɵnamespaceSVG();
46428
- i0.ɵɵelementStart(5, "svg", 136);
46429
- i0.ɵɵelement(6, "path", 137);
46571
+ i0.ɵɵelementStart(5, "svg", 138);
46572
+ i0.ɵɵelement(6, "path", 139);
46430
46573
  i0.ɵɵelementEnd()()()();
46431
46574
  } if (rf & 2) {
46432
46575
  const ctx_r2 = i0.ɵɵnextContext(3);
@@ -46437,13 +46580,13 @@ function SymphiqFunnelAnalysisDashboardComponent_Conditional_52_Conditional_4_Co
46437
46580
  i0.ɵɵadvance();
46438
46581
  i0.ɵɵproperty("ngClass", ctx_r2.isLightMode() ? "text-emerald-500" : "text-emerald-400");
46439
46582
  } }
46440
- function SymphiqFunnelAnalysisDashboardComponent_Conditional_52_Conditional_4_Conditional_14_Template(rf, ctx) { if (rf & 1) {
46441
- i0.ɵɵelementStart(0, "div", 123);
46442
- i0.ɵɵelement(1, "div", 138);
46583
+ function SymphiqFunnelAnalysisDashboardComponent_Conditional_53_Conditional_4_Conditional_14_Template(rf, ctx) { if (rf & 1) {
46584
+ i0.ɵɵelementStart(0, "div", 125);
46585
+ i0.ɵɵelement(1, "div", 140);
46443
46586
  i0.ɵɵelementEnd();
46444
46587
  } }
46445
- function SymphiqFunnelAnalysisDashboardComponent_Conditional_52_Conditional_4_For_17_Conditional_0_Template(rf, ctx) { if (rf & 1) {
46446
- i0.ɵɵelementStart(0, "option", 139);
46588
+ function SymphiqFunnelAnalysisDashboardComponent_Conditional_53_Conditional_4_For_17_Conditional_0_Template(rf, ctx) { if (rf & 1) {
46589
+ i0.ɵɵelementStart(0, "option", 141);
46447
46590
  i0.ɵɵtext(1);
46448
46591
  i0.ɵɵelementEnd();
46449
46592
  } if (rf & 2) {
@@ -46452,8 +46595,8 @@ function SymphiqFunnelAnalysisDashboardComponent_Conditional_52_Conditional_4_Fo
46452
46595
  i0.ɵɵadvance();
46453
46596
  i0.ɵɵtextInterpolate(cat_r28.label);
46454
46597
  } }
46455
- function SymphiqFunnelAnalysisDashboardComponent_Conditional_52_Conditional_4_For_17_Conditional_1_Template(rf, ctx) { if (rf & 1) {
46456
- i0.ɵɵelementStart(0, "option", 49);
46598
+ function SymphiqFunnelAnalysisDashboardComponent_Conditional_53_Conditional_4_For_17_Conditional_1_Template(rf, ctx) { if (rf & 1) {
46599
+ i0.ɵɵelementStart(0, "option", 50);
46457
46600
  i0.ɵɵtext(1);
46458
46601
  i0.ɵɵelementEnd();
46459
46602
  } if (rf & 2) {
@@ -46462,24 +46605,24 @@ function SymphiqFunnelAnalysisDashboardComponent_Conditional_52_Conditional_4_Fo
46462
46605
  i0.ɵɵadvance();
46463
46606
  i0.ɵɵtextInterpolate(cat_r28.label);
46464
46607
  } }
46465
- function SymphiqFunnelAnalysisDashboardComponent_Conditional_52_Conditional_4_For_17_Template(rf, ctx) { if (rf & 1) {
46466
- i0.ɵɵconditionalCreate(0, SymphiqFunnelAnalysisDashboardComponent_Conditional_52_Conditional_4_For_17_Conditional_0_Template, 2, 2, "option", 139)(1, SymphiqFunnelAnalysisDashboardComponent_Conditional_52_Conditional_4_For_17_Conditional_1_Template, 2, 2, "option", 49);
46608
+ function SymphiqFunnelAnalysisDashboardComponent_Conditional_53_Conditional_4_For_17_Template(rf, ctx) { if (rf & 1) {
46609
+ i0.ɵɵconditionalCreate(0, SymphiqFunnelAnalysisDashboardComponent_Conditional_53_Conditional_4_For_17_Conditional_0_Template, 2, 2, "option", 141)(1, SymphiqFunnelAnalysisDashboardComponent_Conditional_53_Conditional_4_For_17_Conditional_1_Template, 2, 2, "option", 50);
46467
46610
  } if (rf & 2) {
46468
46611
  const cat_r28 = ctx.$implicit;
46469
46612
  i0.ɵɵconditional(cat_r28.divider ? 0 : 1);
46470
46613
  } }
46471
- function SymphiqFunnelAnalysisDashboardComponent_Conditional_52_Conditional_4_Conditional_20_Template(rf, ctx) { if (rf & 1) {
46614
+ function SymphiqFunnelAnalysisDashboardComponent_Conditional_53_Conditional_4_Conditional_20_Template(rf, ctx) { if (rf & 1) {
46472
46615
  i0.ɵɵnamespaceSVG();
46473
- i0.ɵɵelement(0, "path", 126);
46616
+ i0.ɵɵelement(0, "path", 128);
46474
46617
  } }
46475
- function SymphiqFunnelAnalysisDashboardComponent_Conditional_52_Conditional_4_Conditional_21_Template(rf, ctx) { if (rf & 1) {
46618
+ function SymphiqFunnelAnalysisDashboardComponent_Conditional_53_Conditional_4_Conditional_21_Template(rf, ctx) { if (rf & 1) {
46476
46619
  i0.ɵɵnamespaceSVG();
46477
- i0.ɵɵelement(0, "path", 127);
46620
+ i0.ɵɵelement(0, "path", 129);
46478
46621
  } }
46479
- function SymphiqFunnelAnalysisDashboardComponent_Conditional_52_Conditional_4_For_27_Conditional_0_Template(rf, ctx) { if (rf & 1) {
46622
+ function SymphiqFunnelAnalysisDashboardComponent_Conditional_53_Conditional_4_For_27_Conditional_0_Template(rf, ctx) { if (rf & 1) {
46480
46623
  const _r29 = i0.ɵɵgetCurrentView();
46481
- i0.ɵɵelementStart(0, "button", 141);
46482
- i0.ɵɵlistener("click", function SymphiqFunnelAnalysisDashboardComponent_Conditional_52_Conditional_4_For_27_Conditional_0_Template_button_click_0_listener() { i0.ɵɵrestoreView(_r29); const cat_r30 = i0.ɵɵnextContext().$implicit; const ctx_r2 = i0.ɵɵnextContext(3); return i0.ɵɵresetView(ctx_r2.changeCategoryFilter(cat_r30.value)); });
46624
+ i0.ɵɵelementStart(0, "button", 143);
46625
+ i0.ɵɵlistener("click", function SymphiqFunnelAnalysisDashboardComponent_Conditional_53_Conditional_4_For_27_Conditional_0_Template_button_click_0_listener() { i0.ɵɵrestoreView(_r29); const cat_r30 = i0.ɵɵnextContext().$implicit; const ctx_r2 = i0.ɵɵnextContext(3); return i0.ɵɵresetView(ctx_r2.changeCategoryFilter(cat_r30.value)); });
46483
46626
  i0.ɵɵtext(1);
46484
46627
  i0.ɵɵelementEnd();
46485
46628
  } if (rf & 2) {
@@ -46490,28 +46633,28 @@ function SymphiqFunnelAnalysisDashboardComponent_Conditional_52_Conditional_4_Fo
46490
46633
  i0.ɵɵadvance();
46491
46634
  i0.ɵɵtextInterpolate1(" ", cat_r30.label, " ");
46492
46635
  } }
46493
- function SymphiqFunnelAnalysisDashboardComponent_Conditional_52_Conditional_4_For_27_Template(rf, ctx) { if (rf & 1) {
46494
- i0.ɵɵconditionalCreate(0, SymphiqFunnelAnalysisDashboardComponent_Conditional_52_Conditional_4_For_27_Conditional_0_Template, 2, 4, "button", 140);
46636
+ function SymphiqFunnelAnalysisDashboardComponent_Conditional_53_Conditional_4_For_27_Template(rf, ctx) { if (rf & 1) {
46637
+ i0.ɵɵconditionalCreate(0, SymphiqFunnelAnalysisDashboardComponent_Conditional_53_Conditional_4_For_27_Conditional_0_Template, 2, 4, "button", 142);
46495
46638
  } if (rf & 2) {
46496
46639
  const cat_r30 = ctx.$implicit;
46497
46640
  i0.ɵɵconditional(!cat_r30.divider ? 0 : -1);
46498
46641
  } }
46499
- function SymphiqFunnelAnalysisDashboardComponent_Conditional_52_Conditional_4_Conditional_28_For_2_For_10_Template(rf, ctx) { if (rf & 1) {
46500
- i0.ɵɵelement(0, "symphiq-skeleton-loader", 86);
46642
+ function SymphiqFunnelAnalysisDashboardComponent_Conditional_53_Conditional_4_Conditional_28_For_2_For_10_Template(rf, ctx) { if (rf & 1) {
46643
+ i0.ɵɵelement(0, "symphiq-skeleton-loader", 88);
46501
46644
  } if (rf & 2) {
46502
46645
  const ctx_r2 = i0.ɵɵnextContext(5);
46503
46646
  i0.ɵɵproperty("width", "100%")("height", "120px")("isLightMode", ctx_r2.isLightMode());
46504
46647
  } }
46505
- function SymphiqFunnelAnalysisDashboardComponent_Conditional_52_Conditional_4_Conditional_28_For_2_Template(rf, ctx) { if (rf & 1) {
46506
- i0.ɵɵelementStart(0, "div", 142)(1, "div", 143)(2, "div", 9);
46507
- i0.ɵɵelement(3, "symphiq-skeleton-loader", 86);
46508
- i0.ɵɵelementStart(4, "div", 98);
46509
- i0.ɵɵelement(5, "symphiq-skeleton-loader", 86)(6, "symphiq-skeleton-loader", 86);
46648
+ function SymphiqFunnelAnalysisDashboardComponent_Conditional_53_Conditional_4_Conditional_28_For_2_Template(rf, ctx) { if (rf & 1) {
46649
+ i0.ɵɵelementStart(0, "div", 144)(1, "div", 145)(2, "div", 9);
46650
+ i0.ɵɵelement(3, "symphiq-skeleton-loader", 88);
46651
+ i0.ɵɵelementStart(4, "div", 100);
46652
+ i0.ɵɵelement(5, "symphiq-skeleton-loader", 88)(6, "symphiq-skeleton-loader", 88);
46510
46653
  i0.ɵɵelementEnd()();
46511
- i0.ɵɵelement(7, "symphiq-skeleton-loader", 86);
46654
+ i0.ɵɵelement(7, "symphiq-skeleton-loader", 88);
46512
46655
  i0.ɵɵelementEnd();
46513
- i0.ɵɵelementStart(8, "div", 144);
46514
- i0.ɵɵrepeaterCreate(9, SymphiqFunnelAnalysisDashboardComponent_Conditional_52_Conditional_4_Conditional_28_For_2_For_10_Template, 1, 3, "symphiq-skeleton-loader", 86, i0.ɵɵrepeaterTrackByIdentity);
46656
+ i0.ɵɵelementStart(8, "div", 146);
46657
+ i0.ɵɵrepeaterCreate(9, SymphiqFunnelAnalysisDashboardComponent_Conditional_53_Conditional_4_Conditional_28_For_2_For_10_Template, 1, 3, "symphiq-skeleton-loader", 88, i0.ɵɵrepeaterTrackByIdentity);
46515
46658
  i0.ɵɵelementEnd()();
46516
46659
  } if (rf & 2) {
46517
46660
  const ctx_r2 = i0.ɵɵnextContext(4);
@@ -46527,70 +46670,70 @@ function SymphiqFunnelAnalysisDashboardComponent_Conditional_52_Conditional_4_Co
46527
46670
  i0.ɵɵadvance(2);
46528
46671
  i0.ɵɵrepeater(i0.ɵɵpureFunction0(13, _c4$3));
46529
46672
  } }
46530
- function SymphiqFunnelAnalysisDashboardComponent_Conditional_52_Conditional_4_Conditional_28_Template(rf, ctx) { if (rf & 1) {
46531
- i0.ɵɵelementStart(0, "div", 130);
46532
- i0.ɵɵrepeaterCreate(1, SymphiqFunnelAnalysisDashboardComponent_Conditional_52_Conditional_4_Conditional_28_For_2_Template, 11, 14, "div", 142, i0.ɵɵrepeaterTrackByIdentity);
46673
+ function SymphiqFunnelAnalysisDashboardComponent_Conditional_53_Conditional_4_Conditional_28_Template(rf, ctx) { if (rf & 1) {
46674
+ i0.ɵɵelementStart(0, "div", 132);
46675
+ i0.ɵɵrepeaterCreate(1, SymphiqFunnelAnalysisDashboardComponent_Conditional_53_Conditional_4_Conditional_28_For_2_Template, 11, 14, "div", 144, i0.ɵɵrepeaterTrackByIdentity);
46533
46676
  i0.ɵɵelementEnd();
46534
46677
  } if (rf & 2) {
46535
46678
  i0.ɵɵadvance();
46536
46679
  i0.ɵɵrepeater(i0.ɵɵpureFunction0(0, _c3$5));
46537
46680
  } }
46538
- function SymphiqFunnelAnalysisDashboardComponent_Conditional_52_Conditional_4_Conditional_29_For_2_Conditional_2_Conditional_0_For_2_Template(rf, ctx) { if (rf & 1) {
46539
- i0.ɵɵelementStart(0, "div", 150);
46540
- i0.ɵɵelement(1, "symphiq-funnel-analysis-metric-card", 151);
46681
+ function SymphiqFunnelAnalysisDashboardComponent_Conditional_53_Conditional_4_Conditional_29_For_2_Conditional_2_Conditional_0_For_2_Template(rf, ctx) { if (rf & 1) {
46682
+ i0.ɵɵelementStart(0, "div", 152);
46683
+ i0.ɵɵelement(1, "symphiq-funnel-analysis-metric-card", 153);
46541
46684
  i0.ɵɵelementEnd();
46542
46685
  } if (rf & 2) {
46543
46686
  const metric_r31 = ctx.$implicit;
46544
- const ɵ$index_508_r32 = ctx.$index;
46545
- const ɵ$index_499_r33 = i0.ɵɵnextContext(3).$index;
46687
+ const ɵ$index_513_r32 = ctx.$index;
46688
+ const ɵ$index_504_r33 = i0.ɵɵnextContext(3).$index;
46546
46689
  const ctx_r2 = i0.ɵɵnextContext(4);
46547
- i0.ɵɵclassMap(ctx_r2.getBentoCardClass(metric_r31, ɵ$index_508_r32));
46548
- i0.ɵɵstyleProp("animation-delay", 0.6 + ɵ$index_499_r33 * 0.15 + ɵ$index_508_r32 * 0.08 + "s");
46690
+ i0.ɵɵclassMap(ctx_r2.getBentoCardClass(metric_r31, ɵ$index_513_r32));
46691
+ i0.ɵɵstyleProp("animation-delay", 0.6 + ɵ$index_504_r33 * 0.15 + ɵ$index_513_r32 * 0.08 + "s");
46549
46692
  i0.ɵɵadvance();
46550
46693
  i0.ɵɵproperty("metric", metric_r31)("insights", ctx_r2.insights())("charts", ctx_r2.chartsForMetric(metric_r31))("allCharts", ctx_r2.allCharts())("analysis", ctx_r2.analysisData())("isLightMode", ctx_r2.isLightMode())("viewMode", ctx_r2.viewMode())("isCompactMode", false)("currencySymbol", ctx_r2.currencySymbol());
46551
46694
  } }
46552
- function SymphiqFunnelAnalysisDashboardComponent_Conditional_52_Conditional_4_Conditional_29_For_2_Conditional_2_Conditional_0_Template(rf, ctx) { if (rf & 1) {
46553
- i0.ɵɵelementStart(0, "div", 147);
46554
- i0.ɵɵrepeaterCreate(1, SymphiqFunnelAnalysisDashboardComponent_Conditional_52_Conditional_4_Conditional_29_For_2_Conditional_2_Conditional_0_For_2_Template, 2, 13, "div", 149, i0.ɵɵrepeaterTrackByIndex);
46695
+ function SymphiqFunnelAnalysisDashboardComponent_Conditional_53_Conditional_4_Conditional_29_For_2_Conditional_2_Conditional_0_Template(rf, ctx) { if (rf & 1) {
46696
+ i0.ɵɵelementStart(0, "div", 149);
46697
+ i0.ɵɵrepeaterCreate(1, SymphiqFunnelAnalysisDashboardComponent_Conditional_53_Conditional_4_Conditional_29_For_2_Conditional_2_Conditional_0_For_2_Template, 2, 13, "div", 151, i0.ɵɵrepeaterTrackByIndex);
46555
46698
  i0.ɵɵelementEnd();
46556
46699
  } if (rf & 2) {
46557
46700
  const funnelGroup_r34 = i0.ɵɵnextContext(2).$implicit;
46558
46701
  i0.ɵɵadvance();
46559
46702
  i0.ɵɵrepeater(funnelGroup_r34.relatedMetrics);
46560
46703
  } }
46561
- function SymphiqFunnelAnalysisDashboardComponent_Conditional_52_Conditional_4_Conditional_29_For_2_Conditional_2_Conditional_1_For_2_Template(rf, ctx) { if (rf & 1) {
46562
- i0.ɵɵelementStart(0, "div", 150);
46563
- i0.ɵɵelement(1, "symphiq-funnel-analysis-metric-card", 90);
46704
+ function SymphiqFunnelAnalysisDashboardComponent_Conditional_53_Conditional_4_Conditional_29_For_2_Conditional_2_Conditional_1_For_2_Template(rf, ctx) { if (rf & 1) {
46705
+ i0.ɵɵelementStart(0, "div", 152);
46706
+ i0.ɵɵelement(1, "symphiq-funnel-analysis-metric-card", 92);
46564
46707
  i0.ɵɵelementEnd();
46565
46708
  } if (rf & 2) {
46566
46709
  const metric_r35 = ctx.$implicit;
46567
- const ɵ$index_516_r36 = ctx.$index;
46568
- const ɵ$index_499_r33 = i0.ɵɵnextContext(3).$index;
46710
+ const ɵ$index_521_r36 = ctx.$index;
46711
+ const ɵ$index_504_r33 = i0.ɵɵnextContext(3).$index;
46569
46712
  const ctx_r2 = i0.ɵɵnextContext(4);
46570
- i0.ɵɵstyleProp("animation-delay", 0.6 + ɵ$index_499_r33 * 0.15 + ɵ$index_516_r36 * 0.08 + "s");
46713
+ i0.ɵɵstyleProp("animation-delay", 0.6 + ɵ$index_504_r33 * 0.15 + ɵ$index_521_r36 * 0.08 + "s");
46571
46714
  i0.ɵɵadvance();
46572
46715
  i0.ɵɵproperty("metric", metric_r35)("insights", ctx_r2.insights())("charts", ctx_r2.chartsForMetric(metric_r35))("allCharts", ctx_r2.allCharts())("analysis", ctx_r2.analysisData())("isLightMode", ctx_r2.isLightMode())("viewMode", ctx_r2.viewMode())("isCompactMode", true)("currencySymbol", ctx_r2.currencySymbol());
46573
46716
  } }
46574
- function SymphiqFunnelAnalysisDashboardComponent_Conditional_52_Conditional_4_Conditional_29_For_2_Conditional_2_Conditional_1_Template(rf, ctx) { if (rf & 1) {
46575
- i0.ɵɵelementStart(0, "div", 148);
46576
- i0.ɵɵrepeaterCreate(1, SymphiqFunnelAnalysisDashboardComponent_Conditional_52_Conditional_4_Conditional_29_For_2_Conditional_2_Conditional_1_For_2_Template, 2, 11, "div", 152, i0.ɵɵrepeaterTrackByIndex);
46717
+ function SymphiqFunnelAnalysisDashboardComponent_Conditional_53_Conditional_4_Conditional_29_For_2_Conditional_2_Conditional_1_Template(rf, ctx) { if (rf & 1) {
46718
+ i0.ɵɵelementStart(0, "div", 150);
46719
+ i0.ɵɵrepeaterCreate(1, SymphiqFunnelAnalysisDashboardComponent_Conditional_53_Conditional_4_Conditional_29_For_2_Conditional_2_Conditional_1_For_2_Template, 2, 11, "div", 154, i0.ɵɵrepeaterTrackByIndex);
46577
46720
  i0.ɵɵelementEnd();
46578
46721
  } if (rf & 2) {
46579
46722
  const funnelGroup_r34 = i0.ɵɵnextContext(2).$implicit;
46580
46723
  i0.ɵɵadvance();
46581
46724
  i0.ɵɵrepeater(funnelGroup_r34.relatedMetrics);
46582
46725
  } }
46583
- function SymphiqFunnelAnalysisDashboardComponent_Conditional_52_Conditional_4_Conditional_29_For_2_Conditional_2_Conditional_2_For_2_Template(rf, ctx) { if (rf & 1) {
46584
- i0.ɵɵelementStart(0, "div", 153)(1, "div", 108)(2, "div", 120);
46585
- i0.ɵɵelement(3, "symphiq-skeleton-loader", 86)(4, "symphiq-skeleton-loader", 86);
46726
+ function SymphiqFunnelAnalysisDashboardComponent_Conditional_53_Conditional_4_Conditional_29_For_2_Conditional_2_Conditional_2_For_2_Template(rf, ctx) { if (rf & 1) {
46727
+ i0.ɵɵelementStart(0, "div", 155)(1, "div", 110)(2, "div", 122);
46728
+ i0.ɵɵelement(3, "symphiq-skeleton-loader", 88)(4, "symphiq-skeleton-loader", 88);
46586
46729
  i0.ɵɵelementEnd();
46587
- i0.ɵɵelement(5, "symphiq-skeleton-loader", 86);
46588
- i0.ɵɵelementStart(6, "div", 154);
46589
- i0.ɵɵelement(7, "symphiq-skeleton-loader", 86)(8, "symphiq-skeleton-loader", 86);
46730
+ i0.ɵɵelement(5, "symphiq-skeleton-loader", 88);
46731
+ i0.ɵɵelementStart(6, "div", 156);
46732
+ i0.ɵɵelement(7, "symphiq-skeleton-loader", 88)(8, "symphiq-skeleton-loader", 88);
46590
46733
  i0.ɵɵelementEnd();
46591
- i0.ɵɵelement(9, "symphiq-skeleton-loader", 86)(10, "symphiq-skeleton-loader", 86);
46592
- i0.ɵɵelementStart(11, "div", 155);
46593
- i0.ɵɵelement(12, "symphiq-skeleton-loader", 86);
46734
+ i0.ɵɵelement(9, "symphiq-skeleton-loader", 88)(10, "symphiq-skeleton-loader", 88);
46735
+ i0.ɵɵelementStart(11, "div", 157);
46736
+ i0.ɵɵelement(12, "symphiq-skeleton-loader", 88);
46594
46737
  i0.ɵɵelementEnd()()();
46595
46738
  } if (rf & 2) {
46596
46739
  const ctx_r2 = i0.ɵɵnextContext(7);
@@ -46612,47 +46755,47 @@ function SymphiqFunnelAnalysisDashboardComponent_Conditional_52_Conditional_4_Co
46612
46755
  i0.ɵɵadvance(2);
46613
46756
  i0.ɵɵproperty("width", "100%")("height", "120px")("isLightMode", ctx_r2.isLightMode());
46614
46757
  } }
46615
- function SymphiqFunnelAnalysisDashboardComponent_Conditional_52_Conditional_4_Conditional_29_For_2_Conditional_2_Conditional_2_Template(rf, ctx) { if (rf & 1) {
46616
- i0.ɵɵelementStart(0, "div", 147);
46617
- i0.ɵɵrepeaterCreate(1, SymphiqFunnelAnalysisDashboardComponent_Conditional_52_Conditional_4_Conditional_29_For_2_Conditional_2_Conditional_2_For_2_Template, 13, 25, "div", 153, i0.ɵɵrepeaterTrackByIdentity);
46758
+ function SymphiqFunnelAnalysisDashboardComponent_Conditional_53_Conditional_4_Conditional_29_For_2_Conditional_2_Conditional_2_Template(rf, ctx) { if (rf & 1) {
46759
+ i0.ɵɵelementStart(0, "div", 149);
46760
+ i0.ɵɵrepeaterCreate(1, SymphiqFunnelAnalysisDashboardComponent_Conditional_53_Conditional_4_Conditional_29_For_2_Conditional_2_Conditional_2_For_2_Template, 13, 25, "div", 155, i0.ɵɵrepeaterTrackByIdentity);
46618
46761
  i0.ɵɵelementEnd();
46619
46762
  } if (rf & 2) {
46620
46763
  i0.ɵɵadvance();
46621
46764
  i0.ɵɵrepeater(i0.ɵɵpureFunction0(0, _c4$3));
46622
46765
  } }
46623
- function SymphiqFunnelAnalysisDashboardComponent_Conditional_52_Conditional_4_Conditional_29_For_2_Conditional_2_Template(rf, ctx) { if (rf & 1) {
46624
- i0.ɵɵconditionalCreate(0, SymphiqFunnelAnalysisDashboardComponent_Conditional_52_Conditional_4_Conditional_29_For_2_Conditional_2_Conditional_0_Template, 3, 0, "div", 147)(1, SymphiqFunnelAnalysisDashboardComponent_Conditional_52_Conditional_4_Conditional_29_For_2_Conditional_2_Conditional_1_Template, 3, 0, "div", 148)(2, SymphiqFunnelAnalysisDashboardComponent_Conditional_52_Conditional_4_Conditional_29_For_2_Conditional_2_Conditional_2_Template, 3, 1, "div", 147);
46766
+ function SymphiqFunnelAnalysisDashboardComponent_Conditional_53_Conditional_4_Conditional_29_For_2_Conditional_2_Template(rf, ctx) { if (rf & 1) {
46767
+ i0.ɵɵconditionalCreate(0, SymphiqFunnelAnalysisDashboardComponent_Conditional_53_Conditional_4_Conditional_29_For_2_Conditional_2_Conditional_0_Template, 3, 0, "div", 149)(1, SymphiqFunnelAnalysisDashboardComponent_Conditional_53_Conditional_4_Conditional_29_For_2_Conditional_2_Conditional_1_Template, 3, 0, "div", 150)(2, SymphiqFunnelAnalysisDashboardComponent_Conditional_53_Conditional_4_Conditional_29_For_2_Conditional_2_Conditional_2_Template, 3, 1, "div", 149);
46625
46768
  } if (rf & 2) {
46626
46769
  const ctx_r2 = i0.ɵɵnextContext(5);
46627
46770
  i0.ɵɵconditional(ctx_r2.viewModeService.isExpanded() ? 0 : !ctx_r2.viewModeService.isExpanded() ? 1 : 2);
46628
46771
  } }
46629
- function SymphiqFunnelAnalysisDashboardComponent_Conditional_52_Conditional_4_Conditional_29_For_2_Template(rf, ctx) { if (rf & 1) {
46630
- i0.ɵɵelementStart(0, "div", 146);
46631
- i0.ɵɵelement(1, "symphiq-funnel-analysis-metric-card", 90);
46772
+ function SymphiqFunnelAnalysisDashboardComponent_Conditional_53_Conditional_4_Conditional_29_For_2_Template(rf, ctx) { if (rf & 1) {
46773
+ i0.ɵɵelementStart(0, "div", 148);
46774
+ i0.ɵɵelement(1, "symphiq-funnel-analysis-metric-card", 92);
46632
46775
  i0.ɵɵelementEnd();
46633
- i0.ɵɵconditionalCreate(2, SymphiqFunnelAnalysisDashboardComponent_Conditional_52_Conditional_4_Conditional_29_For_2_Conditional_2_Template, 3, 1);
46776
+ i0.ɵɵconditionalCreate(2, SymphiqFunnelAnalysisDashboardComponent_Conditional_53_Conditional_4_Conditional_29_For_2_Conditional_2_Template, 3, 1);
46634
46777
  } if (rf & 2) {
46635
46778
  const funnelGroup_r34 = ctx.$implicit;
46636
- const ɵ$index_499_r33 = ctx.$index;
46779
+ const ɵ$index_504_r33 = ctx.$index;
46637
46780
  const ctx_r2 = i0.ɵɵnextContext(4);
46638
- i0.ɵɵstyleProp("animation-delay", 0.5 + ɵ$index_499_r33 * 0.15 + "s");
46639
- i0.ɵɵproperty("libSymphiqSearchHighlight", ctx_r2.searchService.highlightedResultId())("highlightId", "metric-" + ɵ$index_499_r33);
46781
+ i0.ɵɵstyleProp("animation-delay", 0.5 + ɵ$index_504_r33 * 0.15 + "s");
46782
+ i0.ɵɵproperty("libSymphiqSearchHighlight", ctx_r2.searchService.highlightedResultId())("highlightId", "metric-" + ɵ$index_504_r33);
46640
46783
  i0.ɵɵadvance();
46641
46784
  i0.ɵɵproperty("metric", funnelGroup_r34.funnelMetric)("insights", ctx_r2.insights())("charts", ctx_r2.chartsForMetric(funnelGroup_r34.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());
46642
46785
  i0.ɵɵadvance();
46643
46786
  i0.ɵɵconditional(funnelGroup_r34.relatedMetrics.length > 0 ? 2 : -1);
46644
46787
  } }
46645
- function SymphiqFunnelAnalysisDashboardComponent_Conditional_52_Conditional_4_Conditional_29_ForEmpty_3_Template(rf, ctx) { if (rf & 1) {
46646
- i0.ɵɵelementStart(0, "div", 145);
46788
+ function SymphiqFunnelAnalysisDashboardComponent_Conditional_53_Conditional_4_Conditional_29_ForEmpty_3_Template(rf, ctx) { if (rf & 1) {
46789
+ i0.ɵɵelementStart(0, "div", 147);
46647
46790
  i0.ɵɵnamespaceSVG();
46648
- i0.ɵɵelementStart(1, "svg", 156);
46649
- i0.ɵɵelement(2, "path", 121);
46791
+ i0.ɵɵelementStart(1, "svg", 158);
46792
+ i0.ɵɵelement(2, "path", 123);
46650
46793
  i0.ɵɵelementEnd();
46651
46794
  i0.ɵɵnamespaceHTML();
46652
- i0.ɵɵelementStart(3, "h3", 157);
46795
+ i0.ɵɵelementStart(3, "h3", 159);
46653
46796
  i0.ɵɵtext(4, "No Metrics Found");
46654
46797
  i0.ɵɵelementEnd();
46655
- i0.ɵɵelementStart(5, "p", 158);
46798
+ i0.ɵɵelementStart(5, "p", 160);
46656
46799
  i0.ɵɵtext(6, "No performance metrics match your current filter selection. Try adjusting your filters to see more results.");
46657
46800
  i0.ɵɵelementEnd()();
46658
46801
  } if (rf & 2) {
@@ -46665,9 +46808,9 @@ function SymphiqFunnelAnalysisDashboardComponent_Conditional_52_Conditional_4_Co
46665
46808
  i0.ɵɵadvance(2);
46666
46809
  i0.ɵɵproperty("ngClass", ctx_r2.isLightMode() ? "text-slate-600" : "text-slate-400");
46667
46810
  } }
46668
- function SymphiqFunnelAnalysisDashboardComponent_Conditional_52_Conditional_4_Conditional_29_Template(rf, ctx) { if (rf & 1) {
46669
- i0.ɵɵelementStart(0, "div", 130);
46670
- i0.ɵɵrepeaterCreate(1, SymphiqFunnelAnalysisDashboardComponent_Conditional_52_Conditional_4_Conditional_29_For_2_Template, 3, 14, null, null, i0.ɵɵrepeaterTrackByIndex, false, SymphiqFunnelAnalysisDashboardComponent_Conditional_52_Conditional_4_Conditional_29_ForEmpty_3_Template, 7, 4, "div", 145);
46811
+ function SymphiqFunnelAnalysisDashboardComponent_Conditional_53_Conditional_4_Conditional_29_Template(rf, ctx) { if (rf & 1) {
46812
+ i0.ɵɵelementStart(0, "div", 132);
46813
+ i0.ɵɵrepeaterCreate(1, SymphiqFunnelAnalysisDashboardComponent_Conditional_53_Conditional_4_Conditional_29_For_2_Template, 3, 14, null, null, i0.ɵɵrepeaterTrackByIndex, false, SymphiqFunnelAnalysisDashboardComponent_Conditional_53_Conditional_4_Conditional_29_ForEmpty_3_Template, 7, 4, "div", 147);
46671
46814
  i0.ɵɵelementEnd();
46672
46815
  } if (rf & 2) {
46673
46816
  const ctx_r2 = i0.ɵɵnextContext(3);
@@ -46675,41 +46818,41 @@ function SymphiqFunnelAnalysisDashboardComponent_Conditional_52_Conditional_4_Co
46675
46818
  i0.ɵɵadvance();
46676
46819
  i0.ɵɵrepeater(ctx_r2.groupedMetrics());
46677
46820
  } }
46678
- function SymphiqFunnelAnalysisDashboardComponent_Conditional_52_Conditional_4_Template(rf, ctx) { if (rf & 1) {
46821
+ function SymphiqFunnelAnalysisDashboardComponent_Conditional_53_Conditional_4_Template(rf, ctx) { if (rf & 1) {
46679
46822
  const _r27 = i0.ɵɵgetCurrentView();
46680
- i0.ɵɵconditionalCreate(0, SymphiqFunnelAnalysisDashboardComponent_Conditional_52_Conditional_4_Conditional_0_Template, 7, 3, "div", 116);
46681
- i0.ɵɵelementStart(1, "section", 117);
46682
- i0.ɵɵelement(2, "div", 118);
46683
- i0.ɵɵelementStart(3, "div", 103)(4, "div", 119)(5, "div", 120)(6, "div", 9)(7, "div", 80)(8, "div", 9);
46823
+ i0.ɵɵconditionalCreate(0, SymphiqFunnelAnalysisDashboardComponent_Conditional_53_Conditional_4_Conditional_0_Template, 7, 3, "div", 118);
46824
+ i0.ɵɵelementStart(1, "section", 119);
46825
+ i0.ɵɵelement(2, "div", 120);
46826
+ i0.ɵɵelementStart(3, "div", 105)(4, "div", 121)(5, "div", 122)(6, "div", 9)(7, "div", 82)(8, "div", 9);
46684
46827
  i0.ɵɵnamespaceSVG();
46685
- i0.ɵɵelementStart(9, "svg", 81);
46686
- i0.ɵɵelement(10, "path", 121);
46828
+ i0.ɵɵelementStart(9, "svg", 83);
46829
+ i0.ɵɵelement(10, "path", 123);
46687
46830
  i0.ɵɵelementEnd();
46688
46831
  i0.ɵɵnamespaceHTML();
46689
- i0.ɵɵelementStart(11, "h2", 83);
46832
+ i0.ɵɵelementStart(11, "h2", 85);
46690
46833
  i0.ɵɵtext(12, "Performance Metrics");
46691
46834
  i0.ɵɵelementEnd()()()();
46692
- i0.ɵɵelementStart(13, "div", 122);
46693
- i0.ɵɵconditionalCreate(14, SymphiqFunnelAnalysisDashboardComponent_Conditional_52_Conditional_4_Conditional_14_Template, 2, 0, "div", 123);
46694
- i0.ɵɵelementStart(15, "select", 124);
46695
- i0.ɵɵlistener("ngModelChange", function SymphiqFunnelAnalysisDashboardComponent_Conditional_52_Conditional_4_Template_select_ngModelChange_15_listener($event) { i0.ɵɵrestoreView(_r27); const ctx_r2 = i0.ɵɵnextContext(2); return i0.ɵɵresetView(ctx_r2.changeCategoryFilter($event)); });
46696
- i0.ɵɵrepeaterCreate(16, SymphiqFunnelAnalysisDashboardComponent_Conditional_52_Conditional_4_For_17_Template, 2, 1, null, null, _forTrack0$p);
46697
- i0.ɵɵelementEnd();
46698
- i0.ɵɵelementStart(18, "button", 125);
46699
- i0.ɵɵlistener("click", function SymphiqFunnelAnalysisDashboardComponent_Conditional_52_Conditional_4_Template_button_click_18_listener() { i0.ɵɵrestoreView(_r27); const ctx_r2 = i0.ɵɵnextContext(2); return i0.ɵɵresetView(ctx_r2.toggleSortOrder()); });
46835
+ i0.ɵɵelementStart(13, "div", 124);
46836
+ i0.ɵɵconditionalCreate(14, SymphiqFunnelAnalysisDashboardComponent_Conditional_53_Conditional_4_Conditional_14_Template, 2, 0, "div", 125);
46837
+ i0.ɵɵelementStart(15, "select", 126);
46838
+ i0.ɵɵlistener("ngModelChange", function SymphiqFunnelAnalysisDashboardComponent_Conditional_53_Conditional_4_Template_select_ngModelChange_15_listener($event) { i0.ɵɵrestoreView(_r27); const ctx_r2 = i0.ɵɵnextContext(2); return i0.ɵɵresetView(ctx_r2.changeCategoryFilter($event)); });
46839
+ i0.ɵɵrepeaterCreate(16, SymphiqFunnelAnalysisDashboardComponent_Conditional_53_Conditional_4_For_17_Template, 2, 1, null, null, _forTrack0$p);
46840
+ i0.ɵɵelementEnd();
46841
+ i0.ɵɵelementStart(18, "button", 127);
46842
+ i0.ɵɵlistener("click", function SymphiqFunnelAnalysisDashboardComponent_Conditional_53_Conditional_4_Template_button_click_18_listener() { i0.ɵɵrestoreView(_r27); const ctx_r2 = i0.ɵɵnextContext(2); return i0.ɵɵresetView(ctx_r2.toggleSortOrder()); });
46700
46843
  i0.ɵɵnamespaceSVG();
46701
46844
  i0.ɵɵelementStart(19, "svg", 17);
46702
- i0.ɵɵconditionalCreate(20, SymphiqFunnelAnalysisDashboardComponent_Conditional_52_Conditional_4_Conditional_20_Template, 1, 0, ":svg:path", 126);
46703
- i0.ɵɵconditionalCreate(21, SymphiqFunnelAnalysisDashboardComponent_Conditional_52_Conditional_4_Conditional_21_Template, 1, 0, ":svg:path", 127);
46845
+ i0.ɵɵconditionalCreate(20, SymphiqFunnelAnalysisDashboardComponent_Conditional_53_Conditional_4_Conditional_20_Template, 1, 0, ":svg:path", 128);
46846
+ i0.ɵɵconditionalCreate(21, SymphiqFunnelAnalysisDashboardComponent_Conditional_53_Conditional_4_Conditional_21_Template, 1, 0, ":svg:path", 129);
46704
46847
  i0.ɵɵelementEnd();
46705
46848
  i0.ɵɵnamespaceHTML();
46706
46849
  i0.ɵɵelementStart(22, "span");
46707
46850
  i0.ɵɵtext(23, "Sort");
46708
46851
  i0.ɵɵelementEnd()()()();
46709
- i0.ɵɵelementStart(24, "div", 128)(25, "div", 129);
46710
- i0.ɵɵrepeaterCreate(26, SymphiqFunnelAnalysisDashboardComponent_Conditional_52_Conditional_4_For_27_Template, 1, 1, null, null, _forTrack0$p);
46852
+ i0.ɵɵelementStart(24, "div", 130)(25, "div", 131);
46853
+ i0.ɵɵrepeaterCreate(26, SymphiqFunnelAnalysisDashboardComponent_Conditional_53_Conditional_4_For_27_Template, 1, 1, null, null, _forTrack0$p);
46711
46854
  i0.ɵɵelementEnd()()();
46712
- i0.ɵɵconditionalCreate(28, SymphiqFunnelAnalysisDashboardComponent_Conditional_52_Conditional_4_Conditional_28_Template, 3, 1, "div", 130)(29, SymphiqFunnelAnalysisDashboardComponent_Conditional_52_Conditional_4_Conditional_29_Template, 4, 5, "div", 131);
46855
+ i0.ɵɵconditionalCreate(28, SymphiqFunnelAnalysisDashboardComponent_Conditional_53_Conditional_4_Conditional_28_Template, 3, 1, "div", 132)(29, SymphiqFunnelAnalysisDashboardComponent_Conditional_53_Conditional_4_Conditional_29_Template, 4, 5, "div", 133);
46713
46856
  i0.ɵɵelementEnd()();
46714
46857
  } if (rf & 2) {
46715
46858
  const ctx_r2 = i0.ɵɵnextContext(2);
@@ -46742,22 +46885,22 @@ function SymphiqFunnelAnalysisDashboardComponent_Conditional_52_Conditional_4_Te
46742
46885
  i0.ɵɵadvance(2);
46743
46886
  i0.ɵɵconditional(ctx_r2.isDataLoading() ? 28 : 29);
46744
46887
  } }
46745
- function SymphiqFunnelAnalysisDashboardComponent_Conditional_52_Conditional_5_Conditional_0_Template(rf, ctx) { if (rf & 1) {
46746
- i0.ɵɵelementStart(0, "div", 159);
46747
- i0.ɵɵelement(1, "symphiq-section-divider", 167);
46888
+ function SymphiqFunnelAnalysisDashboardComponent_Conditional_53_Conditional_5_Conditional_0_Template(rf, ctx) { if (rf & 1) {
46889
+ i0.ɵɵelementStart(0, "div", 161);
46890
+ i0.ɵɵelement(1, "symphiq-section-divider", 169);
46748
46891
  i0.ɵɵelementEnd();
46749
46892
  } if (rf & 2) {
46750
46893
  const ctx_r2 = i0.ɵɵnextContext(3);
46751
46894
  i0.ɵɵadvance();
46752
46895
  i0.ɵɵproperty("viewMode", ctx_r2.viewMode());
46753
46896
  } }
46754
- function SymphiqFunnelAnalysisDashboardComponent_Conditional_52_Conditional_5_Conditional_12_Template(rf, ctx) { if (rf & 1) {
46755
- i0.ɵɵelementStart(0, "div", 123);
46756
- i0.ɵɵelement(1, "div", 168);
46897
+ function SymphiqFunnelAnalysisDashboardComponent_Conditional_53_Conditional_5_Conditional_12_Template(rf, ctx) { if (rf & 1) {
46898
+ i0.ɵɵelementStart(0, "div", 125);
46899
+ i0.ɵɵelement(1, "div", 170);
46757
46900
  i0.ɵɵelementEnd();
46758
46901
  } }
46759
- function SymphiqFunnelAnalysisDashboardComponent_Conditional_52_Conditional_5_For_15_Conditional_0_Template(rf, ctx) { if (rf & 1) {
46760
- i0.ɵɵelementStart(0, "option", 139);
46902
+ function SymphiqFunnelAnalysisDashboardComponent_Conditional_53_Conditional_5_For_15_Conditional_0_Template(rf, ctx) { if (rf & 1) {
46903
+ i0.ɵɵelementStart(0, "option", 141);
46761
46904
  i0.ɵɵtext(1);
46762
46905
  i0.ɵɵelementEnd();
46763
46906
  } if (rf & 2) {
@@ -46766,8 +46909,8 @@ function SymphiqFunnelAnalysisDashboardComponent_Conditional_52_Conditional_5_Fo
46766
46909
  i0.ɵɵadvance();
46767
46910
  i0.ɵɵtextInterpolate(filter_r38.label);
46768
46911
  } }
46769
- function SymphiqFunnelAnalysisDashboardComponent_Conditional_52_Conditional_5_For_15_Conditional_1_Template(rf, ctx) { if (rf & 1) {
46770
- i0.ɵɵelementStart(0, "option", 49);
46912
+ function SymphiqFunnelAnalysisDashboardComponent_Conditional_53_Conditional_5_For_15_Conditional_1_Template(rf, ctx) { if (rf & 1) {
46913
+ i0.ɵɵelementStart(0, "option", 50);
46771
46914
  i0.ɵɵtext(1);
46772
46915
  i0.ɵɵelementEnd();
46773
46916
  } if (rf & 2) {
@@ -46776,15 +46919,15 @@ function SymphiqFunnelAnalysisDashboardComponent_Conditional_52_Conditional_5_Fo
46776
46919
  i0.ɵɵadvance();
46777
46920
  i0.ɵɵtextInterpolate(filter_r38.label);
46778
46921
  } }
46779
- function SymphiqFunnelAnalysisDashboardComponent_Conditional_52_Conditional_5_For_15_Template(rf, ctx) { if (rf & 1) {
46780
- i0.ɵɵconditionalCreate(0, SymphiqFunnelAnalysisDashboardComponent_Conditional_52_Conditional_5_For_15_Conditional_0_Template, 2, 2, "option", 139)(1, SymphiqFunnelAnalysisDashboardComponent_Conditional_52_Conditional_5_For_15_Conditional_1_Template, 2, 2, "option", 49);
46922
+ function SymphiqFunnelAnalysisDashboardComponent_Conditional_53_Conditional_5_For_15_Template(rf, ctx) { if (rf & 1) {
46923
+ i0.ɵɵconditionalCreate(0, SymphiqFunnelAnalysisDashboardComponent_Conditional_53_Conditional_5_For_15_Conditional_0_Template, 2, 2, "option", 141)(1, SymphiqFunnelAnalysisDashboardComponent_Conditional_53_Conditional_5_For_15_Conditional_1_Template, 2, 2, "option", 50);
46781
46924
  } if (rf & 2) {
46782
46925
  const filter_r38 = ctx.$implicit;
46783
46926
  i0.ɵɵconditional(filter_r38.divider ? 0 : 1);
46784
46927
  } }
46785
- function SymphiqFunnelAnalysisDashboardComponent_Conditional_52_Conditional_5_Conditional_16_For_2_For_6_Template(rf, ctx) { if (rf & 1) {
46786
- i0.ɵɵelementStart(0, "div", 170);
46787
- i0.ɵɵelement(1, "symphiq-skeleton-loader", 86)(2, "symphiq-skeleton-loader", 86);
46928
+ function SymphiqFunnelAnalysisDashboardComponent_Conditional_53_Conditional_5_Conditional_16_For_2_For_6_Template(rf, ctx) { if (rf & 1) {
46929
+ i0.ɵɵelementStart(0, "div", 172);
46930
+ i0.ɵɵelement(1, "symphiq-skeleton-loader", 88)(2, "symphiq-skeleton-loader", 88);
46788
46931
  i0.ɵɵelementEnd();
46789
46932
  } if (rf & 2) {
46790
46933
  const ctx_r2 = i0.ɵɵnextContext(5);
@@ -46794,12 +46937,12 @@ function SymphiqFunnelAnalysisDashboardComponent_Conditional_52_Conditional_5_Co
46794
46937
  i0.ɵɵadvance();
46795
46938
  i0.ɵɵproperty("width", "80px")("height", "18px")("isLightMode", ctx_r2.isLightMode());
46796
46939
  } }
46797
- function SymphiqFunnelAnalysisDashboardComponent_Conditional_52_Conditional_5_Conditional_16_For_2_Template(rf, ctx) { if (rf & 1) {
46798
- i0.ɵɵelementStart(0, "div", 142)(1, "div", 143);
46799
- i0.ɵɵelement(2, "symphiq-skeleton-loader", 86)(3, "symphiq-skeleton-loader", 86);
46940
+ function SymphiqFunnelAnalysisDashboardComponent_Conditional_53_Conditional_5_Conditional_16_For_2_Template(rf, ctx) { if (rf & 1) {
46941
+ i0.ɵɵelementStart(0, "div", 144)(1, "div", 145);
46942
+ i0.ɵɵelement(2, "symphiq-skeleton-loader", 88)(3, "symphiq-skeleton-loader", 88);
46800
46943
  i0.ɵɵelementEnd();
46801
- i0.ɵɵelementStart(4, "div", 169);
46802
- i0.ɵɵrepeaterCreate(5, SymphiqFunnelAnalysisDashboardComponent_Conditional_52_Conditional_5_Conditional_16_For_2_For_6_Template, 3, 7, "div", 170, i0.ɵɵrepeaterTrackByIdentity);
46944
+ i0.ɵɵelementStart(4, "div", 171);
46945
+ i0.ɵɵrepeaterCreate(5, SymphiqFunnelAnalysisDashboardComponent_Conditional_53_Conditional_5_Conditional_16_For_2_For_6_Template, 3, 7, "div", 172, i0.ɵɵrepeaterTrackByIdentity);
46803
46946
  i0.ɵɵelementEnd()();
46804
46947
  } if (rf & 2) {
46805
46948
  const ctx_r2 = i0.ɵɵnextContext(4);
@@ -46811,17 +46954,17 @@ function SymphiqFunnelAnalysisDashboardComponent_Conditional_52_Conditional_5_Co
46811
46954
  i0.ɵɵadvance(2);
46812
46955
  i0.ɵɵrepeater(i0.ɵɵpureFunction0(7, _c4$3));
46813
46956
  } }
46814
- function SymphiqFunnelAnalysisDashboardComponent_Conditional_52_Conditional_5_Conditional_16_Template(rf, ctx) { if (rf & 1) {
46815
- i0.ɵɵelementStart(0, "div", 96);
46816
- i0.ɵɵrepeaterCreate(1, SymphiqFunnelAnalysisDashboardComponent_Conditional_52_Conditional_5_Conditional_16_For_2_Template, 7, 8, "div", 142, i0.ɵɵrepeaterTrackByIdentity);
46957
+ function SymphiqFunnelAnalysisDashboardComponent_Conditional_53_Conditional_5_Conditional_16_Template(rf, ctx) { if (rf & 1) {
46958
+ i0.ɵɵelementStart(0, "div", 98);
46959
+ i0.ɵɵrepeaterCreate(1, SymphiqFunnelAnalysisDashboardComponent_Conditional_53_Conditional_5_Conditional_16_For_2_Template, 7, 8, "div", 144, i0.ɵɵrepeaterTrackByIdentity);
46817
46960
  i0.ɵɵelementEnd();
46818
46961
  } if (rf & 2) {
46819
46962
  i0.ɵɵadvance();
46820
46963
  i0.ɵɵrepeater(i0.ɵɵpureFunction0(0, _c5$2));
46821
46964
  } }
46822
- function SymphiqFunnelAnalysisDashboardComponent_Conditional_52_Conditional_5_Conditional_17_For_2_Template(rf, ctx) { if (rf & 1) {
46823
- i0.ɵɵelementStart(0, "div", 113);
46824
- i0.ɵɵelement(1, "symphiq-funnel-analysis-breakdown-section", 171);
46965
+ function SymphiqFunnelAnalysisDashboardComponent_Conditional_53_Conditional_5_Conditional_17_For_2_Template(rf, ctx) { if (rf & 1) {
46966
+ i0.ɵɵelementStart(0, "div", 115);
46967
+ i0.ɵɵelement(1, "symphiq-funnel-analysis-breakdown-section", 173);
46825
46968
  i0.ɵɵelementEnd();
46826
46969
  } if (rf & 2) {
46827
46970
  const breakdown_r39 = ctx.$implicit;
@@ -46832,17 +46975,17 @@ function SymphiqFunnelAnalysisDashboardComponent_Conditional_52_Conditional_5_Co
46832
46975
  i0.ɵɵadvance();
46833
46976
  i0.ɵɵproperty("breakdown", breakdown_r39)("charts", ctx_r2.chartsForBreakdown(breakdown_r39))("isLightMode", ctx_r2.isLightMode())("isCompactMode", ctx_r2.viewModeService.isCompact())("currencySymbol", ctx_r2.currencySymbol());
46834
46977
  } }
46835
- function SymphiqFunnelAnalysisDashboardComponent_Conditional_52_Conditional_5_Conditional_17_ForEmpty_3_Template(rf, ctx) { if (rf & 1) {
46836
- i0.ɵɵelementStart(0, "div", 145);
46978
+ function SymphiqFunnelAnalysisDashboardComponent_Conditional_53_Conditional_5_Conditional_17_ForEmpty_3_Template(rf, ctx) { if (rf & 1) {
46979
+ i0.ɵɵelementStart(0, "div", 147);
46837
46980
  i0.ɵɵnamespaceSVG();
46838
- i0.ɵɵelementStart(1, "svg", 156);
46839
- i0.ɵɵelement(2, "path", 172);
46981
+ i0.ɵɵelementStart(1, "svg", 158);
46982
+ i0.ɵɵelement(2, "path", 174);
46840
46983
  i0.ɵɵelementEnd();
46841
46984
  i0.ɵɵnamespaceHTML();
46842
- i0.ɵɵelementStart(3, "h3", 157);
46985
+ i0.ɵɵelementStart(3, "h3", 159);
46843
46986
  i0.ɵɵtext(4, "No Breakdowns Found");
46844
46987
  i0.ɵɵelementEnd();
46845
- i0.ɵɵelementStart(5, "p", 158);
46988
+ i0.ɵɵelementStart(5, "p", 160);
46846
46989
  i0.ɵɵtext(6, "No performance breakdowns match your current filter selection. Try adjusting your filters to see more results.");
46847
46990
  i0.ɵɵelementEnd()();
46848
46991
  } if (rf & 2) {
@@ -46855,9 +46998,9 @@ function SymphiqFunnelAnalysisDashboardComponent_Conditional_52_Conditional_5_Co
46855
46998
  i0.ɵɵadvance(2);
46856
46999
  i0.ɵɵproperty("ngClass", ctx_r2.isLightMode() ? "text-slate-600" : "text-slate-400");
46857
47000
  } }
46858
- function SymphiqFunnelAnalysisDashboardComponent_Conditional_52_Conditional_5_Conditional_17_Template(rf, ctx) { if (rf & 1) {
46859
- i0.ɵɵelementStart(0, "div", 96);
46860
- i0.ɵɵrepeaterCreate(1, SymphiqFunnelAnalysisDashboardComponent_Conditional_52_Conditional_5_Conditional_17_For_2_Template, 2, 9, "div", 115, i0.ɵɵrepeaterTrackByIndex, false, SymphiqFunnelAnalysisDashboardComponent_Conditional_52_Conditional_5_Conditional_17_ForEmpty_3_Template, 7, 4, "div", 145);
47001
+ function SymphiqFunnelAnalysisDashboardComponent_Conditional_53_Conditional_5_Conditional_17_Template(rf, ctx) { if (rf & 1) {
47002
+ i0.ɵɵelementStart(0, "div", 98);
47003
+ i0.ɵɵrepeaterCreate(1, SymphiqFunnelAnalysisDashboardComponent_Conditional_53_Conditional_5_Conditional_17_For_2_Template, 2, 9, "div", 117, i0.ɵɵrepeaterTrackByIndex, false, SymphiqFunnelAnalysisDashboardComponent_Conditional_53_Conditional_5_Conditional_17_ForEmpty_3_Template, 7, 4, "div", 147);
46861
47004
  i0.ɵɵelementEnd();
46862
47005
  } if (rf & 2) {
46863
47006
  const ctx_r2 = i0.ɵɵnextContext(3);
@@ -46865,28 +47008,28 @@ function SymphiqFunnelAnalysisDashboardComponent_Conditional_52_Conditional_5_Co
46865
47008
  i0.ɵɵadvance();
46866
47009
  i0.ɵɵrepeater(ctx_r2.breakdowns());
46867
47010
  } }
46868
- function SymphiqFunnelAnalysisDashboardComponent_Conditional_52_Conditional_5_Template(rf, ctx) { if (rf & 1) {
47011
+ function SymphiqFunnelAnalysisDashboardComponent_Conditional_53_Conditional_5_Template(rf, ctx) { if (rf & 1) {
46869
47012
  const _r37 = i0.ɵɵgetCurrentView();
46870
- i0.ɵɵconditionalCreate(0, SymphiqFunnelAnalysisDashboardComponent_Conditional_52_Conditional_5_Conditional_0_Template, 2, 1, "div", 159);
46871
- i0.ɵɵelementStart(1, "section", 160);
46872
- i0.ɵɵelement(2, "div", 161);
46873
- i0.ɵɵelementStart(3, "div", 103)(4, "div", 162)(5, "div", 80)(6, "div", 9);
47013
+ i0.ɵɵconditionalCreate(0, SymphiqFunnelAnalysisDashboardComponent_Conditional_53_Conditional_5_Conditional_0_Template, 2, 1, "div", 161);
47014
+ i0.ɵɵelementStart(1, "section", 162);
47015
+ i0.ɵɵelement(2, "div", 163);
47016
+ i0.ɵɵelementStart(3, "div", 105)(4, "div", 164)(5, "div", 82)(6, "div", 9);
46874
47017
  i0.ɵɵnamespaceSVG();
46875
- i0.ɵɵelementStart(7, "svg", 81);
46876
- i0.ɵɵelement(8, "path", 163);
47018
+ i0.ɵɵelementStart(7, "svg", 83);
47019
+ i0.ɵɵelement(8, "path", 165);
46877
47020
  i0.ɵɵelementEnd();
46878
47021
  i0.ɵɵnamespaceHTML();
46879
- i0.ɵɵelementStart(9, "h2", 83);
47022
+ i0.ɵɵelementStart(9, "h2", 85);
46880
47023
  i0.ɵɵtext(10, "Performance Breakdowns");
46881
47024
  i0.ɵɵelementEnd()()();
46882
- i0.ɵɵelementStart(11, "div", 164);
46883
- i0.ɵɵlistener("click", function SymphiqFunnelAnalysisDashboardComponent_Conditional_52_Conditional_5_Template_div_click_11_listener($event) { i0.ɵɵrestoreView(_r37); return i0.ɵɵresetView($event.stopPropagation()); })("mousedown", function SymphiqFunnelAnalysisDashboardComponent_Conditional_52_Conditional_5_Template_div_mousedown_11_listener($event) { i0.ɵɵrestoreView(_r37); return i0.ɵɵresetView($event.stopPropagation()); })("pointerdown", function SymphiqFunnelAnalysisDashboardComponent_Conditional_52_Conditional_5_Template_div_pointerdown_11_listener($event) { i0.ɵɵrestoreView(_r37); return i0.ɵɵresetView($event.stopPropagation()); });
46884
- i0.ɵɵconditionalCreate(12, SymphiqFunnelAnalysisDashboardComponent_Conditional_52_Conditional_5_Conditional_12_Template, 2, 0, "div", 123);
46885
- i0.ɵɵelementStart(13, "select", 165);
46886
- i0.ɵɵlistener("ngModelChange", function SymphiqFunnelAnalysisDashboardComponent_Conditional_52_Conditional_5_Template_select_ngModelChange_13_listener($event) { i0.ɵɵrestoreView(_r37); const ctx_r2 = i0.ɵɵnextContext(2); return i0.ɵɵresetView(ctx_r2.changeBreakdownFilter($event)); });
46887
- i0.ɵɵrepeaterCreate(14, SymphiqFunnelAnalysisDashboardComponent_Conditional_52_Conditional_5_For_15_Template, 2, 1, null, null, _forTrack0$p);
47025
+ i0.ɵɵelementStart(11, "div", 166);
47026
+ i0.ɵɵlistener("click", function SymphiqFunnelAnalysisDashboardComponent_Conditional_53_Conditional_5_Template_div_click_11_listener($event) { i0.ɵɵrestoreView(_r37); return i0.ɵɵresetView($event.stopPropagation()); })("mousedown", function SymphiqFunnelAnalysisDashboardComponent_Conditional_53_Conditional_5_Template_div_mousedown_11_listener($event) { i0.ɵɵrestoreView(_r37); return i0.ɵɵresetView($event.stopPropagation()); })("pointerdown", function SymphiqFunnelAnalysisDashboardComponent_Conditional_53_Conditional_5_Template_div_pointerdown_11_listener($event) { i0.ɵɵrestoreView(_r37); return i0.ɵɵresetView($event.stopPropagation()); });
47027
+ i0.ɵɵconditionalCreate(12, SymphiqFunnelAnalysisDashboardComponent_Conditional_53_Conditional_5_Conditional_12_Template, 2, 0, "div", 125);
47028
+ i0.ɵɵelementStart(13, "select", 167);
47029
+ i0.ɵɵlistener("ngModelChange", function SymphiqFunnelAnalysisDashboardComponent_Conditional_53_Conditional_5_Template_select_ngModelChange_13_listener($event) { i0.ɵɵrestoreView(_r37); const ctx_r2 = i0.ɵɵnextContext(2); return i0.ɵɵresetView(ctx_r2.changeBreakdownFilter($event)); });
47030
+ i0.ɵɵrepeaterCreate(14, SymphiqFunnelAnalysisDashboardComponent_Conditional_53_Conditional_5_For_15_Template, 2, 1, null, null, _forTrack0$p);
46888
47031
  i0.ɵɵelementEnd()()();
46889
- i0.ɵɵconditionalCreate(16, SymphiqFunnelAnalysisDashboardComponent_Conditional_52_Conditional_5_Conditional_16_Template, 3, 1, "div", 96)(17, SymphiqFunnelAnalysisDashboardComponent_Conditional_52_Conditional_5_Conditional_17_Template, 4, 5, "div", 166);
47032
+ i0.ɵɵconditionalCreate(16, SymphiqFunnelAnalysisDashboardComponent_Conditional_53_Conditional_5_Conditional_16_Template, 3, 1, "div", 98)(17, SymphiqFunnelAnalysisDashboardComponent_Conditional_53_Conditional_5_Conditional_17_Template, 4, 5, "div", 168);
46890
47033
  i0.ɵɵelementEnd()();
46891
47034
  } if (rf & 2) {
46892
47035
  const ctx_r2 = i0.ɵɵnextContext(2);
@@ -46909,22 +47052,22 @@ function SymphiqFunnelAnalysisDashboardComponent_Conditional_52_Conditional_5_Te
46909
47052
  i0.ɵɵadvance(2);
46910
47053
  i0.ɵɵconditional(ctx_r2.isDataLoading() ? 16 : 17);
46911
47054
  } }
46912
- function SymphiqFunnelAnalysisDashboardComponent_Conditional_52_Conditional_6_Conditional_0_Template(rf, ctx) { if (rf & 1) {
46913
- i0.ɵɵelementStart(0, "div", 159);
46914
- i0.ɵɵelement(1, "symphiq-section-divider", 177);
47055
+ function SymphiqFunnelAnalysisDashboardComponent_Conditional_53_Conditional_6_Conditional_0_Template(rf, ctx) { if (rf & 1) {
47056
+ i0.ɵɵelementStart(0, "div", 161);
47057
+ i0.ɵɵelement(1, "symphiq-section-divider", 179);
46915
47058
  i0.ɵɵelementEnd();
46916
47059
  } if (rf & 2) {
46917
47060
  const ctx_r2 = i0.ɵɵnextContext(3);
46918
47061
  i0.ɵɵadvance();
46919
47062
  i0.ɵɵproperty("viewMode", ctx_r2.viewMode());
46920
47063
  } }
46921
- function SymphiqFunnelAnalysisDashboardComponent_Conditional_52_Conditional_6_Conditional_13_Template(rf, ctx) { if (rf & 1) {
46922
- i0.ɵɵelementStart(0, "div", 123);
46923
- i0.ɵɵelement(1, "div", 178);
47064
+ function SymphiqFunnelAnalysisDashboardComponent_Conditional_53_Conditional_6_Conditional_13_Template(rf, ctx) { if (rf & 1) {
47065
+ i0.ɵɵelementStart(0, "div", 125);
47066
+ i0.ɵɵelement(1, "div", 180);
46924
47067
  i0.ɵɵelementEnd();
46925
47068
  } }
46926
- function SymphiqFunnelAnalysisDashboardComponent_Conditional_52_Conditional_6_For_16_Conditional_0_Template(rf, ctx) { if (rf & 1) {
46927
- i0.ɵɵelementStart(0, "option", 139);
47069
+ function SymphiqFunnelAnalysisDashboardComponent_Conditional_53_Conditional_6_For_16_Conditional_0_Template(rf, ctx) { if (rf & 1) {
47070
+ i0.ɵɵelementStart(0, "option", 141);
46928
47071
  i0.ɵɵtext(1);
46929
47072
  i0.ɵɵelementEnd();
46930
47073
  } if (rf & 2) {
@@ -46933,8 +47076,8 @@ function SymphiqFunnelAnalysisDashboardComponent_Conditional_52_Conditional_6_Fo
46933
47076
  i0.ɵɵadvance();
46934
47077
  i0.ɵɵtextInterpolate(filter_r42.label);
46935
47078
  } }
46936
- function SymphiqFunnelAnalysisDashboardComponent_Conditional_52_Conditional_6_For_16_Conditional_1_Template(rf, ctx) { if (rf & 1) {
46937
- i0.ɵɵelementStart(0, "option", 49);
47079
+ function SymphiqFunnelAnalysisDashboardComponent_Conditional_53_Conditional_6_For_16_Conditional_1_Template(rf, ctx) { if (rf & 1) {
47080
+ i0.ɵɵelementStart(0, "option", 50);
46938
47081
  i0.ɵɵtext(1);
46939
47082
  i0.ɵɵelementEnd();
46940
47083
  } if (rf & 2) {
@@ -46943,23 +47086,23 @@ function SymphiqFunnelAnalysisDashboardComponent_Conditional_52_Conditional_6_Fo
46943
47086
  i0.ɵɵadvance();
46944
47087
  i0.ɵɵtextInterpolate(filter_r42.label);
46945
47088
  } }
46946
- function SymphiqFunnelAnalysisDashboardComponent_Conditional_52_Conditional_6_For_16_Template(rf, ctx) { if (rf & 1) {
46947
- i0.ɵɵconditionalCreate(0, SymphiqFunnelAnalysisDashboardComponent_Conditional_52_Conditional_6_For_16_Conditional_0_Template, 2, 2, "option", 139)(1, SymphiqFunnelAnalysisDashboardComponent_Conditional_52_Conditional_6_For_16_Conditional_1_Template, 2, 2, "option", 49);
47089
+ function SymphiqFunnelAnalysisDashboardComponent_Conditional_53_Conditional_6_For_16_Template(rf, ctx) { if (rf & 1) {
47090
+ i0.ɵɵconditionalCreate(0, SymphiqFunnelAnalysisDashboardComponent_Conditional_53_Conditional_6_For_16_Conditional_0_Template, 2, 2, "option", 141)(1, SymphiqFunnelAnalysisDashboardComponent_Conditional_53_Conditional_6_For_16_Conditional_1_Template, 2, 2, "option", 50);
46948
47091
  } if (rf & 2) {
46949
47092
  const filter_r42 = ctx.$implicit;
46950
47093
  i0.ɵɵconditional(filter_r42.divider ? 0 : 1);
46951
47094
  } }
46952
- function SymphiqFunnelAnalysisDashboardComponent_Conditional_52_Conditional_6_Conditional_17_For_5_Template(rf, ctx) { if (rf & 1) {
46953
- i0.ɵɵelement(0, "symphiq-skeleton-loader", 86);
47095
+ function SymphiqFunnelAnalysisDashboardComponent_Conditional_53_Conditional_6_Conditional_17_For_5_Template(rf, ctx) { if (rf & 1) {
47096
+ i0.ɵɵelement(0, "symphiq-skeleton-loader", 88);
46954
47097
  } if (rf & 2) {
46955
47098
  const ctx_r2 = i0.ɵɵnextContext(4);
46956
47099
  i0.ɵɵproperty("width", "100%")("height", "140px")("isLightMode", ctx_r2.isLightMode());
46957
47100
  } }
46958
- function SymphiqFunnelAnalysisDashboardComponent_Conditional_52_Conditional_6_Conditional_17_Template(rf, ctx) { if (rf & 1) {
46959
- i0.ɵɵelementStart(0, "div", 96)(1, "div", 142);
46960
- i0.ɵɵelement(2, "symphiq-skeleton-loader", 86);
46961
- i0.ɵɵelementStart(3, "div", 179);
46962
- i0.ɵɵrepeaterCreate(4, SymphiqFunnelAnalysisDashboardComponent_Conditional_52_Conditional_6_Conditional_17_For_5_Template, 1, 3, "symphiq-skeleton-loader", 86, i0.ɵɵrepeaterTrackByIdentity);
47101
+ function SymphiqFunnelAnalysisDashboardComponent_Conditional_53_Conditional_6_Conditional_17_Template(rf, ctx) { if (rf & 1) {
47102
+ i0.ɵɵelementStart(0, "div", 98)(1, "div", 144);
47103
+ i0.ɵɵelement(2, "symphiq-skeleton-loader", 88);
47104
+ i0.ɵɵelementStart(3, "div", 181);
47105
+ i0.ɵɵrepeaterCreate(4, SymphiqFunnelAnalysisDashboardComponent_Conditional_53_Conditional_6_Conditional_17_For_5_Template, 1, 3, "symphiq-skeleton-loader", 88, i0.ɵɵrepeaterTrackByIdentity);
46963
47106
  i0.ɵɵelementEnd()()();
46964
47107
  } if (rf & 2) {
46965
47108
  const ctx_r2 = i0.ɵɵnextContext(3);
@@ -46970,34 +47113,34 @@ function SymphiqFunnelAnalysisDashboardComponent_Conditional_52_Conditional_6_Co
46970
47113
  i0.ɵɵadvance(2);
46971
47114
  i0.ɵɵrepeater(i0.ɵɵpureFunction0(4, _c3$5));
46972
47115
  } }
46973
- function SymphiqFunnelAnalysisDashboardComponent_Conditional_52_Conditional_6_Conditional_18_Template(rf, ctx) { if (rf & 1) {
46974
- i0.ɵɵelement(0, "symphiq-competitive-intelligence-view", 93);
47116
+ function SymphiqFunnelAnalysisDashboardComponent_Conditional_53_Conditional_6_Conditional_18_Template(rf, ctx) { if (rf & 1) {
47117
+ i0.ɵɵelement(0, "symphiq-competitive-intelligence-view", 95);
46975
47118
  } if (rf & 2) {
46976
47119
  let tmp_8_0;
46977
47120
  const ctx_r2 = i0.ɵɵnextContext(3);
46978
47121
  i0.ɵɵproperty("metrics", ctx_r2.competitiveMetrics())("allCharts", ctx_r2.allCharts())("isLightMode", ctx_r2.isLightMode())("isCompactMode", ctx_r2.viewModeService.isCompact())("competitiveBenchmark", (tmp_8_0 = ctx_r2.performanceOverview().overallAssessment) == null ? null : tmp_8_0.competitiveBenchmark)("currencySymbol", ctx_r2.currencySymbol());
46979
47122
  } }
46980
- function SymphiqFunnelAnalysisDashboardComponent_Conditional_52_Conditional_6_Template(rf, ctx) { if (rf & 1) {
47123
+ function SymphiqFunnelAnalysisDashboardComponent_Conditional_53_Conditional_6_Template(rf, ctx) { if (rf & 1) {
46981
47124
  const _r41 = i0.ɵɵgetCurrentView();
46982
- i0.ɵɵconditionalCreate(0, SymphiqFunnelAnalysisDashboardComponent_Conditional_52_Conditional_6_Conditional_0_Template, 2, 1, "div", 159);
46983
- i0.ɵɵelementStart(1, "section", 173);
46984
- i0.ɵɵelement(2, "div", 102);
46985
- i0.ɵɵelementStart(3, "div", 103)(4, "div", 174)(5, "div", 9)(6, "div", 80)(7, "div", 9);
47125
+ i0.ɵɵconditionalCreate(0, SymphiqFunnelAnalysisDashboardComponent_Conditional_53_Conditional_6_Conditional_0_Template, 2, 1, "div", 161);
47126
+ i0.ɵɵelementStart(1, "section", 175);
47127
+ i0.ɵɵelement(2, "div", 104);
47128
+ i0.ɵɵelementStart(3, "div", 105)(4, "div", 176)(5, "div", 9)(6, "div", 82)(7, "div", 9);
46986
47129
  i0.ɵɵnamespaceSVG();
46987
- i0.ɵɵelementStart(8, "svg", 81);
46988
- i0.ɵɵelement(9, "path", 175);
47130
+ i0.ɵɵelementStart(8, "svg", 83);
47131
+ i0.ɵɵelement(9, "path", 177);
46989
47132
  i0.ɵɵelementEnd();
46990
47133
  i0.ɵɵnamespaceHTML();
46991
- i0.ɵɵelementStart(10, "h2", 83);
47134
+ i0.ɵɵelementStart(10, "h2", 85);
46992
47135
  i0.ɵɵtext(11, "Competitive Intelligence");
46993
47136
  i0.ɵɵelementEnd()()()();
46994
- i0.ɵɵelementStart(12, "div", 176);
46995
- i0.ɵɵconditionalCreate(13, SymphiqFunnelAnalysisDashboardComponent_Conditional_52_Conditional_6_Conditional_13_Template, 2, 0, "div", 123);
46996
- i0.ɵɵelementStart(14, "select", 124);
46997
- i0.ɵɵlistener("ngModelChange", function SymphiqFunnelAnalysisDashboardComponent_Conditional_52_Conditional_6_Template_select_ngModelChange_14_listener($event) { i0.ɵɵrestoreView(_r41); const ctx_r2 = i0.ɵɵnextContext(2); return i0.ɵɵresetView(ctx_r2.changeCompetitiveFilter($event)); });
46998
- i0.ɵɵrepeaterCreate(15, SymphiqFunnelAnalysisDashboardComponent_Conditional_52_Conditional_6_For_16_Template, 2, 1, null, null, _forTrack0$p);
47137
+ i0.ɵɵelementStart(12, "div", 178);
47138
+ i0.ɵɵconditionalCreate(13, SymphiqFunnelAnalysisDashboardComponent_Conditional_53_Conditional_6_Conditional_13_Template, 2, 0, "div", 125);
47139
+ i0.ɵɵelementStart(14, "select", 126);
47140
+ i0.ɵɵlistener("ngModelChange", function SymphiqFunnelAnalysisDashboardComponent_Conditional_53_Conditional_6_Template_select_ngModelChange_14_listener($event) { i0.ɵɵrestoreView(_r41); const ctx_r2 = i0.ɵɵnextContext(2); return i0.ɵɵresetView(ctx_r2.changeCompetitiveFilter($event)); });
47141
+ i0.ɵɵrepeaterCreate(15, SymphiqFunnelAnalysisDashboardComponent_Conditional_53_Conditional_6_For_16_Template, 2, 1, null, null, _forTrack0$p);
46999
47142
  i0.ɵɵelementEnd()()();
47000
- i0.ɵɵconditionalCreate(17, SymphiqFunnelAnalysisDashboardComponent_Conditional_52_Conditional_6_Conditional_17_Template, 6, 5, "div", 96)(18, SymphiqFunnelAnalysisDashboardComponent_Conditional_52_Conditional_6_Conditional_18_Template, 1, 6, "symphiq-competitive-intelligence-view", 93);
47143
+ i0.ɵɵconditionalCreate(17, SymphiqFunnelAnalysisDashboardComponent_Conditional_53_Conditional_6_Conditional_17_Template, 6, 5, "div", 98)(18, SymphiqFunnelAnalysisDashboardComponent_Conditional_53_Conditional_6_Conditional_18_Template, 1, 6, "symphiq-competitive-intelligence-view", 95);
47001
47144
  i0.ɵɵelementEnd()();
47002
47145
  } if (rf & 2) {
47003
47146
  const ctx_r2 = i0.ɵɵnextContext(2);
@@ -47021,13 +47164,13 @@ function SymphiqFunnelAnalysisDashboardComponent_Conditional_52_Conditional_6_Te
47021
47164
  i0.ɵɵadvance(2);
47022
47165
  i0.ɵɵconditional(ctx_r2.isDataLoading() ? 17 : 18);
47023
47166
  } }
47024
- function SymphiqFunnelAnalysisDashboardComponent_Conditional_52_Template(rf, ctx) { if (rf & 1) {
47025
- i0.ɵɵelementStart(0, "main", 36)(1, "div", 68);
47026
- i0.ɵɵconditionalCreate(2, SymphiqFunnelAnalysisDashboardComponent_Conditional_52_Conditional_2_Template, 3, 1, "div", 94);
47027
- i0.ɵɵconditionalCreate(3, SymphiqFunnelAnalysisDashboardComponent_Conditional_52_Conditional_3_Template, 17, 10);
47028
- i0.ɵɵconditionalCreate(4, SymphiqFunnelAnalysisDashboardComponent_Conditional_52_Conditional_4_Template, 30, 18);
47029
- i0.ɵɵconditionalCreate(5, SymphiqFunnelAnalysisDashboardComponent_Conditional_52_Conditional_5_Template, 18, 12);
47030
- i0.ɵɵconditionalCreate(6, SymphiqFunnelAnalysisDashboardComponent_Conditional_52_Conditional_6_Template, 19, 13);
47167
+ function SymphiqFunnelAnalysisDashboardComponent_Conditional_53_Template(rf, ctx) { if (rf & 1) {
47168
+ i0.ɵɵelementStart(0, "main", 37)(1, "div", 70);
47169
+ i0.ɵɵconditionalCreate(2, SymphiqFunnelAnalysisDashboardComponent_Conditional_53_Conditional_2_Template, 3, 1, "div", 96);
47170
+ i0.ɵɵconditionalCreate(3, SymphiqFunnelAnalysisDashboardComponent_Conditional_53_Conditional_3_Template, 17, 10);
47171
+ i0.ɵɵconditionalCreate(4, SymphiqFunnelAnalysisDashboardComponent_Conditional_53_Conditional_4_Template, 30, 18);
47172
+ i0.ɵɵconditionalCreate(5, SymphiqFunnelAnalysisDashboardComponent_Conditional_53_Conditional_5_Template, 18, 12);
47173
+ i0.ɵɵconditionalCreate(6, SymphiqFunnelAnalysisDashboardComponent_Conditional_53_Conditional_6_Template, 19, 13);
47031
47174
  i0.ɵɵelementEnd()();
47032
47175
  } if (rf & 2) {
47033
47176
  const ctx_r2 = i0.ɵɵnextContext();
@@ -48096,7 +48239,7 @@ class SymphiqFunnelAnalysisDashboardComponent {
48096
48239
  i0.ɵɵqueryRefresh(_t = i0.ɵɵloadQuery()) && (ctx.dashboardContainer = _t.first);
48097
48240
  } }, hostBindings: function SymphiqFunnelAnalysisDashboardComponent_HostBindings(rf, ctx) { if (rf & 1) {
48098
48241
  i0.ɵɵlistener("scroll", function SymphiqFunnelAnalysisDashboardComponent_scroll_HostBindingHandler($event) { return ctx.onScroll($event); }, i0.ɵɵresolveWindow);
48099
- } }, 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"] }, outputs: { stepClick: "stepClick", nextStepClick: "nextStepClick" }, decls: 61, vars: 89, 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"], [1, "h-full", "transition-all", "duration-200", "ease-out", 3, "ngClass"], [1, "sticky", "top-0", "z-50", "animate-fade-in", 2, "animation-delay", "0s"], [1, "transition-all", "duration-300", "ease-in-out", "overflow-hidden"], [1, "max-w-7xl", "mx-auto", "px-6", "sm:px-8", "py-6", "sm:py-8"], [1, "flex", "flex-col", "sm:flex-row", "items-start", "sm:items-center", "justify-between", "gap-3", "sm:gap-0"], [1, "flex-1"], [1, "flex", "items-center", "gap-3"], [1, "text-2xl", "sm:text-3xl", "font-bold", "mb-2", "bg-gradient-to-r", "from-blue-600", "via-purple-600", "to-indigo-600", "bg-clip-text", "text-transparent"], ["title", "Refreshing data...", 1, "animate-spin", "w-4", "h-4", "border-2", "border-blue-500/30", "border-t-blue-500", "rounded-full"], [1, "flex", "flex-wrap", "items-center", "justify-between", "gap-3", "sm:gap-4"], [1, "text-sm", "sm:text-base"], [1, "flex", "items-center", "gap-4"], ["type", "button", "title", "Search (/ or Cmd+K)", 1, "flex", "items-center", "gap-2", "px-3", "py-1.5", "rounded-lg", "text-xs", "font-medium", "transition-all", "duration-200", "hover:scale-105", 3, "class"], ["type", "button", 1, "flex", "items-center", "gap-2", "px-3", "py-1.5", "rounded-lg", "text-xs", "font-medium", "transition-all", "duration-200", "hover:scale-105", 3, "click"], ["fill", "none", "stroke", "currentColor", "viewBox", "0 0 24 24", 1, "w-4", "h-4"], ["stroke-linecap", "round", "stroke-linejoin", "round", "stroke-width", "2", "d", "M15 12a3 3 0 11-6 0 3 3 0 016 0z"], ["stroke-linecap", "round", "stroke-linejoin", "round", "stroke-width", "2", "d", "M2.458 12C3.732 7.943 7.523 5 12 5c4.478 0 8.268 2.943 9.542 7-1.274 4.057-5.064 7-9.542 7-4.477 0-8.268-2.943-9.542-7z"], [1, "flex", "items-center", "gap-2", "sm:gap-3", "whitespace-nowrap"], [1, "flex", "flex-col", "gap-4", "min-w-[180px]"], [1, "text-left", "sm:text-right"], [1, "text-xs", "sm:text-sm"], [1, "text-sm", "sm:text-base", "font-medium"], [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-4", "flex-1", "min-w-0"], [1, "text-lg", "font-bold", "truncate", "bg-gradient-to-r", "from-blue-600", "via-purple-600", "to-indigo-600", "bg-clip-text", "text-transparent"], [1, "hidden", "lg:flex", "items-center", "gap-3", "px-4", "py-1.5", "rounded-lg", 3, "ngClass"], ["type", "button", "title", "Search (/ or Cmd+K)", 1, "p-2", "rounded-lg", "transition-all", "duration-200", "hover:scale-110", 3, "class"], ["type", "button", 1, "p-2", "rounded-lg", "transition-all", "duration-200", "hover:scale-110", 3, "click", "title"], ["fill", "none", "stroke", "currentColor", "viewBox", "0 0 24 24", 1, "w-5", "h-5"], [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, "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"], ["type", "button", "title", "Search (/ or Cmd+K)", 1, "flex", "items-center", "gap-2", "px-3", "py-1.5", "rounded-lg", "text-xs", "font-medium", "transition-all", "duration-200", "hover:scale-105", 3, "click"], ["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, "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"], ["type", "button", "title", "Search (/ or Cmd+K)", 1, "p-2", "rounded-lg", "transition-all", "duration-200", "hover:scale-110", 3, "click"], [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, "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"], [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"], ["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"], [3, "viewMode", "itemStatus", "funnelAnalysis", "confettiIntensity", "title", "subtitle"], [3, "stepClick", "nextStepClick", "viewMode", "currentStepId", "showNextStepAction", "forDemo", "maxAccessibleStepId"], [1, "pt-8", "sm:pt-12", "pb-16", "sm:pb-24"], [1, "mb-8"], [3, "viewMode", "isOnboarded"], ["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, "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, "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"], ["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) {
48242
+ } }, 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"] }, outputs: { stepClick: "stepClick", nextStepClick: "nextStepClick" }, decls: 62, vars: 89, 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"], [1, "h-full", "transition-all", "duration-200", "ease-out", 3, "ngClass"], [1, "sticky", "top-0", "z-50", "animate-fade-in", 2, "animation-delay", "0s"], [1, "transition-all", "duration-300", "ease-in-out", "overflow-hidden"], [1, "max-w-7xl", "mx-auto", "px-6", "sm:px-8", "py-6", "sm:py-8"], [1, "flex", "flex-col", "sm:flex-row", "items-start", "sm:items-center", "justify-between", "gap-3", "sm:gap-0"], [1, "flex-1"], [1, "flex", "items-center", "gap-3"], [1, "text-2xl", "sm:text-3xl", "font-bold", "mb-2", "bg-gradient-to-r", "from-blue-600", "via-purple-600", "to-indigo-600", "bg-clip-text", "text-transparent"], ["title", "Refreshing data...", 1, "animate-spin", "w-4", "h-4", "border-2", "border-blue-500/30", "border-t-blue-500", "rounded-full"], [1, "flex", "flex-wrap", "items-center", "justify-between", "gap-3", "sm:gap-4"], [1, "text-sm", "sm:text-base"], [1, "flex", "items-center", "gap-4"], ["type", "button", "title", "Search (/ or Cmd+K)", 1, "flex", "items-center", "gap-2", "px-3", "py-1.5", "rounded-lg", "text-xs", "font-medium", "transition-all", "duration-200", "hover:scale-105", 3, "class"], ["type", "button", 1, "flex", "items-center", "gap-2", "px-3", "py-1.5", "rounded-lg", "text-xs", "font-medium", "transition-all", "duration-200", "hover:scale-105", 3, "click"], ["fill", "none", "stroke", "currentColor", "viewBox", "0 0 24 24", 1, "w-4", "h-4"], ["stroke-linecap", "round", "stroke-linejoin", "round", "stroke-width", "2", "d", "M15 12a3 3 0 11-6 0 3 3 0 016 0z"], ["stroke-linecap", "round", "stroke-linejoin", "round", "stroke-width", "2", "d", "M2.458 12C3.732 7.943 7.523 5 12 5c4.478 0 8.268 2.943 9.542 7-1.274 4.057-5.064 7-9.542 7-4.477 0-8.268-2.943-9.542-7z"], [1, "flex", "items-center", "gap-2", "sm:gap-3", "whitespace-nowrap"], [1, "flex", "flex-col", "gap-4", "min-w-[180px]"], [1, "text-left", "sm:text-right"], [1, "text-xs", "sm:text-sm"], [1, "text-sm", "sm:text-base", "font-medium"], [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-4", "flex-1", "min-w-0"], [1, "text-lg", "font-bold", "truncate", "bg-gradient-to-r", "from-blue-600", "via-purple-600", "to-indigo-600", "bg-clip-text", "text-transparent"], [1, "hidden", "lg:flex", "items-center", "gap-3", "px-4", "py-1.5", "rounded-lg", 3, "ngClass"], ["type", "button", "title", "Search (/ or Cmd+K)", 1, "p-2", "rounded-lg", "transition-all", "duration-200", "hover:scale-110", 3, "class"], ["type", "button", 1, "p-2", "rounded-lg", "transition-all", "duration-200", "hover:scale-110", 3, "click", "title"], ["fill", "none", "stroke", "currentColor", "viewBox", "0 0 24 24", 1, "w-5", "h-5"], [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, "flex", "items-center", "justify-center", "min-h-[60vh]"], [1, "max-w-7xl", "mx-auto", "px-6", "sm:px-8"], [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"], ["type", "button", "title", "Search (/ or Cmd+K)", 1, "flex", "items-center", "gap-2", "px-3", "py-1.5", "rounded-lg", "text-xs", "font-medium", "transition-all", "duration-200", "hover:scale-105", 3, "click"], ["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, "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"], ["type", "button", "title", "Search (/ or Cmd+K)", 1, "p-2", "rounded-lg", "transition-all", "duration-200", "hover:scale-110", 3, "click"], [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, "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"], [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"], ["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"], ["size", "large", 3, "viewMode"], [3, "viewMode", "currentStepId", "showNextStepAction", "forDemo", "maxAccessibleStepId"], [3, "viewMode", "itemStatus", "funnelAnalysis", "confettiIntensity", "title", "subtitle"], [3, "stepClick", "nextStepClick", "viewMode", "currentStepId", "showNextStepAction", "forDemo", "maxAccessibleStepId"], [1, "pt-8", "sm:pt-12", "pb-16", "sm:pb-24"], [1, "mb-8"], [3, "viewMode", "isOnboarded"], ["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, "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, "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"], ["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) {
48100
48243
  const _r1 = i0.ɵɵgetCurrentView();
48101
48244
  i0.ɵɵelementStart(0, "div", 1, 0);
48102
48245
  i0.ɵɵelement(2, "div", 2);
@@ -48151,20 +48294,20 @@ class SymphiqFunnelAnalysisDashboardComponent {
48151
48294
  i0.ɵɵconditionalCreate(47, SymphiqFunnelAnalysisDashboardComponent_Conditional_47_Template, 16, 8, "div", 33);
48152
48295
  i0.ɵɵconditionalCreate(48, SymphiqFunnelAnalysisDashboardComponent_Conditional_48_Template, 1, 4, "symphiq-floating-toc", 34);
48153
48296
  i0.ɵɵconditionalCreate(49, SymphiqFunnelAnalysisDashboardComponent_Conditional_49_Template, 6, 5, "div", 35);
48154
- i0.ɵɵconditionalCreate(50, SymphiqFunnelAnalysisDashboardComponent_Conditional_50_Template, 2, 7)(51, SymphiqFunnelAnalysisDashboardComponent_Conditional_51_Template, 15, 9)(52, SymphiqFunnelAnalysisDashboardComponent_Conditional_52_Template, 7, 5, "main", 36);
48297
+ i0.ɵɵconditionalCreate(50, SymphiqFunnelAnalysisDashboardComponent_Conditional_50_Template, 2, 1, "div", 36)(51, SymphiqFunnelAnalysisDashboardComponent_Conditional_51_Template, 2, 7)(52, SymphiqFunnelAnalysisDashboardComponent_Conditional_52_Template, 15, 9)(53, SymphiqFunnelAnalysisDashboardComponent_Conditional_53_Template, 7, 5, "main", 37);
48155
48298
  i0.ɵɵnamespaceHTML();
48156
- i0.ɵɵelement(53, "symphiq-funnel-analysis-modal", 37)(54, "symphiq-profile-analysis-modal", 38)(55, "symphiq-business-analysis-modal", 39)(56, "symphiq-tooltip-container");
48157
- i0.ɵɵelementStart(57, "symphiq-search-bar", 40);
48158
- i0.ɵɵlistener("resultSelected", function SymphiqFunnelAnalysisDashboardComponent_Template_symphiq_search_bar_resultSelected_57_listener($event) { i0.ɵɵrestoreView(_r1); return i0.ɵɵresetView(ctx.handleSearchResult($event)); });
48299
+ i0.ɵɵelement(54, "symphiq-funnel-analysis-modal", 38)(55, "symphiq-profile-analysis-modal", 39)(56, "symphiq-business-analysis-modal", 40)(57, "symphiq-tooltip-container");
48300
+ i0.ɵɵelementStart(58, "symphiq-search-bar", 41);
48301
+ i0.ɵɵlistener("resultSelected", function SymphiqFunnelAnalysisDashboardComponent_Template_symphiq_search_bar_resultSelected_58_listener($event) { i0.ɵɵrestoreView(_r1); return i0.ɵɵresetView(ctx.handleSearchResult($event)); });
48159
48302
  i0.ɵɵelementEnd();
48160
- i0.ɵɵelementStart(58, "symphiq-view-mode-switcher-modal", 41);
48161
- i0.ɵɵlistener("close", function SymphiqFunnelAnalysisDashboardComponent_Template_symphiq_view_mode_switcher_modal_close_58_listener() { i0.ɵɵrestoreView(_r1); return i0.ɵɵresetView(ctx.closeViewModeSwitcher()); })("modeSelected", function SymphiqFunnelAnalysisDashboardComponent_Template_symphiq_view_mode_switcher_modal_modeSelected_58_listener($event) { i0.ɵɵrestoreView(_r1); return i0.ɵɵresetView(ctx.handleDisplayModeChange($event)); });
48303
+ i0.ɵɵelementStart(59, "symphiq-view-mode-switcher-modal", 42);
48304
+ i0.ɵɵlistener("close", function SymphiqFunnelAnalysisDashboardComponent_Template_symphiq_view_mode_switcher_modal_close_59_listener() { i0.ɵɵrestoreView(_r1); return i0.ɵɵresetView(ctx.closeViewModeSwitcher()); })("modeSelected", function SymphiqFunnelAnalysisDashboardComponent_Template_symphiq_view_mode_switcher_modal_modeSelected_59_listener($event) { i0.ɵɵrestoreView(_r1); return i0.ɵɵresetView(ctx.handleDisplayModeChange($event)); });
48162
48305
  i0.ɵɵelementEnd();
48163
- i0.ɵɵelementStart(59, "symphiq-mobile-fab", 42);
48164
- i0.ɵɵlistener("expandedChange", function SymphiqFunnelAnalysisDashboardComponent_Template_symphiq_mobile_fab_expandedChange_59_listener($event) { i0.ɵɵrestoreView(_r1); return i0.ɵɵresetView(ctx.fabExpanded.set($event)); })("scrollToTop", function SymphiqFunnelAnalysisDashboardComponent_Template_symphiq_mobile_fab_scrollToTop_59_listener() { i0.ɵɵrestoreView(_r1); return i0.ɵɵresetView(ctx.scrollToTop()); })("toggleView", function SymphiqFunnelAnalysisDashboardComponent_Template_symphiq_mobile_fab_toggleView_59_listener() { i0.ɵɵrestoreView(_r1); return i0.ɵɵresetView(ctx.viewModeService.toggleViewMode()); });
48306
+ i0.ɵɵelementStart(60, "symphiq-mobile-fab", 43);
48307
+ i0.ɵɵlistener("expandedChange", function SymphiqFunnelAnalysisDashboardComponent_Template_symphiq_mobile_fab_expandedChange_60_listener($event) { i0.ɵɵrestoreView(_r1); return i0.ɵɵresetView(ctx.fabExpanded.set($event)); })("scrollToTop", function SymphiqFunnelAnalysisDashboardComponent_Template_symphiq_mobile_fab_scrollToTop_60_listener() { i0.ɵɵrestoreView(_r1); return i0.ɵɵresetView(ctx.scrollToTop()); })("toggleView", function SymphiqFunnelAnalysisDashboardComponent_Template_symphiq_mobile_fab_toggleView_60_listener() { i0.ɵɵrestoreView(_r1); return i0.ɵɵresetView(ctx.viewModeService.toggleViewMode()); });
48165
48308
  i0.ɵɵelementEnd();
48166
- i0.ɵɵelementStart(60, "symphiq-mobile-bottom-nav", 43);
48167
- i0.ɵɵlistener("navigate", function SymphiqFunnelAnalysisDashboardComponent_Template_symphiq_mobile_bottom_nav_navigate_60_listener($event) { i0.ɵɵrestoreView(_r1); return i0.ɵɵresetView(ctx.handleMobileNavigation($event)); });
48309
+ i0.ɵɵelementStart(61, "symphiq-mobile-bottom-nav", 44);
48310
+ i0.ɵɵlistener("navigate", function SymphiqFunnelAnalysisDashboardComponent_Template_symphiq_mobile_bottom_nav_navigate_61_listener($event) { i0.ɵɵrestoreView(_r1); return i0.ɵɵresetView(ctx.handleMobileNavigation($event)); });
48168
48311
  i0.ɵɵelementEnd()();
48169
48312
  } if (rf & 2) {
48170
48313
  let tmp_16_0;
@@ -48229,8 +48372,8 @@ class SymphiqFunnelAnalysisDashboardComponent {
48229
48372
  i0.ɵɵadvance();
48230
48373
  i0.ɵɵconditional(!ctx.isSimplifiedView() ? 49 : -1);
48231
48374
  i0.ɵɵadvance();
48232
- i0.ɵɵconditional(ctx.isContentGenerating() ? 50 : ctx.isSimplifiedView() ? 51 : 52);
48233
- i0.ɵɵadvance(3);
48375
+ i0.ɵɵconditional(ctx.isLoading() ? 50 : ctx.isContentGenerating() ? 51 : ctx.isSimplifiedView() ? 52 : 53);
48376
+ i0.ɵɵadvance(4);
48234
48377
  i0.ɵɵproperty("isLightMode", ctx.isLightMode())("viewMode", ctx.viewMode())("allMetrics", ctx.allMetrics())("allInsights", ctx.insights())("allCharts", ctx.allCharts())("currencySymbol", ctx.currencySymbol())("businessProfile", ctx.businessProfile());
48235
48378
  i0.ɵɵadvance();
48236
48379
  i0.ɵɵproperty("isLightMode", ctx.isLightMode())("allMetrics", ctx.allMetrics());
@@ -48265,7 +48408,8 @@ class SymphiqFunnelAnalysisDashboardComponent {
48265
48408
  ViewModeSwitcherModalComponent,
48266
48409
  ProfileAnalysisModalComponent,
48267
48410
  BusinessAnalysisModalComponent,
48268
- ContentGenerationProgressWithConfettiComponent], styles: ["[_nghost-%COMP%]{display:block;min-height:100%}.bg-gradient-radial[_ngcontent-%COMP%]{background:radial-gradient(circle,var(--tw-gradient-stops))}.bento-grid[_ngcontent-%COMP%]{display:grid;grid-template-columns:repeat(auto-fit,minmax(280px,1fr));gap:1.5rem;grid-auto-flow:dense}@media (min-width: 768px){.bento-grid[_ngcontent-%COMP%]{grid-template-columns:repeat(6,1fr)}}.bento-small[_ngcontent-%COMP%]{grid-column:span 2;grid-row:span 1}.bento-medium[_ngcontent-%COMP%]{grid-column:span 3;grid-row:span 1}.bento-large[_ngcontent-%COMP%]{grid-column:span 4;grid-row:span 1}.bento-featured[_ngcontent-%COMP%]{grid-column:span 6;grid-row:span 1}@media (max-width: 767px){.bento-small[_ngcontent-%COMP%], .bento-medium[_ngcontent-%COMP%], .bento-large[_ngcontent-%COMP%], .bento-featured[_ngcontent-%COMP%]{grid-column:span 1}}.masonry-grid[_ngcontent-%COMP%]{column-count:1;column-gap:1.5rem}@media (min-width: 768px){.masonry-grid[_ngcontent-%COMP%]{column-count:2}}@media (min-width: 1280px){.masonry-grid[_ngcontent-%COMP%]{column-count:3}}.masonry-grid[_ngcontent-%COMP%] > div[_ngcontent-%COMP%]{break-inside:avoid;margin-bottom:1.5rem}.masonry-featured[_ngcontent-%COMP%]{column-span:all}.scrollbar-hide[_ngcontent-%COMP%]{-ms-overflow-style:none;scrollbar-width:none}.scrollbar-hide[_ngcontent-%COMP%]::-webkit-scrollbar{display:none}@media (max-width: 640px){.animate-fade-in-up[_ngcontent-%COMP%]{animation-duration:.4s}}"], changeDetection: 0 }); }
48411
+ ContentGenerationProgressWithConfettiComponent,
48412
+ IndeterminateSpinnerComponent], styles: ["[_nghost-%COMP%]{display:block;min-height:100%}.bg-gradient-radial[_ngcontent-%COMP%]{background:radial-gradient(circle,var(--tw-gradient-stops))}.bento-grid[_ngcontent-%COMP%]{display:grid;grid-template-columns:repeat(auto-fit,minmax(280px,1fr));gap:1.5rem;grid-auto-flow:dense}@media (min-width: 768px){.bento-grid[_ngcontent-%COMP%]{grid-template-columns:repeat(6,1fr)}}.bento-small[_ngcontent-%COMP%]{grid-column:span 2;grid-row:span 1}.bento-medium[_ngcontent-%COMP%]{grid-column:span 3;grid-row:span 1}.bento-large[_ngcontent-%COMP%]{grid-column:span 4;grid-row:span 1}.bento-featured[_ngcontent-%COMP%]{grid-column:span 6;grid-row:span 1}@media (max-width: 767px){.bento-small[_ngcontent-%COMP%], .bento-medium[_ngcontent-%COMP%], .bento-large[_ngcontent-%COMP%], .bento-featured[_ngcontent-%COMP%]{grid-column:span 1}}.masonry-grid[_ngcontent-%COMP%]{column-count:1;column-gap:1.5rem}@media (min-width: 768px){.masonry-grid[_ngcontent-%COMP%]{column-count:2}}@media (min-width: 1280px){.masonry-grid[_ngcontent-%COMP%]{column-count:3}}.masonry-grid[_ngcontent-%COMP%] > div[_ngcontent-%COMP%]{break-inside:avoid;margin-bottom:1.5rem}.masonry-featured[_ngcontent-%COMP%]{column-span:all}.scrollbar-hide[_ngcontent-%COMP%]{-ms-overflow-style:none;scrollbar-width:none}.scrollbar-hide[_ngcontent-%COMP%]::-webkit-scrollbar{display:none}@media (max-width: 640px){.animate-fade-in-up[_ngcontent-%COMP%]{animation-duration:.4s}}"], changeDetection: 0 }); }
48269
48413
  }
48270
48414
  (() => { (typeof ngDevMode === "undefined" || ngDevMode) && i0.ɵsetClassMetadata(SymphiqFunnelAnalysisDashboardComponent, [{
48271
48415
  type: Component,
@@ -48294,6 +48438,7 @@ class SymphiqFunnelAnalysisDashboardComponent {
48294
48438
  ProfileAnalysisModalComponent,
48295
48439
  BusinessAnalysisModalComponent,
48296
48440
  ContentGenerationProgressWithConfettiComponent,
48441
+ IndeterminateSpinnerComponent,
48297
48442
  ], template: `
48298
48443
  <div
48299
48444
  class="bg-transparent"
@@ -48562,7 +48707,15 @@ class SymphiqFunnelAnalysisDashboardComponent {
48562
48707
  </div>
48563
48708
  }
48564
48709
 
48565
- @if (isContentGenerating()) {
48710
+ @if (isLoading()) {
48711
+ <!-- Pure Loading State -->
48712
+ <div class="flex items-center justify-center min-h-[60vh]">
48713
+ <symphiq-indeterminate-spinner
48714
+ [viewMode]="isLightMode() ? ViewModeEnum.LIGHT : ViewModeEnum.DARK"
48715
+ size="large"
48716
+ />
48717
+ </div>
48718
+ } @else if (isContentGenerating()) {
48566
48719
  <!-- Journey Progress Banner (always show when not onboarded) -->
48567
48720
  @if (!isOnboarded()) {
48568
48721
  <symphiq-journey-progress-indicator
@@ -49323,7 +49476,7 @@ class SymphiqFunnelAnalysisDashboardComponent {
49323
49476
  type: HostListener,
49324
49477
  args: ['window:scroll', ['$event']]
49325
49478
  }] }); })();
49326
- (() => { (typeof ngDevMode === "undefined" || ngDevMode) && i0.ɵsetClassDebugInfo(SymphiqFunnelAnalysisDashboardComponent, { className: "SymphiqFunnelAnalysisDashboardComponent", filePath: "lib/components/funnel-analysis-dashboard/symphiq-funnel-analysis-dashboard.component.ts", lineNumber: 1226 }); })();
49479
+ (() => { (typeof ngDevMode === "undefined" || ngDevMode) && i0.ɵsetClassDebugInfo(SymphiqFunnelAnalysisDashboardComponent, { className: "SymphiqFunnelAnalysisDashboardComponent", filePath: "lib/components/funnel-analysis-dashboard/symphiq-funnel-analysis-dashboard.component.ts", lineNumber: 1236 }); })();
49327
49480
 
49328
49481
  /**
49329
49482
  * Shared Theme Color Utilities
@@ -62936,140 +63089,6 @@ class InitialTargetSettingComponent {
62936
63089
  }], viewMode: [{ type: i0.Input, args: [{ isSignal: true, alias: "viewMode", required: false }] }], funnelMetrics: [{ type: i0.Input, args: [{ isSignal: true, alias: "funnelMetrics", required: false }] }], mainUiData: [{ type: i0.Input, args: [{ isSignal: true, alias: "mainUiData", required: false }] }], trendUiData: [{ type: i0.Input, args: [{ isSignal: true, alias: "trendUiData", required: false }] }], shopId: [{ type: i0.Input, args: [{ isSignal: true, alias: "shopId", required: false }] }], pacingMetrics: [{ type: i0.Input, args: [{ isSignal: true, alias: "pacingMetrics", required: false }] }], dataResults: [{ type: i0.Input, args: [{ isSignal: true, alias: "dataResults", required: false }] }], calculateRevenueReverseResponse: [{ type: i0.Input, args: [{ isSignal: true, alias: "calculateRevenueReverseResponse", required: false }] }], calculateRevenueResponse: [{ type: i0.Input, args: [{ isSignal: true, alias: "calculateRevenueResponse", required: false }] }], isCalculatingTargets: [{ type: i0.Input, args: [{ isSignal: true, alias: "isCalculatingTargets", required: false }] }], targets: [{ type: i0.Input, args: [{ isSignal: true, alias: "targets", required: false }] }], targetHistories: [{ type: i0.Input, args: [{ isSignal: true, alias: "targetHistories", required: false }] }], users: [{ type: i0.Input, args: [{ isSignal: true, alias: "users", required: false }] }], targetsCreated: [{ type: i0.Output, args: ["targetsCreated"] }], calculateRevenueReverseRequest: [{ type: i0.Output, args: ["calculateRevenueReverseRequest"] }], calculateRevenueRequest: [{ type: i0.Output, args: ["calculateRevenueRequest"] }], editRelatedMetricTarget: [{ type: i0.Output, args: ["editRelatedMetricTarget"] }], saveTargetsClick: [{ type: i0.Output, args: ["saveTargetsClick"] }], discardChangesClick: [{ type: i0.Output, args: ["discardChangesClick"] }], targetsUpdated: [{ type: i0.Output, args: ["targetsUpdated"] }] }); })();
62937
63090
  (() => { (typeof ngDevMode === "undefined" || ngDevMode) && i0.ɵsetClassDebugInfo(InitialTargetSettingComponent, { className: "InitialTargetSettingComponent", filePath: "lib/components/revenue-calculator-dashboard/initial-target-setting.component.ts", lineNumber: 599 }); })();
62938
63091
 
62939
- function IndeterminateSpinnerComponent_For_5_Template(rf, ctx) { if (rf & 1) {
62940
- i0.ɵɵelement(0, "div", 5);
62941
- } if (rf & 2) {
62942
- const dot_r1 = ctx.$implicit;
62943
- const ctx_r1 = i0.ɵɵnextContext();
62944
- i0.ɵɵstyleProp("animation-delay", dot_r1.delay)("left", dot_r1.x, "px")("top", dot_r1.y, "px");
62945
- i0.ɵɵproperty("ngClass", ctx_r1.dotClasses());
62946
- } }
62947
- class IndeterminateSpinnerComponent {
62948
- constructor() {
62949
- this.viewMode = input(ViewModeEnum.LIGHT, ...(ngDevMode ? [{ debugName: "viewMode" }] : []));
62950
- this.size = input('medium', ...(ngDevMode ? [{ debugName: "size" }] : []));
62951
- this.color = input(...(ngDevMode ? [undefined, { debugName: "color" }] : []));
62952
- this.svgSize = computed(() => {
62953
- switch (this.size()) {
62954
- case 'small': return 40;
62955
- case 'large': return 80;
62956
- default: return 60;
62957
- }
62958
- }, ...(ngDevMode ? [{ debugName: "svgSize" }] : []));
62959
- this.circleRadius = computed(() => {
62960
- switch (this.size()) {
62961
- case 'small': return 16;
62962
- case 'large': return 36;
62963
- default: return 26;
62964
- }
62965
- }, ...(ngDevMode ? [{ debugName: "circleRadius" }] : []));
62966
- this.svgCircleRadius = computed(() => {
62967
- return this.circleRadius() * 100 / this.svgSize();
62968
- }, ...(ngDevMode ? [{ debugName: "svgCircleRadius" }] : []));
62969
- this.strokeWidth = computed(() => {
62970
- switch (this.size()) {
62971
- case 'small': return 2;
62972
- case 'large': return 3;
62973
- default: return 2.5;
62974
- }
62975
- }, ...(ngDevMode ? [{ debugName: "strokeWidth" }] : []));
62976
- this.dotSize = computed(() => {
62977
- switch (this.size()) {
62978
- case 'small': return 5;
62979
- case 'large': return 10;
62980
- default: return 7;
62981
- }
62982
- }, ...(ngDevMode ? [{ debugName: "dotSize" }] : []));
62983
- this.containerClasses = computed(() => ({
62984
- 'w-10 h-10': this.size() === 'small',
62985
- 'w-16 h-16': this.size() === 'medium',
62986
- 'w-20 h-20': this.size() === 'large'
62987
- }), ...(ngDevMode ? [{ debugName: "containerClasses" }] : []));
62988
- this.trackClasses = computed(() => {
62989
- const isDark = this.viewMode() === ViewModeEnum.DARK;
62990
- return {
62991
- 'stroke-slate-200 dark:stroke-slate-700': !this.color(),
62992
- 'opacity-30': true
62993
- };
62994
- }, ...(ngDevMode ? [{ debugName: "trackClasses" }] : []));
62995
- this.dotClasses = computed(() => {
62996
- const isDark = this.viewMode() === ViewModeEnum.DARK;
62997
- const sizeClass = `spinner-dot-${this.size()}`;
62998
- if (this.color()) {
62999
- return [sizeClass];
63000
- }
63001
- return [
63002
- sizeClass,
63003
- isDark ? 'bg-blue-400 text-blue-400' : 'bg-blue-600 text-blue-600'
63004
- ];
63005
- }, ...(ngDevMode ? [{ debugName: "dotClasses" }] : []));
63006
- this.dots = computed(() => {
63007
- const radius = this.circleRadius();
63008
- const center = this.svgSize() / 2;
63009
- const numberOfDots = 8;
63010
- const dots = [];
63011
- for (let i = 0; i < numberOfDots; i++) {
63012
- const angle = (i / numberOfDots) * 2 * Math.PI - Math.PI / 2;
63013
- const x = center + radius * Math.cos(angle);
63014
- const y = center + radius * Math.sin(angle);
63015
- const delay = `${(i / numberOfDots) * 2}s`;
63016
- dots.push({ x, y, delay });
63017
- }
63018
- return dots;
63019
- }, ...(ngDevMode ? [{ debugName: "dots" }] : []));
63020
- }
63021
- static { this.ɵfac = function IndeterminateSpinnerComponent_Factory(__ngFactoryType__) { return new (__ngFactoryType__ || IndeterminateSpinnerComponent)(); }; }
63022
- static { this.ɵcmp = /*@__PURE__*/ i0.ɵɵdefineComponent({ type: IndeterminateSpinnerComponent, selectors: [["symphiq-indeterminate-spinner"]], inputs: { viewMode: [1, "viewMode"], size: [1, "size"], color: [1, "color"] }, decls: 6, vars: 6, consts: [[1, "flex", "items-center", "justify-center"], [1, "relative", 3, "ngClass"], ["viewBox", "0 0 100 100", 1, "spinner-rotate"], ["cx", "50", "cy", "50", "fill", "none", 3, "ngClass"], [1, "spinner-dot", 3, "ngClass", "animation-delay", "left", "top"], [1, "spinner-dot", 3, "ngClass"]], template: function IndeterminateSpinnerComponent_Template(rf, ctx) { if (rf & 1) {
63023
- i0.ɵɵelementStart(0, "div", 0)(1, "div", 1);
63024
- i0.ɵɵnamespaceSVG();
63025
- i0.ɵɵelementStart(2, "svg", 2);
63026
- i0.ɵɵelement(3, "circle", 3);
63027
- i0.ɵɵelementEnd();
63028
- i0.ɵɵrepeaterCreate(4, IndeterminateSpinnerComponent_For_5_Template, 1, 7, "div", 4, i0.ɵɵrepeaterTrackByIndex);
63029
- i0.ɵɵelementEnd()();
63030
- } if (rf & 2) {
63031
- i0.ɵɵadvance();
63032
- i0.ɵɵproperty("ngClass", ctx.containerClasses());
63033
- i0.ɵɵadvance();
63034
- i0.ɵɵattribute("width", ctx.svgSize())("height", ctx.svgSize());
63035
- i0.ɵɵadvance();
63036
- i0.ɵɵproperty("ngClass", ctx.trackClasses());
63037
- i0.ɵɵattribute("r", ctx.svgCircleRadius())("stroke-width", ctx.strokeWidth());
63038
- i0.ɵɵadvance();
63039
- i0.ɵɵrepeater(ctx.dots());
63040
- } }, dependencies: [CommonModule, i1$1.NgClass], styles: ["@keyframes _ngcontent-%COMP%_spinner-rotate{0%{transform:rotate(0)}to{transform:rotate(360deg)}}@keyframes _ngcontent-%COMP%_dot-pulse{0%,to{transform:translate(-50%,-50%) scale(1);opacity:.3;filter:brightness(1)}50%{transform:translate(-50%,-50%) scale(1.2);opacity:1;filter:brightness(1.5)}}.spinner-rotate[_ngcontent-%COMP%]{animation:_ngcontent-%COMP%_spinner-rotate 3s linear infinite}.spinner-dot[_ngcontent-%COMP%]{position:absolute;border-radius:50%;animation:_ngcontent-%COMP%_dot-pulse 2s ease-in-out infinite;will-change:transform,opacity,filter;left:50%;top:50%;pointer-events:none}.spinner-dot-small[_ngcontent-%COMP%]{width:5px;height:5px;box-shadow:0 0 4px currentColor,0 0 8px currentColor}.spinner-dot-medium[_ngcontent-%COMP%]{width:7px;height:7px;box-shadow:0 0 5px currentColor,0 0 10px currentColor}.spinner-dot-large[_ngcontent-%COMP%]{width:10px;height:10px;box-shadow:0 0 6px currentColor,0 0 12px currentColor}"], changeDetection: 0 }); }
63041
- }
63042
- (() => { (typeof ngDevMode === "undefined" || ngDevMode) && i0.ɵsetClassMetadata(IndeterminateSpinnerComponent, [{
63043
- type: Component,
63044
- args: [{ selector: 'symphiq-indeterminate-spinner', standalone: true, imports: [CommonModule], changeDetection: ChangeDetectionStrategy.OnPush, template: `
63045
- <div class="flex items-center justify-center">
63046
- <div [ngClass]="containerClasses()" class="relative">
63047
- <svg [attr.width]="svgSize()" [attr.height]="svgSize()" viewBox="0 0 100 100" class="spinner-rotate">
63048
- <circle
63049
- cx="50"
63050
- cy="50"
63051
- [attr.r]="svgCircleRadius()"
63052
- fill="none"
63053
- [ngClass]="trackClasses()"
63054
- [attr.stroke-width]="strokeWidth()"
63055
- />
63056
- </svg>
63057
-
63058
- @for (dot of dots(); track $index) {
63059
- <div
63060
- class="spinner-dot"
63061
- [ngClass]="dotClasses()"
63062
- [style.animation-delay]="dot.delay"
63063
- [style.left.px]="dot.x"
63064
- [style.top.px]="dot.y">
63065
- </div>
63066
- }
63067
- </div>
63068
- </div>
63069
- `, styles: ["@keyframes spinner-rotate{0%{transform:rotate(0)}to{transform:rotate(360deg)}}@keyframes dot-pulse{0%,to{transform:translate(-50%,-50%) scale(1);opacity:.3;filter:brightness(1)}50%{transform:translate(-50%,-50%) scale(1.2);opacity:1;filter:brightness(1.5)}}.spinner-rotate{animation:spinner-rotate 3s linear infinite}.spinner-dot{position:absolute;border-radius:50%;animation:dot-pulse 2s ease-in-out infinite;will-change:transform,opacity,filter;left:50%;top:50%;pointer-events:none}.spinner-dot-small{width:5px;height:5px;box-shadow:0 0 4px currentColor,0 0 8px currentColor}.spinner-dot-medium{width:7px;height:7px;box-shadow:0 0 5px currentColor,0 0 10px currentColor}.spinner-dot-large{width:10px;height:10px;box-shadow:0 0 6px currentColor,0 0 12px currentColor}\n"] }]
63070
- }], null, { viewMode: [{ type: i0.Input, args: [{ isSignal: true, alias: "viewMode", required: false }] }], size: [{ type: i0.Input, args: [{ isSignal: true, alias: "size", required: false }] }], color: [{ type: i0.Input, args: [{ isSignal: true, alias: "color", required: false }] }] }); })();
63071
- (() => { (typeof ngDevMode === "undefined" || ngDevMode) && i0.ɵsetClassDebugInfo(IndeterminateSpinnerComponent, { className: "IndeterminateSpinnerComponent", filePath: "lib/components/shared/indeterminate-spinner.component.ts", lineNumber: 94 }); })();
63072
-
63073
63092
  const _c0$p = () => [];
63074
63093
  function SymphiqRevenueCalculatorDashboardComponent_Conditional_23_Template(rf, ctx) { if (rf & 1) {
63075
63094
  i0.ɵɵelementStart(0, "div", 12);
@@ -66963,14 +66982,14 @@ class CollapsibleSectionGroupComponent {
66963
66982
  const _c0$l = () => [];
66964
66983
  function SymphiqBusinessAnalysisDashboardComponent_Conditional_14_Template(rf, ctx) { if (rf & 1) {
66965
66984
  const _r1 = i0.ɵɵgetCurrentView();
66966
- i0.ɵɵelementStart(0, "div", 8)(1, "symphiq-search-button", 19);
66985
+ i0.ɵɵelementStart(0, "div", 8)(1, "symphiq-search-button", 20);
66967
66986
  i0.ɵɵlistener("searchClick", function SymphiqBusinessAnalysisDashboardComponent_Conditional_14_Template_symphiq_search_button_searchClick_1_listener() { i0.ɵɵrestoreView(_r1); const ctx_r1 = i0.ɵɵnextContext(); return i0.ɵɵresetView(ctx_r1.openSearch()); });
66968
66987
  i0.ɵɵelementEnd();
66969
- i0.ɵɵelementStart(2, "button", 20);
66988
+ i0.ɵɵelementStart(2, "button", 21);
66970
66989
  i0.ɵɵlistener("click", function SymphiqBusinessAnalysisDashboardComponent_Conditional_14_Template_button_click_2_listener() { i0.ɵɵrestoreView(_r1); const ctx_r1 = i0.ɵɵnextContext(); return i0.ɵɵresetView(ctx_r1.openViewModeSwitcher()); });
66971
66990
  i0.ɵɵnamespaceSVG();
66972
- i0.ɵɵelementStart(3, "svg", 21);
66973
- i0.ɵɵelement(4, "path", 22)(5, "path", 23);
66991
+ i0.ɵɵelementStart(3, "svg", 22);
66992
+ i0.ɵɵelement(4, "path", 23)(5, "path", 24);
66974
66993
  i0.ɵɵelementEnd();
66975
66994
  i0.ɵɵnamespaceHTML();
66976
66995
  i0.ɵɵelementStart(6, "span");
@@ -66986,10 +67005,10 @@ function SymphiqBusinessAnalysisDashboardComponent_Conditional_14_Template(rf, c
66986
67005
  i0.ɵɵtextInterpolate(ctx_r1.displayModeLabel());
66987
67006
  } }
66988
67007
  function SymphiqBusinessAnalysisDashboardComponent_Conditional_22_Conditional_3_Template(rf, ctx) { if (rf & 1) {
66989
- i0.ɵɵelementStart(0, "span", 24);
67008
+ i0.ɵɵelementStart(0, "span", 25);
66990
67009
  i0.ɵɵtext(1, "\u203A");
66991
67010
  i0.ɵɵelementEnd();
66992
- i0.ɵɵelementStart(2, "span", 24);
67011
+ i0.ɵɵelementStart(2, "span", 25);
66993
67012
  i0.ɵɵtext(3);
66994
67013
  i0.ɵɵelementEnd();
66995
67014
  } if (rf & 2) {
@@ -67003,7 +67022,7 @@ function SymphiqBusinessAnalysisDashboardComponent_Conditional_22_Conditional_3_
67003
67022
  i0.ɵɵtextInterpolate1(" ", ctx_r1.currentSubsectionTitle(), " ");
67004
67023
  } }
67005
67024
  function SymphiqBusinessAnalysisDashboardComponent_Conditional_22_Template(rf, ctx) { if (rf & 1) {
67006
- i0.ɵɵelementStart(0, "div", 12)(1, "span", 24);
67025
+ i0.ɵɵelementStart(0, "div", 12)(1, "span", 25);
67007
67026
  i0.ɵɵtext(2);
67008
67027
  i0.ɵɵelementEnd();
67009
67028
  i0.ɵɵconditionalCreate(3, SymphiqBusinessAnalysisDashboardComponent_Conditional_22_Conditional_3_Template, 4, 11);
@@ -67020,14 +67039,14 @@ function SymphiqBusinessAnalysisDashboardComponent_Conditional_22_Template(rf, c
67020
67039
  } }
67021
67040
  function SymphiqBusinessAnalysisDashboardComponent_Conditional_23_Template(rf, ctx) { if (rf & 1) {
67022
67041
  const _r3 = i0.ɵɵgetCurrentView();
67023
- i0.ɵɵelementStart(0, "symphiq-search-button", 25);
67042
+ i0.ɵɵelementStart(0, "symphiq-search-button", 26);
67024
67043
  i0.ɵɵlistener("searchClick", function SymphiqBusinessAnalysisDashboardComponent_Conditional_23_Template_symphiq_search_button_searchClick_0_listener() { i0.ɵɵrestoreView(_r3); const ctx_r1 = i0.ɵɵnextContext(); return i0.ɵɵresetView(ctx_r1.openSearch()); });
67025
67044
  i0.ɵɵelementEnd();
67026
- i0.ɵɵelementStart(1, "button", 26);
67045
+ i0.ɵɵelementStart(1, "button", 27);
67027
67046
  i0.ɵɵlistener("click", function SymphiqBusinessAnalysisDashboardComponent_Conditional_23_Template_button_click_1_listener() { i0.ɵɵrestoreView(_r3); const ctx_r1 = i0.ɵɵnextContext(); return i0.ɵɵresetView(ctx_r1.openViewModeSwitcher()); });
67028
67047
  i0.ɵɵnamespaceSVG();
67029
- i0.ɵɵelementStart(2, "svg", 21);
67030
- i0.ɵɵelement(3, "path", 22)(4, "path", 23);
67048
+ i0.ɵɵelementStart(2, "svg", 22);
67049
+ i0.ɵɵelement(3, "path", 23)(4, "path", 24);
67031
67050
  i0.ɵɵelementEnd()();
67032
67051
  } if (rf & 2) {
67033
67052
  const ctx_r1 = i0.ɵɵnextContext();
@@ -67035,18 +67054,27 @@ function SymphiqBusinessAnalysisDashboardComponent_Conditional_23_Template(rf, c
67035
67054
  i0.ɵɵadvance();
67036
67055
  i0.ɵɵproperty("ngClass", ctx_r1.getViewModeButtonClasses());
67037
67056
  } }
67038
- function SymphiqBusinessAnalysisDashboardComponent_Conditional_25_Conditional_0_Template(rf, ctx) { if (rf & 1) {
67057
+ function SymphiqBusinessAnalysisDashboardComponent_Conditional_25_Template(rf, ctx) { if (rf & 1) {
67058
+ i0.ɵɵelementStart(0, "div", 14);
67059
+ i0.ɵɵelement(1, "symphiq-indeterminate-spinner", 28);
67060
+ i0.ɵɵelementEnd();
67061
+ } if (rf & 2) {
67062
+ const ctx_r1 = i0.ɵɵnextContext();
67063
+ i0.ɵɵadvance();
67064
+ i0.ɵɵproperty("viewMode", ctx_r1.viewMode());
67065
+ } }
67066
+ function SymphiqBusinessAnalysisDashboardComponent_Conditional_26_Conditional_0_Template(rf, ctx) { if (rf & 1) {
67039
67067
  const _r4 = i0.ɵɵgetCurrentView();
67040
- i0.ɵɵelementStart(0, "symphiq-journey-progress-indicator", 29);
67041
- i0.ɵɵlistener("stepClick", function SymphiqBusinessAnalysisDashboardComponent_Conditional_25_Conditional_0_Template_symphiq_journey_progress_indicator_stepClick_0_listener($event) { i0.ɵɵrestoreView(_r4); const ctx_r1 = i0.ɵɵnextContext(2); return i0.ɵɵresetView(ctx_r1.stepClick.emit($event)); })("nextStepClick", function SymphiqBusinessAnalysisDashboardComponent_Conditional_25_Conditional_0_Template_symphiq_journey_progress_indicator_nextStepClick_0_listener() { i0.ɵɵrestoreView(_r4); const ctx_r1 = i0.ɵɵnextContext(2); return i0.ɵɵresetView(ctx_r1.nextStepClick.emit()); });
67068
+ i0.ɵɵelementStart(0, "symphiq-journey-progress-indicator", 31);
67069
+ i0.ɵɵlistener("stepClick", function SymphiqBusinessAnalysisDashboardComponent_Conditional_26_Conditional_0_Template_symphiq_journey_progress_indicator_stepClick_0_listener($event) { i0.ɵɵrestoreView(_r4); const ctx_r1 = i0.ɵɵnextContext(2); return i0.ɵɵresetView(ctx_r1.stepClick.emit($event)); })("nextStepClick", function SymphiqBusinessAnalysisDashboardComponent_Conditional_26_Conditional_0_Template_symphiq_journey_progress_indicator_nextStepClick_0_listener() { i0.ɵɵrestoreView(_r4); const ctx_r1 = i0.ɵɵnextContext(2); return i0.ɵɵresetView(ctx_r1.nextStepClick.emit()); });
67042
67070
  i0.ɵɵelementEnd();
67043
67071
  } if (rf & 2) {
67044
67072
  const ctx_r1 = i0.ɵɵnextContext(2);
67045
67073
  i0.ɵɵproperty("viewMode", ctx_r1.viewMode())("currentStepId", ctx_r1.JourneyStepIdEnum.BUSINESS_ANALYSIS)("showNextStepAction", false)("forDemo", ctx_r1.forDemo())("maxAccessibleStepId", ctx_r1.maxAccessibleStepId());
67046
67074
  } }
67047
- function SymphiqBusinessAnalysisDashboardComponent_Conditional_25_Template(rf, ctx) { if (rf & 1) {
67048
- i0.ɵɵconditionalCreate(0, SymphiqBusinessAnalysisDashboardComponent_Conditional_25_Conditional_0_Template, 1, 5, "symphiq-journey-progress-indicator", 27);
67049
- i0.ɵɵelement(1, "symphiq-content-generation-progress-with-confetti", 28);
67075
+ function SymphiqBusinessAnalysisDashboardComponent_Conditional_26_Template(rf, ctx) { if (rf & 1) {
67076
+ i0.ɵɵconditionalCreate(0, SymphiqBusinessAnalysisDashboardComponent_Conditional_26_Conditional_0_Template, 1, 5, "symphiq-journey-progress-indicator", 29);
67077
+ i0.ɵɵelement(1, "symphiq-content-generation-progress-with-confetti", 30);
67050
67078
  } if (rf & 2) {
67051
67079
  let tmp_6_0;
67052
67080
  const ctx_r1 = i0.ɵɵnextContext();
@@ -67054,26 +67082,26 @@ function SymphiqBusinessAnalysisDashboardComponent_Conditional_25_Template(rf, c
67054
67082
  i0.ɵɵadvance();
67055
67083
  i0.ɵɵproperty("viewMode", ctx_r1.viewMode())("itemStatus", ctx_r1.itemStatus())("profile", ctx_r1.profile())("confettiIntensity", "celebration")("title", "We are generating a new Business Analysis for " + (((tmp_6_0 = ctx_r1.currentProfile()) == null ? null : tmp_6_0.profileStructured == null ? null : tmp_6_0.profileStructured.businessName) || "your business") + ".")("subtitle", "It will appear here when ready. You can check back later as this will take a few minutes to complete.");
67056
67084
  } }
67057
- function SymphiqBusinessAnalysisDashboardComponent_Conditional_26_Conditional_0_Conditional_0_Template(rf, ctx) { if (rf & 1) {
67085
+ function SymphiqBusinessAnalysisDashboardComponent_Conditional_27_Conditional_0_Conditional_0_Template(rf, ctx) { if (rf & 1) {
67058
67086
  const _r6 = i0.ɵɵgetCurrentView();
67059
- i0.ɵɵelementStart(0, "symphiq-journey-progress-indicator", 29);
67060
- i0.ɵɵlistener("stepClick", function SymphiqBusinessAnalysisDashboardComponent_Conditional_26_Conditional_0_Conditional_0_Template_symphiq_journey_progress_indicator_stepClick_0_listener($event) { i0.ɵɵrestoreView(_r6); const ctx_r1 = i0.ɵɵnextContext(3); return i0.ɵɵresetView(ctx_r1.stepClick.emit($event)); })("nextStepClick", function SymphiqBusinessAnalysisDashboardComponent_Conditional_26_Conditional_0_Conditional_0_Template_symphiq_journey_progress_indicator_nextStepClick_0_listener() { i0.ɵɵrestoreView(_r6); const ctx_r1 = i0.ɵɵnextContext(3); return i0.ɵɵresetView(ctx_r1.nextStepClick.emit()); });
67087
+ i0.ɵɵelementStart(0, "symphiq-journey-progress-indicator", 31);
67088
+ i0.ɵɵlistener("stepClick", function SymphiqBusinessAnalysisDashboardComponent_Conditional_27_Conditional_0_Conditional_0_Template_symphiq_journey_progress_indicator_stepClick_0_listener($event) { i0.ɵɵrestoreView(_r6); const ctx_r1 = i0.ɵɵnextContext(3); return i0.ɵɵresetView(ctx_r1.stepClick.emit($event)); })("nextStepClick", function SymphiqBusinessAnalysisDashboardComponent_Conditional_27_Conditional_0_Conditional_0_Template_symphiq_journey_progress_indicator_nextStepClick_0_listener() { i0.ɵɵrestoreView(_r6); const ctx_r1 = i0.ɵɵnextContext(3); return i0.ɵɵresetView(ctx_r1.nextStepClick.emit()); });
67061
67089
  i0.ɵɵelementEnd();
67062
67090
  } if (rf & 2) {
67063
67091
  const ctx_r1 = i0.ɵɵnextContext(3);
67064
67092
  i0.ɵɵproperty("viewMode", ctx_r1.viewMode())("currentStepId", ctx_r1.JourneyStepIdEnum.BUSINESS_ANALYSIS)("showNextStepAction", ctx_r1.showNextStepAction())("forDemo", ctx_r1.forDemo())("maxAccessibleStepId", ctx_r1.maxAccessibleStepId());
67065
67093
  } }
67066
- function SymphiqBusinessAnalysisDashboardComponent_Conditional_26_Conditional_0_Template(rf, ctx) { if (rf & 1) {
67094
+ function SymphiqBusinessAnalysisDashboardComponent_Conditional_27_Conditional_0_Template(rf, ctx) { if (rf & 1) {
67067
67095
  const _r5 = i0.ɵɵgetCurrentView();
67068
- i0.ɵɵconditionalCreate(0, SymphiqBusinessAnalysisDashboardComponent_Conditional_26_Conditional_0_Conditional_0_Template, 1, 5, "symphiq-journey-progress-indicator", 27);
67069
- i0.ɵɵelementStart(1, "div", 6)(2, "div", 30);
67070
- i0.ɵɵelement(3, "symphiq-welcome-banner", 31);
67096
+ i0.ɵɵconditionalCreate(0, SymphiqBusinessAnalysisDashboardComponent_Conditional_27_Conditional_0_Conditional_0_Template, 1, 5, "symphiq-journey-progress-indicator", 29);
67097
+ i0.ɵɵelementStart(1, "div", 6)(2, "div", 32);
67098
+ i0.ɵɵelement(3, "symphiq-welcome-banner", 33);
67071
67099
  i0.ɵɵelementEnd();
67072
- i0.ɵɵelementStart(4, "div", 30)(5, "symphiq-recommendations-tiled-grid", 32);
67073
- i0.ɵɵlistener("viewMoreClick", function SymphiqBusinessAnalysisDashboardComponent_Conditional_26_Conditional_0_Template_symphiq_recommendations_tiled_grid_viewMoreClick_5_listener($event) { i0.ɵɵrestoreView(_r5); const ctx_r1 = i0.ɵɵnextContext(2); return i0.ɵɵresetView(ctx_r1.openRecommendationDetailsModal($event)); });
67100
+ i0.ɵɵelementStart(4, "div", 32)(5, "symphiq-recommendations-tiled-grid", 34);
67101
+ i0.ɵɵlistener("viewMoreClick", function SymphiqBusinessAnalysisDashboardComponent_Conditional_27_Conditional_0_Template_symphiq_recommendations_tiled_grid_viewMoreClick_5_listener($event) { i0.ɵɵrestoreView(_r5); const ctx_r1 = i0.ɵɵnextContext(2); return i0.ɵɵresetView(ctx_r1.openRecommendationDetailsModal($event)); });
67074
67102
  i0.ɵɵelementEnd()();
67075
67103
  i0.ɵɵelementStart(6, "div");
67076
- i0.ɵɵelement(7, "symphiq-collapsible-section-group", 33);
67104
+ i0.ɵɵelement(7, "symphiq-collapsible-section-group", 35);
67077
67105
  i0.ɵɵelementEnd()();
67078
67106
  } if (rf & 2) {
67079
67107
  let tmp_4_0;
@@ -67086,53 +67114,53 @@ function SymphiqBusinessAnalysisDashboardComponent_Conditional_26_Conditional_0_
67086
67114
  i0.ɵɵadvance(2);
67087
67115
  i0.ɵɵproperty("sections", ctx_r1.nonRecommendationSections())("viewMode", ctx_r1.viewMode());
67088
67116
  } }
67089
- function SymphiqBusinessAnalysisDashboardComponent_Conditional_26_Conditional_1_For_1_Conditional_1_Template(rf, ctx) { if (rf & 1) {
67090
- i0.ɵɵelementStart(0, "div", 35);
67091
- i0.ɵɵelement(1, "symphiq-section-divider", 36);
67117
+ function SymphiqBusinessAnalysisDashboardComponent_Conditional_27_Conditional_1_For_1_Conditional_1_Template(rf, ctx) { if (rf & 1) {
67118
+ i0.ɵɵelementStart(0, "div", 37);
67119
+ i0.ɵɵelement(1, "symphiq-section-divider", 38);
67092
67120
  i0.ɵɵelementEnd();
67093
67121
  } if (rf & 2) {
67094
- const ɵ$index_108_r7 = i0.ɵɵnextContext().$index;
67122
+ const ɵ$index_113_r7 = i0.ɵɵnextContext().$index;
67095
67123
  const ctx_r1 = i0.ɵɵnextContext(3);
67096
67124
  i0.ɵɵadvance();
67097
- i0.ɵɵproperty("viewMode", ctx_r1.viewMode())("subsections", ctx_r1.sections()[ɵ$index_108_r7 + 1].subsections || i0.ɵɵpureFunction0(2, _c0$l));
67125
+ i0.ɵɵproperty("viewMode", ctx_r1.viewMode())("subsections", ctx_r1.sections()[ɵ$index_113_r7 + 1].subsections || i0.ɵɵpureFunction0(2, _c0$l));
67098
67126
  } }
67099
- function SymphiqBusinessAnalysisDashboardComponent_Conditional_26_Conditional_1_For_1_Template(rf, ctx) { if (rf & 1) {
67100
- i0.ɵɵelement(0, "symphiq-profile-section", 34);
67101
- i0.ɵɵconditionalCreate(1, SymphiqBusinessAnalysisDashboardComponent_Conditional_26_Conditional_1_For_1_Conditional_1_Template, 2, 3, "div", 35);
67127
+ function SymphiqBusinessAnalysisDashboardComponent_Conditional_27_Conditional_1_For_1_Template(rf, ctx) { if (rf & 1) {
67128
+ i0.ɵɵelement(0, "symphiq-profile-section", 36);
67129
+ i0.ɵɵconditionalCreate(1, SymphiqBusinessAnalysisDashboardComponent_Conditional_27_Conditional_1_For_1_Conditional_1_Template, 2, 3, "div", 37);
67102
67130
  } if (rf & 2) {
67103
67131
  const section_r8 = ctx.$implicit;
67104
- const ɵ$index_108_r7 = ctx.$index;
67105
- const ɵ$count_108_r9 = ctx.$count;
67132
+ const ɵ$index_113_r7 = ctx.$index;
67133
+ const ɵ$count_113_r9 = ctx.$count;
67106
67134
  const ctx_r1 = i0.ɵɵnextContext(3);
67107
67135
  i0.ɵɵproperty("section", section_r8)("viewMode", ctx_r1.viewMode())("forceExpanded", !ctx_r1.isCompactView());
67108
67136
  i0.ɵɵadvance();
67109
- i0.ɵɵconditional(!(ɵ$index_108_r7 === ɵ$count_108_r9 - 1) ? 1 : -1);
67137
+ i0.ɵɵconditional(!(ɵ$index_113_r7 === ɵ$count_113_r9 - 1) ? 1 : -1);
67110
67138
  } }
67111
- function SymphiqBusinessAnalysisDashboardComponent_Conditional_26_Conditional_1_Template(rf, ctx) { if (rf & 1) {
67112
- i0.ɵɵrepeaterCreate(0, SymphiqBusinessAnalysisDashboardComponent_Conditional_26_Conditional_1_For_1_Template, 2, 4, null, null, i0.ɵɵcomponentInstance().trackBySectionId, true);
67139
+ function SymphiqBusinessAnalysisDashboardComponent_Conditional_27_Conditional_1_Template(rf, ctx) { if (rf & 1) {
67140
+ i0.ɵɵrepeaterCreate(0, SymphiqBusinessAnalysisDashboardComponent_Conditional_27_Conditional_1_For_1_Template, 2, 4, null, null, i0.ɵɵcomponentInstance().trackBySectionId, true);
67113
67141
  } if (rf & 2) {
67114
67142
  const ctx_r1 = i0.ɵɵnextContext(2);
67115
67143
  i0.ɵɵrepeater(ctx_r1.sections());
67116
67144
  } }
67117
- function SymphiqBusinessAnalysisDashboardComponent_Conditional_26_Template(rf, ctx) { if (rf & 1) {
67118
- i0.ɵɵconditionalCreate(0, SymphiqBusinessAnalysisDashboardComponent_Conditional_26_Conditional_0_Template, 8, 8)(1, SymphiqBusinessAnalysisDashboardComponent_Conditional_26_Conditional_1_Template, 2, 0);
67145
+ function SymphiqBusinessAnalysisDashboardComponent_Conditional_27_Template(rf, ctx) { if (rf & 1) {
67146
+ i0.ɵɵconditionalCreate(0, SymphiqBusinessAnalysisDashboardComponent_Conditional_27_Conditional_0_Template, 8, 8)(1, SymphiqBusinessAnalysisDashboardComponent_Conditional_27_Conditional_1_Template, 2, 0);
67119
67147
  } if (rf & 2) {
67120
67148
  const ctx_r1 = i0.ɵɵnextContext();
67121
67149
  i0.ɵɵconditional(ctx_r1.isSimplifiedView() ? 0 : 1);
67122
67150
  } }
67123
- function SymphiqBusinessAnalysisDashboardComponent_Conditional_27_Template(rf, ctx) { if (rf & 1) {
67124
- i0.ɵɵelement(0, "symphiq-section-navigation", 14);
67151
+ function SymphiqBusinessAnalysisDashboardComponent_Conditional_28_Template(rf, ctx) { if (rf & 1) {
67152
+ i0.ɵɵelement(0, "symphiq-section-navigation", 15);
67125
67153
  } if (rf & 2) {
67126
67154
  const ctx_r1 = i0.ɵɵnextContext();
67127
67155
  i0.ɵɵproperty("sections", ctx_r1.sections())("viewMode", ctx_r1.viewMode())("embedded", ctx_r1.embedded())("scrollElement", ctx_r1.scrollElement() ?? undefined);
67128
67156
  } }
67129
- function SymphiqBusinessAnalysisDashboardComponent_Conditional_28_Template(rf, ctx) { if (rf & 1) {
67130
- i0.ɵɵelement(0, "symphiq-floating-toc", 14);
67157
+ function SymphiqBusinessAnalysisDashboardComponent_Conditional_29_Template(rf, ctx) { if (rf & 1) {
67158
+ i0.ɵɵelement(0, "symphiq-floating-toc", 15);
67131
67159
  } if (rf & 2) {
67132
67160
  const ctx_r1 = i0.ɵɵnextContext();
67133
67161
  i0.ɵɵproperty("sections", ctx_r1.sections())("viewMode", ctx_r1.viewMode())("embedded", ctx_r1.embedded())("scrollElement", ctx_r1.scrollElement() ?? undefined);
67134
67162
  } }
67135
- function SymphiqBusinessAnalysisDashboardComponent_Conditional_30_Template(rf, ctx) { if (rf & 1) {
67163
+ function SymphiqBusinessAnalysisDashboardComponent_Conditional_31_Template(rf, ctx) { if (rf & 1) {
67136
67164
  i0.ɵɵelementStart(0, "div", 0);
67137
67165
  i0.ɵɵelement(1, "div", 0);
67138
67166
  i0.ɵɵelementEnd();
@@ -67648,7 +67676,7 @@ class SymphiqBusinessAnalysisDashboardComponent {
67648
67676
  static { this.ɵfac = function SymphiqBusinessAnalysisDashboardComponent_Factory(__ngFactoryType__) { return new (__ngFactoryType__ || SymphiqBusinessAnalysisDashboardComponent)(); }; }
67649
67677
  static { this.ɵcmp = /*@__PURE__*/ i0.ɵɵdefineComponent({ type: SymphiqBusinessAnalysisDashboardComponent, selectors: [["symphiq-business-analysis-dashboard"]], hostBindings: function SymphiqBusinessAnalysisDashboardComponent_HostBindings(rf, ctx) { if (rf & 1) {
67650
67678
  i0.ɵɵlistener("scroll", function SymphiqBusinessAnalysisDashboardComponent_scroll_HostBindingHandler($event) { return ctx.onScroll($event); }, i0.ɵɵresolveWindow)("keydown", function SymphiqBusinessAnalysisDashboardComponent_keydown_HostBindingHandler($event) { return ctx.handleKeyDown($event); }, i0.ɵɵresolveDocument);
67651
- } }, 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"] }, outputs: { stepClick: "stepClick", nextStepClick: "nextStepClick" }, decls: 35, vars: 59, consts: [[3, "ngClass"], [1, "h-full", "transition-all", "duration-200", "ease-out", 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]"], [1, "sticky", "top-0", "z-50", 3, "ngClass"], [1, "transition-all", "duration-300", "ease-in-out", "overflow-hidden"], [1, "max-w-7xl", "mx-auto", "px-4", "sm:px-6", "lg:px-8", "py-8"], [1, "flex", "items-center", "justify-between"], [1, "flex", "items-center", "gap-2"], [1, "max-w-7xl", "mx-auto", "px-4", "sm:px-6", "lg:px-8", "py-3"], [1, "flex-1", "min-w-0", "mr-4"], [1, "flex", "items-center", "gap-4"], [1, "flex", "items-center", "gap-2", "text-sm", "flex-shrink-0"], [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, "searchClick", "isLightMode"], ["type", "button", 1, "cursor-pointer", "flex", "items-center", "gap-2", "px-3", "py-1.5", "rounded-lg", "text-xs", "font-medium", "transition-all", "duration-200", "hover:scale-105", 3, "click", "ngClass"], ["fill", "none", "stroke", "currentColor", "viewBox", "0 0 24 24", 1, "w-4", "h-4"], ["stroke-linecap", "round", "stroke-linejoin", "round", "stroke-width", "2", "d", "M15 12a3 3 0 11-6 0 3 3 0 016 0z"], ["stroke-linecap", "round", "stroke-linejoin", "round", "stroke-width", "2", "d", "M2.458 12C3.732 7.943 7.523 5 12 5c4.478 0 8.268 2.943 9.542 7-1.274 4.057-5.064 7-9.542 7-4.477 0-8.268-2.943-9.542-7z"], [1, "transition-opacity", "duration-300", 3, "ngClass"], [3, "searchClick", "isLightMode", "minimized"], ["type", "button", 1, "cursor-pointer", "flex", "items-center", "gap-2", "px-2", "py-1.5", "rounded-lg", "text-xs", "font-medium", "transition-all", "duration-200", "hover:scale-105", 3, "click", "ngClass"], [3, "viewMode", "currentStepId", "showNextStepAction", "forDemo", "maxAccessibleStepId"], [3, "viewMode", "itemStatus", "profile", "confettiIntensity", "title", "subtitle"], [3, "stepClick", "nextStepClick", "viewMode", "currentStepId", "showNextStepAction", "forDemo", "maxAccessibleStepId"], [1, "mb-8"], [3, "viewMode", "businessName", "isOnboarded"], [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) {
67679
+ } }, 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"] }, outputs: { stepClick: "stepClick", nextStepClick: "nextStepClick" }, decls: 36, vars: 59, consts: [[3, "ngClass"], [1, "h-full", "transition-all", "duration-200", "ease-out", 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]"], [1, "sticky", "top-0", "z-50", 3, "ngClass"], [1, "transition-all", "duration-300", "ease-in-out", "overflow-hidden"], [1, "max-w-7xl", "mx-auto", "px-4", "sm:px-6", "lg:px-8", "py-8"], [1, "flex", "items-center", "justify-between"], [1, "flex", "items-center", "gap-2"], [1, "max-w-7xl", "mx-auto", "px-4", "sm:px-6", "lg:px-8", "py-3"], [1, "flex-1", "min-w-0", "mr-4"], [1, "flex", "items-center", "gap-4"], [1, "flex", "items-center", "gap-2", "text-sm", "flex-shrink-0"], [1, "relative"], [1, "flex", "items-center", "justify-center", "min-h-[60vh]"], [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, "searchClick", "isLightMode"], ["type", "button", 1, "cursor-pointer", "flex", "items-center", "gap-2", "px-3", "py-1.5", "rounded-lg", "text-xs", "font-medium", "transition-all", "duration-200", "hover:scale-105", 3, "click", "ngClass"], ["fill", "none", "stroke", "currentColor", "viewBox", "0 0 24 24", 1, "w-4", "h-4"], ["stroke-linecap", "round", "stroke-linejoin", "round", "stroke-width", "2", "d", "M15 12a3 3 0 11-6 0 3 3 0 016 0z"], ["stroke-linecap", "round", "stroke-linejoin", "round", "stroke-width", "2", "d", "M2.458 12C3.732 7.943 7.523 5 12 5c4.478 0 8.268 2.943 9.542 7-1.274 4.057-5.064 7-9.542 7-4.477 0-8.268-2.943-9.542-7z"], [1, "transition-opacity", "duration-300", 3, "ngClass"], [3, "searchClick", "isLightMode", "minimized"], ["type", "button", 1, "cursor-pointer", "flex", "items-center", "gap-2", "px-2", "py-1.5", "rounded-lg", "text-xs", "font-medium", "transition-all", "duration-200", "hover:scale-105", 3, "click", "ngClass"], ["size", "large", 3, "viewMode"], [3, "viewMode", "currentStepId", "showNextStepAction", "forDemo", "maxAccessibleStepId"], [3, "viewMode", "itemStatus", "profile", "confettiIntensity", "title", "subtitle"], [3, "stepClick", "nextStepClick", "viewMode", "currentStepId", "showNextStepAction", "forDemo", "maxAccessibleStepId"], [1, "mb-8"], [3, "viewMode", "businessName", "isOnboarded"], [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) {
67652
67680
  i0.ɵɵelementStart(0, "div", 0)(1, "div");
67653
67681
  i0.ɵɵelement(2, "div", 1);
67654
67682
  i0.ɵɵelementEnd();
@@ -67669,22 +67697,22 @@ class SymphiqBusinessAnalysisDashboardComponent {
67669
67697
  i0.ɵɵconditionalCreate(23, SymphiqBusinessAnalysisDashboardComponent_Conditional_23_Template, 5, 3);
67670
67698
  i0.ɵɵelementEnd()()()()();
67671
67699
  i0.ɵɵelementStart(24, "main", 13);
67672
- i0.ɵɵconditionalCreate(25, SymphiqBusinessAnalysisDashboardComponent_Conditional_25_Template, 2, 7)(26, SymphiqBusinessAnalysisDashboardComponent_Conditional_26_Template, 2, 1);
67700
+ i0.ɵɵconditionalCreate(25, SymphiqBusinessAnalysisDashboardComponent_Conditional_25_Template, 2, 1, "div", 14)(26, SymphiqBusinessAnalysisDashboardComponent_Conditional_26_Template, 2, 7)(27, SymphiqBusinessAnalysisDashboardComponent_Conditional_27_Template, 2, 1);
67673
67701
  i0.ɵɵelementEnd();
67674
- i0.ɵɵconditionalCreate(27, SymphiqBusinessAnalysisDashboardComponent_Conditional_27_Template, 1, 4, "symphiq-section-navigation", 14);
67675
- i0.ɵɵconditionalCreate(28, SymphiqBusinessAnalysisDashboardComponent_Conditional_28_Template, 1, 4, "symphiq-floating-toc", 14);
67676
- i0.ɵɵelement(29, "symphiq-floating-back-button", 15);
67702
+ i0.ɵɵconditionalCreate(28, SymphiqBusinessAnalysisDashboardComponent_Conditional_28_Template, 1, 4, "symphiq-section-navigation", 15);
67703
+ i0.ɵɵconditionalCreate(29, SymphiqBusinessAnalysisDashboardComponent_Conditional_29_Template, 1, 4, "symphiq-floating-toc", 15);
67704
+ i0.ɵɵelement(30, "symphiq-floating-back-button", 16);
67677
67705
  i0.ɵɵelementEnd();
67678
- i0.ɵɵconditionalCreate(30, SymphiqBusinessAnalysisDashboardComponent_Conditional_30_Template, 2, 2, "div", 0);
67679
- i0.ɵɵelement(31, "symphiq-tooltip-container");
67680
- i0.ɵɵelementStart(32, "symphiq-business-analysis-modal", 16);
67681
- i0.ɵɵlistener("viewInContextRequested", function SymphiqBusinessAnalysisDashboardComponent_Template_symphiq_business_analysis_modal_viewInContextRequested_32_listener($event) { return ctx.handleViewInContext($event); });
67706
+ i0.ɵɵconditionalCreate(31, SymphiqBusinessAnalysisDashboardComponent_Conditional_31_Template, 2, 2, "div", 0);
67707
+ i0.ɵɵelement(32, "symphiq-tooltip-container");
67708
+ i0.ɵɵelementStart(33, "symphiq-business-analysis-modal", 17);
67709
+ i0.ɵɵlistener("viewInContextRequested", function SymphiqBusinessAnalysisDashboardComponent_Template_symphiq_business_analysis_modal_viewInContextRequested_33_listener($event) { return ctx.handleViewInContext($event); });
67682
67710
  i0.ɵɵelementEnd();
67683
- i0.ɵɵelementStart(33, "symphiq-search-modal", 17);
67684
- i0.ɵɵlistener("searchChange", function SymphiqBusinessAnalysisDashboardComponent_Template_symphiq_search_modal_searchChange_33_listener($event) { return ctx.onSearchChange($event); })("resultSelected", function SymphiqBusinessAnalysisDashboardComponent_Template_symphiq_search_modal_resultSelected_33_listener($event) { return ctx.onSearchResultSelected($event); })("close", function SymphiqBusinessAnalysisDashboardComponent_Template_symphiq_search_modal_close_33_listener() { return ctx.closeSearch(); });
67711
+ i0.ɵɵelementStart(34, "symphiq-search-modal", 18);
67712
+ i0.ɵɵlistener("searchChange", function SymphiqBusinessAnalysisDashboardComponent_Template_symphiq_search_modal_searchChange_34_listener($event) { return ctx.onSearchChange($event); })("resultSelected", function SymphiqBusinessAnalysisDashboardComponent_Template_symphiq_search_modal_resultSelected_34_listener($event) { return ctx.onSearchResultSelected($event); })("close", function SymphiqBusinessAnalysisDashboardComponent_Template_symphiq_search_modal_close_34_listener() { return ctx.closeSearch(); });
67685
67713
  i0.ɵɵelementEnd();
67686
- i0.ɵɵelementStart(34, "symphiq-view-mode-switcher-modal", 18);
67687
- i0.ɵɵlistener("close", function SymphiqBusinessAnalysisDashboardComponent_Template_symphiq_view_mode_switcher_modal_close_34_listener() { return ctx.closeViewModeSwitcher(); })("modeSelected", function SymphiqBusinessAnalysisDashboardComponent_Template_symphiq_view_mode_switcher_modal_modeSelected_34_listener($event) { return ctx.handleDisplayModeChange($event); });
67714
+ i0.ɵɵelementStart(35, "symphiq-view-mode-switcher-modal", 19);
67715
+ i0.ɵɵlistener("close", function SymphiqBusinessAnalysisDashboardComponent_Template_symphiq_view_mode_switcher_modal_close_35_listener() { return ctx.closeViewModeSwitcher(); })("modeSelected", function SymphiqBusinessAnalysisDashboardComponent_Template_symphiq_view_mode_switcher_modal_modeSelected_35_listener($event) { return ctx.handleDisplayModeChange($event); });
67688
67716
  i0.ɵɵelementEnd()();
67689
67717
  } if (rf & 2) {
67690
67718
  let tmp_13_0;
@@ -67726,26 +67754,26 @@ class SymphiqBusinessAnalysisDashboardComponent {
67726
67754
  i0.ɵɵadvance();
67727
67755
  i0.ɵɵconditional(((tmp_25_0 = ctx.profile()) == null ? null : tmp_25_0.selfContentStatus) === ctx.AiDynamicContentStatusEnum.GENERATED ? 23 : -1);
67728
67756
  i0.ɵɵadvance(2);
67729
- i0.ɵɵconditional(ctx.isContentGenerating() ? 25 : 26);
67730
- i0.ɵɵadvance(2);
67731
- i0.ɵɵconditional(!ctx.isSimplifiedView() ? 27 : -1);
67732
- i0.ɵɵadvance();
67757
+ i0.ɵɵconditional(ctx.isLoading() ? 25 : ctx.isContentGenerating() ? 26 : 27);
67758
+ i0.ɵɵadvance(3);
67733
67759
  i0.ɵɵconditional(!ctx.isSimplifiedView() ? 28 : -1);
67734
67760
  i0.ɵɵadvance();
67761
+ i0.ɵɵconditional(!ctx.isSimplifiedView() ? 29 : -1);
67762
+ i0.ɵɵadvance();
67735
67763
  i0.ɵɵproperty("viewMode", ctx.viewMode())("embedded", ctx.embedded());
67736
67764
  i0.ɵɵadvance();
67737
- i0.ɵɵconditional(ctx.isLoading() ? 30 : -1);
67765
+ i0.ɵɵconditional(ctx.isLoading() ? 31 : -1);
67738
67766
  i0.ɵɵadvance(2);
67739
67767
  i0.ɵɵproperty("isLightMode", ctx.isLightMode());
67740
67768
  i0.ɵɵadvance();
67741
67769
  i0.ɵɵproperty("isLightMode", ctx.isLightMode())("isOpen", ctx.searchService.isSearchOpen())("searchQuery", ctx.searchService.getSearchQuery())("results", ctx.searchService.searchResults())("hasResults", ctx.searchService.hasResults())("selectedIndex", ctx.selectedSearchIndex())("placeholder", "Search sections, items, and analysis...");
67742
67770
  i0.ɵɵadvance();
67743
67771
  i0.ɵɵproperty("isOpen", ctx.isViewModeSwitcherOpen())("currentMode", ctx.displayMode())("viewMode", ctx.viewMode())("isLoading", ctx.isViewModeSwitching());
67744
- } }, dependencies: [CommonModule, i1$1.NgClass, ProfileSectionComponent, SectionNavigationComponent, FloatingTocComponent, FloatingBackButtonComponent, TooltipContainerComponent, SectionDividerComponent, BusinessAnalysisModalComponent, SearchButtonComponent, SearchModalComponent, ViewModeSwitcherModalComponent, JourneyProgressIndicatorComponent, WelcomeBannerComponent, RecommendationsTiledGridComponent, CollapsibleSectionGroupComponent, ContentGenerationProgressWithConfettiComponent], styles: ["[_nghost-%COMP%]{display:block}@keyframes _ngcontent-%COMP%_spin{to{transform:rotate(360deg)}}@keyframes _ngcontent-%COMP%_pulse-highlight{0%,to{transform:scale(1);box-shadow:0 0 #3b82f6b3}50%{transform:scale(1.02);box-shadow:0 0 20px 8px #3b82f64d}}[_nghost-%COMP%] .search-highlight-pulse{animation:_ngcontent-%COMP%_pulse-highlight 2s ease-in-out;border-color:#3b82f6!important}"], changeDetection: 0 }); }
67772
+ } }, dependencies: [CommonModule, i1$1.NgClass, ProfileSectionComponent, SectionNavigationComponent, FloatingTocComponent, FloatingBackButtonComponent, TooltipContainerComponent, SectionDividerComponent, BusinessAnalysisModalComponent, SearchButtonComponent, SearchModalComponent, ViewModeSwitcherModalComponent, JourneyProgressIndicatorComponent, WelcomeBannerComponent, RecommendationsTiledGridComponent, CollapsibleSectionGroupComponent, ContentGenerationProgressWithConfettiComponent, IndeterminateSpinnerComponent], styles: ["[_nghost-%COMP%]{display:block}@keyframes _ngcontent-%COMP%_spin{to{transform:rotate(360deg)}}@keyframes _ngcontent-%COMP%_pulse-highlight{0%,to{transform:scale(1);box-shadow:0 0 #3b82f6b3}50%{transform:scale(1.02);box-shadow:0 0 20px 8px #3b82f64d}}[_nghost-%COMP%] .search-highlight-pulse{animation:_ngcontent-%COMP%_pulse-highlight 2s ease-in-out;border-color:#3b82f6!important}"], changeDetection: 0 }); }
67745
67773
  }
67746
67774
  (() => { (typeof ngDevMode === "undefined" || ngDevMode) && i0.ɵsetClassMetadata(SymphiqBusinessAnalysisDashboardComponent, [{
67747
67775
  type: Component,
67748
- args: [{ selector: 'symphiq-business-analysis-dashboard', standalone: true, imports: [CommonModule, ProfileSectionComponent, SectionNavigationComponent, FloatingTocComponent, FloatingBackButtonComponent, TooltipContainerComponent, SectionDividerComponent, BusinessAnalysisModalComponent, SearchButtonComponent, SearchModalComponent, ViewModeSwitcherModalComponent, JourneyProgressIndicatorComponent, WelcomeBannerComponent, RecommendationsTiledGridComponent, CollapsibleSectionGroupComponent, ContentGenerationProgressWithConfettiComponent], changeDetection: ChangeDetectionStrategy.OnPush, template: `
67776
+ args: [{ selector: 'symphiq-business-analysis-dashboard', standalone: true, imports: [CommonModule, ProfileSectionComponent, SectionNavigationComponent, FloatingTocComponent, FloatingBackButtonComponent, TooltipContainerComponent, SectionDividerComponent, BusinessAnalysisModalComponent, SearchButtonComponent, SearchModalComponent, ViewModeSwitcherModalComponent, JourneyProgressIndicatorComponent, WelcomeBannerComponent, RecommendationsTiledGridComponent, CollapsibleSectionGroupComponent, ContentGenerationProgressWithConfettiComponent, IndeterminateSpinnerComponent], changeDetection: ChangeDetectionStrategy.OnPush, template: `
67749
67777
  <div [ngClass]="getContainerClasses()">
67750
67778
  <!-- Scroll Progress Bar (fixed at top) -->
67751
67779
  <div [class]="embedded() ? 'sticky top-0 left-0 right-0 h-1 z-[60] bg-slate-200/30' : 'fixed top-0 left-0 right-0 h-1 z-[60] bg-slate-200/30'">
@@ -67858,7 +67886,15 @@ class SymphiqBusinessAnalysisDashboardComponent {
67858
67886
  </header>
67859
67887
 
67860
67888
  <main class="relative">
67861
- @if (isContentGenerating()) {
67889
+ @if (isLoading()) {
67890
+ <!-- Pure Loading State -->
67891
+ <div class="flex items-center justify-center min-h-[60vh]">
67892
+ <symphiq-indeterminate-spinner
67893
+ [viewMode]="viewMode()"
67894
+ size="large"
67895
+ />
67896
+ </div>
67897
+ } @else if (isContentGenerating()) {
67862
67898
  <!-- Journey Progress Banner (always show when not onboarded) -->
67863
67899
  @if (!isOnboarded()) {
67864
67900
  <symphiq-journey-progress-indicator
@@ -68004,7 +68040,7 @@ class SymphiqBusinessAnalysisDashboardComponent {
68004
68040
  type: HostListener,
68005
68041
  args: ['document:keydown', ['$event']]
68006
68042
  }] }); })();
68007
- (() => { (typeof ngDevMode === "undefined" || ngDevMode) && i0.ɵsetClassDebugInfo(SymphiqBusinessAnalysisDashboardComponent, { className: "SymphiqBusinessAnalysisDashboardComponent", filePath: "lib/components/business-analysis-dashboard/symphiq-business-analysis-dashboard.component.ts", lineNumber: 337 }); })();
68043
+ (() => { (typeof ngDevMode === "undefined" || ngDevMode) && i0.ɵsetClassDebugInfo(SymphiqBusinessAnalysisDashboardComponent, { className: "SymphiqBusinessAnalysisDashboardComponent", filePath: "lib/components/business-analysis-dashboard/symphiq-business-analysis-dashboard.component.ts", lineNumber: 346 }); })();
68008
68044
 
68009
68045
  function DashboardHeaderComponent_Conditional_8_Template(rf, ctx) { if (rf & 1) {
68010
68046
  i0.ɵɵelement(0, "div", 6);