@eric-emg/symphiq-components 1.2.99 → 1.2.100

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.
@@ -24945,7 +24945,9 @@ class FloatingTocComponent {
24945
24945
  this.activeSection = signal('', ...(ngDevMode ? [{ debugName: "activeSection" }] : []));
24946
24946
  this.activeSubsection = signal('', ...(ngDevMode ? [{ debugName: "activeSubsection" }] : []));
24947
24947
  this.expandedSections = signal(new Set(), ...(ngDevMode ? [{ debugName: "expandedSections" }] : []));
24948
+ this.containerTopOffset = signal(0, ...(ngDevMode ? [{ debugName: "containerTopOffset" }] : []));
24948
24949
  this.HEADER_OFFSET = 80;
24950
+ this.BASE_OFFSET = 96;
24949
24951
  this.tocSections = computed(() => {
24950
24952
  return this.sections.map(section => ({
24951
24953
  id: section.id || '',
@@ -24962,12 +24964,17 @@ class FloatingTocComponent {
24962
24964
  ngOnInit() {
24963
24965
  if (typeof window !== 'undefined') {
24964
24966
  this.setupIntersectionObserver();
24967
+ this.calculateContainerOffset();
24968
+ this.setupResizeListener();
24965
24969
  }
24966
24970
  }
24967
24971
  ngOnDestroy() {
24968
24972
  if (this.observer) {
24969
24973
  this.observer.disconnect();
24970
24974
  }
24975
+ if (this.resizeListener && typeof window !== 'undefined') {
24976
+ window.removeEventListener('resize', this.resizeListener);
24977
+ }
24971
24978
  }
24972
24979
  setupIntersectionObserver() {
24973
24980
  this.observer = new IntersectionObserver((entries) => {
@@ -25057,9 +25064,31 @@ class FloatingTocComponent {
25057
25064
  this.isHovered.set(false);
25058
25065
  }
25059
25066
  }
25067
+ setupResizeListener() {
25068
+ this.resizeListener = () => {
25069
+ this.calculateContainerOffset();
25070
+ };
25071
+ window.addEventListener('resize', this.resizeListener);
25072
+ }
25073
+ calculateContainerOffset() {
25074
+ if (this.embedded && this.containerElement) {
25075
+ const rect = this.containerElement.getBoundingClientRect();
25076
+ const offset = rect.top + window.scrollY;
25077
+ this.containerTopOffset.set(offset);
25078
+ }
25079
+ else {
25080
+ this.containerTopOffset.set(0);
25081
+ }
25082
+ }
25083
+ getCalculatedTopPosition() {
25084
+ if (this.embedded && this.containerTopOffset() > 0) {
25085
+ return this.BASE_OFFSET + this.containerTopOffset();
25086
+ }
25087
+ return this.BASE_OFFSET;
25088
+ }
25060
25089
  getOuterContainerClasses() {
25061
25090
  return `
25062
- fixed left-4 top-24 z-40
25091
+ fixed left-4 z-40
25063
25092
  hidden lg:block
25064
25093
  `.trim();
25065
25094
  }
@@ -25210,7 +25239,7 @@ class FloatingTocComponent {
25210
25239
  `.trim();
25211
25240
  }
25212
25241
  static { this.ɵfac = function FloatingTocComponent_Factory(__ngFactoryType__) { return new (__ngFactoryType__ || FloatingTocComponent)(); }; }
25213
- static { this.ɵcmp = /*@__PURE__*/ i0.ɵɵdefineComponent({ type: FloatingTocComponent, selectors: [["symphiq-floating-toc"]], inputs: { sections: "sections", viewMode: "viewMode", embedded: "embedded" }, decls: 26, vars: 14, consts: [[3, "mouseenter", "mouseleave", "ngClass"], [3, "ngClass"], ["fill", "none", "stroke", "currentColor", "viewBox", "0 0 24 24", 1, "w-5", "h-5"], ["stroke-linecap", "round", "stroke-linejoin", "round", "stroke-width", "2", "d", "M4 6h16M4 12h16M4 18h16"], [1, "flex", "items-center", "justify-between", "mb-4", "pb-3", "border-b", 3, "ngClass"], [1, "flex", "items-center", "gap-2"], ["fill", "none", "stroke", "currentColor", "viewBox", "0 0 24 24", 1, "w-4", "h-4"], ["type", "button", 3, "click", "ngClass"], ["stroke-linecap", "round", "stroke-linejoin", "round", "stroke-width", "2", "d", "M5 5a2 2 0 012-2h10a2 2 0 012 2v16l-7-3.5L5 21V5z"], [1, "space-y-1", "overflow-y-auto", "max-h-[60vh]", "pr-2", 3, "ngClass"], [1, "space-y-0.5"], [1, "mt-4", "pt-3", "border-t", 3, "ngClass"], ["stroke-linecap", "round", "stroke-linejoin", "round", "stroke-width", "2", "d", "M5 10l7-7m0 0l7 7m-7-7v18"], [1, "text-sm"], [1, "flex", "items-center", "gap-2", "flex-1", "min-w-0"], [1, "flex-shrink-0"], [1, "truncate", "text-sm", "font-medium"], [1, "ml-6", "space-y-0.5", "mt-1"], ["size", "w-4 h-4", 3, "icon", "ngClass"], ["type", "button", 3, "ngClass"], [1, "truncate", "text-xs"]], template: function FloatingTocComponent_Template(rf, ctx) { if (rf & 1) {
25242
+ static { this.ɵcmp = /*@__PURE__*/ i0.ɵɵdefineComponent({ type: FloatingTocComponent, selectors: [["symphiq-floating-toc"]], inputs: { sections: "sections", viewMode: "viewMode", embedded: "embedded", containerElement: "containerElement" }, decls: 26, vars: 16, consts: [[3, "mouseenter", "mouseleave", "ngClass"], [3, "ngClass"], ["fill", "none", "stroke", "currentColor", "viewBox", "0 0 24 24", 1, "w-5", "h-5"], ["stroke-linecap", "round", "stroke-linejoin", "round", "stroke-width", "2", "d", "M4 6h16M4 12h16M4 18h16"], [1, "flex", "items-center", "justify-between", "mb-4", "pb-3", "border-b", 3, "ngClass"], [1, "flex", "items-center", "gap-2"], ["fill", "none", "stroke", "currentColor", "viewBox", "0 0 24 24", 1, "w-4", "h-4"], ["type", "button", 3, "click", "ngClass"], ["stroke-linecap", "round", "stroke-linejoin", "round", "stroke-width", "2", "d", "M5 5a2 2 0 012-2h10a2 2 0 012 2v16l-7-3.5L5 21V5z"], [1, "space-y-1", "overflow-y-auto", "max-h-[60vh]", "pr-2", 3, "ngClass"], [1, "space-y-0.5"], [1, "mt-4", "pt-3", "border-t", 3, "ngClass"], ["stroke-linecap", "round", "stroke-linejoin", "round", "stroke-width", "2", "d", "M5 10l7-7m0 0l7 7m-7-7v18"], [1, "text-sm"], [1, "flex", "items-center", "gap-2", "flex-1", "min-w-0"], [1, "flex-shrink-0"], [1, "truncate", "text-sm", "font-medium"], [1, "ml-6", "space-y-0.5", "mt-1"], ["size", "w-4 h-4", 3, "icon", "ngClass"], ["type", "button", 3, "ngClass"], [1, "truncate", "text-xs"]], template: function FloatingTocComponent_Template(rf, ctx) { if (rf & 1) {
25214
25243
  i0.ɵɵelementStart(0, "div", 0);
25215
25244
  i0.ɵɵlistener("mouseenter", function FloatingTocComponent_Template_div_mouseenter_0_listener() { return ctx.onMouseEnter(); })("mouseleave", function FloatingTocComponent_Template_div_mouseleave_0_listener() { return ctx.onMouseLeave(); });
25216
25245
  i0.ɵɵelementStart(1, "div", 1)(2, "div", 1);
@@ -25249,6 +25278,7 @@ class FloatingTocComponent {
25249
25278
  i0.ɵɵtext(25, "Back to Top");
25250
25279
  i0.ɵɵelementEnd()()()()()();
25251
25280
  } if (rf & 2) {
25281
+ i0.ɵɵstyleProp("top", ctx.getCalculatedTopPosition(), "px");
25252
25282
  i0.ɵɵproperty("ngClass", ctx.getOuterContainerClasses());
25253
25283
  i0.ɵɵadvance();
25254
25284
  i0.ɵɵproperty("ngClass", ctx.getInnerContainerClasses());
@@ -25288,6 +25318,7 @@ class FloatingTocComponent {
25288
25318
  template: `
25289
25319
  <div
25290
25320
  [ngClass]="getOuterContainerClasses()"
25321
+ [style.top.px]="getCalculatedTopPosition()"
25291
25322
  (mouseenter)="onMouseEnter()"
25292
25323
  (mouseleave)="onMouseLeave()"
25293
25324
  >
@@ -25391,8 +25422,10 @@ class FloatingTocComponent {
25391
25422
  type: Input
25392
25423
  }], embedded: [{
25393
25424
  type: Input
25425
+ }], containerElement: [{
25426
+ type: Input
25394
25427
  }] }); })();
25395
- (() => { (typeof ngDevMode === "undefined" || ngDevMode) && i0.ɵsetClassDebugInfo(FloatingTocComponent, { className: "FloatingTocComponent", filePath: "lib/components/business-analysis-dashboard/floating-toc.component.ts", lineNumber: 124 }); })();
25428
+ (() => { (typeof ngDevMode === "undefined" || ngDevMode) && i0.ɵsetClassDebugInfo(FloatingTocComponent, { className: "FloatingTocComponent", filePath: "lib/components/business-analysis-dashboard/floating-toc.component.ts", lineNumber: 125 }); })();
25396
25429
 
25397
25430
  const _c0$f = ["dashboardContainer"];
25398
25431
  const _c1$b = () => ({});
@@ -49266,192 +49299,193 @@ class UserPreferencesService {
49266
49299
  }]
49267
49300
  }], () => [], null); })();
