@eric-emg/symphiq-components 1.2.92 → 1.2.94

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.
@@ -5920,9 +5920,17 @@ class MetricCardComponent {
5920
5920
  if ((m.metric || '').includes('RATE') || (m.metric || '').includes('CONVERSION') || (m.metric || '').includes('BOUNCE')) {
5921
5921
  // Convert decimal to percentage if value is between 0-1
5922
5922
  const percentValue = value < 1 ? value * 100 : value;
5923
+ // Use 3 decimal places for very small percentages
5924
+ if (percentValue < 0.01) {
5925
+ return percentValue.toFixed(3) + '%';
5926
+ }
5923
5927
  return percentValue.toFixed(2) + '%';
5924
5928
  }
5925
5929
  if (value < 100 && value % 1 !== 0) {
5930
+ // Use 3 decimal places for very small values
5931
+ if (value < 0.01) {
5932
+ return value.toFixed(3);
5933
+ }
5926
5934
  return value.toFixed(2);
5927
5935
  }
5928
5936
  return value.toLocaleString('en-US', { maximumFractionDigits: 0 });
@@ -8808,6 +8816,10 @@ class MetricValueTooltipComponent {
8808
8816
  else if (unit === '%' || unit === 'percentage') {
8809
8817
  // Convert decimal to percentage if value is between 0-1
8810
8818
  const percentValue = value < 1 ? value * 100 : value;
8819
+ // Use 3 decimal places for very small percentages
8820
+ if (percentValue < 0.01) {
8821
+ return `${percentValue.toFixed(3)}%`;
8822
+ }
8811
8823
  return `${percentValue.toFixed(2)}%`;
8812
8824
  }
8813
8825
  else if (value >= 1000000) {
@@ -8816,6 +8828,10 @@ class MetricValueTooltipComponent {
8816
8828
  else if (value >= 1000) {
8817
8829
  return `${(value / 1000).toFixed(1)}K`;
8818
8830
  }
8831
+ // Use 3 decimal places for very small values
8832
+ if (value < 0.01 && value % 1 !== 0) {
8833
+ return value.toFixed(3);
8834
+ }
8819
8835
  return value.toLocaleString();
8820
8836
  }
8821
8837
  formatChange() {
@@ -9190,29 +9206,20 @@ class StatusBadgeTooltipComponent {
9190
9206
  this.progressBarBgClass = computed(() => this.isLightMode() ? 'bg-slate-200' : 'bg-slate-700', ...(ngDevMode ? [{ debugName: "progressBarBgClass" }] : []));
9191
9207
  this.progressBarWidth = computed(() => {
9192
9208
  const pacing = this.content().pacingPercentage || 0;
9193
- // pacingPercentage is variance (+/-), so 100% + variance = actual pacing
9209
+ // pacingPercentage is already a percentage, so 100% + variance = actual pacing
9194
9210
  const actualPacing = 100 + pacing;
9195
9211
  return Math.min(Math.max(actualPacing, 0), 100);
9196
9212
  }, ...(ngDevMode ? [{ debugName: "progressBarWidth" }] : []));
9197
9213
  this.progressBarFillClass = computed(() => {
9198
9214
  const status = this.content().status;
9199
- const pacing = this.content().pacingPercentage || 0;
9200
9215
  if (status === 'OVERACHIEVING') {
9201
9216
  return 'bg-gradient-to-r from-blue-400 via-emerald-400 to-emerald-500 shadow-lg shadow-emerald-500/30';
9202
9217
  }
9203
9218
  else if (status === 'AT_RISK' || status === 'BEHIND') {
9204
9219
  return 'bg-gradient-to-r from-amber-500 via-amber-400 to-red-500';
9205
9220
  }
9206
- else if (pacing >= 100) {
9207
- return 'bg-gradient-to-r from-blue-400 via-emerald-400 to-emerald-500 shadow-lg shadow-emerald-500/30';
9208
- }
9209
- else if (pacing >= 80) {
9210
- return 'bg-gradient-to-r from-blue-400 via-blue-500 to-emerald-500';
9211
- }
9212
- else if (pacing >= 60) {
9213
- return 'bg-gradient-to-r from-amber-500 via-amber-400 to-amber-500';
9214
- }
9215
- return 'bg-gradient-to-r from-amber-500 via-amber-400 to-red-500';
9221
+ // Default for ON_TRACK and all other statuses
9222
+ return 'bg-gradient-to-r from-blue-400 via-blue-500 to-emerald-500';
9216
9223
  }, ...(ngDevMode ? [{ debugName: "progressBarFillClass" }] : []));
9217
9224
  this.remainingClass = computed(() => {
9218
9225
  const remaining = this.calculateRemaining();
@@ -9265,6 +9272,7 @@ class StatusBadgeTooltipComponent {
9265
9272
  this.statusExplanation = computed(() => {
9266
9273
  const status = this.content().status;
9267
9274
  const pacing = this.content().pacingPercentage;
9275
+ // pacingPercentage is already a percentage value (e.g., 17.6)
9268
9276
  const pacingText = pacing !== undefined ? `${pacing > 0 ? '+' : ''}${pacing.toFixed(1)}%` : '';
9269
9277
  switch (status) {
9270
9278
  case 'ON_TRACK':
@@ -9297,15 +9305,26 @@ class StatusBadgeTooltipComponent {
9297
9305
  return this.formatCurrencyValue(value);
9298
9306
  }
9299
9307
  else if (unit === 'percentage') {
9300
- return `${value.toFixed(1)}%`;
9308
+ // Convert decimal to percentage if value is between 0-1
9309
+ const percentValue = value < 1 ? value * 100 : value;
9310
+ // Use 3 decimal places for very small percentages
9311
+ if (percentValue < 0.01) {
9312
+ return `${percentValue.toFixed(3)}%`;
9313
+ }
9314
+ return `${percentValue.toFixed(2)}%`;
9301
9315
  }
9302
9316
  else {
9317
+ // Use 3 decimal places for very small values
9318
+ if (value < 0.01 && value % 1 !== 0) {
9319
+ return value.toFixed(3);
9320
+ }
9303
9321
  return this.formatLargeNumberValue(value);
9304
9322
  }
9305
9323
  }, ...(ngDevMode ? [{ debugName: "displayProjectedValue" }] : []));
9306
9324
  // Animate pacing values when content changes
9307
9325
  effect(() => {
9308
9326
  const pacing = this.content().pacingPercentage || 0;
9327
+ // pacingPercentage is already a percentage value (e.g., 17.6)
9309
9328
  const actualPacing = 100 + pacing;
9310
9329
  const projectedValue = this.content().projectedValue || 0;
9311
9330
  untracked(() => {
@@ -9365,7 +9384,12 @@ class StatusBadgeTooltipComponent {
9365
9384
  // Handle percentage
9366
9385
  if (unit === 'percentage') {
9367
9386
  if (value < 1) {
9368
- return `${(value * 100).toFixed(2)}%`;
9387
+ const percentValue = value * 100;
9388
+ // Use 3 decimal places for very small percentages
9389
+ if (percentValue < 0.01) {
9390
+ return `${percentValue.toFixed(3)}%`;
9391
+ }
9392
+ return `${percentValue.toFixed(2)}%`;
9369
9393
  }
9370
9394
  return `${value.toFixed(2)}%`;
9371
9395
  }
@@ -9376,6 +9400,10 @@ class StatusBadgeTooltipComponent {
9376
9400
  else if (value >= 1000) {
9377
9401
  return `${(value / 1000).toFixed(1)}K`;
9378
9402
  }
9403
+ // Use 3 decimal places for very small values
9404
+ if (value < 0.01 && value % 1 !== 0) {
9405
+ return value.toFixed(3);
9406
+ }
9379
9407
  return value.toLocaleString();
9380
9408
  }
9381
9409
  formatCurrencyValue(value) {
@@ -12782,6 +12810,7 @@ class MobileBottomNavComponent {
12782
12810
  (() => { (typeof ngDevMode === "undefined" || ngDevMode) && i0.ɵsetClassDebugInfo(MobileBottomNavComponent, { className: "MobileBottomNavComponent", filePath: "lib/components/funnel-analysis-dashboard/mobile-bottom-nav.component.ts", lineNumber: 33 }); })();
12783
12811
 
12784
12812
  const FUNNEL_ANALYSIS = ({
12813
+ "selfContentCompletedDate": new Date(),
12785
12814
  "title": "Maximize Revenue by Improving Conversion Rates and Reducing Funnel Leakage",
12786
12815
  "description": "# Funnel Analysis for Custom Decorative Lighting\n\n### Overview\n\nYour shop’s funnel performance in 2025 shows strong growth in top-of-funnel traffic and revenue, but significant conversion challenges persist in the mid and lower funnel. While you’re exceeding targets in overall traffic, new user acquisition, and average order value, conversion rates from product views to purchases are lagging, especially on mobile and certain channels. Addressing these gaps is critical to maximizing the value of your high-quality, customizable lighting offerings and maintaining your leadership in the luxury lighting market.\n\n---\n\n### Performance Overview & Trends\n\n- **Traffic & Engagement:**\n - Views, Sessions, and Active Users are all pacing well above 2025 targets (Views: 1,740,174 vs. 1,606,999 target; Sessions: 925,074 vs. 659,278 target).\n - New Users are up 79% YoY (738,992 vs. 411,862), reflecting successful outreach and brand awareness, especially among design professionals and luxury residential clients.\n - Product Views have increased 21% YoY, indicating strong interest in your artisan-crafted and customizable lighting.\n- **Revenue:**\n - Revenue is up 25% YoY ($659,742 vs. $529,690), with Average Order Value at $5,737 (32% above target and 32% YoY growth), reflecting your premium positioning and successful upselling of custom and luxury fixtures.\n - Revenue Per Product View ($0.53) is slightly above target and up YoY, showing improved monetization of product interest.\n- **Conversion & Engagement:**\n - Conversion rates are down across the funnel: Ecommerce Conversion Rate (0.012%) and Product View Conversion Rate (0.009%) are both below target and last year.\n - Bounce Rate has increased to 64.7% (target: 55.0%), with mobile and tablet segments particularly high, indicating friction in the user journey.\n - Add To Cart and Checkout rates are below target, with Add To Cart Rate at 0.96% (target: 1.43%) and Checkout Conversion Rate at 12.5% (target: 15.1%).\n- **Trends:**\n - Monthly data shows spikes in traffic and revenue during project-driven cycles (notably September and October), but conversion rates remain inconsistent.\n - Lower funnel metrics (Purchases, Revenue) are improving, but not at the pace of top-of-funnel growth.\n- **Profile Insights:**\n - Your strong brand authority and artisan reputation are driving high-value orders, but the complexity of customization and project-based sales cycles may be contributing to lower conversion rates and higher bounce, especially for new or less trade-savvy customers.\n\n---\n\n### Medium Analysis\n\n- **Organic:**\n - Drives high-quality traffic (Product View Rate: 347.9%), strong Add To Cart Rate (1.58%), and above-average conversion rates (Ecommerce Conversion Rate: 0.054%).\n - Revenue Per Product View ($0.81) and Revenue Per Add To Cart ($178.27) are both strong, reflecting effective engagement with design professionals and homeowners seeking custom solutions.\n- **CPC (Paid):**\n - Delivers the largest share of Product Views (603,481), but conversion rates are low (Ecommerce Conversion Rate: 0.010%) and Add To Cart Rate (1.92%) is only slightly above average.\n - Revenue Per Add To Cart ($29.86) is well below organic and referral, indicating inefficiency in paid campaigns.\n- **Referral:**\n - High Revenue Per Add To Cart ($328.87) and Average Order Value ($14,142), but low Add To Cart Rate (0.14%) and Ecommerce Conversion Rate (0.003%).\n - Suggests referrals are highly qualified but limited in volume—opportunity to deepen partnerships with trade and design professionals.\n- **Email:**\n - Strong Average Order Value ($9,220), but low traffic and conversion rates (Ecommerce Conversion Rate: 0.004%).\n - Indicates potential for more targeted, segmented campaigns to trade and commercial clients.\n- **Direct:**\n - Consistent performance across the funnel, with Add To Cart Rate (0.54%) and Revenue Per Add To Cart ($101.29) above paid but below organic and referral.\n- **Profile Insights:**\n - Organic and referral mediums align best with your brand’s value proposition and customer segments, while paid and email require optimization to better target high-intent, project-based buyers.\n\n---\n\n### Source Analysis\n\n- **Google:**\n - Largest source of traffic and revenue (Product Views: 738,639; Revenue: $313,196), but conversion rates are below target (Ecommerce Conversion Rate: 0.022%).\n - Revenue Per Product View ($0.42) is solid, but Add To Cart Rate (2.31%) and Product View To Cart Conversion Rate (0.90%) suggest room for improvement in mid-funnel engagement.\n- **Direct:**\n - Strong Add To Cart Rate (2.44%) and consistent revenue ($107,772), but conversion rates lag behind organic.\n- **Bing & Yahoo:**\n - High Average Order Value ($8,894 for Bing, $4,798 for Yahoo) and strong Add To Cart Rates, but low volume.\n- **Klaviyo (Email):**\n - Highest Average Order Value ($9,220), but low conversion rates and traffic—opportunity for more personalized, segmented outreach.\n- **Facebook & Pinterest:**\n - Low conversion rates and revenue, indicating these sources are not effectively reaching your core trade and luxury segments.\n- **Profile Insights:**\n - Google and direct sources are critical for both residential and trade clients, but further segmentation and retargeting could improve conversion efficiency.\n\n---\n\n### Device Analysis\n\n- **Desktop:**\n - Dominates revenue ($573,262), Purchases (91), and conversion rates (Ecommerce Conversion Rate: 0.025%).\n - Bounce Rate is lowest (55.5%), and Add To Cart Rate (1.83%) is highest among devices.\n - Average Order Value ($6,300) and Revenue Per Product View ($0.72) are both strong, reflecting the research-intensive, high-consideration nature of luxury lighting purchases.\n- **Mobile:**\n - Drives the most sessions (501,561) and new users (444,990), but conversion rates are lowest (Ecommerce Conversion Rate: 0.004%) and Bounce Rate is highest (70.4%).\n - Revenue Per Product View ($0.17) and Average Order Value ($3,096) are well below desktop, indicating friction for mobile users—likely due to the complexity of custom product selection and quoting.\n- **Tablet:**\n - Smallest share of traffic, but highest Checkout Conversion Rate (25%) and Average Order Value ($7,156), suggesting a niche but highly qualified segment (possibly trade professionals or commercial buyers).\n- **Profile Insights:**\n - Desktop is the primary channel for trade and high-value residential clients, while mobile underperformance suggests a need to simplify the mobile experience for homeowners and specifiers.\n\n---\n\n### Pacing & Target Comparison\n\n| Metric | 2025 Target | 2025 Pacing | Gap (%) |\n|-------------------------------|--------------|--------------|-----------|\n| Revenue Per Product View | 0.52 | 0.53 | +2.1% |\n| Product Views | 1,229,726 | 1,242,036 | +1.0% |\n| New Users | 470,660 | 738,992 | +57.1% |\n| Add To Carts | 9,933 | 8,926 | -10.1% |\n| Checkouts | 1,095 | 923 | -15.7% |\n| Purchases | 160 | 115 | -28.3% |\n| Revenue | $710,638 | $659,742 | -7.2% |\n| Average Order Value | $4,480 | $5,737 | +28.1% |\n| Add To Cart Rate | 1.43% | 0.96% | -32.9% |\n| Ecommerce Conversion Rate | 0.02% | 0.012% | -37.8% |\n| Bounce Rate | 55.0% | 64.7% | +17.6% |\n| Product View Conversion Rate | 0.01% | 0.009% | -7.4% |\n| Product View To Cart Conv. | 0.81% | 0.72% | -11.1% |\n| Cart To Checkout Conv. | 11.06% | 10.34% | -6.5% |\n| Checkout Conversion Rate | 15.07% | 12.46% | -17.3% |\n| Product View Rate | 184.12% | 134.26% | -27.1% |\n| Revenue Per Add To Cart | $67.69 | $73.91 | +9.2% |\n| Revenue Per Checkout | $642.90 | $714.78 | +11.2% |\n| Active User Add To Cart Rate | 1.71% | 1.09% | -36.3% |\n| Active User Checkout Rate | 0.18% | 0.11% | -38.1% |\n| Add To Cart Conversion Rate | 1.59% | 1.29% | -18.9% |\n| Ecommerce Purchases | 160.41 | 115 | -28.3% |\n| Sessions | 659,278 | 925,074 | +40.3% |\n| Screen Page Views | 1,606,999 | 1,740,174 | +8.3% |\n| Active Users | 551,076 | 818,976 | +48.6% |\n\n- **Key At-Risk Metrics:**\n - Purchases, Add To Carts, Checkouts, Conversion Rates, and Bounce Rate are all pacing below target.\n - Revenue is below target despite strong traffic and order value, due to conversion inefficiencies.\n- **Overachieving Metrics:**\n - Traffic, New Users, Average Order Value, and Revenue Per Add To Cart are all exceeding targets.\n\n---\n\n### Funnel Summary & Data Quality\n\n- **Funnel Breakdown:**\n - Top-of-funnel (Views, Sessions, Active Users, Product Views) is robust and growing.\n - Mid-funnel (Add To Carts, Checkouts) is underperforming, with significant drop-off from Product Views to Add To Carts (0.72% Product View To Cart Conversion Rate).\n - Lower funnel (Purchases, Revenue) is improving YoY but not keeping pace with traffic growth.\n- **Leakage Points:**\n - Major drop-off between Product Views and Add To Carts, and again at Checkout to Purchase.\n - High Bounce Rate, especially on mobile, is a key contributor to funnel leakage.\n- **Data Quality:**\n - No periods with zero values for core metrics detected; data appears consistent and reliable.\n\n---\n\n### Strengths, Weaknesses & Opportunities\n\n**Strengths:**\n- High Average Order Value ($5,737) and Revenue Per Add To Cart ($73.91), reflecting strong brand authority and premium positioning.\n- Robust traffic and new user growth (+57% YoY), especially among design professionals and luxury residential clients.\n- Desktop experience is highly effective for core trade and commercial buyers, with strong conversion and revenue metrics.\n- Organic and referral channels deliver high-value, qualified leads aligned with your custom and luxury offerings.\n\n**Weaknesses:**\n- Conversion rates (Ecommerce, Add To Cart, Checkout) are below target and declining YoY, especially on mobile.\n- Bounce Rate is high (64.7%) and rising, particularly on mobile and tablet, indicating friction in the user journey.\n- Paid and email channels are not delivering efficient conversions or revenue, despite high spend and strong order values.\n- Significant funnel leakage from Product Views to Add To Carts and at Checkout, limiting revenue growth.\n\n**Opportunities:**\n- Optimize mobile and tablet experiences to better serve homeowners and specifiers, reducing bounce and improving conversion.\n- Deepen partnerships with trade and design professionals through referral and organic channels to increase high-value project leads.\n- Refine paid and email campaigns to focus on high-intent, project-based buyers and segment messaging by customer type.\n- Leverage storytelling, case studies, and behind-the-scenes content to reinforce artisan craftsmanship and customization.\n\n---\n\n### Actionable Recommendations & Next Steps\n\n**1. Optimize Conversion Rates (Primary Focus)**\n- Conduct a UX audit, especially on mobile, to identify and remove friction points in the product selection and customization process.\n- Streamline Add To Cart and Checkout processes—reduce steps, clarify customization options, and provide clear pricing and lead times.\n- Highlight trust signals (testimonials, project case studies, artisan stories) prominently on product and checkout pages to reassure high-value buyers.\n\n**2. Enhance Channel & Acquisition Efficiency**\n- Refocus paid campaigns on high-intent keywords and audiences specific to trade, commercial, and luxury residential projects.\n- Expand organic content around industry trends, customization options, and project-driven sales cycles to attract design professionals.\n- Build partnerships with architects, designers, and industry organizations to increase high-quality referral traffic.\n\n**3. Improve Engagement & Reduce Bounce Rate**\n- Personalize landing pages and product recommendations based on traffic source and customer segment (trade vs. homeowner).\n- Implement engagement tactics such as exit-intent popups, live chat, and downloadable resources (e.g., spec sheets, lookbooks) to capture leads and reduce bounce.\n- Simplify mobile navigation and prioritize key content to improve the mobile experience for specifiers and homeowners.\n\n**4. Leverage Data & Segmentation**\n- Segment analytics by customer type (trade, homeowner, commercial) and region to tailor messaging and offers.\n- Monitor seasonal and project-driven patterns to align marketing cadence with industry events and renovation cycles.\n- Track segment-specific metrics to measure the impact of targeted initiatives and refine strategies accordingly.\n\n**5. Ensure Data Quality & Measurement Integrity**\n- Continue regular data audits to ensure all funnel stages are tracked accurately, especially as you launch new campaigns or site features.\n- Validate tracking and attribution for new channels and referral partnerships to maintain reliable performance insights.\n\n---\n",
12787
12816
  "performanceOverviewStructured": {
@@ -21547,12 +21576,15 @@ const _c3 = () => [1, 2, 3];
21547
21576
  const _c4 = () => [1, 2, 3, 4];
21548
21577
  const _c5 = () => [1, 2];
21549
21578
  const _forTrack0$1 = ($index, $item) => $item.value;
21550
- function SymphiqFunnelAnalysisDashboardComponent_Conditional_19_Template(rf, ctx) { if (rf & 1) {
21551
- i0.ɵɵelement(0, "div", 16);
21579
+ function SymphiqFunnelAnalysisDashboardComponent_Conditional_6_Template(rf, ctx) { if (rf & 1) {
21580
+ i0.ɵɵelement(0, "div", 50)(1, "div", 51)(2, "div", 52);
21581
+ } }
21582
+ function SymphiqFunnelAnalysisDashboardComponent_Conditional_17_Template(rf, ctx) { if (rf & 1) {
21583
+ i0.ɵɵelement(0, "div", 13);
21552
21584
  } }
21553
- function SymphiqFunnelAnalysisDashboardComponent_Conditional_31_Template(rf, ctx) { if (rf & 1) {
21585
+ function SymphiqFunnelAnalysisDashboardComponent_Conditional_29_Template(rf, ctx) { if (rf & 1) {
21554
21586
  i0.ɵɵnamespaceSVG();
21555
- i0.ɵɵelementStart(0, "svg", 21);
21587
+ i0.ɵɵelementStart(0, "svg", 18);
21556
21588
  i0.ɵɵelement(1, "path", 53);
21557
21589
  i0.ɵɵelementEnd();
21558
21590
  i0.ɵɵnamespaceHTML();
@@ -21560,9 +21592,9 @@ function SymphiqFunnelAnalysisDashboardComponent_Conditional_31_Template(rf, ctx
21560
21592
  i0.ɵɵtext(3, "Compact");
21561
21593
  i0.ɵɵelementEnd();
21562
21594
  } }
21563
- function SymphiqFunnelAnalysisDashboardComponent_Conditional_32_Template(rf, ctx) { if (rf & 1) {
21595
+ function SymphiqFunnelAnalysisDashboardComponent_Conditional_30_Template(rf, ctx) { if (rf & 1) {
21564
21596
  i0.ɵɵnamespaceSVG();
21565
- i0.ɵɵelementStart(0, "svg", 21);
21597
+ i0.ɵɵelementStart(0, "svg", 18);
21566
21598
  i0.ɵɵelement(1, "path", 54);
21567
21599
  i0.ɵɵelementEnd();
21568
21600
  i0.ɵɵnamespaceHTML();
@@ -21570,8 +21602,8 @@ function SymphiqFunnelAnalysisDashboardComponent_Conditional_32_Template(rf, ctx
21570
21602
  i0.ɵɵtext(3, "Expanded");
21571
21603
  i0.ɵɵelementEnd();
21572
21604
  } }
21573
- function SymphiqFunnelAnalysisDashboardComponent_For_39_Template(rf, ctx) { if (rf & 1) {
21574
- i0.ɵɵelementStart(0, "option", 29);
21605
+ function SymphiqFunnelAnalysisDashboardComponent_For_37_Template(rf, ctx) { if (rf & 1) {
21606
+ i0.ɵɵelementStart(0, "option", 26);
21575
21607
  i0.ɵɵtext(1);
21576
21608
  i0.ɵɵelementEnd();
21577
21609
  } if (rf & 2) {
@@ -21580,8 +21612,24 @@ function SymphiqFunnelAnalysisDashboardComponent_For_39_Template(rf, ctx) { if (
21580
21612
  i0.ɵɵadvance();
21581
21613
  i0.ɵɵtextInterpolate(section_r2.label);
21582
21614
  } }
21583
- function SymphiqFunnelAnalysisDashboardComponent_Conditional_57_Template(rf, ctx) { if (rf & 1) {
21584
- i0.ɵɵelementStart(0, "div", 38)(1, "span", 55);
21615
+ function SymphiqFunnelAnalysisDashboardComponent_Conditional_39_Template(rf, ctx) { if (rf & 1) {
21616
+ i0.ɵɵelementStart(0, "div", 28)(1, "div", 29);
21617
+ i0.ɵɵtext(2, "Generated At");
21618
+ i0.ɵɵelementEnd();
21619
+ i0.ɵɵelementStart(3, "div", 30);
21620
+ i0.ɵɵtext(4);
21621
+ i0.ɵɵelementEnd()();
21622
+ } if (rf & 2) {
21623
+ const ctx_r2 = i0.ɵɵnextContext();
21624
+ i0.ɵɵadvance();
21625
+ i0.ɵɵclassMap(ctx_r2.metaLabelClass());
21626
+ i0.ɵɵadvance(2);
21627
+ i0.ɵɵclassMap(ctx_r2.headerTitleClass());
21628
+ i0.ɵɵadvance();
21629
+ i0.ɵɵtextInterpolate(ctx_r2.formattedGeneratedDate());
21630
+ } }
21631
+ function SymphiqFunnelAnalysisDashboardComponent_Conditional_51_Template(rf, ctx) { if (rf & 1) {
21632
+ i0.ɵɵelementStart(0, "div", 35)(1, "span", 55);
21585
21633
  i0.ɵɵtext(2, "Revenue:");
21586
21634
  i0.ɵɵelementEnd();
21587
21635
  i0.ɵɵelementStart(3, "span", 56);
@@ -21604,20 +21652,20 @@ function SymphiqFunnelAnalysisDashboardComponent_Conditional_57_Template(rf, ctx
21604
21652
  i0.ɵɵadvance();
21605
21653
  i0.ɵɵtextInterpolate2(" ", ctx_r2.revenueTrend() >= 0 ? "+" : "", "", ctx_r2.revenueTrend().toFixed(1), "% ");
21606
21654
  } }
21607
- function SymphiqFunnelAnalysisDashboardComponent_Conditional_63_Template(rf, ctx) { if (rf & 1) {
21655
+ function SymphiqFunnelAnalysisDashboardComponent_Conditional_57_Template(rf, ctx) { if (rf & 1) {
21608
21656
  i0.ɵɵnamespaceSVG();
21609
- i0.ɵɵelementStart(0, "svg", 40);
21657
+ i0.ɵɵelementStart(0, "svg", 37);
21610
21658
  i0.ɵɵelement(1, "path", 53);
21611
21659
  i0.ɵɵelementEnd();
21612
21660
  } }
21613
- function SymphiqFunnelAnalysisDashboardComponent_Conditional_64_Template(rf, ctx) { if (rf & 1) {
21661
+ function SymphiqFunnelAnalysisDashboardComponent_Conditional_58_Template(rf, ctx) { if (rf & 1) {
21614
21662
  i0.ɵɵnamespaceSVG();
21615
- i0.ɵɵelementStart(0, "svg", 40);
21663
+ i0.ɵɵelementStart(0, "svg", 37);
21616
21664
  i0.ɵɵelement(1, "path", 54);
21617
21665
  i0.ɵɵelementEnd();
21618
21666
  } }
21619
- function SymphiqFunnelAnalysisDashboardComponent_For_68_Template(rf, ctx) { if (rf & 1) {
21620
- i0.ɵɵelementStart(0, "option", 29);
21667
+ function SymphiqFunnelAnalysisDashboardComponent_For_62_Template(rf, ctx) { if (rf & 1) {
21668
+ i0.ɵɵelementStart(0, "option", 26);
21621
21669
  i0.ɵɵtext(1);
21622
21670
  i0.ɵɵelementEnd();
21623
21671
  } if (rf & 2) {
@@ -21626,12 +21674,12 @@ function SymphiqFunnelAnalysisDashboardComponent_For_68_Template(rf, ctx) { if (
21626
21674
  i0.ɵɵadvance();
21627
21675
  i0.ɵɵtextInterpolate(section_r4.label);
21628
21676
  } }
21629
- function SymphiqFunnelAnalysisDashboardComponent_Conditional_69_Template(rf, ctx) { if (rf & 1) {
21677
+ function SymphiqFunnelAnalysisDashboardComponent_Conditional_63_Template(rf, ctx) { if (rf & 1) {
21630
21678
  const _r5 = i0.ɵɵgetCurrentView();
21631
- i0.ɵɵelementStart(0, "div", 43)(1, "div", 34)(2, "div", 35)(3, "div", 58);
21679
+ i0.ɵɵelementStart(0, "div", 40)(1, "div", 31)(2, "div", 32)(3, "div", 58);
21632
21680
  i0.ɵɵnamespaceSVG();
21633
21681
  i0.ɵɵelementStart(4, "svg", 59);
21634
- i0.ɵɵelement(5, "path", 22);
21682
+ i0.ɵɵelement(5, "path", 19);
21635
21683
  i0.ɵɵelementEnd();
21636
21684
  i0.ɵɵnamespaceHTML();
21637
21685
  i0.ɵɵelementStart(6, "div", 60)(7, "span", 61);
@@ -21644,9 +21692,9 @@ function SymphiqFunnelAnalysisDashboardComponent_Conditional_69_Template(rf, ctx
21644
21692
  i0.ɵɵtext(12);
21645
21693
  i0.ɵɵelementEnd()()();
21646
21694
  i0.ɵɵelementStart(13, "button", 64);
21647
- i0.ɵɵlistener("click", function SymphiqFunnelAnalysisDashboardComponent_Conditional_69_Template_button_click_13_listener($event) { i0.ɵɵrestoreView(_r5); const ctx_r2 = i0.ɵɵnextContext(); ctx_r2.clearSearchResult(); return i0.ɵɵresetView($event.stopPropagation()); });
21695
+ i0.ɵɵlistener("click", function SymphiqFunnelAnalysisDashboardComponent_Conditional_63_Template_button_click_13_listener($event) { i0.ɵɵrestoreView(_r5); const ctx_r2 = i0.ɵɵnextContext(); ctx_r2.clearSearchResult(); return i0.ɵɵresetView($event.stopPropagation()); });
21648
21696
  i0.ɵɵnamespaceSVG();
21649
- i0.ɵɵelementStart(14, "svg", 40);
21697
+ i0.ɵɵelementStart(14, "svg", 37);
21650
21698
  i0.ɵɵelement(15, "path", 65);
21651
21699
  i0.ɵɵelementEnd()()()()();
21652
21700
  } if (rf & 2) {
@@ -21667,53 +21715,53 @@ function SymphiqFunnelAnalysisDashboardComponent_Conditional_69_Template(rf, ctx
21667
21715
  i0.ɵɵadvance();
21668
21716
  i0.ɵɵproperty("ngClass", ctx_r2.isLightMode() ? "text-blue-600 hover:text-blue-800 hover:bg-blue-100" : "text-blue-400 hover:text-blue-200 hover:bg-blue-800/50");
21669
21717
  } }
21670
- function SymphiqFunnelAnalysisDashboardComponent_Conditional_71_Template(rf, ctx) { if (rf & 1) {
21718
+ function SymphiqFunnelAnalysisDashboardComponent_Conditional_65_Template(rf, ctx) { if (rf & 1) {
21671
21719
  const _r6 = i0.ɵɵgetCurrentView();
21672
21720
  i0.ɵɵelementStart(0, "button", 66);
21673
- i0.ɵɵlistener("click", function SymphiqFunnelAnalysisDashboardComponent_Conditional_71_Template_button_click_0_listener() { i0.ɵɵrestoreView(_r6); const ctx_r2 = i0.ɵɵnextContext(); return i0.ɵɵresetView(ctx_r2.scrollToTop()); });
21721
+ i0.ɵɵlistener("click", function SymphiqFunnelAnalysisDashboardComponent_Conditional_65_Template_button_click_0_listener() { i0.ɵɵrestoreView(_r6); const ctx_r2 = i0.ɵɵnextContext(); return i0.ɵɵresetView(ctx_r2.scrollToTop()); });
21674
21722
  i0.ɵɵelementEnd();
21675
21723
  } if (rf & 2) {
21676
21724
  const ctx_r2 = i0.ɵɵnextContext();
21677
21725
  i0.ɵɵproperty("title", "Scroll to Top")("ngClass", ctx_r2.isLightMode() ? "bg-slate-300 hover:bg-blue-500" : "bg-slate-600 hover:bg-blue-400");
21678
21726
  } }
21679
- function SymphiqFunnelAnalysisDashboardComponent_Conditional_72_Template(rf, ctx) { if (rf & 1) {
21727
+ function SymphiqFunnelAnalysisDashboardComponent_Conditional_66_Template(rf, ctx) { if (rf & 1) {
21680
21728
  const _r7 = i0.ɵɵgetCurrentView();
21681
21729
  i0.ɵɵelementStart(0, "button", 66);
21682
- i0.ɵɵlistener("click", function SymphiqFunnelAnalysisDashboardComponent_Conditional_72_Template_button_click_0_listener() { i0.ɵɵrestoreView(_r7); const ctx_r2 = i0.ɵɵnextContext(); return i0.ɵɵresetView(ctx_r2.scrollToSection("insights-section")); });
21730
+ i0.ɵɵlistener("click", function SymphiqFunnelAnalysisDashboardComponent_Conditional_66_Template_button_click_0_listener() { i0.ɵɵrestoreView(_r7); const ctx_r2 = i0.ɵɵnextContext(); return i0.ɵɵresetView(ctx_r2.scrollToSection("insights-section")); });
21683
21731
  i0.ɵɵelementEnd();
21684
21732
  } if (rf & 2) {
21685
21733
  const ctx_r2 = i0.ɵɵnextContext();
21686
21734
  i0.ɵɵproperty("title", "Key Insights")("ngClass", ctx_r2.isLightMode() ? "bg-slate-300 hover:bg-blue-500" : "bg-slate-600 hover:bg-blue-400");
21687
21735
  } }
21688
- function SymphiqFunnelAnalysisDashboardComponent_Conditional_73_Template(rf, ctx) { if (rf & 1) {
21736
+ function SymphiqFunnelAnalysisDashboardComponent_Conditional_67_Template(rf, ctx) { if (rf & 1) {
21689
21737
  const _r8 = i0.ɵɵgetCurrentView();
21690
21738
  i0.ɵɵelementStart(0, "button", 66);
21691
- i0.ɵɵlistener("click", function SymphiqFunnelAnalysisDashboardComponent_Conditional_73_Template_button_click_0_listener() { i0.ɵɵrestoreView(_r8); const ctx_r2 = i0.ɵɵnextContext(); return i0.ɵɵresetView(ctx_r2.scrollToSection("metrics-section")); });
21739
+ i0.ɵɵlistener("click", function SymphiqFunnelAnalysisDashboardComponent_Conditional_67_Template_button_click_0_listener() { i0.ɵɵrestoreView(_r8); const ctx_r2 = i0.ɵɵnextContext(); return i0.ɵɵresetView(ctx_r2.scrollToSection("metrics-section")); });
21692
21740
  i0.ɵɵelementEnd();
21693
21741
  } if (rf & 2) {
21694
21742
  const ctx_r2 = i0.ɵɵnextContext();
21695
21743
  i0.ɵɵproperty("title", "Performance Metrics")("ngClass", ctx_r2.isLightMode() ? "bg-slate-300 hover:bg-blue-500" : "bg-slate-600 hover:bg-blue-400");
21696
21744
  } }
21697
- function SymphiqFunnelAnalysisDashboardComponent_Conditional_74_Template(rf, ctx) { if (rf & 1) {
21745
+ function SymphiqFunnelAnalysisDashboardComponent_Conditional_68_Template(rf, ctx) { if (rf & 1) {
21698
21746
  const _r9 = i0.ɵɵgetCurrentView();
21699
21747
  i0.ɵɵelementStart(0, "button", 66);
21700
- i0.ɵɵlistener("click", function SymphiqFunnelAnalysisDashboardComponent_Conditional_74_Template_button_click_0_listener() { i0.ɵɵrestoreView(_r9); const ctx_r2 = i0.ɵɵnextContext(); return i0.ɵɵresetView(ctx_r2.scrollToSection("breakdowns-section")); });
21748
+ i0.ɵɵlistener("click", function SymphiqFunnelAnalysisDashboardComponent_Conditional_68_Template_button_click_0_listener() { i0.ɵɵrestoreView(_r9); const ctx_r2 = i0.ɵɵnextContext(); return i0.ɵɵresetView(ctx_r2.scrollToSection("breakdowns-section")); });
21701
21749
  i0.ɵɵelementEnd();
21702
21750
  } if (rf & 2) {
21703
21751
  const ctx_r2 = i0.ɵɵnextContext();
21704
21752
  i0.ɵɵproperty("title", "Performance Breakdowns")("ngClass", ctx_r2.isLightMode() ? "bg-slate-300 hover:bg-blue-500" : "bg-slate-600 hover:bg-blue-400");
21705
21753
  } }
21706
- function SymphiqFunnelAnalysisDashboardComponent_Conditional_75_Template(rf, ctx) { if (rf & 1) {
21754
+ function SymphiqFunnelAnalysisDashboardComponent_Conditional_69_Template(rf, ctx) { if (rf & 1) {
21707
21755
  const _r10 = i0.ɵɵgetCurrentView();
21708
21756
  i0.ɵɵelementStart(0, "button", 66);
21709
- i0.ɵɵlistener("click", function SymphiqFunnelAnalysisDashboardComponent_Conditional_75_Template_button_click_0_listener() { i0.ɵɵrestoreView(_r10); const ctx_r2 = i0.ɵɵnextContext(); return i0.ɵɵresetView(ctx_r2.scrollToSection("competitive-section")); });
21757
+ i0.ɵɵlistener("click", function SymphiqFunnelAnalysisDashboardComponent_Conditional_69_Template_button_click_0_listener() { i0.ɵɵrestoreView(_r10); const ctx_r2 = i0.ɵɵnextContext(); return i0.ɵɵresetView(ctx_r2.scrollToSection("competitive-section")); });
21710
21758
  i0.ɵɵelementEnd();
21711
21759
  } if (rf & 2) {
21712
21760
  const ctx_r2 = i0.ɵɵnextContext();
21713
21761
  i0.ɵɵproperty("title", "Competitive Intelligence")("ngClass", ctx_r2.isLightMode() ? "bg-slate-300 hover:bg-indigo-500" : "bg-slate-600 hover:bg-indigo-400");
21714
21762
  } }
21715
- function SymphiqFunnelAnalysisDashboardComponent_Conditional_78_Conditional_1_Template(rf, ctx) { if (rf & 1) {
21716
- i0.ɵɵelementStart(0, "div", 67)(1, "div", 69)(2, "div", 14);
21763
+ function SymphiqFunnelAnalysisDashboardComponent_Conditional_72_Conditional_1_Template(rf, ctx) { if (rf & 1) {
21764
+ i0.ɵɵelementStart(0, "div", 67)(1, "div", 69)(2, "div", 11);
21717
21765
  i0.ɵɵelement(3, "symphiq-skeleton-loader", 70);
21718
21766
  i0.ɵɵelementStart(4, "div", 71);
21719
21767
  i0.ɵɵelement(5, "symphiq-skeleton-loader", 70)(6, "symphiq-skeleton-loader", 70);
@@ -21744,25 +21792,25 @@ function SymphiqFunnelAnalysisDashboardComponent_Conditional_78_Conditional_1_Te
21744
21792
  i0.ɵɵadvance();
21745
21793
  i0.ɵɵproperty("width", "100%")("height", "200px")("isLightMode", ctx_r2.isLightMode());
21746
21794
  } }
21747
- function SymphiqFunnelAnalysisDashboardComponent_Conditional_78_Conditional_2_Template(rf, ctx) { if (rf & 1) {
21795
+ function SymphiqFunnelAnalysisDashboardComponent_Conditional_72_Conditional_2_Template(rf, ctx) { if (rf & 1) {
21748
21796
  const _r11 = i0.ɵɵgetCurrentView();
21749
21797
  i0.ɵɵelementStart(0, "symphiq-funnel-analysis-overall-assessment", 74);
21750
- i0.ɵɵlistener("scrollToSection", function SymphiqFunnelAnalysisDashboardComponent_Conditional_78_Conditional_2_Template_symphiq_funnel_analysis_overall_assessment_scrollToSection_0_listener($event) { i0.ɵɵrestoreView(_r11); const ctx_r2 = i0.ɵɵnextContext(2); return i0.ɵɵresetView(ctx_r2.scrollToSection($event)); });
21798
+ i0.ɵɵlistener("scrollToSection", function SymphiqFunnelAnalysisDashboardComponent_Conditional_72_Conditional_2_Template_symphiq_funnel_analysis_overall_assessment_scrollToSection_0_listener($event) { i0.ɵɵrestoreView(_r11); const ctx_r2 = i0.ɵɵnextContext(2); return i0.ɵɵresetView(ctx_r2.scrollToSection($event)); });
21751
21799
  i0.ɵɵelementEnd();
21752
21800
  } if (rf & 2) {
21753
21801
  const ctx_r2 = i0.ɵɵnextContext(2);
21754
21802
  i0.ɵɵproperty("assessment", ctx_r2.performanceOverview().overallAssessment || i0.ɵɵpureFunction0(8, _c1))("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());
21755
21803
  } }
21756
- function SymphiqFunnelAnalysisDashboardComponent_Conditional_78_Template(rf, ctx) { if (rf & 1) {
21757
- i0.ɵɵelementStart(0, "div", 48);
21758
- i0.ɵɵconditionalCreate(1, SymphiqFunnelAnalysisDashboardComponent_Conditional_78_Conditional_1_Template, 14, 25, "div", 67)(2, SymphiqFunnelAnalysisDashboardComponent_Conditional_78_Conditional_2_Template, 1, 9, "symphiq-funnel-analysis-overall-assessment", 68);
21804
+ function SymphiqFunnelAnalysisDashboardComponent_Conditional_72_Template(rf, ctx) { if (rf & 1) {
21805
+ i0.ɵɵelementStart(0, "div", 45);
21806
+ i0.ɵɵconditionalCreate(1, SymphiqFunnelAnalysisDashboardComponent_Conditional_72_Conditional_1_Template, 14, 25, "div", 67)(2, SymphiqFunnelAnalysisDashboardComponent_Conditional_72_Conditional_2_Template, 1, 9, "symphiq-funnel-analysis-overall-assessment", 68);
21759
21807
  i0.ɵɵelementEnd();
21760
21808
  } if (rf & 2) {
21761
21809
  const ctx_r2 = i0.ɵɵnextContext();
21762
21810
  i0.ɵɵadvance();
21763
21811
  i0.ɵɵconditional(ctx_r2.isDataLoading() ? 1 : 2);
21764
21812
  } }
21765
- function SymphiqFunnelAnalysisDashboardComponent_Conditional_79_Conditional_0_Template(rf, ctx) { if (rf & 1) {
21813
+ function SymphiqFunnelAnalysisDashboardComponent_Conditional_73_Conditional_0_Template(rf, ctx) { if (rf & 1) {
21766
21814
  i0.ɵɵelementStart(0, "div", 75)(1, "div", 86);
21767
21815
  i0.ɵɵelement(2, "div", 87);
21768
21816
  i0.ɵɵelementEnd();
@@ -21780,7 +21828,7 @@ function SymphiqFunnelAnalysisDashboardComponent_Conditional_79_Conditional_0_Te
21780
21828
  i0.ɵɵadvance();
21781
21829
  i0.ɵɵproperty("ngClass", ctx_r2.isLightMode() ? "text-blue-500" : "text-blue-400");
21782
21830
  } }
21783
- function SymphiqFunnelAnalysisDashboardComponent_Conditional_79_Conditional_14_For_2_Template(rf, ctx) { if (rf & 1) {
21831
+ function SymphiqFunnelAnalysisDashboardComponent_Conditional_73_Conditional_14_For_2_Template(rf, ctx) { if (rf & 1) {
21784
21832
  i0.ɵɵelementStart(0, "div", 92)(1, "div", 93)(2, "div", 94);
21785
21833
  i0.ɵɵelement(3, "symphiq-skeleton-loader", 70)(4, "symphiq-skeleton-loader", 70);
21786
21834
  i0.ɵɵelementEnd();
@@ -21813,15 +21861,15 @@ function SymphiqFunnelAnalysisDashboardComponent_Conditional_79_Conditional_14_F
21813
21861
  i0.ɵɵadvance();
21814
21862
  i0.ɵɵproperty("width", "80px")("height", "28px")("isLightMode", ctx_r2.isLightMode());
21815
21863
  } }
21816
- function SymphiqFunnelAnalysisDashboardComponent_Conditional_79_Conditional_14_Template(rf, ctx) { if (rf & 1) {
21864
+ function SymphiqFunnelAnalysisDashboardComponent_Conditional_73_Conditional_14_Template(rf, ctx) { if (rf & 1) {
21817
21865
  i0.ɵɵelementStart(0, "div", 84);
21818
- i0.ɵɵrepeaterCreate(1, SymphiqFunnelAnalysisDashboardComponent_Conditional_79_Conditional_14_For_2_Template, 14, 28, "div", 92, i0.ɵɵrepeaterTrackByIdentity);
21866
+ i0.ɵɵrepeaterCreate(1, SymphiqFunnelAnalysisDashboardComponent_Conditional_73_Conditional_14_For_2_Template, 14, 28, "div", 92, i0.ɵɵrepeaterTrackByIdentity);
21819
21867
  i0.ɵɵelementEnd();
21820
21868
  } if (rf & 2) {
21821
21869
  i0.ɵɵadvance();
21822
21870
  i0.ɵɵrepeater(i0.ɵɵpureFunction0(0, _c2));
21823
21871
  } }
21824
- function SymphiqFunnelAnalysisDashboardComponent_Conditional_79_Conditional_15_For_2_Template(rf, ctx) { if (rf & 1) {
21872
+ function SymphiqFunnelAnalysisDashboardComponent_Conditional_73_Conditional_15_For_2_Template(rf, ctx) { if (rf & 1) {
21825
21873
  i0.ɵɵelementStart(0, "div", 98);
21826
21874
  i0.ɵɵelement(1, "symphiq-funnel-analysis-insight-card", 99);
21827
21875
  i0.ɵɵelementEnd();
@@ -21835,16 +21883,16 @@ function SymphiqFunnelAnalysisDashboardComponent_Conditional_79_Conditional_15_F
21835
21883
  i0.ɵɵadvance();
21836
21884
  i0.ɵɵproperty("insight", insight_r12)("allMetrics", ctx_r2.allMetrics())("charts", ctx_r2.chartsForInsight(insight_r12))("allCharts", ctx_r2.allCharts())("isLightMode", ctx_r2.isLightMode())("viewMode", ctx_r2.viewMode())("isCompactMode", false);
21837
21885
  } }
21838
- function SymphiqFunnelAnalysisDashboardComponent_Conditional_79_Conditional_15_Template(rf, ctx) { if (rf & 1) {
21886
+ function SymphiqFunnelAnalysisDashboardComponent_Conditional_73_Conditional_15_Template(rf, ctx) { if (rf & 1) {
21839
21887
  i0.ɵɵelementStart(0, "div", 84);
21840
- i0.ɵɵrepeaterCreate(1, SymphiqFunnelAnalysisDashboardComponent_Conditional_79_Conditional_15_For_2_Template, 2, 13, "div", 97, i0.ɵɵrepeaterTrackByIndex);
21888
+ i0.ɵɵrepeaterCreate(1, SymphiqFunnelAnalysisDashboardComponent_Conditional_73_Conditional_15_For_2_Template, 2, 13, "div", 97, i0.ɵɵrepeaterTrackByIndex);
21841
21889
  i0.ɵɵelementEnd();
21842
21890
  } if (rf & 2) {
21843
21891
  const ctx_r2 = i0.ɵɵnextContext(2);
21844
21892
  i0.ɵɵadvance();
21845
21893
  i0.ɵɵrepeater(ctx_r2.insights());
21846
21894
  } }
21847
- function SymphiqFunnelAnalysisDashboardComponent_Conditional_79_Conditional_16_For_2_Template(rf, ctx) { if (rf & 1) {
21895
+ function SymphiqFunnelAnalysisDashboardComponent_Conditional_73_Conditional_16_For_2_Template(rf, ctx) { if (rf & 1) {
21848
21896
  i0.ɵɵelementStart(0, "div", 98);
21849
21897
  i0.ɵɵelement(1, "symphiq-funnel-analysis-insight-card", 99);
21850
21898
  i0.ɵɵelementEnd();
@@ -21857,20 +21905,20 @@ function SymphiqFunnelAnalysisDashboardComponent_Conditional_79_Conditional_16_F
21857
21905
  i0.ɵɵadvance();
21858
21906
  i0.ɵɵproperty("insight", insight_r14)("allMetrics", ctx_r2.allMetrics())("charts", ctx_r2.chartsForInsight(insight_r14))("allCharts", ctx_r2.allCharts())("isLightMode", ctx_r2.isLightMode())("viewMode", ctx_r2.viewMode())("isCompactMode", true);
21859
21907
  } }
21860
- function SymphiqFunnelAnalysisDashboardComponent_Conditional_79_Conditional_16_Template(rf, ctx) { if (rf & 1) {
21908
+ function SymphiqFunnelAnalysisDashboardComponent_Conditional_73_Conditional_16_Template(rf, ctx) { if (rf & 1) {
21861
21909
  i0.ɵɵelementStart(0, "div", 85);
21862
- i0.ɵɵrepeaterCreate(1, SymphiqFunnelAnalysisDashboardComponent_Conditional_79_Conditional_16_For_2_Template, 2, 11, "div", 100, i0.ɵɵrepeaterTrackByIndex);
21910
+ i0.ɵɵrepeaterCreate(1, SymphiqFunnelAnalysisDashboardComponent_Conditional_73_Conditional_16_For_2_Template, 2, 11, "div", 100, i0.ɵɵrepeaterTrackByIndex);
21863
21911
  i0.ɵɵelementEnd();
21864
21912
  } if (rf & 2) {
21865
21913
  const ctx_r2 = i0.ɵɵnextContext(2);
21866
21914
  i0.ɵɵadvance();
21867
21915
  i0.ɵɵrepeater(ctx_r2.insights());
21868
21916
  } }
21869
- function SymphiqFunnelAnalysisDashboardComponent_Conditional_79_Template(rf, ctx) { if (rf & 1) {
21870
- i0.ɵɵconditionalCreate(0, SymphiqFunnelAnalysisDashboardComponent_Conditional_79_Conditional_0_Template, 7, 3, "div", 75);
21917
+ function SymphiqFunnelAnalysisDashboardComponent_Conditional_73_Template(rf, ctx) { if (rf & 1) {
21918
+ i0.ɵɵconditionalCreate(0, SymphiqFunnelAnalysisDashboardComponent_Conditional_73_Conditional_0_Template, 7, 3, "div", 75);
21871
21919
  i0.ɵɵelementStart(1, "section", 76);
21872
21920
  i0.ɵɵelement(2, "div", 77);
21873
- i0.ɵɵelementStart(3, "div", 78)(4, "div", 79)(5, "div", 14)(6, "div", 80)(7, "div", 14);
21921
+ i0.ɵɵelementStart(3, "div", 78)(4, "div", 79)(5, "div", 11)(6, "div", 80)(7, "div", 11);
21874
21922
  i0.ɵɵnamespaceSVG();
21875
21923
  i0.ɵɵelementStart(8, "svg", 81);
21876
21924
  i0.ɵɵelement(9, "path", 82);
@@ -21879,10 +21927,10 @@ function SymphiqFunnelAnalysisDashboardComponent_Conditional_79_Template(rf, ctx
21879
21927
  i0.ɵɵelementStart(10, "h2", 83);
21880
21928
  i0.ɵɵtext(11, "Key Insights");
21881
21929
  i0.ɵɵelementEnd()()()();
21882
- i0.ɵɵelementStart(12, "span", 32);
21930
+ i0.ɵɵelementStart(12, "span", 29);
21883
21931
  i0.ɵɵtext(13);
21884
21932
  i0.ɵɵelementEnd()();
21885
- i0.ɵɵconditionalCreate(14, SymphiqFunnelAnalysisDashboardComponent_Conditional_79_Conditional_14_Template, 3, 1, "div", 84)(15, SymphiqFunnelAnalysisDashboardComponent_Conditional_79_Conditional_15_Template, 3, 0, "div", 84)(16, SymphiqFunnelAnalysisDashboardComponent_Conditional_79_Conditional_16_Template, 3, 0, "div", 85);
21933
+ i0.ɵɵconditionalCreate(14, SymphiqFunnelAnalysisDashboardComponent_Conditional_73_Conditional_14_Template, 3, 1, "div", 84)(15, SymphiqFunnelAnalysisDashboardComponent_Conditional_73_Conditional_15_Template, 3, 0, "div", 84)(16, SymphiqFunnelAnalysisDashboardComponent_Conditional_73_Conditional_16_Template, 3, 0, "div", 85);
21886
21934
  i0.ɵɵelementEnd()();
21887
21935
  } if (rf & 2) {
21888
21936
  const ctx_r2 = i0.ɵɵnextContext();
@@ -21902,7 +21950,7 @@ function SymphiqFunnelAnalysisDashboardComponent_Conditional_79_Template(rf, ctx
21902
21950
  i0.ɵɵadvance();
21903
21951
  i0.ɵɵconditional(ctx_r2.isDataLoading() || ctx_r2.viewModeService.isExpanded() && ctx_r2.viewModeService.getIsTransitioning() ? 14 : ctx_r2.viewModeService.isExpanded() ? 15 : 16);
21904
21952
  } }
21905
- function SymphiqFunnelAnalysisDashboardComponent_Conditional_80_Conditional_0_Template(rf, ctx) { if (rf & 1) {
21953
+ function SymphiqFunnelAnalysisDashboardComponent_Conditional_74_Conditional_0_Template(rf, ctx) { if (rf & 1) {
21906
21954
  i0.ɵɵelementStart(0, "div", 101)(1, "div", 86);
21907
21955
  i0.ɵɵelement(2, "div", 87);
21908
21956
  i0.ɵɵelementEnd();
@@ -21920,12 +21968,12 @@ function SymphiqFunnelAnalysisDashboardComponent_Conditional_80_Conditional_0_Te
21920
21968
  i0.ɵɵadvance();
21921
21969
  i0.ɵɵproperty("ngClass", ctx_r2.isLightMode() ? "text-emerald-500" : "text-emerald-400");
21922
21970
  } }
21923
- function SymphiqFunnelAnalysisDashboardComponent_Conditional_80_Conditional_14_Template(rf, ctx) { if (rf & 1) {
21971
+ function SymphiqFunnelAnalysisDashboardComponent_Conditional_74_Conditional_14_Template(rf, ctx) { if (rf & 1) {
21924
21972
  i0.ɵɵelementStart(0, "div", 108);
21925
21973
  i0.ɵɵelement(1, "div", 118);
21926
21974
  i0.ɵɵelementEnd();
21927
21975
  } }
21928
- function SymphiqFunnelAnalysisDashboardComponent_Conditional_80_For_17_Conditional_0_Template(rf, ctx) { if (rf & 1) {
21976
+ function SymphiqFunnelAnalysisDashboardComponent_Conditional_74_For_17_Conditional_0_Template(rf, ctx) { if (rf & 1) {
21929
21977
  i0.ɵɵelementStart(0, "option", 119);
21930
21978
  i0.ɵɵtext(1);
21931
21979
  i0.ɵɵelementEnd();
@@ -21935,8 +21983,8 @@ function SymphiqFunnelAnalysisDashboardComponent_Conditional_80_For_17_Condition
21935
21983
  i0.ɵɵadvance();
21936
21984
  i0.ɵɵtextInterpolate(cat_r17.label);
21937
21985
  } }
21938
- function SymphiqFunnelAnalysisDashboardComponent_Conditional_80_For_17_Conditional_1_Template(rf, ctx) { if (rf & 1) {
21939
- i0.ɵɵelementStart(0, "option", 29);
21986
+ function SymphiqFunnelAnalysisDashboardComponent_Conditional_74_For_17_Conditional_1_Template(rf, ctx) { if (rf & 1) {
21987
+ i0.ɵɵelementStart(0, "option", 26);
21940
21988
  i0.ɵɵtext(1);
21941
21989
  i0.ɵɵelementEnd();
21942
21990
  } if (rf & 2) {
@@ -21945,24 +21993,24 @@ function SymphiqFunnelAnalysisDashboardComponent_Conditional_80_For_17_Condition
21945
21993
  i0.ɵɵadvance();
21946
21994
  i0.ɵɵtextInterpolate(cat_r17.label);
21947
21995
  } }
21948
- function SymphiqFunnelAnalysisDashboardComponent_Conditional_80_For_17_Template(rf, ctx) { if (rf & 1) {
21949
- i0.ɵɵconditionalCreate(0, SymphiqFunnelAnalysisDashboardComponent_Conditional_80_For_17_Conditional_0_Template, 2, 2, "option", 119)(1, SymphiqFunnelAnalysisDashboardComponent_Conditional_80_For_17_Conditional_1_Template, 2, 2, "option", 29);
21996
+ function SymphiqFunnelAnalysisDashboardComponent_Conditional_74_For_17_Template(rf, ctx) { if (rf & 1) {
21997
+ i0.ɵɵconditionalCreate(0, SymphiqFunnelAnalysisDashboardComponent_Conditional_74_For_17_Conditional_0_Template, 2, 2, "option", 119)(1, SymphiqFunnelAnalysisDashboardComponent_Conditional_74_For_17_Conditional_1_Template, 2, 2, "option", 26);
21950
21998
  } if (rf & 2) {
21951
21999
  const cat_r17 = ctx.$implicit;
21952
22000
  i0.ɵɵconditional(cat_r17.divider ? 0 : 1);
21953
22001
  } }
21954
- function SymphiqFunnelAnalysisDashboardComponent_Conditional_80_Conditional_20_Template(rf, ctx) { if (rf & 1) {
22002
+ function SymphiqFunnelAnalysisDashboardComponent_Conditional_74_Conditional_20_Template(rf, ctx) { if (rf & 1) {
21955
22003
  i0.ɵɵnamespaceSVG();
21956
22004
  i0.ɵɵelement(0, "path", 111);
21957
22005
  } }
21958
- function SymphiqFunnelAnalysisDashboardComponent_Conditional_80_Conditional_21_Template(rf, ctx) { if (rf & 1) {
22006
+ function SymphiqFunnelAnalysisDashboardComponent_Conditional_74_Conditional_21_Template(rf, ctx) { if (rf & 1) {
21959
22007
  i0.ɵɵnamespaceSVG();
21960
22008
  i0.ɵɵelement(0, "path", 112);
21961
22009
  } }
21962
- function SymphiqFunnelAnalysisDashboardComponent_Conditional_80_For_27_Conditional_0_Template(rf, ctx) { if (rf & 1) {
22010
+ function SymphiqFunnelAnalysisDashboardComponent_Conditional_74_For_27_Conditional_0_Template(rf, ctx) { if (rf & 1) {
21963
22011
  const _r18 = i0.ɵɵgetCurrentView();
21964
22012
  i0.ɵɵelementStart(0, "button", 121);
21965
- i0.ɵɵlistener("click", function SymphiqFunnelAnalysisDashboardComponent_Conditional_80_For_27_Conditional_0_Template_button_click_0_listener() { i0.ɵɵrestoreView(_r18); const cat_r19 = i0.ɵɵnextContext().$implicit; const ctx_r2 = i0.ɵɵnextContext(2); return i0.ɵɵresetView(ctx_r2.changeCategoryFilter(cat_r19.value)); });
22013
+ i0.ɵɵlistener("click", function SymphiqFunnelAnalysisDashboardComponent_Conditional_74_For_27_Conditional_0_Template_button_click_0_listener() { i0.ɵɵrestoreView(_r18); const cat_r19 = i0.ɵɵnextContext().$implicit; const ctx_r2 = i0.ɵɵnextContext(2); return i0.ɵɵresetView(ctx_r2.changeCategoryFilter(cat_r19.value)); });
21966
22014
  i0.ɵɵtext(1);
21967
22015
  i0.ɵɵelementEnd();
21968
22016
  } if (rf & 2) {
@@ -21973,20 +22021,20 @@ function SymphiqFunnelAnalysisDashboardComponent_Conditional_80_For_27_Condition
21973
22021
  i0.ɵɵadvance();
21974
22022
  i0.ɵɵtextInterpolate1(" ", cat_r19.label, " ");
21975
22023
  } }
21976
- function SymphiqFunnelAnalysisDashboardComponent_Conditional_80_For_27_Template(rf, ctx) { if (rf & 1) {
21977
- i0.ɵɵconditionalCreate(0, SymphiqFunnelAnalysisDashboardComponent_Conditional_80_For_27_Conditional_0_Template, 2, 4, "button", 120);
22024
+ function SymphiqFunnelAnalysisDashboardComponent_Conditional_74_For_27_Template(rf, ctx) { if (rf & 1) {
22025
+ i0.ɵɵconditionalCreate(0, SymphiqFunnelAnalysisDashboardComponent_Conditional_74_For_27_Conditional_0_Template, 2, 4, "button", 120);
21978
22026
  } if (rf & 2) {
21979
22027
  const cat_r19 = ctx.$implicit;
21980
22028
  i0.ɵɵconditional(!cat_r19.divider ? 0 : -1);
21981
22029
  } }
21982
- function SymphiqFunnelAnalysisDashboardComponent_Conditional_80_Conditional_28_For_2_For_10_Template(rf, ctx) { if (rf & 1) {
22030
+ function SymphiqFunnelAnalysisDashboardComponent_Conditional_74_Conditional_28_For_2_For_10_Template(rf, ctx) { if (rf & 1) {
21983
22031
  i0.ɵɵelement(0, "symphiq-skeleton-loader", 70);
21984
22032
  } if (rf & 2) {
21985
22033
  const ctx_r2 = i0.ɵɵnextContext(4);
21986
22034
  i0.ɵɵproperty("width", "100%")("height", "120px")("isLightMode", ctx_r2.isLightMode());
21987
22035
  } }
21988
- function SymphiqFunnelAnalysisDashboardComponent_Conditional_80_Conditional_28_For_2_Template(rf, ctx) { if (rf & 1) {
21989
- i0.ɵɵelementStart(0, "div", 122)(1, "div", 123)(2, "div", 14);
22036
+ function SymphiqFunnelAnalysisDashboardComponent_Conditional_74_Conditional_28_For_2_Template(rf, ctx) { if (rf & 1) {
22037
+ i0.ɵɵelementStart(0, "div", 122)(1, "div", 123)(2, "div", 11);
21990
22038
  i0.ɵɵelement(3, "symphiq-skeleton-loader", 70);
21991
22039
  i0.ɵɵelementStart(4, "div", 72);
21992
22040
  i0.ɵɵelement(5, "symphiq-skeleton-loader", 70)(6, "symphiq-skeleton-loader", 70);
@@ -21994,7 +22042,7 @@ function SymphiqFunnelAnalysisDashboardComponent_Conditional_80_Conditional_28_F
21994
22042
  i0.ɵɵelement(7, "symphiq-skeleton-loader", 70);
21995
22043
  i0.ɵɵelementEnd();
21996
22044
  i0.ɵɵelementStart(8, "div", 124);
21997
- i0.ɵɵrepeaterCreate(9, SymphiqFunnelAnalysisDashboardComponent_Conditional_80_Conditional_28_For_2_For_10_Template, 1, 3, "symphiq-skeleton-loader", 70, i0.ɵɵrepeaterTrackByIdentity);
22045
+ i0.ɵɵrepeaterCreate(9, SymphiqFunnelAnalysisDashboardComponent_Conditional_74_Conditional_28_For_2_For_10_Template, 1, 3, "symphiq-skeleton-loader", 70, i0.ɵɵrepeaterTrackByIdentity);
21998
22046
  i0.ɵɵelementEnd()();
21999
22047
  } if (rf & 2) {
22000
22048
  const ctx_r2 = i0.ɵɵnextContext(3);
@@ -22010,60 +22058,60 @@ function SymphiqFunnelAnalysisDashboardComponent_Conditional_80_Conditional_28_F
22010
22058
  i0.ɵɵadvance(2);
22011
22059
  i0.ɵɵrepeater(i0.ɵɵpureFunction0(13, _c4));
22012
22060
  } }
22013
- function SymphiqFunnelAnalysisDashboardComponent_Conditional_80_Conditional_28_Template(rf, ctx) { if (rf & 1) {
22061
+ function SymphiqFunnelAnalysisDashboardComponent_Conditional_74_Conditional_28_Template(rf, ctx) { if (rf & 1) {
22014
22062
  i0.ɵɵelementStart(0, "div", 115);
22015
- i0.ɵɵrepeaterCreate(1, SymphiqFunnelAnalysisDashboardComponent_Conditional_80_Conditional_28_For_2_Template, 11, 14, "div", 122, i0.ɵɵrepeaterTrackByIdentity);
22063
+ i0.ɵɵrepeaterCreate(1, SymphiqFunnelAnalysisDashboardComponent_Conditional_74_Conditional_28_For_2_Template, 11, 14, "div", 122, i0.ɵɵrepeaterTrackByIdentity);
22016
22064
  i0.ɵɵelementEnd();
22017
22065
  } if (rf & 2) {
22018
22066
  i0.ɵɵadvance();
22019
22067
  i0.ɵɵrepeater(i0.ɵɵpureFunction0(0, _c3));
22020
22068
  } }
22021
- function SymphiqFunnelAnalysisDashboardComponent_Conditional_80_Conditional_29_For_2_Conditional_2_Conditional_0_For_2_Template(rf, ctx) { if (rf & 1) {
22069
+ function SymphiqFunnelAnalysisDashboardComponent_Conditional_74_Conditional_29_For_2_Conditional_2_Conditional_0_For_2_Template(rf, ctx) { if (rf & 1) {
22022
22070
  i0.ɵɵelementStart(0, "div", 131);
22023
22071
  i0.ɵɵelement(1, "symphiq-funnel-analysis-metric-card", 132);
22024
22072
  i0.ɵɵelementEnd();
22025
22073
  } if (rf & 2) {
22026
22074
  const metric_r20 = ctx.$implicit;
22027
- const ɵ$index_447_r21 = ctx.$index;
22028
- const ɵ$index_438_r22 = i0.ɵɵnextContext(3).$index;
22075
+ const ɵ$index_449_r21 = ctx.$index;
22076
+ const ɵ$index_440_r22 = i0.ɵɵnextContext(3).$index;
22029
22077
  const ctx_r2 = i0.ɵɵnextContext(3);
22030
- i0.ɵɵclassMap(ctx_r2.getBentoCardClass(metric_r20, ɵ$index_447_r21));
22031
- i0.ɵɵstyleProp("animation-delay", 0.6 + ɵ$index_438_r22 * 0.15 + ɵ$index_447_r21 * 0.08 + "s");
22078
+ i0.ɵɵclassMap(ctx_r2.getBentoCardClass(metric_r20, ɵ$index_449_r21));
22079
+ i0.ɵɵstyleProp("animation-delay", 0.6 + ɵ$index_440_r22 * 0.15 + ɵ$index_449_r21 * 0.08 + "s");
22032
22080
  i0.ɵɵadvance();
22033
22081
  i0.ɵɵproperty("metric", metric_r20)("insights", ctx_r2.insights())("charts", ctx_r2.chartsForMetric(metric_r20))("allCharts", ctx_r2.allCharts())("analysis", ctx_r2.analysisData())("isLightMode", ctx_r2.isLightMode())("viewMode", ctx_r2.viewMode())("isCompactMode", false);
22034
22082
  } }
22035
- function SymphiqFunnelAnalysisDashboardComponent_Conditional_80_Conditional_29_For_2_Conditional_2_Conditional_0_Template(rf, ctx) { if (rf & 1) {
22083
+ function SymphiqFunnelAnalysisDashboardComponent_Conditional_74_Conditional_29_For_2_Conditional_2_Conditional_0_Template(rf, ctx) { if (rf & 1) {
22036
22084
  i0.ɵɵelementStart(0, "div", 128);
22037
- i0.ɵɵrepeaterCreate(1, SymphiqFunnelAnalysisDashboardComponent_Conditional_80_Conditional_29_For_2_Conditional_2_Conditional_0_For_2_Template, 2, 12, "div", 130, i0.ɵɵrepeaterTrackByIndex);
22085
+ i0.ɵɵrepeaterCreate(1, SymphiqFunnelAnalysisDashboardComponent_Conditional_74_Conditional_29_For_2_Conditional_2_Conditional_0_For_2_Template, 2, 12, "div", 130, i0.ɵɵrepeaterTrackByIndex);
22038
22086
  i0.ɵɵelementEnd();
22039
22087
  } if (rf & 2) {
22040
22088
  const funnelGroup_r23 = i0.ɵɵnextContext(2).$implicit;
22041
22089
  i0.ɵɵadvance();
22042
22090
  i0.ɵɵrepeater(funnelGroup_r23.relatedMetrics);
22043
22091
  } }
22044
- function SymphiqFunnelAnalysisDashboardComponent_Conditional_80_Conditional_29_For_2_Conditional_2_Conditional_1_For_2_Template(rf, ctx) { if (rf & 1) {
22092
+ function SymphiqFunnelAnalysisDashboardComponent_Conditional_74_Conditional_29_For_2_Conditional_2_Conditional_1_For_2_Template(rf, ctx) { if (rf & 1) {
22045
22093
  i0.ɵɵelementStart(0, "div", 131);
22046
22094
  i0.ɵɵelement(1, "symphiq-funnel-analysis-metric-card", 127);
22047
22095
  i0.ɵɵelementEnd();
22048
22096
  } if (rf & 2) {
22049
22097
  const metric_r24 = ctx.$implicit;
22050
- const ɵ$index_455_r25 = ctx.$index;
22051
- const ɵ$index_438_r22 = i0.ɵɵnextContext(3).$index;
22098
+ const ɵ$index_457_r25 = ctx.$index;
22099
+ const ɵ$index_440_r22 = i0.ɵɵnextContext(3).$index;
22052
22100
  const ctx_r2 = i0.ɵɵnextContext(3);
22053
- i0.ɵɵstyleProp("animation-delay", 0.6 + ɵ$index_438_r22 * 0.15 + ɵ$index_455_r25 * 0.08 + "s");
22101
+ i0.ɵɵstyleProp("animation-delay", 0.6 + ɵ$index_440_r22 * 0.15 + ɵ$index_457_r25 * 0.08 + "s");
22054
22102
  i0.ɵɵadvance();
22055
22103
  i0.ɵɵproperty("metric", metric_r24)("insights", ctx_r2.insights())("charts", ctx_r2.chartsForMetric(metric_r24))("allCharts", ctx_r2.allCharts())("analysis", ctx_r2.analysisData())("isLightMode", ctx_r2.isLightMode())("viewMode", ctx_r2.viewMode())("isCompactMode", true);
22056
22104
  } }
22057
- function SymphiqFunnelAnalysisDashboardComponent_Conditional_80_Conditional_29_For_2_Conditional_2_Conditional_1_Template(rf, ctx) { if (rf & 1) {
22105
+ function SymphiqFunnelAnalysisDashboardComponent_Conditional_74_Conditional_29_For_2_Conditional_2_Conditional_1_Template(rf, ctx) { if (rf & 1) {
22058
22106
  i0.ɵɵelementStart(0, "div", 129);
22059
- i0.ɵɵrepeaterCreate(1, SymphiqFunnelAnalysisDashboardComponent_Conditional_80_Conditional_29_For_2_Conditional_2_Conditional_1_For_2_Template, 2, 10, "div", 133, i0.ɵɵrepeaterTrackByIndex);
22107
+ i0.ɵɵrepeaterCreate(1, SymphiqFunnelAnalysisDashboardComponent_Conditional_74_Conditional_29_For_2_Conditional_2_Conditional_1_For_2_Template, 2, 10, "div", 133, i0.ɵɵrepeaterTrackByIndex);
22060
22108
  i0.ɵɵelementEnd();
22061
22109
  } if (rf & 2) {
22062
22110
  const funnelGroup_r23 = i0.ɵɵnextContext(2).$implicit;
22063
22111
  i0.ɵɵadvance();
22064
22112
  i0.ɵɵrepeater(funnelGroup_r23.relatedMetrics);
22065
22113
  } }
22066
- function SymphiqFunnelAnalysisDashboardComponent_Conditional_80_Conditional_29_For_2_Conditional_2_Conditional_2_For_2_Template(rf, ctx) { if (rf & 1) {
22114
+ function SymphiqFunnelAnalysisDashboardComponent_Conditional_74_Conditional_29_For_2_Conditional_2_Conditional_2_For_2_Template(rf, ctx) { if (rf & 1) {
22067
22115
  i0.ɵɵelementStart(0, "div", 134)(1, "div", 93)(2, "div", 105);
22068
22116
  i0.ɵɵelement(3, "symphiq-skeleton-loader", 70)(4, "symphiq-skeleton-loader", 70);
22069
22117
  i0.ɵɵelementEnd();
@@ -22095,37 +22143,37 @@ function SymphiqFunnelAnalysisDashboardComponent_Conditional_80_Conditional_29_F
22095
22143
  i0.ɵɵadvance(2);
22096
22144
  i0.ɵɵproperty("width", "100%")("height", "120px")("isLightMode", ctx_r2.isLightMode());
22097
22145
  } }
22098
- function SymphiqFunnelAnalysisDashboardComponent_Conditional_80_Conditional_29_For_2_Conditional_2_Conditional_2_Template(rf, ctx) { if (rf & 1) {
22146
+ function SymphiqFunnelAnalysisDashboardComponent_Conditional_74_Conditional_29_For_2_Conditional_2_Conditional_2_Template(rf, ctx) { if (rf & 1) {
22099
22147
  i0.ɵɵelementStart(0, "div", 128);
22100
- i0.ɵɵrepeaterCreate(1, SymphiqFunnelAnalysisDashboardComponent_Conditional_80_Conditional_29_For_2_Conditional_2_Conditional_2_For_2_Template, 13, 25, "div", 134, i0.ɵɵrepeaterTrackByIdentity);
22148
+ i0.ɵɵrepeaterCreate(1, SymphiqFunnelAnalysisDashboardComponent_Conditional_74_Conditional_29_For_2_Conditional_2_Conditional_2_For_2_Template, 13, 25, "div", 134, i0.ɵɵrepeaterTrackByIdentity);
22101
22149
  i0.ɵɵelementEnd();
22102
22150
  } if (rf & 2) {
22103
22151
  i0.ɵɵadvance();
22104
22152
  i0.ɵɵrepeater(i0.ɵɵpureFunction0(0, _c4));
22105
22153
  } }
22106
- function SymphiqFunnelAnalysisDashboardComponent_Conditional_80_Conditional_29_For_2_Conditional_2_Template(rf, ctx) { if (rf & 1) {
22107
- i0.ɵɵconditionalCreate(0, SymphiqFunnelAnalysisDashboardComponent_Conditional_80_Conditional_29_For_2_Conditional_2_Conditional_0_Template, 3, 0, "div", 128)(1, SymphiqFunnelAnalysisDashboardComponent_Conditional_80_Conditional_29_For_2_Conditional_2_Conditional_1_Template, 3, 0, "div", 129)(2, SymphiqFunnelAnalysisDashboardComponent_Conditional_80_Conditional_29_For_2_Conditional_2_Conditional_2_Template, 3, 1, "div", 128);
22154
+ function SymphiqFunnelAnalysisDashboardComponent_Conditional_74_Conditional_29_For_2_Conditional_2_Template(rf, ctx) { if (rf & 1) {
22155
+ i0.ɵɵconditionalCreate(0, SymphiqFunnelAnalysisDashboardComponent_Conditional_74_Conditional_29_For_2_Conditional_2_Conditional_0_Template, 3, 0, "div", 128)(1, SymphiqFunnelAnalysisDashboardComponent_Conditional_74_Conditional_29_For_2_Conditional_2_Conditional_1_Template, 3, 0, "div", 129)(2, SymphiqFunnelAnalysisDashboardComponent_Conditional_74_Conditional_29_For_2_Conditional_2_Conditional_2_Template, 3, 1, "div", 128);
22108
22156
  } if (rf & 2) {
22109
22157
  const ctx_r2 = i0.ɵɵnextContext(4);
22110
22158
  i0.ɵɵconditional(ctx_r2.viewModeService.isExpanded() ? 0 : !ctx_r2.viewModeService.isExpanded() ? 1 : 2);
22111
22159
  } }
22112
- function SymphiqFunnelAnalysisDashboardComponent_Conditional_80_Conditional_29_For_2_Template(rf, ctx) { if (rf & 1) {
22160
+ function SymphiqFunnelAnalysisDashboardComponent_Conditional_74_Conditional_29_For_2_Template(rf, ctx) { if (rf & 1) {
22113
22161
  i0.ɵɵelementStart(0, "div", 126);
22114
22162
  i0.ɵɵelement(1, "symphiq-funnel-analysis-metric-card", 127);
22115
22163
  i0.ɵɵelementEnd();
22116
- i0.ɵɵconditionalCreate(2, SymphiqFunnelAnalysisDashboardComponent_Conditional_80_Conditional_29_For_2_Conditional_2_Template, 3, 1);
22164
+ i0.ɵɵconditionalCreate(2, SymphiqFunnelAnalysisDashboardComponent_Conditional_74_Conditional_29_For_2_Conditional_2_Template, 3, 1);
22117
22165
  } if (rf & 2) {
22118
22166
  const funnelGroup_r23 = ctx.$implicit;
22119
- const ɵ$index_438_r22 = ctx.$index;
22167
+ const ɵ$index_440_r22 = ctx.$index;
22120
22168
  const ctx_r2 = i0.ɵɵnextContext(3);
22121
- i0.ɵɵstyleProp("animation-delay", 0.5 + ɵ$index_438_r22 * 0.15 + "s");
22122
- i0.ɵɵproperty("libSymphiqSearchHighlight", ctx_r2.searchService.highlightedResultId())("highlightId", "metric-" + ɵ$index_438_r22);
22169
+ i0.ɵɵstyleProp("animation-delay", 0.5 + ɵ$index_440_r22 * 0.15 + "s");
22170
+ i0.ɵɵproperty("libSymphiqSearchHighlight", ctx_r2.searchService.highlightedResultId())("highlightId", "metric-" + ɵ$index_440_r22);
22123
22171
  i0.ɵɵadvance();
22124
22172
  i0.ɵɵproperty("metric", funnelGroup_r23.funnelMetric)("insights", ctx_r2.insights())("charts", ctx_r2.chartsForMetric(funnelGroup_r23.funnelMetric))("allCharts", ctx_r2.allCharts())("analysis", ctx_r2.analysisData())("isLightMode", ctx_r2.isLightMode())("viewMode", ctx_r2.viewMode())("isCompactMode", ctx_r2.viewModeService.isCompact());
22125
22173
  i0.ɵɵadvance();
22126
22174
  i0.ɵɵconditional(funnelGroup_r23.relatedMetrics.length > 0 ? 2 : -1);
22127
22175
  } }
22128
- function SymphiqFunnelAnalysisDashboardComponent_Conditional_80_Conditional_29_ForEmpty_3_Template(rf, ctx) { if (rf & 1) {
22176
+ function SymphiqFunnelAnalysisDashboardComponent_Conditional_74_Conditional_29_ForEmpty_3_Template(rf, ctx) { if (rf & 1) {
22129
22177
  i0.ɵɵelementStart(0, "div", 125);
22130
22178
  i0.ɵɵnamespaceSVG();
22131
22179
  i0.ɵɵelementStart(1, "svg", 137);
@@ -22148,9 +22196,9 @@ function SymphiqFunnelAnalysisDashboardComponent_Conditional_80_Conditional_29_F
22148
22196
  i0.ɵɵadvance(2);
22149
22197
  i0.ɵɵproperty("ngClass", ctx_r2.isLightMode() ? "text-slate-600" : "text-slate-400");
22150
22198
  } }
22151
- function SymphiqFunnelAnalysisDashboardComponent_Conditional_80_Conditional_29_Template(rf, ctx) { if (rf & 1) {
22199
+ function SymphiqFunnelAnalysisDashboardComponent_Conditional_74_Conditional_29_Template(rf, ctx) { if (rf & 1) {
22152
22200
  i0.ɵɵelementStart(0, "div", 115);
22153
- i0.ɵɵrepeaterCreate(1, SymphiqFunnelAnalysisDashboardComponent_Conditional_80_Conditional_29_For_2_Template, 3, 13, null, null, i0.ɵɵrepeaterTrackByIndex, false, SymphiqFunnelAnalysisDashboardComponent_Conditional_80_Conditional_29_ForEmpty_3_Template, 7, 4, "div", 125);
22201
+ i0.ɵɵrepeaterCreate(1, SymphiqFunnelAnalysisDashboardComponent_Conditional_74_Conditional_29_For_2_Template, 3, 13, null, null, i0.ɵɵrepeaterTrackByIndex, false, SymphiqFunnelAnalysisDashboardComponent_Conditional_74_Conditional_29_ForEmpty_3_Template, 7, 4, "div", 125);
22154
22202
  i0.ɵɵelementEnd();
22155
22203
  } if (rf & 2) {
22156
22204
  const ctx_r2 = i0.ɵɵnextContext(2);
@@ -22158,12 +22206,12 @@ function SymphiqFunnelAnalysisDashboardComponent_Conditional_80_Conditional_29_T
22158
22206
  i0.ɵɵadvance();
22159
22207
  i0.ɵɵrepeater(ctx_r2.groupedMetrics());
22160
22208
  } }
22161
- function SymphiqFunnelAnalysisDashboardComponent_Conditional_80_Template(rf, ctx) { if (rf & 1) {
22209
+ function SymphiqFunnelAnalysisDashboardComponent_Conditional_74_Template(rf, ctx) { if (rf & 1) {
22162
22210
  const _r16 = i0.ɵɵgetCurrentView();
22163
- i0.ɵɵconditionalCreate(0, SymphiqFunnelAnalysisDashboardComponent_Conditional_80_Conditional_0_Template, 7, 3, "div", 101);
22211
+ i0.ɵɵconditionalCreate(0, SymphiqFunnelAnalysisDashboardComponent_Conditional_74_Conditional_0_Template, 7, 3, "div", 101);
22164
22212
  i0.ɵɵelementStart(1, "section", 102);
22165
22213
  i0.ɵɵelement(2, "div", 103);
22166
- i0.ɵɵelementStart(3, "div", 78)(4, "div", 104)(5, "div", 105)(6, "div", 14)(7, "div", 80)(8, "div", 14);
22214
+ i0.ɵɵelementStart(3, "div", 78)(4, "div", 104)(5, "div", 105)(6, "div", 11)(7, "div", 80)(8, "div", 11);
22167
22215
  i0.ɵɵnamespaceSVG();
22168
22216
  i0.ɵɵelementStart(9, "svg", 81);
22169
22217
  i0.ɵɵelement(10, "path", 106);
@@ -22173,26 +22221,26 @@ function SymphiqFunnelAnalysisDashboardComponent_Conditional_80_Template(rf, ctx
22173
22221
  i0.ɵɵtext(12, "Performance Metrics");
22174
22222
  i0.ɵɵelementEnd()()()();
22175
22223
  i0.ɵɵelementStart(13, "div", 107);
22176
- i0.ɵɵconditionalCreate(14, SymphiqFunnelAnalysisDashboardComponent_Conditional_80_Conditional_14_Template, 2, 0, "div", 108);
22224
+ i0.ɵɵconditionalCreate(14, SymphiqFunnelAnalysisDashboardComponent_Conditional_74_Conditional_14_Template, 2, 0, "div", 108);
22177
22225
  i0.ɵɵelementStart(15, "select", 109);
22178
- i0.ɵɵlistener("ngModelChange", function SymphiqFunnelAnalysisDashboardComponent_Conditional_80_Template_select_ngModelChange_15_listener($event) { i0.ɵɵrestoreView(_r16); const ctx_r2 = i0.ɵɵnextContext(); return i0.ɵɵresetView(ctx_r2.changeCategoryFilter($event)); });
22179
- i0.ɵɵrepeaterCreate(16, SymphiqFunnelAnalysisDashboardComponent_Conditional_80_For_17_Template, 2, 1, null, null, _forTrack0$1);
22226
+ i0.ɵɵlistener("ngModelChange", function SymphiqFunnelAnalysisDashboardComponent_Conditional_74_Template_select_ngModelChange_15_listener($event) { i0.ɵɵrestoreView(_r16); const ctx_r2 = i0.ɵɵnextContext(); return i0.ɵɵresetView(ctx_r2.changeCategoryFilter($event)); });
22227
+ i0.ɵɵrepeaterCreate(16, SymphiqFunnelAnalysisDashboardComponent_Conditional_74_For_17_Template, 2, 1, null, null, _forTrack0$1);
22180
22228
  i0.ɵɵelementEnd();
22181
22229
  i0.ɵɵelementStart(18, "button", 110);
22182
- i0.ɵɵlistener("click", function SymphiqFunnelAnalysisDashboardComponent_Conditional_80_Template_button_click_18_listener() { i0.ɵɵrestoreView(_r16); const ctx_r2 = i0.ɵɵnextContext(); return i0.ɵɵresetView(ctx_r2.toggleSortOrder()); });
22230
+ i0.ɵɵlistener("click", function SymphiqFunnelAnalysisDashboardComponent_Conditional_74_Template_button_click_18_listener() { i0.ɵɵrestoreView(_r16); const ctx_r2 = i0.ɵɵnextContext(); return i0.ɵɵresetView(ctx_r2.toggleSortOrder()); });
22183
22231
  i0.ɵɵnamespaceSVG();
22184
- i0.ɵɵelementStart(19, "svg", 21);
22185
- i0.ɵɵconditionalCreate(20, SymphiqFunnelAnalysisDashboardComponent_Conditional_80_Conditional_20_Template, 1, 0, ":svg:path", 111);
22186
- i0.ɵɵconditionalCreate(21, SymphiqFunnelAnalysisDashboardComponent_Conditional_80_Conditional_21_Template, 1, 0, ":svg:path", 112);
22232
+ i0.ɵɵelementStart(19, "svg", 18);
22233
+ i0.ɵɵconditionalCreate(20, SymphiqFunnelAnalysisDashboardComponent_Conditional_74_Conditional_20_Template, 1, 0, ":svg:path", 111);
22234
+ i0.ɵɵconditionalCreate(21, SymphiqFunnelAnalysisDashboardComponent_Conditional_74_Conditional_21_Template, 1, 0, ":svg:path", 112);
22187
22235
  i0.ɵɵelementEnd();
22188
22236
  i0.ɵɵnamespaceHTML();
22189
22237
  i0.ɵɵelementStart(22, "span");
22190
22238
  i0.ɵɵtext(23, "Sort");
22191
22239
  i0.ɵɵelementEnd()()()();
22192
22240
  i0.ɵɵelementStart(24, "div", 113)(25, "div", 114);
22193
- i0.ɵɵrepeaterCreate(26, SymphiqFunnelAnalysisDashboardComponent_Conditional_80_For_27_Template, 1, 1, null, null, _forTrack0$1);
22241
+ i0.ɵɵrepeaterCreate(26, SymphiqFunnelAnalysisDashboardComponent_Conditional_74_For_27_Template, 1, 1, null, null, _forTrack0$1);
22194
22242
  i0.ɵɵelementEnd()()();
22195
- i0.ɵɵconditionalCreate(28, SymphiqFunnelAnalysisDashboardComponent_Conditional_80_Conditional_28_Template, 3, 1, "div", 115)(29, SymphiqFunnelAnalysisDashboardComponent_Conditional_80_Conditional_29_Template, 4, 5, "div", 116);
22243
+ i0.ɵɵconditionalCreate(28, SymphiqFunnelAnalysisDashboardComponent_Conditional_74_Conditional_28_Template, 3, 1, "div", 115)(29, SymphiqFunnelAnalysisDashboardComponent_Conditional_74_Conditional_29_Template, 4, 5, "div", 116);
22196
22244
  i0.ɵɵelementEnd()();
22197
22245
  } if (rf & 2) {
22198
22246
  const ctx_r2 = i0.ɵɵnextContext();
@@ -22225,7 +22273,7 @@ function SymphiqFunnelAnalysisDashboardComponent_Conditional_80_Template(rf, ctx
22225
22273
  i0.ɵɵadvance(2);
22226
22274
  i0.ɵɵconditional(ctx_r2.isDataLoading() ? 28 : 29);
22227
22275
  } }
22228
- function SymphiqFunnelAnalysisDashboardComponent_Conditional_81_Conditional_0_Template(rf, ctx) { if (rf & 1) {
22276
+ function SymphiqFunnelAnalysisDashboardComponent_Conditional_75_Conditional_0_Template(rf, ctx) { if (rf & 1) {
22229
22277
  i0.ɵɵelementStart(0, "div", 140)(1, "div", 86);
22230
22278
  i0.ɵɵelement(2, "div", 87);
22231
22279
  i0.ɵɵelementEnd();
@@ -22243,12 +22291,12 @@ function SymphiqFunnelAnalysisDashboardComponent_Conditional_81_Conditional_0_Te
22243
22291
  i0.ɵɵadvance();
22244
22292
  i0.ɵɵproperty("ngClass", ctx_r2.isLightMode() ? "text-purple-500" : "text-purple-400");
22245
22293
  } }
22246
- function SymphiqFunnelAnalysisDashboardComponent_Conditional_81_Conditional_12_Template(rf, ctx) { if (rf & 1) {
22294
+ function SymphiqFunnelAnalysisDashboardComponent_Conditional_75_Conditional_12_Template(rf, ctx) { if (rf & 1) {
22247
22295
  i0.ɵɵelementStart(0, "div", 108);
22248
22296
  i0.ɵɵelement(1, "div", 148);
22249
22297
  i0.ɵɵelementEnd();
22250
22298
  } }
22251
- function SymphiqFunnelAnalysisDashboardComponent_Conditional_81_For_15_Conditional_0_Template(rf, ctx) { if (rf & 1) {
22299
+ function SymphiqFunnelAnalysisDashboardComponent_Conditional_75_For_15_Conditional_0_Template(rf, ctx) { if (rf & 1) {
22252
22300
  i0.ɵɵelementStart(0, "option", 119);
22253
22301
  i0.ɵɵtext(1);
22254
22302
  i0.ɵɵelementEnd();
@@ -22258,8 +22306,8 @@ function SymphiqFunnelAnalysisDashboardComponent_Conditional_81_For_15_Condition
22258
22306
  i0.ɵɵadvance();
22259
22307
  i0.ɵɵtextInterpolate(filter_r27.label);
22260
22308
  } }
22261
- function SymphiqFunnelAnalysisDashboardComponent_Conditional_81_For_15_Conditional_1_Template(rf, ctx) { if (rf & 1) {
22262
- i0.ɵɵelementStart(0, "option", 29);
22309
+ function SymphiqFunnelAnalysisDashboardComponent_Conditional_75_For_15_Conditional_1_Template(rf, ctx) { if (rf & 1) {
22310
+ i0.ɵɵelementStart(0, "option", 26);
22263
22311
  i0.ɵɵtext(1);
22264
22312
  i0.ɵɵelementEnd();
22265
22313
  } if (rf & 2) {
@@ -22268,13 +22316,13 @@ function SymphiqFunnelAnalysisDashboardComponent_Conditional_81_For_15_Condition
22268
22316
  i0.ɵɵadvance();
22269
22317
  i0.ɵɵtextInterpolate(filter_r27.label);
22270
22318
  } }
22271
- function SymphiqFunnelAnalysisDashboardComponent_Conditional_81_For_15_Template(rf, ctx) { if (rf & 1) {
22272
- i0.ɵɵconditionalCreate(0, SymphiqFunnelAnalysisDashboardComponent_Conditional_81_For_15_Conditional_0_Template, 2, 2, "option", 119)(1, SymphiqFunnelAnalysisDashboardComponent_Conditional_81_For_15_Conditional_1_Template, 2, 2, "option", 29);
22319
+ function SymphiqFunnelAnalysisDashboardComponent_Conditional_75_For_15_Template(rf, ctx) { if (rf & 1) {
22320
+ i0.ɵɵconditionalCreate(0, SymphiqFunnelAnalysisDashboardComponent_Conditional_75_For_15_Conditional_0_Template, 2, 2, "option", 119)(1, SymphiqFunnelAnalysisDashboardComponent_Conditional_75_For_15_Conditional_1_Template, 2, 2, "option", 26);
22273
22321
  } if (rf & 2) {
22274
22322
  const filter_r27 = ctx.$implicit;
22275
22323
  i0.ɵɵconditional(filter_r27.divider ? 0 : 1);
22276
22324
  } }
22277
- function SymphiqFunnelAnalysisDashboardComponent_Conditional_81_Conditional_16_For_2_For_6_Template(rf, ctx) { if (rf & 1) {
22325
+ function SymphiqFunnelAnalysisDashboardComponent_Conditional_75_Conditional_16_For_2_For_6_Template(rf, ctx) { if (rf & 1) {
22278
22326
  i0.ɵɵelementStart(0, "div", 150);
22279
22327
  i0.ɵɵelement(1, "symphiq-skeleton-loader", 70)(2, "symphiq-skeleton-loader", 70);
22280
22328
  i0.ɵɵelementEnd();
@@ -22286,12 +22334,12 @@ function SymphiqFunnelAnalysisDashboardComponent_Conditional_81_Conditional_16_F
22286
22334
  i0.ɵɵadvance();
22287
22335
  i0.ɵɵproperty("width", "80px")("height", "18px")("isLightMode", ctx_r2.isLightMode());
22288
22336
  } }
22289
- function SymphiqFunnelAnalysisDashboardComponent_Conditional_81_Conditional_16_For_2_Template(rf, ctx) { if (rf & 1) {
22337
+ function SymphiqFunnelAnalysisDashboardComponent_Conditional_75_Conditional_16_For_2_Template(rf, ctx) { if (rf & 1) {
22290
22338
  i0.ɵɵelementStart(0, "div", 122)(1, "div", 123);
22291
22339
  i0.ɵɵelement(2, "symphiq-skeleton-loader", 70)(3, "symphiq-skeleton-loader", 70);
22292
22340
  i0.ɵɵelementEnd();
22293
22341
  i0.ɵɵelementStart(4, "div", 149);
22294
- i0.ɵɵrepeaterCreate(5, SymphiqFunnelAnalysisDashboardComponent_Conditional_81_Conditional_16_For_2_For_6_Template, 3, 7, "div", 150, i0.ɵɵrepeaterTrackByIdentity);
22342
+ i0.ɵɵrepeaterCreate(5, SymphiqFunnelAnalysisDashboardComponent_Conditional_75_Conditional_16_For_2_For_6_Template, 3, 7, "div", 150, i0.ɵɵrepeaterTrackByIdentity);
22295
22343
  i0.ɵɵelementEnd()();
22296
22344
  } if (rf & 2) {
22297
22345
  const ctx_r2 = i0.ɵɵnextContext(3);
@@ -22303,15 +22351,15 @@ function SymphiqFunnelAnalysisDashboardComponent_Conditional_81_Conditional_16_F
22303
22351
  i0.ɵɵadvance(2);
22304
22352
  i0.ɵɵrepeater(i0.ɵɵpureFunction0(7, _c4));
22305
22353
  } }
22306
- function SymphiqFunnelAnalysisDashboardComponent_Conditional_81_Conditional_16_Template(rf, ctx) { if (rf & 1) {
22354
+ function SymphiqFunnelAnalysisDashboardComponent_Conditional_75_Conditional_16_Template(rf, ctx) { if (rf & 1) {
22307
22355
  i0.ɵɵelementStart(0, "div", 69);
22308
- i0.ɵɵrepeaterCreate(1, SymphiqFunnelAnalysisDashboardComponent_Conditional_81_Conditional_16_For_2_Template, 7, 8, "div", 122, i0.ɵɵrepeaterTrackByIdentity);
22356
+ i0.ɵɵrepeaterCreate(1, SymphiqFunnelAnalysisDashboardComponent_Conditional_75_Conditional_16_For_2_Template, 7, 8, "div", 122, i0.ɵɵrepeaterTrackByIdentity);
22309
22357
  i0.ɵɵelementEnd();
22310
22358
  } if (rf & 2) {
22311
22359
  i0.ɵɵadvance();
22312
22360
  i0.ɵɵrepeater(i0.ɵɵpureFunction0(0, _c5));
22313
22361
  } }
22314
- function SymphiqFunnelAnalysisDashboardComponent_Conditional_81_Conditional_17_For_2_Template(rf, ctx) { if (rf & 1) {
22362
+ function SymphiqFunnelAnalysisDashboardComponent_Conditional_75_Conditional_17_For_2_Template(rf, ctx) { if (rf & 1) {
22315
22363
  i0.ɵɵelementStart(0, "div", 98);
22316
22364
  i0.ɵɵelement(1, "symphiq-funnel-analysis-breakdown-section", 151);
22317
22365
  i0.ɵɵelementEnd();
@@ -22324,7 +22372,7 @@ function SymphiqFunnelAnalysisDashboardComponent_Conditional_81_Conditional_17_F
22324
22372
  i0.ɵɵadvance();
22325
22373
  i0.ɵɵproperty("breakdown", breakdown_r28)("charts", ctx_r2.chartsForBreakdown(breakdown_r28))("isLightMode", ctx_r2.isLightMode())("isCompactMode", ctx_r2.viewModeService.isCompact());
22326
22374
  } }
22327
- function SymphiqFunnelAnalysisDashboardComponent_Conditional_81_Conditional_17_ForEmpty_3_Template(rf, ctx) { if (rf & 1) {
22375
+ function SymphiqFunnelAnalysisDashboardComponent_Conditional_75_Conditional_17_ForEmpty_3_Template(rf, ctx) { if (rf & 1) {
22328
22376
  i0.ɵɵelementStart(0, "div", 125);
22329
22377
  i0.ɵɵnamespaceSVG();
22330
22378
  i0.ɵɵelementStart(1, "svg", 137);
@@ -22347,9 +22395,9 @@ function SymphiqFunnelAnalysisDashboardComponent_Conditional_81_Conditional_17_F
22347
22395
  i0.ɵɵadvance(2);
22348
22396
  i0.ɵɵproperty("ngClass", ctx_r2.isLightMode() ? "text-slate-600" : "text-slate-400");
22349
22397
  } }
22350
- function SymphiqFunnelAnalysisDashboardComponent_Conditional_81_Conditional_17_Template(rf, ctx) { if (rf & 1) {
22398
+ function SymphiqFunnelAnalysisDashboardComponent_Conditional_75_Conditional_17_Template(rf, ctx) { if (rf & 1) {
22351
22399
  i0.ɵɵelementStart(0, "div", 69);
22352
- i0.ɵɵrepeaterCreate(1, SymphiqFunnelAnalysisDashboardComponent_Conditional_81_Conditional_17_For_2_Template, 2, 8, "div", 100, i0.ɵɵrepeaterTrackByIndex, false, SymphiqFunnelAnalysisDashboardComponent_Conditional_81_Conditional_17_ForEmpty_3_Template, 7, 4, "div", 125);
22400
+ i0.ɵɵrepeaterCreate(1, SymphiqFunnelAnalysisDashboardComponent_Conditional_75_Conditional_17_For_2_Template, 2, 8, "div", 100, i0.ɵɵrepeaterTrackByIndex, false, SymphiqFunnelAnalysisDashboardComponent_Conditional_75_Conditional_17_ForEmpty_3_Template, 7, 4, "div", 125);
22353
22401
  i0.ɵɵelementEnd();
22354
22402
  } if (rf & 2) {
22355
22403
  const ctx_r2 = i0.ɵɵnextContext(2);
@@ -22357,12 +22405,12 @@ function SymphiqFunnelAnalysisDashboardComponent_Conditional_81_Conditional_17_T
22357
22405
  i0.ɵɵadvance();
22358
22406
  i0.ɵɵrepeater(ctx_r2.breakdowns());
22359
22407
  } }
22360
- function SymphiqFunnelAnalysisDashboardComponent_Conditional_81_Template(rf, ctx) { if (rf & 1) {
22408
+ function SymphiqFunnelAnalysisDashboardComponent_Conditional_75_Template(rf, ctx) { if (rf & 1) {
22361
22409
  const _r26 = i0.ɵɵgetCurrentView();
22362
- i0.ɵɵconditionalCreate(0, SymphiqFunnelAnalysisDashboardComponent_Conditional_81_Conditional_0_Template, 7, 3, "div", 140);
22410
+ i0.ɵɵconditionalCreate(0, SymphiqFunnelAnalysisDashboardComponent_Conditional_75_Conditional_0_Template, 7, 3, "div", 140);
22363
22411
  i0.ɵɵelementStart(1, "section", 141);
22364
22412
  i0.ɵɵelement(2, "div", 142);
22365
- i0.ɵɵelementStart(3, "div", 78)(4, "div", 143)(5, "div", 80)(6, "div", 14);
22413
+ i0.ɵɵelementStart(3, "div", 78)(4, "div", 143)(5, "div", 80)(6, "div", 11);
22366
22414
  i0.ɵɵnamespaceSVG();
22367
22415
  i0.ɵɵelementStart(7, "svg", 81);
22368
22416
  i0.ɵɵelement(8, "path", 144);
@@ -22372,13 +22420,13 @@ function SymphiqFunnelAnalysisDashboardComponent_Conditional_81_Template(rf, ctx
22372
22420
  i0.ɵɵtext(10, "Performance Breakdowns");
22373
22421
  i0.ɵɵelementEnd()()();
22374
22422
  i0.ɵɵelementStart(11, "div", 145);
22375
- i0.ɵɵlistener("click", function SymphiqFunnelAnalysisDashboardComponent_Conditional_81_Template_div_click_11_listener($event) { i0.ɵɵrestoreView(_r26); return i0.ɵɵresetView($event.stopPropagation()); })("mousedown", function SymphiqFunnelAnalysisDashboardComponent_Conditional_81_Template_div_mousedown_11_listener($event) { i0.ɵɵrestoreView(_r26); return i0.ɵɵresetView($event.stopPropagation()); })("pointerdown", function SymphiqFunnelAnalysisDashboardComponent_Conditional_81_Template_div_pointerdown_11_listener($event) { i0.ɵɵrestoreView(_r26); return i0.ɵɵresetView($event.stopPropagation()); });
22376
- i0.ɵɵconditionalCreate(12, SymphiqFunnelAnalysisDashboardComponent_Conditional_81_Conditional_12_Template, 2, 0, "div", 108);
22423
+ i0.ɵɵlistener("click", function SymphiqFunnelAnalysisDashboardComponent_Conditional_75_Template_div_click_11_listener($event) { i0.ɵɵrestoreView(_r26); return i0.ɵɵresetView($event.stopPropagation()); })("mousedown", function SymphiqFunnelAnalysisDashboardComponent_Conditional_75_Template_div_mousedown_11_listener($event) { i0.ɵɵrestoreView(_r26); return i0.ɵɵresetView($event.stopPropagation()); })("pointerdown", function SymphiqFunnelAnalysisDashboardComponent_Conditional_75_Template_div_pointerdown_11_listener($event) { i0.ɵɵrestoreView(_r26); return i0.ɵɵresetView($event.stopPropagation()); });
22424
+ i0.ɵɵconditionalCreate(12, SymphiqFunnelAnalysisDashboardComponent_Conditional_75_Conditional_12_Template, 2, 0, "div", 108);
22377
22425
  i0.ɵɵelementStart(13, "select", 146);
22378
- i0.ɵɵlistener("ngModelChange", function SymphiqFunnelAnalysisDashboardComponent_Conditional_81_Template_select_ngModelChange_13_listener($event) { i0.ɵɵrestoreView(_r26); const ctx_r2 = i0.ɵɵnextContext(); return i0.ɵɵresetView(ctx_r2.changeBreakdownFilter($event)); });
22379
- i0.ɵɵrepeaterCreate(14, SymphiqFunnelAnalysisDashboardComponent_Conditional_81_For_15_Template, 2, 1, null, null, _forTrack0$1);
22426
+ i0.ɵɵlistener("ngModelChange", function SymphiqFunnelAnalysisDashboardComponent_Conditional_75_Template_select_ngModelChange_13_listener($event) { i0.ɵɵrestoreView(_r26); const ctx_r2 = i0.ɵɵnextContext(); return i0.ɵɵresetView(ctx_r2.changeBreakdownFilter($event)); });
22427
+ i0.ɵɵrepeaterCreate(14, SymphiqFunnelAnalysisDashboardComponent_Conditional_75_For_15_Template, 2, 1, null, null, _forTrack0$1);
22380
22428
  i0.ɵɵelementEnd()()();
22381
- i0.ɵɵconditionalCreate(16, SymphiqFunnelAnalysisDashboardComponent_Conditional_81_Conditional_16_Template, 3, 1, "div", 69)(17, SymphiqFunnelAnalysisDashboardComponent_Conditional_81_Conditional_17_Template, 4, 5, "div", 147);
22429
+ i0.ɵɵconditionalCreate(16, SymphiqFunnelAnalysisDashboardComponent_Conditional_75_Conditional_16_Template, 3, 1, "div", 69)(17, SymphiqFunnelAnalysisDashboardComponent_Conditional_75_Conditional_17_Template, 4, 5, "div", 147);
22382
22430
  i0.ɵɵelementEnd()();
22383
22431
  } if (rf & 2) {
22384
22432
  const ctx_r2 = i0.ɵɵnextContext();
@@ -22401,7 +22449,7 @@ function SymphiqFunnelAnalysisDashboardComponent_Conditional_81_Template(rf, ctx
22401
22449
  i0.ɵɵadvance(2);
22402
22450
  i0.ɵɵconditional(ctx_r2.isDataLoading() ? 16 : 17);
22403
22451
  } }
22404
- function SymphiqFunnelAnalysisDashboardComponent_Conditional_82_Conditional_0_Template(rf, ctx) { if (rf & 1) {
22452
+ function SymphiqFunnelAnalysisDashboardComponent_Conditional_76_Conditional_0_Template(rf, ctx) { if (rf & 1) {
22405
22453
  i0.ɵɵelementStart(0, "div", 153)(1, "div", 86);
22406
22454
  i0.ɵɵelement(2, "div", 87);
22407
22455
  i0.ɵɵelementEnd();
@@ -22419,12 +22467,12 @@ function SymphiqFunnelAnalysisDashboardComponent_Conditional_82_Conditional_0_Te
22419
22467
  i0.ɵɵadvance();
22420
22468
  i0.ɵɵproperty("ngClass", ctx_r2.isLightMode() ? "text-indigo-500" : "text-indigo-400");
22421
22469
  } }
22422
- function SymphiqFunnelAnalysisDashboardComponent_Conditional_82_Conditional_13_Template(rf, ctx) { if (rf & 1) {
22470
+ function SymphiqFunnelAnalysisDashboardComponent_Conditional_76_Conditional_13_Template(rf, ctx) { if (rf & 1) {
22423
22471
  i0.ɵɵelementStart(0, "div", 108);
22424
22472
  i0.ɵɵelement(1, "div", 159);
22425
22473
  i0.ɵɵelementEnd();
22426
22474
  } }
22427
- function SymphiqFunnelAnalysisDashboardComponent_Conditional_82_For_16_Conditional_0_Template(rf, ctx) { if (rf & 1) {
22475
+ function SymphiqFunnelAnalysisDashboardComponent_Conditional_76_For_16_Conditional_0_Template(rf, ctx) { if (rf & 1) {
22428
22476
  i0.ɵɵelementStart(0, "option", 119);
22429
22477
  i0.ɵɵtext(1);
22430
22478
  i0.ɵɵelementEnd();
@@ -22434,8 +22482,8 @@ function SymphiqFunnelAnalysisDashboardComponent_Conditional_82_For_16_Condition
22434
22482
  i0.ɵɵadvance();
22435
22483
  i0.ɵɵtextInterpolate(filter_r31.label);
22436
22484
  } }
22437
- function SymphiqFunnelAnalysisDashboardComponent_Conditional_82_For_16_Conditional_1_Template(rf, ctx) { if (rf & 1) {
22438
- i0.ɵɵelementStart(0, "option", 29);
22485
+ function SymphiqFunnelAnalysisDashboardComponent_Conditional_76_For_16_Conditional_1_Template(rf, ctx) { if (rf & 1) {
22486
+ i0.ɵɵelementStart(0, "option", 26);
22439
22487
  i0.ɵɵtext(1);
22440
22488
  i0.ɵɵelementEnd();
22441
22489
  } if (rf & 2) {
@@ -22444,23 +22492,23 @@ function SymphiqFunnelAnalysisDashboardComponent_Conditional_82_For_16_Condition
22444
22492
  i0.ɵɵadvance();
22445
22493
  i0.ɵɵtextInterpolate(filter_r31.label);
22446
22494
  } }
22447
- function SymphiqFunnelAnalysisDashboardComponent_Conditional_82_For_16_Template(rf, ctx) { if (rf & 1) {
22448
- i0.ɵɵconditionalCreate(0, SymphiqFunnelAnalysisDashboardComponent_Conditional_82_For_16_Conditional_0_Template, 2, 2, "option", 119)(1, SymphiqFunnelAnalysisDashboardComponent_Conditional_82_For_16_Conditional_1_Template, 2, 2, "option", 29);
22495
+ function SymphiqFunnelAnalysisDashboardComponent_Conditional_76_For_16_Template(rf, ctx) { if (rf & 1) {
22496
+ i0.ɵɵconditionalCreate(0, SymphiqFunnelAnalysisDashboardComponent_Conditional_76_For_16_Conditional_0_Template, 2, 2, "option", 119)(1, SymphiqFunnelAnalysisDashboardComponent_Conditional_76_For_16_Conditional_1_Template, 2, 2, "option", 26);
22449
22497
  } if (rf & 2) {
22450
22498
  const filter_r31 = ctx.$implicit;
22451
22499
  i0.ɵɵconditional(filter_r31.divider ? 0 : 1);
22452
22500
  } }
22453
- function SymphiqFunnelAnalysisDashboardComponent_Conditional_82_Conditional_17_For_5_Template(rf, ctx) { if (rf & 1) {
22501
+ function SymphiqFunnelAnalysisDashboardComponent_Conditional_76_Conditional_17_For_5_Template(rf, ctx) { if (rf & 1) {
22454
22502
  i0.ɵɵelement(0, "symphiq-skeleton-loader", 70);
22455
22503
  } if (rf & 2) {
22456
22504
  const ctx_r2 = i0.ɵɵnextContext(3);
22457
22505
  i0.ɵɵproperty("width", "100%")("height", "140px")("isLightMode", ctx_r2.isLightMode());
22458
22506
  } }
22459
- function SymphiqFunnelAnalysisDashboardComponent_Conditional_82_Conditional_17_Template(rf, ctx) { if (rf & 1) {
22507
+ function SymphiqFunnelAnalysisDashboardComponent_Conditional_76_Conditional_17_Template(rf, ctx) { if (rf & 1) {
22460
22508
  i0.ɵɵelementStart(0, "div", 69)(1, "div", 122);
22461
22509
  i0.ɵɵelement(2, "symphiq-skeleton-loader", 70);
22462
22510
  i0.ɵɵelementStart(3, "div", 160);
22463
- i0.ɵɵrepeaterCreate(4, SymphiqFunnelAnalysisDashboardComponent_Conditional_82_Conditional_17_For_5_Template, 1, 3, "symphiq-skeleton-loader", 70, i0.ɵɵrepeaterTrackByIdentity);
22511
+ i0.ɵɵrepeaterCreate(4, SymphiqFunnelAnalysisDashboardComponent_Conditional_76_Conditional_17_For_5_Template, 1, 3, "symphiq-skeleton-loader", 70, i0.ɵɵrepeaterTrackByIdentity);
22464
22512
  i0.ɵɵelementEnd()()();
22465
22513
  } if (rf & 2) {
22466
22514
  const ctx_r2 = i0.ɵɵnextContext(2);
@@ -22471,19 +22519,19 @@ function SymphiqFunnelAnalysisDashboardComponent_Conditional_82_Conditional_17_T
22471
22519
  i0.ɵɵadvance(2);
22472
22520
  i0.ɵɵrepeater(i0.ɵɵpureFunction0(4, _c3));
22473
22521
  } }
22474
- function SymphiqFunnelAnalysisDashboardComponent_Conditional_82_Conditional_18_Template(rf, ctx) { if (rf & 1) {
22522
+ function SymphiqFunnelAnalysisDashboardComponent_Conditional_76_Conditional_18_Template(rf, ctx) { if (rf & 1) {
22475
22523
  i0.ɵɵelement(0, "symphiq-competitive-intelligence-view", 158);
22476
22524
  } if (rf & 2) {
22477
22525
  let tmp_7_0;
22478
22526
  const ctx_r2 = i0.ɵɵnextContext(2);
22479
22527
  i0.ɵɵproperty("metrics", ctx_r2.competitiveMetrics())("allCharts", ctx_r2.allCharts())("isLightMode", ctx_r2.isLightMode())("isCompactMode", ctx_r2.viewModeService.isCompact())("competitiveBenchmark", (tmp_7_0 = ctx_r2.performanceOverview().overallAssessment) == null ? null : tmp_7_0.competitiveBenchmark);
22480
22528
  } }
22481
- function SymphiqFunnelAnalysisDashboardComponent_Conditional_82_Template(rf, ctx) { if (rf & 1) {
22529
+ function SymphiqFunnelAnalysisDashboardComponent_Conditional_76_Template(rf, ctx) { if (rf & 1) {
22482
22530
  const _r30 = i0.ɵɵgetCurrentView();
22483
- i0.ɵɵconditionalCreate(0, SymphiqFunnelAnalysisDashboardComponent_Conditional_82_Conditional_0_Template, 7, 3, "div", 153);
22531
+ i0.ɵɵconditionalCreate(0, SymphiqFunnelAnalysisDashboardComponent_Conditional_76_Conditional_0_Template, 7, 3, "div", 153);
22484
22532
  i0.ɵɵelementStart(1, "section", 154);
22485
22533
  i0.ɵɵelement(2, "div", 77);
22486
- i0.ɵɵelementStart(3, "div", 78)(4, "div", 155)(5, "div", 14)(6, "div", 80)(7, "div", 14);
22534
+ i0.ɵɵelementStart(3, "div", 78)(4, "div", 155)(5, "div", 11)(6, "div", 80)(7, "div", 11);
22487
22535
  i0.ɵɵnamespaceSVG();
22488
22536
  i0.ɵɵelementStart(8, "svg", 81);
22489
22537
  i0.ɵɵelement(9, "path", 156);
@@ -22493,12 +22541,12 @@ function SymphiqFunnelAnalysisDashboardComponent_Conditional_82_Template(rf, ctx
22493
22541
  i0.ɵɵtext(11, "Competitive Intelligence");
22494
22542
  i0.ɵɵelementEnd()()()();
22495
22543
  i0.ɵɵelementStart(12, "div", 157);
22496
- i0.ɵɵconditionalCreate(13, SymphiqFunnelAnalysisDashboardComponent_Conditional_82_Conditional_13_Template, 2, 0, "div", 108);
22544
+ i0.ɵɵconditionalCreate(13, SymphiqFunnelAnalysisDashboardComponent_Conditional_76_Conditional_13_Template, 2, 0, "div", 108);
22497
22545
  i0.ɵɵelementStart(14, "select", 109);
22498
- i0.ɵɵlistener("ngModelChange", function SymphiqFunnelAnalysisDashboardComponent_Conditional_82_Template_select_ngModelChange_14_listener($event) { i0.ɵɵrestoreView(_r30); const ctx_r2 = i0.ɵɵnextContext(); return i0.ɵɵresetView(ctx_r2.changeCompetitiveFilter($event)); });
22499
- i0.ɵɵrepeaterCreate(15, SymphiqFunnelAnalysisDashboardComponent_Conditional_82_For_16_Template, 2, 1, null, null, _forTrack0$1);
22546
+ i0.ɵɵlistener("ngModelChange", function SymphiqFunnelAnalysisDashboardComponent_Conditional_76_Template_select_ngModelChange_14_listener($event) { i0.ɵɵrestoreView(_r30); const ctx_r2 = i0.ɵɵnextContext(); return i0.ɵɵresetView(ctx_r2.changeCompetitiveFilter($event)); });
22547
+ i0.ɵɵrepeaterCreate(15, SymphiqFunnelAnalysisDashboardComponent_Conditional_76_For_16_Template, 2, 1, null, null, _forTrack0$1);
22500
22548
  i0.ɵɵelementEnd()()();
22501
- i0.ɵɵconditionalCreate(17, SymphiqFunnelAnalysisDashboardComponent_Conditional_82_Conditional_17_Template, 6, 5, "div", 69)(18, SymphiqFunnelAnalysisDashboardComponent_Conditional_82_Conditional_18_Template, 1, 5, "symphiq-competitive-intelligence-view", 158);
22549
+ i0.ɵɵconditionalCreate(17, SymphiqFunnelAnalysisDashboardComponent_Conditional_76_Conditional_17_Template, 6, 5, "div", 69)(18, SymphiqFunnelAnalysisDashboardComponent_Conditional_76_Conditional_18_Template, 1, 5, "symphiq-competitive-intelligence-view", 158);
22502
22550
  i0.ɵɵelementEnd()();
22503
22551
  } if (rf & 2) {
22504
22552
  const ctx_r2 = i0.ɵɵnextContext();
@@ -22765,8 +22813,10 @@ class SymphiqFunnelAnalysisDashboardComponent {
22765
22813
  this.sortButtonClass = computed(() => this.isLightMode() ? 'bg-white text-slate-900 border border-slate-300 hover:bg-blue-50 hover:border-blue-400 hover:text-blue-600 transition-all duration-200' : 'bg-slate-700 text-white border border-slate-600 hover:bg-slate-600 hover:border-slate-500 transition-all duration-200', ...(ngDevMode ? [{ debugName: "sortButtonClass" }] : []));
22766
22814
  // Pre-formatted date signal
22767
22815
  this.formattedGeneratedDate = computed(() => {
22768
- const overview = this.performanceOverview();
22769
- return this.formatDate(overview.generatedAt || '2025-11-30');
22816
+ const analysis = this.analysisData();
22817
+ return analysis?.selfContentCompletedDate
22818
+ ? this.formatDate(new Date(analysis.selfContentCompletedDate).toISOString())
22819
+ : null;
22770
22820
  }, ...(ngDevMode ? [{ debugName: "formattedGeneratedDate" }] : []));
22771
22821
  // Filtered and grouped metrics signals
22772
22822
  this.filteredMetrics = computed(() => {
@@ -23453,110 +23503,107 @@ class SymphiqFunnelAnalysisDashboardComponent {
23453
23503
  i0.ɵɵqueryRefresh(_t = i0.ɵɵloadQuery()) && (ctx.dashboardContainer = _t.first);
23454
23504
  } }, hostBindings: function SymphiqFunnelAnalysisDashboardComponent_HostBindings(rf, ctx) { if (rf & 1) {
23455
23505
  i0.ɵɵlistener("scroll", function SymphiqFunnelAnalysisDashboardComponent_scroll_HostBindingHandler($event) { return ctx.onScroll($event); }, i0.ɵɵresolveWindow);
23456
- } }, inputs: { requestedByUser: [1, "requestedByUser"], viewMode: [1, "viewMode"], funnelAnalysis: [1, "funnelAnalysis"], embedded: [1, "embedded"], scrollEvent: [1, "scrollEvent"], scrollElement: [1, "scrollElement"], isLoading: [1, "isLoading"], useSampleData: [1, "useSampleData"] }, decls: 88, vars: 102, 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, "absolute", "inset-0", 3, "ngClass"], [1, "absolute", "inset-0", "opacity-[0.03]", "z-20", 2, "background-image", "url('data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23000000' fill-opacity='1'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E')"], [1, "absolute", "top-0", "right-0", "w-[800px]", "h-[800px]", "rounded-full", "blur-3xl", "z-0", 3, "ngClass"], [1, "absolute", "bottom-0", "left-0", "w-[600px]", "h-[600px]", "rounded-full", "blur-3xl", "z-0", 3, "ngClass"], [1, "absolute", "top-1/2", "left-1/2", "-translate-x-1/2", "-translate-y-1/2", "w-[700px]", "h-[700px]", "rounded-full", "blur-3xl", "z-0", 3, "ngClass"], [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, "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", "M21 21l-6-6m2-5a7 7 0 11-14 0 7 7 0 0114 0z"], [1, "flex", "items-center", "gap-2"], ["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"], [1, "flex", "items-center", "gap-2", "sm:gap-3", "whitespace-nowrap"], [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, "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, "click"], ["fill", "none", "stroke", "currentColor", "viewBox", "0 0 24 24", 1, "w-5", "h-5"], ["type", "button", 1, "p-2", "rounded-lg", "transition-all", "duration-200", "hover:scale-110", 3, "click", "title"], [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, "sticky", "top-[var(--header-height)]", "z-40", "border-b", "backdrop-blur-md", "animate-slide-up-fade", 3, "ngClass"], [1, "fixed", "right-6", "top-1/2", "-translate-y-1/2", "z-40", "hidden", "xl:flex", "flex-col", "gap-3"], [1, "w-3", "h-3", "rounded-full", "transition-all", "duration-200", "hover:scale-150", "active:scale-100", 3, "title", "ngClass"], [1, "max-w-7xl", "mx-auto", "px-6", "sm:px-8"], [1, "pt-8", "sm:pt-12", "pb-16", "sm:pb-24"], ["id", "overall-section", 1, "animate-fade-in-up", "mb-20", "sm:mb-28", 2, "animation-delay", "0.1s"], [3, "isLightMode"], [3, "resultSelected", "isLightMode"], [3, "expandedChange", "scrollToTop", "toggleView", "isLightMode", "isCompactMode", "isExpanded"], [3, "navigate", "isLightMode", "sections", "activeSection"], ["stroke-linecap", "round", "stroke-linejoin", "round", "stroke-width", "2", "d", "M4 6h16M4 12h16M4 18h16"], ["stroke-linecap", "round", "stroke-linejoin", "round", "stroke-width", "2", "d", "M4 6a2 2 0 012-2h2a2 2 0 012 2v2a2 2 0 01-2 2H6a2 2 0 01-2-2V6zM14 6a2 2 0 012-2h2a2 2 0 012 2v2a2 2 0 01-2 2h-2a2 2 0 01-2-2V6zM4 16a2 2 0 012-2h2a2 2 0 012 2v2a2 2 0 01-2 2H6a2 2 0 01-2-2v-2zM14 16a2 2 0 012-2h2a2 2 0 012 2v2a2 2 0 01-2 2h-2a2 2 0 01-2-2v-2z"], [1, "text-xs", "font-medium"], [1, "text-sm", "font-bold"], [1, "text-xs", "font-semibold", 3, "ngClass"], [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", 3, "click", "title", "ngClass"], [1, "rounded-xl", "border", "p-6", "sm:p-8", "animate-pulse", 3, "ngClass"], [3, "assessment", "revenueMetric", "charts", "metrics", "isLightMode", "isLoading", "isCompactMode", "isChartsLoading"], [1, "space-y-6"], [3, "width", "height", "isLightMode"], [1, "flex-1", "space-y-2"], [1, "space-y-2"], [1, "grid", "grid-cols-1", "md:grid-cols-2", "gap-4", "mt-6"], [3, "scrollToSection", "assessment", "revenueMetric", "charts", "metrics", "isLightMode", "isLoading", "isCompactMode", "isChartsLoading"], [1, "relative", "mb-16", "sm:mb-20", "animate-fade-in", 2, "animation-delay", "0.15s"], ["id", "insights-section", 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, "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, "masonry-grid"], [1, "grid", "grid-cols-1", "md:grid-cols-2", "lg:grid-cols-3", "gap-4"], ["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", "M13 10V3L4 14h7v7l9-11h-7z"], [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", "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", "metrics-section", 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"], ["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"], [3, "metric", "insights", "charts", "allCharts", "analysis", "isLightMode", "viewMode", "isCompactMode"], [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"], [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, "relative", "mb-16", "sm:mb-20", "mt-28", "sm:mt-36", "animate-fade-in", 2, "animation-delay", "0.65s"], ["id", "breakdowns-section", 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"], [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"], ["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"], [1, "relative", "mb-16", "sm:mb-20", "mt-28", "sm:mt-36", "animate-fade-in", 2, "animation-delay", "0.85s"], ["id", "competitive-section", 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"], [3, "metrics", "allCharts", "isLightMode", "isCompactMode", "competitiveBenchmark"], [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) {
23506
+ } }, inputs: { requestedByUser: [1, "requestedByUser"], viewMode: [1, "viewMode"], funnelAnalysis: [1, "funnelAnalysis"], embedded: [1, "embedded"], scrollEvent: [1, "scrollEvent"], scrollElement: [1, "scrollElement"], isLoading: [1, "isLoading"], useSampleData: [1, "useSampleData"] }, decls: 82, vars: 96, 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, "absolute", "inset-0", 3, "ngClass"], [1, "absolute", "inset-0", "opacity-[0.03]", "z-20", 2, "background-image", "url('data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23000000' fill-opacity='1'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E')"], [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, "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", "M21 21l-6-6m2-5a7 7 0 11-14 0 7 7 0 0114 0z"], [1, "flex", "items-center", "gap-2"], ["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"], [1, "flex", "items-center", "gap-2", "sm:gap-3", "whitespace-nowrap"], [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, "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, "click"], ["fill", "none", "stroke", "currentColor", "viewBox", "0 0 24 24", 1, "w-5", "h-5"], ["type", "button", 1, "p-2", "rounded-lg", "transition-all", "duration-200", "hover:scale-110", 3, "click", "title"], [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, "sticky", "top-[var(--header-height)]", "z-40", "border-b", "backdrop-blur-md", "animate-slide-up-fade", 3, "ngClass"], [1, "fixed", "right-6", "top-1/2", "-translate-y-1/2", "z-40", "hidden", "xl:flex", "flex-col", "gap-3"], [1, "w-3", "h-3", "rounded-full", "transition-all", "duration-200", "hover:scale-150", "active:scale-100", 3, "title", "ngClass"], [1, "max-w-7xl", "mx-auto", "px-6", "sm:px-8"], [1, "pt-8", "sm:pt-12", "pb-16", "sm:pb-24"], ["id", "overall-section", 1, "animate-fade-in-up", "mb-20", "sm:mb-28", 2, "animation-delay", "0.1s"], [3, "isLightMode"], [3, "resultSelected", "isLightMode"], [3, "expandedChange", "scrollToTop", "toggleView", "isLightMode", "isCompactMode", "isExpanded"], [3, "navigate", "isLightMode", "sections", "activeSection"], [1, "bg-gradient-radial", "from-blue-500/10", "via-transparent", "to-transparent", "absolute", "top-0", "right-0", "w-[800px]", "h-[800px]", "rounded-full", "blur-3xl", "z-0"], [1, "bg-gradient-radial", "from-indigo-500/8", "via-transparent", "to-transparent", "absolute", "bottom-0", "left-0", "w-[600px]", "h-[600px]", "rounded-full", "blur-3xl", "z-0"], [1, "bg-gradient-radial", "from-purple-500/5", "via-transparent", "to-transparent", "absolute", "top-1/2", "left-1/2", "-translate-x-1/2", "-translate-y-1/2", "w-[700px]", "h-[700px]", "rounded-full", "blur-3xl", "z-0"], ["stroke-linecap", "round", "stroke-linejoin", "round", "stroke-width", "2", "d", "M4 6h16M4 12h16M4 18h16"], ["stroke-linecap", "round", "stroke-linejoin", "round", "stroke-width", "2", "d", "M4 6a2 2 0 012-2h2a2 2 0 012 2v2a2 2 0 01-2 2H6a2 2 0 01-2-2V6zM14 6a2 2 0 012-2h2a2 2 0 012 2v2a2 2 0 01-2 2h-2a2 2 0 01-2-2V6zM4 16a2 2 0 012-2h2a2 2 0 012 2v2a2 2 0 01-2 2H6a2 2 0 01-2-2v-2zM14 16a2 2 0 012-2h2a2 2 0 012 2v2a2 2 0 01-2 2h-2a2 2 0 01-2-2v-2z"], [1, "text-xs", "font-medium"], [1, "text-sm", "font-bold"], [1, "text-xs", "font-semibold", 3, "ngClass"], [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", 3, "click", "title", "ngClass"], [1, "rounded-xl", "border", "p-6", "sm:p-8", "animate-pulse", 3, "ngClass"], [3, "assessment", "revenueMetric", "charts", "metrics", "isLightMode", "isLoading", "isCompactMode", "isChartsLoading"], [1, "space-y-6"], [3, "width", "height", "isLightMode"], [1, "flex-1", "space-y-2"], [1, "space-y-2"], [1, "grid", "grid-cols-1", "md:grid-cols-2", "gap-4", "mt-6"], [3, "scrollToSection", "assessment", "revenueMetric", "charts", "metrics", "isLightMode", "isLoading", "isCompactMode", "isChartsLoading"], [1, "relative", "mb-16", "sm:mb-20", "animate-fade-in", 2, "animation-delay", "0.15s"], ["id", "insights-section", 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, "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, "masonry-grid"], [1, "grid", "grid-cols-1", "md:grid-cols-2", "lg:grid-cols-3", "gap-4"], ["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", "M13 10V3L4 14h7v7l9-11h-7z"], [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", "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", "metrics-section", 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"], ["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"], [3, "metric", "insights", "charts", "allCharts", "analysis", "isLightMode", "viewMode", "isCompactMode"], [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"], [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, "relative", "mb-16", "sm:mb-20", "mt-28", "sm:mt-36", "animate-fade-in", 2, "animation-delay", "0.65s"], ["id", "breakdowns-section", 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"], [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"], ["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"], [1, "relative", "mb-16", "sm:mb-20", "mt-28", "sm:mt-36", "animate-fade-in", 2, "animation-delay", "0.85s"], ["id", "competitive-section", 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"], [3, "metrics", "allCharts", "isLightMode", "isCompactMode", "competitiveBenchmark"], [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) {
23457
23507
  const _r1 = i0.ɵɵgetCurrentView();
23458
23508
  i0.ɵɵelementStart(0, "div", 1, 0);
23459
23509
  i0.ɵɵelement(2, "div", 2);
23460
23510
  i0.ɵɵelementStart(3, "div");
23461
- i0.ɵɵelement(4, "div", 3)(5, "div", 4)(6, "div", 5)(7, "div", 6)(8, "div", 7);
23511
+ i0.ɵɵelement(4, "div", 3)(5, "div", 4);
23512
+ i0.ɵɵconditionalCreate(6, SymphiqFunnelAnalysisDashboardComponent_Conditional_6_Template, 3, 0);
23462
23513
  i0.ɵɵelementEnd();
23463
- i0.ɵɵelementStart(9, "div");
23464
- i0.ɵɵelement(10, "div", 8);
23514
+ i0.ɵɵelementStart(7, "div");
23515
+ i0.ɵɵelement(8, "div", 5);
23465
23516
  i0.ɵɵelementEnd();
23466
- i0.ɵɵelementStart(11, "header", 9)(12, "div", 10)(13, "div", 11)(14, "div", 12)(15, "div", 13)(16, "div", 14)(17, "h1", 15);
23467
- i0.ɵɵtext(18);
23517
+ i0.ɵɵelementStart(9, "header", 6)(10, "div", 7)(11, "div", 8)(12, "div", 9)(13, "div", 10)(14, "div", 11)(15, "h1", 12);
23518
+ i0.ɵɵtext(16);
23468
23519
  i0.ɵɵelementEnd();
23469
- i0.ɵɵconditionalCreate(19, SymphiqFunnelAnalysisDashboardComponent_Conditional_19_Template, 1, 0, "div", 16);
23520
+ i0.ɵɵconditionalCreate(17, SymphiqFunnelAnalysisDashboardComponent_Conditional_17_Template, 1, 0, "div", 13);
23470
23521
  i0.ɵɵelementEnd();
23471
- i0.ɵɵelementStart(20, "div", 17)(21, "p", 18);
23472
- i0.ɵɵtext(22, "Revenue Orchestration & Funnel Analysis");
23522
+ i0.ɵɵelementStart(18, "div", 14)(19, "p", 15);
23523
+ i0.ɵɵtext(20, "Revenue Orchestration & Funnel Analysis");
23473
23524
  i0.ɵɵelementEnd();
23474
- i0.ɵɵelementStart(23, "div", 19)(24, "button", 20);
23475
- i0.ɵɵlistener("click", function SymphiqFunnelAnalysisDashboardComponent_Template_button_click_24_listener($event) { i0.ɵɵrestoreView(_r1); ctx.searchService.openSearch(); return i0.ɵɵresetView($event.preventDefault()); });
23525
+ i0.ɵɵelementStart(21, "div", 16)(22, "button", 17);
23526
+ i0.ɵɵlistener("click", function SymphiqFunnelAnalysisDashboardComponent_Template_button_click_22_listener($event) { i0.ɵɵrestoreView(_r1); ctx.searchService.openSearch(); return i0.ɵɵresetView($event.preventDefault()); });
23476
23527
  i0.ɵɵnamespaceSVG();
23477
- i0.ɵɵelementStart(25, "svg", 21);
23478
- i0.ɵɵelement(26, "path", 22);
23528
+ i0.ɵɵelementStart(23, "svg", 18);
23529
+ i0.ɵɵelement(24, "path", 19);
23479
23530
  i0.ɵɵelementEnd();
23480
23531
  i0.ɵɵnamespaceHTML();
23481
- i0.ɵɵelementStart(27, "span");
23482
- i0.ɵɵtext(28, "Search");
23532
+ i0.ɵɵelementStart(25, "span");
23533
+ i0.ɵɵtext(26, "Search");
23483
23534
  i0.ɵɵelementEnd()();
23484
- i0.ɵɵelementStart(29, "div", 23)(30, "button", 24);
23485
- i0.ɵɵlistener("click", function SymphiqFunnelAnalysisDashboardComponent_Template_button_click_30_listener($event) { i0.ɵɵrestoreView(_r1); ctx.viewModeService.toggleViewMode(); return i0.ɵɵresetView($event.preventDefault()); });
23486
- i0.ɵɵconditionalCreate(31, SymphiqFunnelAnalysisDashboardComponent_Conditional_31_Template, 4, 0)(32, SymphiqFunnelAnalysisDashboardComponent_Conditional_32_Template, 4, 0);
23535
+ i0.ɵɵelementStart(27, "div", 20)(28, "button", 21);
23536
+ i0.ɵɵlistener("click", function SymphiqFunnelAnalysisDashboardComponent_Template_button_click_28_listener($event) { i0.ɵɵrestoreView(_r1); ctx.viewModeService.toggleViewMode(); return i0.ɵɵresetView($event.preventDefault()); });
23537
+ i0.ɵɵconditionalCreate(29, SymphiqFunnelAnalysisDashboardComponent_Conditional_29_Template, 4, 0)(30, SymphiqFunnelAnalysisDashboardComponent_Conditional_30_Template, 4, 0);
23487
23538
  i0.ɵɵelementEnd()();
23488
- i0.ɵɵelementStart(33, "div", 25)(34, "label", 26);
23489
- i0.ɵɵtext(35, "View:");
23539
+ i0.ɵɵelementStart(31, "div", 22)(32, "label", 23);
23540
+ i0.ɵɵtext(33, "View:");
23490
23541
  i0.ɵɵelementEnd();
23491
- i0.ɵɵelementStart(36, "div", 27);
23492
- i0.ɵɵlistener("click", function SymphiqFunnelAnalysisDashboardComponent_Template_div_click_36_listener($event) { i0.ɵɵrestoreView(_r1); return i0.ɵɵresetView($event.stopPropagation()); })("mousedown", function SymphiqFunnelAnalysisDashboardComponent_Template_div_mousedown_36_listener($event) { i0.ɵɵrestoreView(_r1); return i0.ɵɵresetView($event.stopPropagation()); })("pointerdown", function SymphiqFunnelAnalysisDashboardComponent_Template_div_pointerdown_36_listener($event) { i0.ɵɵrestoreView(_r1); return i0.ɵɵresetView($event.stopPropagation()); });
23493
- i0.ɵɵelementStart(37, "select", 28);
23494
- i0.ɵɵlistener("ngModelChange", function SymphiqFunnelAnalysisDashboardComponent_Template_select_ngModelChange_37_listener($event) { i0.ɵɵrestoreView(_r1); return i0.ɵɵresetView(ctx.changeSectionFilter($event)); });
23495
- i0.ɵɵrepeaterCreate(38, SymphiqFunnelAnalysisDashboardComponent_For_39_Template, 2, 2, "option", 29, _forTrack0$1);
23542
+ i0.ɵɵelementStart(34, "div", 24);
23543
+ i0.ɵɵlistener("click", function SymphiqFunnelAnalysisDashboardComponent_Template_div_click_34_listener($event) { i0.ɵɵrestoreView(_r1); return i0.ɵɵresetView($event.stopPropagation()); })("mousedown", function SymphiqFunnelAnalysisDashboardComponent_Template_div_mousedown_34_listener($event) { i0.ɵɵrestoreView(_r1); return i0.ɵɵresetView($event.stopPropagation()); })("pointerdown", function SymphiqFunnelAnalysisDashboardComponent_Template_div_pointerdown_34_listener($event) { i0.ɵɵrestoreView(_r1); return i0.ɵɵresetView($event.stopPropagation()); });
23544
+ i0.ɵɵelementStart(35, "select", 25);
23545
+ i0.ɵɵlistener("ngModelChange", function SymphiqFunnelAnalysisDashboardComponent_Template_select_ngModelChange_35_listener($event) { i0.ɵɵrestoreView(_r1); return i0.ɵɵresetView(ctx.changeSectionFilter($event)); });
23546
+ i0.ɵɵrepeaterCreate(36, SymphiqFunnelAnalysisDashboardComponent_For_37_Template, 2, 2, "option", 26, _forTrack0$1);
23496
23547
  i0.ɵɵelementEnd()()()()()();
23497
- i0.ɵɵelementStart(40, "div", 30)(41, "div", 31)(42, "div", 32);
23498
- i0.ɵɵtext(43, "Generated At");
23499
- i0.ɵɵelementEnd();
23500
- i0.ɵɵelementStart(44, "div", 33);
23501
- i0.ɵɵtext(45);
23502
- i0.ɵɵelementEnd()();
23503
- i0.ɵɵelementStart(46, "div", 31)(47, "div", 32);
23504
- i0.ɵɵtext(48, "Requested by");
23548
+ i0.ɵɵelementStart(38, "div", 27);
23549
+ i0.ɵɵconditionalCreate(39, SymphiqFunnelAnalysisDashboardComponent_Conditional_39_Template, 5, 5, "div", 28);
23550
+ i0.ɵɵelementStart(40, "div", 28)(41, "div", 29);
23551
+ i0.ɵɵtext(42, "Requested by");
23505
23552
  i0.ɵɵelementEnd();
23506
- i0.ɵɵelementStart(49, "div", 33);
23507
- i0.ɵɵtext(50);
23553
+ i0.ɵɵelementStart(43, "div", 30);
23554
+ i0.ɵɵtext(44);
23508
23555
  i0.ɵɵelementEnd()()()()()();
23509
- i0.ɵɵelementStart(51, "div", 10)(52, "div", 34)(53, "div", 35)(54, "div", 36)(55, "h1", 37);
23510
- i0.ɵɵtext(56);
23556
+ i0.ɵɵelementStart(45, "div", 7)(46, "div", 31)(47, "div", 32)(48, "div", 33)(49, "h1", 34);
23557
+ i0.ɵɵtext(50);
23511
23558
  i0.ɵɵelementEnd();
23512
- i0.ɵɵconditionalCreate(57, SymphiqFunnelAnalysisDashboardComponent_Conditional_57_Template, 7, 9, "div", 38);
23559
+ i0.ɵɵconditionalCreate(51, SymphiqFunnelAnalysisDashboardComponent_Conditional_51_Template, 7, 9, "div", 35);
23513
23560
  i0.ɵɵelementEnd();
23514
- i0.ɵɵelementStart(58, "div", 14)(59, "button", 39);
23515
- i0.ɵɵlistener("click", function SymphiqFunnelAnalysisDashboardComponent_Template_button_click_59_listener($event) { i0.ɵɵrestoreView(_r1); ctx.searchService.openSearch(); return i0.ɵɵresetView($event.preventDefault()); });
23561
+ i0.ɵɵelementStart(52, "div", 11)(53, "button", 36);
23562
+ i0.ɵɵlistener("click", function SymphiqFunnelAnalysisDashboardComponent_Template_button_click_53_listener($event) { i0.ɵɵrestoreView(_r1); ctx.searchService.openSearch(); return i0.ɵɵresetView($event.preventDefault()); });
23516
23563
  i0.ɵɵnamespaceSVG();
23517
- i0.ɵɵelementStart(60, "svg", 40);
23518
- i0.ɵɵelement(61, "path", 22);
23564
+ i0.ɵɵelementStart(54, "svg", 37);
23565
+ i0.ɵɵelement(55, "path", 19);
23519
23566
  i0.ɵɵelementEnd()();
23520
23567
  i0.ɵɵnamespaceHTML();
23521
- i0.ɵɵelementStart(62, "button", 41);
23522
- i0.ɵɵlistener("click", function SymphiqFunnelAnalysisDashboardComponent_Template_button_click_62_listener($event) { i0.ɵɵrestoreView(_r1); ctx.viewModeService.toggleViewMode(); return i0.ɵɵresetView($event.preventDefault()); });
23523
- i0.ɵɵconditionalCreate(63, SymphiqFunnelAnalysisDashboardComponent_Conditional_63_Template, 2, 0, ":svg:svg", 40)(64, SymphiqFunnelAnalysisDashboardComponent_Conditional_64_Template, 2, 0, ":svg:svg", 40);
23568
+ i0.ɵɵelementStart(56, "button", 38);
23569
+ i0.ɵɵlistener("click", function SymphiqFunnelAnalysisDashboardComponent_Template_button_click_56_listener($event) { i0.ɵɵrestoreView(_r1); ctx.viewModeService.toggleViewMode(); return i0.ɵɵresetView($event.preventDefault()); });
23570
+ i0.ɵɵconditionalCreate(57, SymphiqFunnelAnalysisDashboardComponent_Conditional_57_Template, 2, 0, ":svg:svg", 37)(58, SymphiqFunnelAnalysisDashboardComponent_Conditional_58_Template, 2, 0, ":svg:svg", 37);
23524
23571
  i0.ɵɵelementEnd();
23525
- i0.ɵɵelementStart(65, "div", 27);
23526
- i0.ɵɵlistener("click", function SymphiqFunnelAnalysisDashboardComponent_Template_div_click_65_listener($event) { i0.ɵɵrestoreView(_r1); return i0.ɵɵresetView($event.stopPropagation()); })("mousedown", function SymphiqFunnelAnalysisDashboardComponent_Template_div_mousedown_65_listener($event) { i0.ɵɵrestoreView(_r1); return i0.ɵɵresetView($event.stopPropagation()); })("pointerdown", function SymphiqFunnelAnalysisDashboardComponent_Template_div_pointerdown_65_listener($event) { i0.ɵɵrestoreView(_r1); return i0.ɵɵresetView($event.stopPropagation()); });
23527
- i0.ɵɵelementStart(66, "select", 42);
23528
- i0.ɵɵlistener("ngModelChange", function SymphiqFunnelAnalysisDashboardComponent_Template_select_ngModelChange_66_listener($event) { i0.ɵɵrestoreView(_r1); return i0.ɵɵresetView(ctx.changeSectionFilter($event)); });
23529
- i0.ɵɵrepeaterCreate(67, SymphiqFunnelAnalysisDashboardComponent_For_68_Template, 2, 2, "option", 29, _forTrack0$1);
23572
+ i0.ɵɵelementStart(59, "div", 24);
23573
+ i0.ɵɵlistener("click", function SymphiqFunnelAnalysisDashboardComponent_Template_div_click_59_listener($event) { i0.ɵɵrestoreView(_r1); return i0.ɵɵresetView($event.stopPropagation()); })("mousedown", function SymphiqFunnelAnalysisDashboardComponent_Template_div_mousedown_59_listener($event) { i0.ɵɵrestoreView(_r1); return i0.ɵɵresetView($event.stopPropagation()); })("pointerdown", function SymphiqFunnelAnalysisDashboardComponent_Template_div_pointerdown_59_listener($event) { i0.ɵɵrestoreView(_r1); return i0.ɵɵresetView($event.stopPropagation()); });
23574
+ i0.ɵɵelementStart(60, "select", 39);
23575
+ i0.ɵɵlistener("ngModelChange", function SymphiqFunnelAnalysisDashboardComponent_Template_select_ngModelChange_60_listener($event) { i0.ɵɵrestoreView(_r1); return i0.ɵɵresetView(ctx.changeSectionFilter($event)); });
23576
+ i0.ɵɵrepeaterCreate(61, SymphiqFunnelAnalysisDashboardComponent_For_62_Template, 2, 2, "option", 26, _forTrack0$1);
23530
23577
  i0.ɵɵelementEnd()()()()()()();
23531
- i0.ɵɵconditionalCreate(69, SymphiqFunnelAnalysisDashboardComponent_Conditional_69_Template, 16, 8, "div", 43);
23532
- i0.ɵɵelementStart(70, "div", 44);
23533
- i0.ɵɵconditionalCreate(71, SymphiqFunnelAnalysisDashboardComponent_Conditional_71_Template, 1, 2, "button", 45);
23534
- i0.ɵɵconditionalCreate(72, SymphiqFunnelAnalysisDashboardComponent_Conditional_72_Template, 1, 2, "button", 45);
23535
- i0.ɵɵconditionalCreate(73, SymphiqFunnelAnalysisDashboardComponent_Conditional_73_Template, 1, 2, "button", 45);
23536
- i0.ɵɵconditionalCreate(74, SymphiqFunnelAnalysisDashboardComponent_Conditional_74_Template, 1, 2, "button", 45);
23537
- i0.ɵɵconditionalCreate(75, SymphiqFunnelAnalysisDashboardComponent_Conditional_75_Template, 1, 2, "button", 45);
23578
+ i0.ɵɵconditionalCreate(63, SymphiqFunnelAnalysisDashboardComponent_Conditional_63_Template, 16, 8, "div", 40);
23579
+ i0.ɵɵelementStart(64, "div", 41);
23580
+ i0.ɵɵconditionalCreate(65, SymphiqFunnelAnalysisDashboardComponent_Conditional_65_Template, 1, 2, "button", 42);
23581
+ i0.ɵɵconditionalCreate(66, SymphiqFunnelAnalysisDashboardComponent_Conditional_66_Template, 1, 2, "button", 42);
23582
+ i0.ɵɵconditionalCreate(67, SymphiqFunnelAnalysisDashboardComponent_Conditional_67_Template, 1, 2, "button", 42);
23583
+ i0.ɵɵconditionalCreate(68, SymphiqFunnelAnalysisDashboardComponent_Conditional_68_Template, 1, 2, "button", 42);
23584
+ i0.ɵɵconditionalCreate(69, SymphiqFunnelAnalysisDashboardComponent_Conditional_69_Template, 1, 2, "button", 42);
23538
23585
  i0.ɵɵelementEnd();
23539
- i0.ɵɵelementStart(76, "main", 46)(77, "div", 47);
23540
- i0.ɵɵconditionalCreate(78, SymphiqFunnelAnalysisDashboardComponent_Conditional_78_Template, 3, 1, "div", 48);
23541
- i0.ɵɵconditionalCreate(79, SymphiqFunnelAnalysisDashboardComponent_Conditional_79_Template, 17, 10);
23542
- i0.ɵɵconditionalCreate(80, SymphiqFunnelAnalysisDashboardComponent_Conditional_80_Template, 30, 18);
23543
- i0.ɵɵconditionalCreate(81, SymphiqFunnelAnalysisDashboardComponent_Conditional_81_Template, 18, 12);
23544
- i0.ɵɵconditionalCreate(82, SymphiqFunnelAnalysisDashboardComponent_Conditional_82_Template, 19, 13);
23586
+ i0.ɵɵelementStart(70, "main", 43)(71, "div", 44);
23587
+ i0.ɵɵconditionalCreate(72, SymphiqFunnelAnalysisDashboardComponent_Conditional_72_Template, 3, 1, "div", 45);
23588
+ i0.ɵɵconditionalCreate(73, SymphiqFunnelAnalysisDashboardComponent_Conditional_73_Template, 17, 10);
23589
+ i0.ɵɵconditionalCreate(74, SymphiqFunnelAnalysisDashboardComponent_Conditional_74_Template, 30, 18);
23590
+ i0.ɵɵconditionalCreate(75, SymphiqFunnelAnalysisDashboardComponent_Conditional_75_Template, 18, 12);
23591
+ i0.ɵɵconditionalCreate(76, SymphiqFunnelAnalysisDashboardComponent_Conditional_76_Template, 19, 13);
23545
23592
  i0.ɵɵelementEnd()();
23546
- i0.ɵɵelement(83, "symphiq-funnel-analysis-modal", 49)(84, "symphiq-tooltip-container");
23547
- i0.ɵɵelementStart(85, "symphiq-search-bar", 50);
23548
- i0.ɵɵlistener("resultSelected", function SymphiqFunnelAnalysisDashboardComponent_Template_symphiq_search_bar_resultSelected_85_listener($event) { i0.ɵɵrestoreView(_r1); return i0.ɵɵresetView(ctx.handleSearchResult($event)); });
23593
+ i0.ɵɵelement(77, "symphiq-funnel-analysis-modal", 46)(78, "symphiq-tooltip-container");
23594
+ i0.ɵɵelementStart(79, "symphiq-search-bar", 47);
23595
+ i0.ɵɵlistener("resultSelected", function SymphiqFunnelAnalysisDashboardComponent_Template_symphiq_search_bar_resultSelected_79_listener($event) { i0.ɵɵrestoreView(_r1); return i0.ɵɵresetView(ctx.handleSearchResult($event)); });
23549
23596
  i0.ɵɵelementEnd();
23550
- i0.ɵɵelementStart(86, "symphiq-mobile-fab", 51);
23551
- i0.ɵɵlistener("expandedChange", function SymphiqFunnelAnalysisDashboardComponent_Template_symphiq_mobile_fab_expandedChange_86_listener($event) { i0.ɵɵrestoreView(_r1); return i0.ɵɵresetView(ctx.fabExpanded.set($event)); })("scrollToTop", function SymphiqFunnelAnalysisDashboardComponent_Template_symphiq_mobile_fab_scrollToTop_86_listener() { i0.ɵɵrestoreView(_r1); return i0.ɵɵresetView(ctx.scrollToTop()); })("toggleView", function SymphiqFunnelAnalysisDashboardComponent_Template_symphiq_mobile_fab_toggleView_86_listener() { i0.ɵɵrestoreView(_r1); return i0.ɵɵresetView(ctx.viewModeService.toggleViewMode()); });
23597
+ i0.ɵɵelementStart(80, "symphiq-mobile-fab", 48);
23598
+ i0.ɵɵlistener("expandedChange", function SymphiqFunnelAnalysisDashboardComponent_Template_symphiq_mobile_fab_expandedChange_80_listener($event) { i0.ɵɵrestoreView(_r1); return i0.ɵɵresetView(ctx.fabExpanded.set($event)); })("scrollToTop", function SymphiqFunnelAnalysisDashboardComponent_Template_symphiq_mobile_fab_scrollToTop_80_listener() { i0.ɵɵrestoreView(_r1); return i0.ɵɵresetView(ctx.scrollToTop()); })("toggleView", function SymphiqFunnelAnalysisDashboardComponent_Template_symphiq_mobile_fab_toggleView_80_listener() { i0.ɵɵrestoreView(_r1); return i0.ɵɵresetView(ctx.viewModeService.toggleViewMode()); });
23552
23599
  i0.ɵɵelementEnd();
23553
- i0.ɵɵelementStart(87, "symphiq-mobile-bottom-nav", 52);
23554
- i0.ɵɵlistener("navigate", function SymphiqFunnelAnalysisDashboardComponent_Template_symphiq_mobile_bottom_nav_navigate_87_listener($event) { i0.ɵɵrestoreView(_r1); return i0.ɵɵresetView(ctx.handleMobileNavigation($event)); });
23600
+ i0.ɵɵelementStart(81, "symphiq-mobile-bottom-nav", 49);
23601
+ i0.ɵɵlistener("navigate", function SymphiqFunnelAnalysisDashboardComponent_Template_symphiq_mobile_bottom_nav_navigate_81_listener($event) { i0.ɵɵrestoreView(_r1); return i0.ɵɵresetView(ctx.handleMobileNavigation($event)); });
23555
23602
  i0.ɵɵelementEnd()();
23556
23603
  } if (rf & 2) {
23557
- let tmp_21_0;
23558
- let tmp_36_0;
23559
- let tmp_43_0;
23604
+ let tmp_19_0;
23605
+ let tmp_32_0;
23606
+ let tmp_39_0;
23560
23607
  i0.ɵɵstyleProp("display", ctx.embedded() ? "block" : null)("min-height", ctx.embedded() ? "auto" : null);
23561
23608
  i0.ɵɵclassProp("min-h-screen", !ctx.embedded())("relative", !ctx.embedded());
23562
23609
  i0.ɵɵadvance(2);
@@ -23564,13 +23611,9 @@ class SymphiqFunnelAnalysisDashboardComponent {
23564
23611
  i0.ɵɵadvance();
23565
23612
  i0.ɵɵclassMap(ctx.embedded() ? "inset-0 -z-10 pointer-events-none" : "fixed inset-0 -z-10 pointer-events-none");
23566
23613
  i0.ɵɵadvance();
23567
- i0.ɵɵproperty("ngClass", ctx.isLightMode() ? "bg-gradient-to-br from-slate-50 via-blue-50/30 to-indigo-50/40" : "bg-gradient-to-br from-slate-950 via-slate-900 to-slate-950");
23614
+ i0.ɵɵproperty("ngClass", ctx.isLightMode() ? "bg-white" : "bg-gradient-to-br from-slate-950 via-slate-900 to-slate-950");
23568
23615
  i0.ɵɵadvance(2);
23569
- i0.ɵɵproperty("ngClass", ctx.isLightMode() ? "bg-gradient-radial from-blue-400/20 via-transparent to-transparent" : "bg-gradient-radial from-blue-500/10 via-transparent to-transparent");
23570
- i0.ɵɵadvance();
23571
- i0.ɵɵproperty("ngClass", ctx.isLightMode() ? "bg-gradient-radial from-indigo-400/15 via-transparent to-transparent" : "bg-gradient-radial from-indigo-500/8 via-transparent to-transparent");
23572
- i0.ɵɵadvance();
23573
- i0.ɵɵproperty("ngClass", ctx.isLightMode() ? "bg-gradient-radial from-purple-400/10 via-transparent to-transparent" : "bg-gradient-radial from-purple-500/5 via-transparent to-transparent");
23616
+ i0.ɵɵconditional(!ctx.isLightMode() ? 6 : -1);
23574
23617
  i0.ɵɵadvance();
23575
23618
  i0.ɵɵclassMap(ctx.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");
23576
23619
  i0.ɵɵadvance();
@@ -23583,9 +23626,9 @@ class SymphiqFunnelAnalysisDashboardComponent {
23583
23626
  i0.ɵɵadvance();
23584
23627
  i0.ɵɵclassProp("pointer-events-none", ctx.isScrolled())("pointer-events-auto", !ctx.isScrolled());
23585
23628
  i0.ɵɵadvance(5);
23586
- i0.ɵɵtextInterpolate((tmp_21_0 = ctx.analysisData()) == null ? null : tmp_21_0.title);
23629
+ i0.ɵɵtextInterpolate((tmp_19_0 = ctx.analysisData()) == null ? null : tmp_19_0.title);
23587
23630
  i0.ɵɵadvance();
23588
- i0.ɵɵconditional(ctx.isLoading() && !ctx.isShowingLoader() ? 19 : -1);
23631
+ i0.ɵɵconditional(ctx.isLoading() && !ctx.isShowingLoader() ? 17 : -1);
23589
23632
  i0.ɵɵadvance(2);
23590
23633
  i0.ɵɵclassMap(ctx.headerSubtitleClass());
23591
23634
  i0.ɵɵadvance(3);
@@ -23593,7 +23636,7 @@ class SymphiqFunnelAnalysisDashboardComponent {
23593
23636
  i0.ɵɵadvance(6);
23594
23637
  i0.ɵɵclassMap(ctx.buttonClass());
23595
23638
  i0.ɵɵadvance();
23596
- i0.ɵɵconditional(ctx.viewModeService.isCompact() ? 31 : 32);
23639
+ i0.ɵɵconditional(ctx.viewModeService.isCompact() ? 29 : 30);
23597
23640
  i0.ɵɵadvance(3);
23598
23641
  i0.ɵɵclassMap(ctx.metaLabelClass());
23599
23642
  i0.ɵɵadvance(3);
@@ -23601,60 +23644,56 @@ class SymphiqFunnelAnalysisDashboardComponent {
23601
23644
  i0.ɵɵproperty("ngModel", ctx.selectedSectionFilter());
23602
23645
  i0.ɵɵadvance();
23603
23646
  i0.ɵɵrepeater(ctx.sectionFilters);
23604
- i0.ɵɵadvance(4);
23605
- i0.ɵɵclassMap(ctx.metaLabelClass());
23606
- i0.ɵɵadvance(2);
23607
- i0.ɵɵclassMap(ctx.headerTitleClass());
23608
- i0.ɵɵadvance();
23609
- i0.ɵɵtextInterpolate(ctx.formattedGeneratedDate());
23647
+ i0.ɵɵadvance(3);
23648
+ i0.ɵɵconditional(ctx.formattedGeneratedDate() ? 39 : -1);
23610
23649
  i0.ɵɵadvance(2);
23611
23650
  i0.ɵɵclassMap(ctx.metaLabelClass());
23612
23651
  i0.ɵɵadvance(2);
23613
23652
  i0.ɵɵclassMap(ctx.headerTitleClass());
23614
23653
  i0.ɵɵadvance();
23615
- i0.ɵɵtextInterpolate2("", (tmp_36_0 = ctx.requestedByUser()) == null ? null : tmp_36_0.firstName, " ", (tmp_36_0 = ctx.requestedByUser()) == null ? null : tmp_36_0.lastName);
23654
+ i0.ɵɵtextInterpolate2("", (tmp_32_0 = ctx.requestedByUser()) == null ? null : tmp_32_0.firstName, " ", (tmp_32_0 = ctx.requestedByUser()) == null ? null : tmp_32_0.lastName);
23616
23655
  i0.ɵɵadvance();
23617
23656
  i0.ɵɵclassProp("max-h-0", !ctx.isScrolled())("opacity-0", !ctx.isScrolled())("max-h-20", ctx.isScrolled())("opacity-100", ctx.isScrolled());
23618
23657
  i0.ɵɵadvance();
23619
23658
  i0.ɵɵclassProp("pointer-events-none", !ctx.isScrolled())("pointer-events-auto", ctx.isScrolled());
23620
23659
  i0.ɵɵadvance(4);
23621
- i0.ɵɵtextInterpolate((tmp_43_0 = ctx.analysisData()) == null ? null : tmp_43_0.title);
23660
+ i0.ɵɵtextInterpolate((tmp_39_0 = ctx.analysisData()) == null ? null : tmp_39_0.title);
23622
23661
  i0.ɵɵadvance();
23623
- i0.ɵɵconditional(ctx.revenueMetric() ? 57 : -1);
23662
+ i0.ɵɵconditional(ctx.revenueMetric() ? 51 : -1);
23624
23663
  i0.ɵɵadvance(2);
23625
23664
  i0.ɵɵclassMap(ctx.buttonClass());
23626
23665
  i0.ɵɵadvance(3);
23627
23666
  i0.ɵɵclassMap(ctx.buttonClass());
23628
23667
  i0.ɵɵproperty("title", ctx.viewModeService.isCompact() ? "Compact View (Click to Expand)" : "Expanded View (Click to Compact)");
23629
23668
  i0.ɵɵadvance();
23630
- i0.ɵɵconditional(ctx.viewModeService.isCompact() ? 63 : 64);
23669
+ i0.ɵɵconditional(ctx.viewModeService.isCompact() ? 57 : 58);
23631
23670
  i0.ɵɵadvance(3);
23632
23671
  i0.ɵɵclassMap(ctx.selectClass());
23633
23672
  i0.ɵɵproperty("ngModel", ctx.selectedSectionFilter());
23634
23673
  i0.ɵɵadvance();
23635
23674
  i0.ɵɵrepeater(ctx.sectionFilters);
23636
23675
  i0.ɵɵadvance(2);
23637
- i0.ɵɵconditional(ctx.searchService.activeSearchResult() ? 69 : -1);
23676
+ i0.ɵɵconditional(ctx.searchService.activeSearchResult() ? 63 : -1);
23638
23677
  i0.ɵɵadvance(2);
23639
- i0.ɵɵconditional(ctx.showOverallPerformance() ? 71 : -1);
23678
+ i0.ɵɵconditional(ctx.showOverallPerformance() ? 65 : -1);
23640
23679
  i0.ɵɵadvance();
23641
- i0.ɵɵconditional(ctx.showKeyInsights() ? 72 : -1);
23680
+ i0.ɵɵconditional(ctx.showKeyInsights() ? 66 : -1);
23642
23681
  i0.ɵɵadvance();
23643
- i0.ɵɵconditional(ctx.showPerformanceMetrics() ? 73 : -1);
23682
+ i0.ɵɵconditional(ctx.showPerformanceMetrics() ? 67 : -1);
23644
23683
  i0.ɵɵadvance();
23645
- i0.ɵɵconditional(ctx.showPerformanceBreakdowns() ? 74 : -1);
23684
+ i0.ɵɵconditional(ctx.showPerformanceBreakdowns() ? 68 : -1);
23646
23685
  i0.ɵɵadvance();
23647
- i0.ɵɵconditional(ctx.showCompetitiveIntelligence() ? 75 : -1);
23686
+ i0.ɵɵconditional(ctx.showCompetitiveIntelligence() ? 69 : -1);
23648
23687
  i0.ɵɵadvance(3);
23649
- i0.ɵɵconditional(ctx.showOverallPerformance() ? 78 : -1);
23688
+ i0.ɵɵconditional(ctx.showOverallPerformance() ? 72 : -1);
23650
23689
  i0.ɵɵadvance();
23651
- i0.ɵɵconditional(ctx.showKeyInsights() ? 79 : -1);
23690
+ i0.ɵɵconditional(ctx.showKeyInsights() ? 73 : -1);
23652
23691
  i0.ɵɵadvance();
23653
- i0.ɵɵconditional(ctx.showPerformanceMetrics() ? 80 : -1);
23692
+ i0.ɵɵconditional(ctx.showPerformanceMetrics() ? 74 : -1);
23654
23693
  i0.ɵɵadvance();
23655
- i0.ɵɵconditional(ctx.showPerformanceBreakdowns() ? 81 : -1);
23694
+ i0.ɵɵconditional(ctx.showPerformanceBreakdowns() ? 75 : -1);
23656
23695
  i0.ɵɵadvance();
23657
- i0.ɵɵconditional(ctx.showCompetitiveIntelligence() ? 82 : -1);
23696
+ i0.ɵɵconditional(ctx.showCompetitiveIntelligence() ? 76 : -1);
23658
23697
  i0.ɵɵadvance();
23659
23698
  i0.ɵɵproperty("isLightMode", ctx.isLightMode());
23660
23699
  i0.ɵɵadvance(2);
@@ -23708,7 +23747,7 @@ class SymphiqFunnelAnalysisDashboardComponent {
23708
23747
  <div [class]="embedded() ? 'inset-0 -z-10 pointer-events-none' : 'fixed inset-0 -z-10 pointer-events-none'">
23709
23748
  <div
23710
23749
  [ngClass]="isLightMode()
23711
- ? 'bg-gradient-to-br from-slate-50 via-blue-50/30 to-indigo-50/40'
23750
+ ? 'bg-white'
23712
23751
  : 'bg-gradient-to-br from-slate-950 via-slate-900 to-slate-950'"
23713
23752
  class="absolute inset-0">
23714
23753
  </div>
@@ -23719,25 +23758,18 @@ class SymphiqFunnelAnalysisDashboardComponent {
23719
23758
  style="background-image: url('data:image/svg+xml,%3Csvg width=\'60\' height=\'60\' viewBox=\'0 0 60 60\' xmlns=\'http://www.w3.org/2000/svg\'%3E%3Cg fill=\'none\' fill-rule=\'evenodd\'%3E%3Cg fill=\'%23000000\' fill-opacity=\'1\'%3E%3Cpath d=\'M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z\'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E');">
23720
23759
  </div>
23721
23760
 
23722
- <!-- Radial Gradient Orbs -->
23723
- <div
23724
- [ngClass]="isLightMode()
23725
- ? 'bg-gradient-radial from-blue-400/20 via-transparent to-transparent'
23726
- : 'bg-gradient-radial from-blue-500/10 via-transparent to-transparent'"
23727
- class="absolute top-0 right-0 w-[800px] h-[800px] rounded-full blur-3xl z-0">
23728
- </div>
23729
- <div
23730
- [ngClass]="isLightMode()
23731
- ? 'bg-gradient-radial from-indigo-400/15 via-transparent to-transparent'
23732
- : 'bg-gradient-radial from-indigo-500/8 via-transparent to-transparent'"
23733
- class="absolute bottom-0 left-0 w-[600px] h-[600px] rounded-full blur-3xl z-0">
23734
- </div>
23735
- <div
23736
- [ngClass]="isLightMode()
23737
- ? 'bg-gradient-radial from-purple-400/10 via-transparent to-transparent'
23738
- : 'bg-gradient-radial from-purple-500/5 via-transparent to-transparent'"
23739
- class="absolute top-1/2 left-1/2 -translate-x-1/2 -translate-y-1/2 w-[700px] h-[700px] rounded-full blur-3xl z-0">
23740
- </div>
23761
+ <!-- Radial Gradient Orbs (hidden in light mode) -->
23762
+ @if (!isLightMode()) {
23763
+ <div
23764
+ class="bg-gradient-radial from-blue-500/10 via-transparent to-transparent absolute top-0 right-0 w-[800px] h-[800px] rounded-full blur-3xl z-0">
23765
+ </div>
23766
+ <div
23767
+ class="bg-gradient-radial from-indigo-500/8 via-transparent to-transparent absolute bottom-0 left-0 w-[600px] h-[600px] rounded-full blur-3xl z-0">
23768
+ </div>
23769
+ <div
23770
+ class="bg-gradient-radial from-purple-500/5 via-transparent to-transparent absolute top-1/2 left-1/2 -translate-x-1/2 -translate-y-1/2 w-[700px] h-[700px] rounded-full blur-3xl z-0">
23771
+ </div>
23772
+ }
23741
23773
  </div>
23742
23774
 
23743
23775
  <!-- Scroll Progress Bar -->
@@ -23823,10 +23855,12 @@ class SymphiqFunnelAnalysisDashboardComponent {
23823
23855
  </div>
23824
23856
  </div>
23825
23857
  <div class="flex flex-col gap-4 min-w-[180px]">
23826
- <div class="text-left sm:text-right">
23827
- <div [class]="metaLabelClass()" class="text-xs sm:text-sm">Generated At</div>
23828
- <div [class]="headerTitleClass()" class="text-sm sm:text-base font-medium">{{ formattedGeneratedDate() }}</div>
23829
- </div>
23858
+ @if (formattedGeneratedDate()) {
23859
+ <div class="text-left sm:text-right">
23860
+ <div [class]="metaLabelClass()" class="text-xs sm:text-sm">Generated At</div>
23861
+ <div [class]="headerTitleClass()" class="text-sm sm:text-base font-medium">{{ formattedGeneratedDate() }}</div>
23862
+ </div>
23863
+ }
23830
23864
  <div class="text-left sm:text-right">
23831
23865
  <div [class]="metaLabelClass()" class="text-xs sm:text-sm">Requested by</div>
23832
23866
  <div [class]="headerTitleClass()" class="text-sm sm:text-base font-medium">{{ requestedByUser()?.firstName }} {{ requestedByUser()?.lastName }}</div>
@@ -24556,7 +24590,7 @@ class SymphiqFunnelAnalysisDashboardComponent {
24556
24590
  type: HostListener,
24557
24591
  args: ['window:scroll', ['$event']]
24558
24592
  }] }); })();
24559
- (() => { (typeof ngDevMode === "undefined" || ngDevMode) && i0.ɵsetClassDebugInfo(SymphiqFunnelAnalysisDashboardComponent, { className: "SymphiqFunnelAnalysisDashboardComponent", filePath: "lib/components/funnel-analysis-dashboard/symphiq-funnel-analysis-dashboard.component.ts", lineNumber: 1049 }); })();
24593
+ (() => { (typeof ngDevMode === "undefined" || ngDevMode) && i0.ɵsetClassDebugInfo(SymphiqFunnelAnalysisDashboardComponent, { className: "SymphiqFunnelAnalysisDashboardComponent", filePath: "lib/components/funnel-analysis-dashboard/symphiq-funnel-analysis-dashboard.component.ts", lineNumber: 1044 }); })();
24560
24594
 
24561
24595
  /**
24562
24596
  * Shared Theme Color Utilities