49268
49301
 
49269
- function SymphiqBusinessAnalysisDashboardComponent_Conditional_1_Template(rf, ctx) { if (rf & 1) {
49302
+ function SymphiqBusinessAnalysisDashboardComponent_Conditional_2_Template(rf, ctx) { if (rf & 1) {
49270
49303
  i0.ɵɵelementStart(0, "div");
49271
- i0.ɵɵelement(1, "div", 8);
49304
+ i0.ɵɵelement(1, "div", 9);
49272
49305
  i0.ɵɵelementEnd();
49273
49306
  } if (rf & 2) {
49274
- const ctx_r0 = i0.ɵɵnextContext();
49275
- i0.ɵɵclassMap(ctx_r0.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");
49307
+ const ctx_r1 = i0.ɵɵnextContext();
49308
+ i0.ɵɵclassMap(ctx_r1.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");
49276
49309
  i0.ɵɵadvance();
49277
- i0.ɵɵstyleProp("width", ctx_r0.scrollProgress(), "%");
49278
- i0.ɵɵproperty("ngClass", ctx_r0.isLightMode() ? "bg-gradient-to-r from-blue-500 to-purple-500" : "bg-gradient-to-r from-blue-400 to-purple-400");
49310
+ i0.ɵɵstyleProp("width", ctx_r1.scrollProgress(), "%");
49311
+ i0.ɵɵproperty("ngClass", ctx_r1.isLightMode() ? "bg-gradient-to-r from-blue-500 to-purple-500" : "bg-gradient-to-r from-blue-400 to-purple-400");
49279
49312
  } }
49280
- function SymphiqBusinessAnalysisDashboardComponent_Conditional_9_Template(rf, ctx) { if (rf & 1) {
49281
- const _r2 = i0.ɵɵgetCurrentView();
49282
- i0.ɵɵelementStart(0, "header", 3)(1, "div", 9)(2, "div", 10)(3, "div")(4, "h1", 0);
49313
+ function SymphiqBusinessAnalysisDashboardComponent_Conditional_10_Template(rf, ctx) { if (rf & 1) {
49314
+ const _r3 = i0.ɵɵgetCurrentView();
49315
+ i0.ɵɵelementStart(0, "header", 4)(1, "div", 10)(2, "div", 11)(3, "div")(4, "h1", 1);
49283
49316
  i0.ɵɵtext(5);
49284
49317
  i0.ɵɵelementEnd();
49285
- i0.ɵɵelementStart(6, "p", 0);
49318
+ i0.ɵɵelementStart(6, "p", 1);
49286
49319
  i0.ɵɵtext(7, " Business Profile & Analysis ");
49287
49320
  i0.ɵɵelementEnd()();
49288
- i0.ɵɵelementStart(8, "symphiq-view-toggle", 11);
49289
- i0.ɵɵlistener("toggle", function SymphiqBusinessAnalysisDashboardComponent_Conditional_9_Template_symphiq_view_toggle_toggle_8_listener() { i0.ɵɵrestoreView(_r2); const ctx_r0 = i0.ɵɵnextContext(); return i0.ɵɵresetView(ctx_r0.toggleExpandedView()); })("viewModeSelected", function SymphiqBusinessAnalysisDashboardComponent_Conditional_9_Template_symphiq_view_toggle_viewModeSelected_8_listener($event) { i0.ɵɵrestoreView(_r2); const ctx_r0 = i0.ɵɵnextContext(); return i0.ɵɵresetView(ctx_r0.setViewMode($event)); });
49321
+ i0.ɵɵelementStart(8, "symphiq-view-toggle", 12);
49322
+ i0.ɵɵlistener("toggle", function SymphiqBusinessAnalysisDashboardComponent_Conditional_10_Template_symphiq_view_toggle_toggle_8_listener() { i0.ɵɵrestoreView(_r3); const ctx_r1 = i0.ɵɵnextContext(); return i0.ɵɵresetView(ctx_r1.toggleExpandedView()); })("viewModeSelected", function SymphiqBusinessAnalysisDashboardComponent_Conditional_10_Template_symphiq_view_toggle_viewModeSelected_8_listener($event) { i0.ɵɵrestoreView(_r3); const ctx_r1 = i0.ɵɵnextContext(); return i0.ɵɵresetView(ctx_r1.setViewMode($event)); });
49290
49323
  i0.ɵɵelementEnd()()()();
49291
49324
  } if (rf & 2) {
49292
- let tmp_3_0;
49293
- const ctx_r0 = i0.ɵɵnextContext();
49294
- i0.ɵɵproperty("ngClass", ctx_r0.getHeaderClasses());
49325
+ let tmp_4_0;
49326
+ const ctx_r1 = i0.ɵɵnextContext();
49327
+ i0.ɵɵproperty("ngClass", ctx_r1.getHeaderClasses());
49295
49328
  i0.ɵɵadvance(4);
49296
- i0.ɵɵproperty("ngClass", ctx_r0.getMainTitleClasses());
49329
+ i0.ɵɵproperty("ngClass", ctx_r1.getMainTitleClasses());
49297
49330
  i0.ɵɵadvance();
49298
- i0.ɵɵtextInterpolate1(" ", ((tmp_3_0 = ctx_r0.currentProfile()) == null ? null : tmp_3_0.profileStructured == null ? null : tmp_3_0.profileStructured.businessName) || "Business Analysis", " ");
49331
+ i0.ɵɵtextInterpolate1(" ", ((tmp_4_0 = ctx_r1.currentProfile()) == null ? null : tmp_4_0.profileStructured == null ? null : tmp_4_0.profileStructured.businessName) || "Business Analysis", " ");
49299
49332
  i0.ɵɵadvance();
49300
- i0.ɵɵproperty("ngClass", ctx_r0.getSubtitleClasses());
49333
+ i0.ɵɵproperty("ngClass", ctx_r1.getSubtitleClasses());
49301
49334
  i0.ɵɵadvance(2);
49302
- i0.ɵɵproperty("currentViewMode", ctx_r0.currentComponentViewMode())("viewMode", ctx_r0.viewMode);
49335
+ i0.ɵɵproperty("currentViewMode", ctx_r1.currentComponentViewMode())("viewMode", ctx_r1.viewMode);
49303
49336
  } }
49304
- function SymphiqBusinessAnalysisDashboardComponent_Conditional_10_Conditional_22_Template(rf, ctx) { if (rf & 1) {
49305
- i0.ɵɵelementStart(0, "span", 20);
49337
+ function SymphiqBusinessAnalysisDashboardComponent_Conditional_11_Conditional_22_Template(rf, ctx) { if (rf & 1) {
49338
+ i0.ɵɵelementStart(0, "span", 21);
49306
49339
  i0.ɵɵtext(1, "\u203A");
49307
49340
  i0.ɵɵelementEnd();
49308
- i0.ɵɵelementStart(2, "span", 20);
49341
+ i0.ɵɵelementStart(2, "span", 21);
49309
49342
  i0.ɵɵtext(3);
49310
49343
  i0.ɵɵelementEnd();
49311
49344
  } if (rf & 2) {
49312
- const ctx_r0 = i0.ɵɵnextContext(2);
49313
- i0.ɵɵclassProp("opacity-0", ctx_r0.subsectionTitleFading())("opacity-100", !ctx_r0.subsectionTitleFading());
49314
- i0.ɵɵproperty("ngClass", ctx_r0.isLightMode() ? "text-slate-400" : "text-slate-500");
49345
+ const ctx_r1 = i0.ɵɵnextContext(2);
49346
+ i0.ɵɵclassProp("opacity-0", ctx_r1.subsectionTitleFading())("opacity-100", !ctx_r1.subsectionTitleFading());
49347
+ i0.ɵɵproperty("ngClass", ctx_r1.isLightMode() ? "text-slate-400" : "text-slate-500");
49315
49348
  i0.ɵɵadvance(2);
49316
- i0.ɵɵclassProp("opacity-0", ctx_r0.subsectionTitleFading())("opacity-100", !ctx_r0.subsectionTitleFading());
49317
- i0.ɵɵproperty("ngClass", ctx_r0.isLightMode() ? "text-slate-500" : "text-slate-500");
49349
+ i0.ɵɵclassProp("opacity-0", ctx_r1.subsectionTitleFading())("opacity-100", !ctx_r1.subsectionTitleFading());
49350
+ i0.ɵɵproperty("ngClass", ctx_r1.isLightMode() ? "text-slate-500" : "text-slate-500");
49318
49351
  i0.ɵɵadvance();
49319
- i0.ɵɵtextInterpolate1(" ", ctx_r0.currentSubsectionTitle(), " ");
49352
+ i0.ɵɵtextInterpolate1(" ", ctx_r1.currentSubsectionTitle(), " ");
49320
49353
  } }
49321
- function SymphiqBusinessAnalysisDashboardComponent_Conditional_10_Template(rf, ctx) { if (rf & 1) {
49322
- const _r3 = i0.ɵɵgetCurrentView();
49323
- i0.ɵɵelementStart(0, "header", 3)(1, "div", 12)(2, "div", 13)(3, "div", 10)(4, "div")(5, "h1", 0);
49354
+ function SymphiqBusinessAnalysisDashboardComponent_Conditional_11_Template(rf, ctx) { if (rf & 1) {
49355
+ const _r4 = i0.ɵɵgetCurrentView();
49356
+ i0.ɵɵelementStart(0, "header", 4)(1, "div", 13)(2, "div", 14)(3, "div", 11)(4, "div")(5, "h1", 1);
49324
49357
  i0.ɵɵtext(6);
49325
49358
  i0.ɵɵelementEnd();
49326
- i0.ɵɵelementStart(7, "p", 0);
49359
+ i0.ɵɵelementStart(7, "p", 1);
49327
49360
  i0.ɵɵtext(8, " Business Profile & Analysis ");
49328
49361
  i0.ɵɵelementEnd()();
49329
- i0.ɵɵelementStart(9, "div", 14)(10, "symphiq-search-button", 15);
49330
- i0.ɵɵlistener("searchClick", function SymphiqBusinessAnalysisDashboardComponent_Conditional_10_Template_symphiq_search_button_searchClick_10_listener() { i0.ɵɵrestoreView(_r3); const ctx_r0 = i0.ɵɵnextContext(); return i0.ɵɵresetView(ctx_r0.openSearch()); });
49362
+ i0.ɵɵelementStart(9, "div", 15)(10, "symphiq-search-button", 16);
49363
+ i0.ɵɵlistener("searchClick", function SymphiqBusinessAnalysisDashboardComponent_Conditional_11_Template_symphiq_search_button_searchClick_10_listener() { i0.ɵɵrestoreView(_r4); const ctx_r1 = i0.ɵɵnextContext(); return i0.ɵɵresetView(ctx_r1.openSearch()); });
49331
49364
  i0.ɵɵelementEnd();
49332
- i0.ɵɵelementStart(11, "symphiq-view-toggle", 11);
49333
- i0.ɵɵlistener("toggle", function SymphiqBusinessAnalysisDashboardComponent_Conditional_10_Template_symphiq_view_toggle_toggle_11_listener() { i0.ɵɵrestoreView(_r3); const ctx_r0 = i0.ɵɵnextContext(); return i0.ɵɵresetView(ctx_r0.toggleExpandedView()); })("viewModeSelected", function SymphiqBusinessAnalysisDashboardComponent_Conditional_10_Template_symphiq_view_toggle_viewModeSelected_11_listener($event) { i0.ɵɵrestoreView(_r3); const ctx_r0 = i0.ɵɵnextContext(); return i0.ɵɵresetView(ctx_r0.setViewMode($event)); });
49365
+ i0.ɵɵelementStart(11, "symphiq-view-toggle", 12);
49366
+ i0.ɵɵlistener("toggle", function SymphiqBusinessAnalysisDashboardComponent_Conditional_11_Template_symphiq_view_toggle_toggle_11_listener() { i0.ɵɵrestoreView(_r4); const ctx_r1 = i0.ɵɵnextContext(); return i0.ɵɵresetView(ctx_r1.toggleExpandedView()); })("viewModeSelected", function SymphiqBusinessAnalysisDashboardComponent_Conditional_11_Template_symphiq_view_toggle_viewModeSelected_11_listener($event) { i0.ɵɵrestoreView(_r4); const ctx_r1 = i0.ɵɵnextContext(); return i0.ɵɵresetView(ctx_r1.setViewMode($event)); });
49334
49367
  i0.ɵɵelementEnd()()()()();
49335
- i0.ɵɵelementStart(12, "div", 12)(13, "div", 16)(14, "div", 10)(15, "div", 17)(16, "h1", 0);
49368
+ i0.ɵɵelementStart(12, "div", 13)(13, "div", 17)(14, "div", 11)(15, "div", 18)(16, "h1", 1);
49336
49369
  i0.ɵɵtext(17);
49337
49370
  i0.ɵɵelementEnd()();
49338
- i0.ɵɵelementStart(18, "div", 18)(19, "div", 19)(20, "span", 20);
49371
+ i0.ɵɵelementStart(18, "div", 19)(19, "div", 20)(20, "span", 21);
49339
49372
  i0.ɵɵtext(21);
49340
49373
  i0.ɵɵelementEnd();
49341
- i0.ɵɵconditionalCreate(22, SymphiqBusinessAnalysisDashboardComponent_Conditional_10_Conditional_22_Template, 4, 11);
49374
+ i0.ɵɵconditionalCreate(22, SymphiqBusinessAnalysisDashboardComponent_Conditional_11_Conditional_22_Template, 4, 11);
49342
49375
  i0.ɵɵelementEnd();
49343
- i0.ɵɵelementStart(23, "symphiq-search-button", 21);
49344
- i0.ɵɵlistener("searchClick", function SymphiqBusinessAnalysisDashboardComponent_Conditional_10_Template_symphiq_search_button_searchClick_23_listener() { i0.ɵɵrestoreView(_r3); const ctx_r0 = i0.ɵɵnextContext(); return i0.ɵɵresetView(ctx_r0.openSearch()); });
49376
+ i0.ɵɵelementStart(23, "symphiq-search-button", 22);
49377
+ i0.ɵɵlistener("searchClick", function SymphiqBusinessAnalysisDashboardComponent_Conditional_11_Template_symphiq_search_button_searchClick_23_listener() { i0.ɵɵrestoreView(_r4); const ctx_r1 = i0.ɵɵnextContext(); return i0.ɵɵresetView(ctx_r1.openSearch()); });
49345
49378
  i0.ɵɵelementEnd();
49346
- i0.ɵɵelementStart(24, "symphiq-view-toggle", 22);
49347
- i0.ɵɵlistener("toggle", function SymphiqBusinessAnalysisDashboardComponent_Conditional_10_Template_symphiq_view_toggle_toggle_24_listener() { i0.ɵɵrestoreView(_r3); const ctx_r0 = i0.ɵɵnextContext(); return i0.ɵɵresetView(ctx_r0.toggleExpandedView()); })("viewModeSelected", function SymphiqBusinessAnalysisDashboardComponent_Conditional_10_Template_symphiq_view_toggle_viewModeSelected_24_listener($event) { i0.ɵɵrestoreView(_r3); const ctx_r0 = i0.ɵɵnextContext(); return i0.ɵɵresetView(ctx_r0.setViewMode($event)); });
49379
+ i0.ɵɵelementStart(24, "symphiq-view-toggle", 23);
49380
+ i0.ɵɵlistener("toggle", function SymphiqBusinessAnalysisDashboardComponent_Conditional_11_Template_symphiq_view_toggle_toggle_24_listener() { i0.ɵɵrestoreView(_r4); const ctx_r1 = i0.ɵɵnextContext(); return i0.ɵɵresetView(ctx_r1.toggleExpandedView()); })("viewModeSelected", function SymphiqBusinessAnalysisDashboardComponent_Conditional_11_Template_symphiq_view_toggle_viewModeSelected_24_listener($event) { i0.ɵɵrestoreView(_r4); const ctx_r1 = i0.ɵɵnextContext(); return i0.ɵɵresetView(ctx_r1.setViewMode($event)); });
49348
49381
  i0.ɵɵelementEnd()()()()()();
49349
49382
  } if (rf & 2) {
49350
- let tmp_9_0;
49351
- let tmp_21_0;
49352
- const ctx_r0 = i0.ɵɵnextContext();
49353
- i0.ɵɵproperty("ngClass", ctx_r0.getHeaderClasses());
49383
+ let tmp_10_0;
49384
+ let tmp_22_0;
49385
+ const ctx_r1 = i0.ɵɵnextContext();
49386
+ i0.ɵɵproperty("ngClass", ctx_r1.getHeaderClasses());
49354
49387
  i0.ɵɵadvance();
49355
- i0.ɵɵclassProp("max-h-0", ctx_r0.headerScrollService.isScrolled())("opacity-0", ctx_r0.headerScrollService.isScrolled())("max-h-96", !ctx_r0.headerScrollService.isScrolled())("opacity-100", !ctx_r0.headerScrollService.isScrolled());
49388
+ i0.ɵɵclassProp("max-h-0", ctx_r1.headerScrollService.isScrolled())("opacity-0", ctx_r1.headerScrollService.isScrolled())("max-h-96", !ctx_r1.headerScrollService.isScrolled())("opacity-100", !ctx_r1.headerScrollService.isScrolled());
49356
49389
  i0.ɵɵadvance();
49357
- i0.ɵɵclassProp("pointer-events-none", ctx_r0.headerScrollService.isScrolled())("pointer-events-auto", !ctx_r0.headerScrollService.isScrolled());
49390
+ i0.ɵɵclassProp("pointer-events-none", ctx_r1.headerScrollService.isScrolled())("pointer-events-auto", !ctx_r1.headerScrollService.isScrolled());
49358
49391
  i0.ɵɵadvance(3);
49359
- i0.ɵɵproperty("ngClass", ctx_r0.getMainTitleClasses());
49392
+ i0.ɵɵproperty("ngClass", ctx_r1.getMainTitleClasses());
49360
49393
  i0.ɵɵadvance();
49361
- i0.ɵɵtextInterpolate1(" ", ((tmp_9_0 = ctx_r0.currentProfile()) == null ? null : tmp_9_0.profileStructured == null ? null : tmp_9_0.profileStructured.businessName) || "Business Analysis", " ");
49394
+ i0.ɵɵtextInterpolate1(" ", ((tmp_10_0 = ctx_r1.currentProfile()) == null ? null : tmp_10_0.profileStructured == null ? null : tmp_10_0.profileStructured.businessName) || "Business Analysis", " ");
49362
49395
  i0.ɵɵadvance();
49363
- i0.ɵɵproperty("ngClass", ctx_r0.getSubtitleClasses());
49396
+ i0.ɵɵproperty("ngClass", ctx_r1.getSubtitleClasses());
49364
49397
  i0.ɵɵadvance(3);
49365
- i0.ɵɵproperty("isLightMode", ctx_r0.isLightMode());
49398
+ i0.ɵɵproperty("isLightMode", ctx_r1.isLightMode());
49366
49399
  i0.ɵɵadvance();
49367
- i0.ɵɵproperty("currentViewMode", ctx_r0.currentComponentViewMode())("viewMode", ctx_r0.viewMode);
49400
+ i0.ɵɵproperty("currentViewMode", ctx_r1.currentComponentViewMode())("viewMode", ctx_r1.viewMode);
49368
49401
  i0.ɵɵadvance();
49369
- i0.ɵɵclassProp("max-h-0", !ctx_r0.headerScrollService.isScrolled())("opacity-0", !ctx_r0.headerScrollService.isScrolled())("max-h-20", ctx_r0.headerScrollService.isScrolled())("opacity-100", ctx_r0.headerScrollService.isScrolled());
49402
+ i0.ɵɵclassProp("max-h-0", !ctx_r1.headerScrollService.isScrolled())("opacity-0", !ctx_r1.headerScrollService.isScrolled())("max-h-20", ctx_r1.headerScrollService.isScrolled())("opacity-100", ctx_r1.headerScrollService.isScrolled());
49370
49403
  i0.ɵɵadvance();
49371
- i0.ɵɵclassProp("pointer-events-none", !ctx_r0.headerScrollService.isScrolled())("pointer-events-auto", ctx_r0.headerScrollService.isScrolled());
49404
+ i0.ɵɵclassProp("pointer-events-none", !ctx_r1.headerScrollService.isScrolled())("pointer-events-auto", ctx_r1.headerScrollService.isScrolled());
49372
49405
  i0.ɵɵadvance(3);
49373
- i0.ɵɵproperty("ngClass", ctx_r0.isLightMode() ? "text-xl font-bold bg-gradient-to-r from-blue-600 to-purple-600 bg-clip-text text-transparent truncate" : "text-xl font-bold bg-gradient-to-r from-blue-400 to-purple-400 bg-clip-text text-transparent truncate");
49406
+ i0.ɵɵproperty("ngClass", ctx_r1.isLightMode() ? "text-xl font-bold bg-gradient-to-r from-blue-600 to-purple-600 bg-clip-text text-transparent truncate" : "text-xl font-bold bg-gradient-to-r from-blue-400 to-purple-400 bg-clip-text text-transparent truncate");
49374
49407
  i0.ɵɵadvance();
49375
- i0.ɵɵtextInterpolate1(" ", ((tmp_21_0 = ctx_r0.currentProfile()) == null ? null : tmp_21_0.profileStructured == null ? null : tmp_21_0.profileStructured.businessName) || "Business Analysis", " ");
49408
+ i0.ɵɵtextInterpolate1(" ", ((tmp_22_0 = ctx_r1.currentProfile()) == null ? null : tmp_22_0.profileStructured == null ? null : tmp_22_0.profileStructured.businessName) || "Business Analysis", " ");
49376
49409
  i0.ɵɵadvance(3);
49377
- i0.ɵɵclassProp("opacity-0", ctx_r0.sectionTitleFading())("opacity-100", !ctx_r0.sectionTitleFading());
49378
- i0.ɵɵproperty("ngClass", ctx_r0.isLightMode() ? "text-slate-600 font-medium" : "text-slate-400 font-medium");
49410
+ i0.ɵɵclassProp("opacity-0", ctx_r1.sectionTitleFading())("opacity-100", !ctx_r1.sectionTitleFading());
49411
+ i0.ɵɵproperty("ngClass", ctx_r1.isLightMode() ? "text-slate-600 font-medium" : "text-slate-400 font-medium");
49379
49412
  i0.ɵɵadvance();
49380
- i0.ɵɵtextInterpolate1(" ", ctx_r0.currentSectionTitle(), " ");
49413
+ i0.ɵɵtextInterpolate1(" ", ctx_r1.currentSectionTitle(), " ");
49381
49414
  i0.ɵɵadvance();
49382
- i0.ɵɵconditional(ctx_r0.currentSubsectionTitle() ? 22 : -1);
49415
+ i0.ɵɵconditional(ctx_r1.currentSubsectionTitle() ? 22 : -1);
49383
49416
  i0.ɵɵadvance();
49384
- i0.ɵɵproperty("isLightMode", ctx_r0.isLightMode())("minimized", true);
49417
+ i0.ɵɵproperty("isLightMode", ctx_r1.isLightMode())("minimized", true);
49385
49418
  i0.ɵɵadvance();
49386
- i0.ɵɵproperty("currentViewMode", ctx_r0.currentComponentViewMode())("viewMode", ctx_r0.viewMode)("minimized", true);
49419
+ i0.ɵɵproperty("currentViewMode", ctx_r1.currentComponentViewMode())("viewMode", ctx_r1.viewMode)("minimized", true);
49387
49420
  } }
49388
- function SymphiqBusinessAnalysisDashboardComponent_Conditional_12_Template(rf, ctx) { if (rf & 1) {
49389
- const _r4 = i0.ɵɵgetCurrentView();
49390
- i0.ɵɵelementStart(0, "div", 5)(1, "symphiq-welcome-hero-banner", 23);
49391
- i0.ɵɵlistener("getStarted", function SymphiqBusinessAnalysisDashboardComponent_Conditional_12_Template_symphiq_welcome_hero_banner_getStarted_1_listener() { i0.ɵɵrestoreView(_r4); const ctx_r0 = i0.ɵɵnextContext(); return i0.ɵɵresetView(ctx_r0.onWelcomeGetStarted()); })("dismiss", function SymphiqBusinessAnalysisDashboardComponent_Conditional_12_Template_symphiq_welcome_hero_banner_dismiss_1_listener() { i0.ɵɵrestoreView(_r4); const ctx_r0 = i0.ɵɵnextContext(); return i0.ɵɵresetView(ctx_r0.onWelcomeDismiss()); });
49421
+ function SymphiqBusinessAnalysisDashboardComponent_Conditional_13_Template(rf, ctx) { if (rf & 1) {
49422
+ const _r5 = i0.ɵɵgetCurrentView();
49423
+ i0.ɵɵelementStart(0, "div", 6)(1, "symphiq-welcome-hero-banner", 24);
49424
+ i0.ɵɵlistener("getStarted", function SymphiqBusinessAnalysisDashboardComponent_Conditional_13_Template_symphiq_welcome_hero_banner_getStarted_1_listener() { i0.ɵɵrestoreView(_r5); const ctx_r1 = i0.ɵɵnextContext(); return i0.ɵɵresetView(ctx_r1.onWelcomeGetStarted()); })("dismiss", function SymphiqBusinessAnalysisDashboardComponent_Conditional_13_Template_symphiq_welcome_hero_banner_dismiss_1_listener() { i0.ɵɵrestoreView(_r5); const ctx_r1 = i0.ɵɵnextContext(); return i0.ɵɵresetView(ctx_r1.onWelcomeDismiss()); });
49392
49425
  i0.ɵɵelementEnd();
49393
- i0.ɵɵelement(2, "symphiq-journey-progress-stepper", 24)(3, "symphiq-simplified-strategic-insights", 25)(4, "symphiq-collapsible-supporting-context", 25);
49394
- i0.ɵɵelementStart(5, "symphiq-next-step-cta", 26);
49395
- i0.ɵɵlistener("analyzeFunnel", function SymphiqBusinessAnalysisDashboardComponent_Conditional_12_Template_symphiq_next_step_cta_analyzeFunnel_5_listener() { i0.ɵɵrestoreView(_r4); const ctx_r0 = i0.ɵɵnextContext(); return i0.ɵɵresetView(ctx_r0.onAnalyzeFunnel()); })("exploreMore", function SymphiqBusinessAnalysisDashboardComponent_Conditional_12_Template_symphiq_next_step_cta_exploreMore_5_listener() { i0.ɵɵrestoreView(_r4); const ctx_r0 = i0.ɵɵnextContext(); return i0.ɵɵresetView(ctx_r0.onExploreMore()); });
49426
+ i0.ɵɵelement(2, "symphiq-journey-progress-stepper", 25)(3, "symphiq-simplified-strategic-insights", 26)(4, "symphiq-collapsible-supporting-context", 26);
49427
+ i0.ɵɵelementStart(5, "symphiq-next-step-cta", 27);
49428
+ i0.ɵɵlistener("analyzeFunnel", function SymphiqBusinessAnalysisDashboardComponent_Conditional_13_Template_symphiq_next_step_cta_analyzeFunnel_5_listener() { i0.ɵɵrestoreView(_r5); const ctx_r1 = i0.ɵɵnextContext(); return i0.ɵɵresetView(ctx_r1.onAnalyzeFunnel()); })("exploreMore", function SymphiqBusinessAnalysisDashboardComponent_Conditional_13_Template_symphiq_next_step_cta_exploreMore_5_listener() { i0.ɵɵrestoreView(_r5); const ctx_r1 = i0.ɵɵnextContext(); return i0.ɵɵresetView(ctx_r1.onExploreMore()); });
49396
49429
  i0.ɵɵelementEnd()();
49397
49430
  } if (rf & 2) {
49398
- let tmp_1_0;
49399
- const ctx_r0 = i0.ɵɵnextContext();
49431
+ let tmp_2_0;
49432
+ const ctx_r1 = i0.ɵɵnextContext();
49400
49433
  i0.ɵɵadvance();
49401
- i0.ɵɵproperty("businessName", ((tmp_1_0 = ctx_r0.currentProfile()) == null ? null : tmp_1_0.profileStructured == null ? null : tmp_1_0.profileStructured.businessName) || "your business")("viewMode", ctx_r0.viewMode)("showCta", !ctx_r0.userPreferences().hasSeenWelcome);
49434
+ i0.ɵɵproperty("businessName", ((tmp_2_0 = ctx_r1.currentProfile()) == null ? null : tmp_2_0.profileStructured == null ? null : tmp_2_0.profileStructured.businessName) || "your business")("viewMode", ctx_r1.viewMode)("showCta", !ctx_r1.userPreferences().hasSeenWelcome);
49402
49435
  i0.ɵɵadvance();
49403
- i0.ɵɵproperty("currentStep", ctx_r0.userPreferences().currentJourneyStep)("completedSteps", ctx_r0.userPreferences().completedSteps)("viewMode", ctx_r0.viewMode);
49436
+ i0.ɵɵproperty("currentStep", ctx_r1.userPreferences().currentJourneyStep)("completedSteps", ctx_r1.userPreferences().completedSteps)("viewMode", ctx_r1.viewMode);
49404
49437
  i0.ɵɵadvance();
49405
- i0.ɵɵproperty("profile", ctx_r0.currentProfile())("viewMode", ctx_r0.viewMode);
49438
+ i0.ɵɵproperty("profile", ctx_r1.currentProfile())("viewMode", ctx_r1.viewMode);
49406
49439
  i0.ɵɵadvance();
49407
- i0.ɵɵproperty("profile", ctx_r0.currentProfile())("viewMode", ctx_r0.viewMode);
49440
+ i0.ɵɵproperty("profile", ctx_r1.currentProfile())("viewMode", ctx_r1.viewMode);
49408
49441
  i0.ɵɵadvance();
49409
- i0.ɵɵproperty("viewMode", ctx_r0.viewMode);
49442
+ i0.ɵɵproperty("viewMode", ctx_r1.viewMode);
49410
49443
  } }
49411
- function SymphiqBusinessAnalysisDashboardComponent_Conditional_13_For_1_Conditional_1_Template(rf, ctx) { if (rf & 1) {
49412
- i0.ɵɵelementStart(0, "div", 30);
49413
- i0.ɵɵelement(1, "symphiq-section-divider", 31);
49444
+ function SymphiqBusinessAnalysisDashboardComponent_Conditional_14_For_1_Conditional_1_Template(rf, ctx) { if (rf & 1) {
49445
+ i0.ɵɵelementStart(0, "div", 32);
49446
+ i0.ɵɵelement(1, "symphiq-section-divider", 33);
49414
49447
  i0.ɵɵelementEnd();
49415
49448
  } if (rf & 2) {
49416
- const ɵ$index_107_r5 = i0.ɵɵnextContext().$index;
49417
- const ctx_r0 = i0.ɵɵnextContext(2);
49449
+ const ɵ$index_107_r6 = i0.ɵɵnextContext().$index;
49450
+ const ctx_r1 = i0.ɵɵnextContext(2);
49418
49451
  i0.ɵɵadvance();
49419
- i0.ɵɵproperty("viewMode", ctx_r0.viewMode)("subsections", ctx_r0.sections()[ɵ$index_107_r5 + 1].subsections);
49452
+ i0.ɵɵproperty("viewMode", ctx_r1.viewMode)("subsections", ctx_r1.sections()[ɵ$index_107_r6 + 1].subsections);
49420
49453
  } }
49421
- function SymphiqBusinessAnalysisDashboardComponent_Conditional_13_For_1_Template(rf, ctx) { if (rf & 1) {
49422
- i0.ɵɵelement(0, "symphiq-profile-section", 29);
49423
- i0.ɵɵconditionalCreate(1, SymphiqBusinessAnalysisDashboardComponent_Conditional_13_For_1_Conditional_1_Template, 2, 2, "div", 30);
49454
+ function SymphiqBusinessAnalysisDashboardComponent_Conditional_14_For_1_Template(rf, ctx) { if (rf & 1) {
49455
+ i0.ɵɵelement(0, "symphiq-profile-section", 31);
49456
+ i0.ɵɵconditionalCreate(1, SymphiqBusinessAnalysisDashboardComponent_Conditional_14_For_1_Conditional_1_Template, 2, 2, "div", 32);
49424
49457
  } if (rf & 2) {
49425
- const section_r6 = ctx.$implicit;
49426
- const ɵ$index_107_r5 = ctx.$index;
49427
- const ɵ$count_107_r7 = ctx.$count;
49428
- const ctx_r0 = i0.ɵɵnextContext(2);
49429
- i0.ɵɵproperty("section", section_r6)("viewMode", ctx_r0.viewMode)("forceExpanded", !ctx_r0.isCompactView());
49458
+ const section_r7 = ctx.$implicit;
49459
+ const ɵ$index_107_r6 = ctx.$index;
49460
+ const ɵ$count_107_r8 = ctx.$count;
49461
+ const ctx_r1 = i0.ɵɵnextContext(2);
49462
+ i0.ɵɵproperty("section", section_r7)("viewMode", ctx_r1.viewMode)("forceExpanded", !ctx_r1.isCompactView());
49430
49463
  i0.ɵɵadvance();
49431
- i0.ɵɵconditional(!(ɵ$index_107_r5 === ɵ$count_107_r7 - 1) ? 1 : -1);
49464
+ i0.ɵɵconditional(!(ɵ$index_107_r6 === ɵ$count_107_r8 - 1) ? 1 : -1);
49432
49465
  } }
49433
- function SymphiqBusinessAnalysisDashboardComponent_Conditional_13_Template(rf, ctx) { if (rf & 1) {
49434
- i0.ɵɵrepeaterCreate(0, SymphiqBusinessAnalysisDashboardComponent_Conditional_13_For_1_Template, 2, 4, null, null, i0.ɵɵcomponentInstance().trackBySectionId, true);
49435
- i0.ɵɵelement(2, "symphiq-section-navigation", 27)(3, "symphiq-floating-toc", 27)(4, "symphiq-floating-back-button", 28);
49466
+ function SymphiqBusinessAnalysisDashboardComponent_Conditional_14_Template(rf, ctx) { if (rf & 1) {
49467
+ i0.ɵɵrepeaterCreate(0, SymphiqBusinessAnalysisDashboardComponent_Conditional_14_For_1_Template, 2, 4, null, null, i0.ɵɵcomponentInstance().trackBySectionId, true);
49468
+ i0.ɵɵelement(2, "symphiq-section-navigation", 28)(3, "symphiq-floating-toc", 29)(4, "symphiq-floating-back-button", 30);
49436
49469
  } if (rf & 2) {
49437
- const ctx_r0 = i0.ɵɵnextContext();
49438
- i0.ɵɵrepeater(ctx_r0.sections());
49470
+ const ctx_r1 = i0.ɵɵnextContext();
49471
+ const dashboardContainer_r9 = i0.ɵɵreference(1);
49472
+ i0.ɵɵrepeater(ctx_r1.sections());
49439
49473
  i0.ɵɵadvance(2);
49440
- i0.ɵɵproperty("sections", ctx_r0.sections())("viewMode", ctx_r0.viewMode)("embedded", ctx_r0.embedded);
49474
+ i0.ɵɵproperty("sections", ctx_r1.sections())("viewMode", ctx_r1.viewMode)("embedded", ctx_r1.embedded);
49441
49475
  i0.ɵɵadvance();
49442
- i0.ɵɵproperty("sections", ctx_r0.sections())("viewMode", ctx_r0.viewMode)("embedded", ctx_r0.embedded);
49476
+ i0.ɵɵproperty("sections", ctx_r1.sections())("viewMode", ctx_r1.viewMode)("embedded", ctx_r1.embedded)("containerElement", dashboardContainer_r9);
49443
49477
  i0.ɵɵadvance();
49444
- i0.ɵɵproperty("viewMode", ctx_r0.viewMode)("embedded", ctx_r0.embedded);
49478
+ i0.ɵɵproperty("viewMode", ctx_r1.viewMode)("embedded", ctx_r1.embedded);
49445
49479
  } }
49446
- function SymphiqBusinessAnalysisDashboardComponent_Conditional_14_Template(rf, ctx) { if (rf & 1) {
49447
- i0.ɵɵelementStart(0, "div", 0);
49448
- i0.ɵɵelement(1, "div", 0);
49480
+ function SymphiqBusinessAnalysisDashboardComponent_Conditional_15_Template(rf, ctx) { if (rf & 1) {
49481
+ i0.ɵɵelementStart(0, "div", 1);
49482
+ i0.ɵɵelement(1, "div", 1);
49449
49483
  i0.ɵɵelementEnd();
49450
49484
  } if (rf & 2) {
49451
- const ctx_r0 = i0.ɵɵnextContext();
49452
- i0.ɵɵproperty("ngClass", ctx_r0.getLoadingOverlayClasses());
49485
+ const ctx_r1 = i0.ɵɵnextContext();
49486
+ i0.ɵɵproperty("ngClass", ctx_r1.getLoadingOverlayClasses());
49453
49487
  i0.ɵɵadvance();
49454
- i0.ɵɵproperty("ngClass", ctx_r0.getSpinnerClasses());
49488
+ i0.ɵɵproperty("ngClass", ctx_r1.getSpinnerClasses());
49455
49489
  } }
49456
49490
  class SymphiqBusinessAnalysisDashboardComponent {
49457
49491
  sectionHasContent(section) {
@@ -49863,26 +49897,27 @@ class SymphiqBusinessAnalysisDashboardComponent {
49863
49897
  static { this.ɵfac = function SymphiqBusinessAnalysisDashboardComponent_Factory(__ngFactoryType__) { return new (__ngFactoryType__ || SymphiqBusinessAnalysisDashboardComponent)(); }; }
49864
49898
  static { this.ɵcmp = /*@__PURE__*/ i0.ɵɵdefineComponent({ type: SymphiqBusinessAnalysisDashboardComponent, selectors: [["symphiq-business-analysis-dashboard"]], hostBindings: function SymphiqBusinessAnalysisDashboardComponent_HostBindings(rf, ctx) { if (rf & 1) {
49865
49899
  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);
49866
- } }, inputs: { requestedByUser: "requestedByUser", viewMode: "viewMode", embedded: "embedded", scrollEvent: "scrollEvent", scrollElement: "scrollElement", isLoading: "isLoading", useSampleData: "useSampleData", profile: "profile" }, decls: 18, vars: 19, consts: [[3, "ngClass"], [3, "class"], [1, "relative", "z-[51]"], [1, "sticky", "top-0", "z-50", 3, "ngClass"], [1, "relative"], [1, "max-w-7xl", "mx-auto", "px-4", "sm:px-6", "lg:px-8", "py-8", "space-y-8"], [3, "isLightMode"], [3, "searchChange", "resultSelected", "close", "isLightMode", "isOpen", "searchQuery", "results", "hasResults", "selectedIndex", "placeholder"], [1, "h-full", "transition-all", "duration-200", "ease-out", 3, "ngClass"], [1, "max-w-7xl", "mx-auto", "px-4", "sm:px-6", "lg:px-8", "py-4"], [1, "flex", "items-center", "justify-between"], [3, "toggle", "viewModeSelected", "currentViewMode", "viewMode"], [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", "gap-2"], [3, "searchClick", "isLightMode"], [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, "transition-opacity", "duration-300", 3, "ngClass"], [3, "searchClick", "isLightMode", "minimized"], [3, "toggle", "viewModeSelected", "currentViewMode", "viewMode", "minimized"], [3, "getStarted", "dismiss", "businessName", "viewMode", "showCta"], [3, "currentStep", "completedSteps", "viewMode"], [3, "profile", "viewMode"], [3, "analyzeFunnel", "exploreMore", "viewMode"], [3, "sections", "viewMode", "embedded"], [3, "viewMode", "embedded"], [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) {
49867
- i0.ɵɵelementStart(0, "div", 0);
49868
- i0.ɵɵconditionalCreate(1, SymphiqBusinessAnalysisDashboardComponent_Conditional_1_Template, 2, 5, "div", 1);
49869
- i0.ɵɵelementStart(2, "div", 0);
49870
- i0.ɵɵelement(3, "div", 0)(4, "div", 0)(5, "div", 0)(6, "div", 0)(7, "div", 0);
49900
+ } }, inputs: { requestedByUser: "requestedByUser", viewMode: "viewMode", embedded: "embedded", scrollEvent: "scrollEvent", scrollElement: "scrollElement", isLoading: "isLoading", useSampleData: "useSampleData", profile: "profile" }, decls: 19, vars: 19, consts: [["dashboardContainer", ""], [3, "ngClass"], [3, "class"], [1, "relative", "z-[51]"], [1, "sticky", "top-0", "z-50", 3, "ngClass"], [1, "relative"], [1, "max-w-7xl", "mx-auto", "px-4", "sm:px-6", "lg:px-8", "py-8", "space-y-8"], [3, "isLightMode"], [3, "searchChange", "resultSelected", "close", "isLightMode", "isOpen", "searchQuery", "results", "hasResults", "selectedIndex", "placeholder"], [1, "h-full", "transition-all", "duration-200", "ease-out", 3, "ngClass"], [1, "max-w-7xl", "mx-auto", "px-4", "sm:px-6", "lg:px-8", "py-4"], [1, "flex", "items-center", "justify-between"], [3, "toggle", "viewModeSelected", "currentViewMode", "viewMode"], [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", "gap-2"], [3, "searchClick", "isLightMode"], [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, "transition-opacity", "duration-300", 3, "ngClass"], [3, "searchClick", "isLightMode", "minimized"], [3, "toggle", "viewModeSelected", "currentViewMode", "viewMode", "minimized"], [3, "getStarted", "dismiss", "businessName", "viewMode", "showCta"], [3, "currentStep", "completedSteps", "viewMode"], [3, "profile", "viewMode"], [3, "analyzeFunnel", "exploreMore", "viewMode"], [3, "sections", "viewMode", "embedded"], [3, "sections", "viewMode", "embedded", "containerElement"], [3, "viewMode", "embedded"], [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) {
49901
+ const _r1 = i0.ɵɵgetCurrentView();
49902
+ i0.ɵɵelementStart(0, "div", 1, 0);
49903
+ i0.ɵɵconditionalCreate(2, SymphiqBusinessAnalysisDashboardComponent_Conditional_2_Template, 2, 5, "div", 2);
49904
+ i0.ɵɵelementStart(3, "div", 1);
49905
+ i0.ɵɵelement(4, "div", 1)(5, "div", 1)(6, "div", 1)(7, "div", 1)(8, "div", 1);
49871
49906
  i0.ɵɵelementEnd();
49872
- i0.ɵɵelementStart(8, "div", 2);
49873
- i0.ɵɵconditionalCreate(9, SymphiqBusinessAnalysisDashboardComponent_Conditional_9_Template, 9, 6, "header", 3)(10, SymphiqBusinessAnalysisDashboardComponent_Conditional_10_Template, 25, 45, "header", 3);
49874
- i0.ɵɵelementStart(11, "main", 4);
49875
- i0.ɵɵconditionalCreate(12, SymphiqBusinessAnalysisDashboardComponent_Conditional_12_Template, 6, 11, "div", 5)(13, SymphiqBusinessAnalysisDashboardComponent_Conditional_13_Template, 5, 8);
49907
+ i0.ɵɵelementStart(9, "div", 3);
49908
+ i0.ɵɵconditionalCreate(10, SymphiqBusinessAnalysisDashboardComponent_Conditional_10_Template, 9, 6, "header", 4)(11, SymphiqBusinessAnalysisDashboardComponent_Conditional_11_Template, 25, 45, "header", 4);
49909
+ i0.ɵɵelementStart(12, "main", 5);
49910
+ i0.ɵɵconditionalCreate(13, SymphiqBusinessAnalysisDashboardComponent_Conditional_13_Template, 6, 11, "div", 6)(14, SymphiqBusinessAnalysisDashboardComponent_Conditional_14_Template, 5, 9);
49876
49911
  i0.ɵɵelementEnd()();
49877
- i0.ɵɵconditionalCreate(14, SymphiqBusinessAnalysisDashboardComponent_Conditional_14_Template, 2, 2, "div", 0);
49878
- i0.ɵɵelement(15, "symphiq-tooltip-container")(16, "symphiq-business-analysis-modal", 6);
49879
- i0.ɵɵelementStart(17, "symphiq-search-modal", 7);
49880
- i0.ɵɵlistener("searchChange", function SymphiqBusinessAnalysisDashboardComponent_Template_symphiq_search_modal_searchChange_17_listener($event) { return ctx.onSearchChange($event); })("resultSelected", function SymphiqBusinessAnalysisDashboardComponent_Template_symphiq_search_modal_resultSelected_17_listener($event) { return ctx.onSearchResultSelected($event); })("close", function SymphiqBusinessAnalysisDashboardComponent_Template_symphiq_search_modal_close_17_listener() { return ctx.closeSearch(); });
49912
+ i0.ɵɵconditionalCreate(15, SymphiqBusinessAnalysisDashboardComponent_Conditional_15_Template, 2, 2, "div", 1);
49913
+ i0.ɵɵelement(16, "symphiq-tooltip-container")(17, "symphiq-business-analysis-modal", 7);
49914
+ i0.ɵɵelementStart(18, "symphiq-search-modal", 8);
49915
+ i0.ɵɵlistener("searchChange", function SymphiqBusinessAnalysisDashboardComponent_Template_symphiq_search_modal_searchChange_18_listener($event) { i0.ɵɵrestoreView(_r1); return i0.ɵɵresetView(ctx.onSearchChange($event)); })("resultSelected", function SymphiqBusinessAnalysisDashboardComponent_Template_symphiq_search_modal_resultSelected_18_listener($event) { i0.ɵɵrestoreView(_r1); return i0.ɵɵresetView(ctx.onSearchResultSelected($event)); })("close", function SymphiqBusinessAnalysisDashboardComponent_Template_symphiq_search_modal_close_18_listener() { i0.ɵɵrestoreView(_r1); return i0.ɵɵresetView(ctx.closeSearch()); });
49881
49916
  i0.ɵɵelementEnd()();
49882
49917
  } if (rf & 2) {
49883
49918
  i0.ɵɵproperty("ngClass", ctx.getContainerClasses());
49884
- i0.ɵɵadvance();
49885
- i0.ɵɵconditional(!ctx.isSimplifiedMode() ? 1 : -1);
49919
+ i0.ɵɵadvance(2);
49920
+ i0.ɵɵconditional(!ctx.isSimplifiedMode() ? 2 : -1);
49886
49921
  i0.ɵɵadvance();
49887
49922
  i0.ɵɵproperty("ngClass", ctx.getBackgroundClasses());
49888
49923
  i0.ɵɵadvance();
@@ -49896,11 +49931,11 @@ class SymphiqBusinessAnalysisDashboardComponent {
49896
49931
  i0.ɵɵadvance();
49897
49932
  i0.ɵɵproperty("ngClass", ctx.getOrbClasses(3));
49898
49933
  i0.ɵɵadvance(2);
49899
- i0.ɵɵconditional(ctx.isSimplifiedMode() ? 9 : 10);
49934
+ i0.ɵɵconditional(ctx.isSimplifiedMode() ? 10 : 11);
49900
49935
  i0.ɵɵadvance(3);
49901
- i0.ɵɵconditional(ctx.isSimplifiedMode() ? 12 : 13);
49936
+ i0.ɵɵconditional(ctx.isSimplifiedMode() ? 13 : 14);
49902
49937
  i0.ɵɵadvance(2);
49903
- i0.ɵɵconditional(ctx.isLoading ? 14 : -1);
49938
+ i0.ɵɵconditional(ctx.isLoading ? 15 : -1);
49904
49939
  i0.ɵɵadvance(2);
49905
49940
  i0.ɵɵproperty("isLightMode", ctx.isLightMode());
49906
49941
  i0.ɵɵadvance();
@@ -49910,7 +49945,7 @@ class SymphiqBusinessAnalysisDashboardComponent {
49910
49945
  (() => { (typeof ngDevMode === "undefined" || ngDevMode) && i0.ɵsetClassMetadata(SymphiqBusinessAnalysisDashboardComponent, [{
49911
49946
  type: Component,
49912
49947
  args: [{ selector: 'symphiq-business-analysis-dashboard', standalone: true, imports: [CommonModule, ProfileSectionComponent, SectionNavigationComponent, FloatingTocComponent, FloatingBackButtonComponent, TooltipContainerComponent, SectionDividerComponent, BusinessAnalysisModalComponent, ViewToggleComponent, SearchButtonComponent, SearchModalComponent, JourneyProgressStepperComponent, WelcomeHeroBannerComponent, SimplifiedStrategicInsightsComponent, CollapsibleSupportingContextComponent, NextStepCtaComponent], changeDetection: ChangeDetectionStrategy.OnPush, template: `
49913
- <div [ngClass]="getContainerClasses()">
49948
+ <div #dashboardContainer [ngClass]="getContainerClasses()">
49914
49949
  @if (!isSimplifiedMode()) {
49915
49950
  <!-- Scroll Progress Bar (fixed at top) - hidden in simplified mode -->
49916
49951
  <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'">
@@ -50107,6 +50142,7 @@ class SymphiqBusinessAnalysisDashboardComponent {
50107
50142
  [sections]="sections()"
50108
50143
  [viewMode]="viewMode"
50109
50144
  [embedded]="embedded"
50145
+ [containerElement]="dashboardContainer"
50110
50146
  />
50111
50147
 
50112
50148
  <symphiq-floating-back-button
@@ -50163,7 +50199,7 @@ class SymphiqBusinessAnalysisDashboardComponent {
50163
50199
  type: HostListener,
50164
50200
  args: ['document:keydown', ['$event']]
50165
50201
  }] }); })();
50166
- (() => { (typeof ngDevMode === "undefined" || ngDevMode) && i0.ɵsetClassDebugInfo(SymphiqBusinessAnalysisDashboardComponent, { className: "SymphiqBusinessAnalysisDashboardComponent", filePath: "lib/components/business-analysis-dashboard/symphiq-business-analysis-dashboard.component.ts", lineNumber: 289 }); })();
50202
+ (() => { (typeof ngDevMode === "undefined" || ngDevMode) && i0.ɵsetClassDebugInfo(SymphiqBusinessAnalysisDashboardComponent, { className: "SymphiqBusinessAnalysisDashboardComponent", filePath: "lib/components/business-analysis-dashboard/symphiq-business-analysis-dashboard.component.ts", lineNumber: 290 }); })();
50167
50203
 
50168
50204
  class ScrollProgressBarComponent {
50169
50205
  constructor() {