@eric-emg/symphiq-components 1.2.134 → 1.2.136

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.
package/index.d.ts CHANGED
@@ -1,14 +1,15 @@
1
1
  import * as _jebgem_model from '@jebgem/model';
2
- import { ProfileItemInterface, ViewModeEnum, GoalV3Interface, ObjectiveV3Interface, StrategyV3Interface, OperationalCategoryInterface, CategoryStrengthInterface, CategoryGapInterface, CategoryOpportunityInterface, InsightBlockInterface, ProfileAnalysisRecommendationInterface, PerformanceMetricInterface, KeyStrengthInterface, CriticalGapInterface, FocusAreaTopPriorityInterface, AiChartInterface, ProfileAnalysisRecommendationActionStepInterface, MetricStatusEnum, TrendDirectionEnum, CompetitiveScoreEnum, ProfileSectionInterface, ProfileSubsectionInterface, ProfileInterface, BreakdownMetricInterface, UserInterface, FunnelAnalysisInterface, PerformanceOverviewStructuredV3Interface, OverallAssessmentInterface, ProfileItemTypeEnum, IconObjectInterface as IconObjectInterface$1, NapkinVisualInterface, HierarchyDataInterface, ProfileAnalysisInterface, ProfileAnalysisTypeEnum, FocusAreaDetailInterface, IconSourceEnum, FocusAreaDomainEnum, ProfileAnalysisSectionV3Interface, ExecutiveSummaryInterface, FocusAreaExecutiveSummaryInterface, MetricExecutiveSummaryInterface, ChartTypeEnum } from '@jebgem/model';
2
+ import { FocusAreaTopPriorityInterface, MetricTopPriorityInterface, ProfileItemInterface, ViewModeEnum, GoalV3Interface, ObjectiveV3Interface, StrategyV3Interface, OperationalCategoryInterface, CategoryStrengthInterface, CategoryGapInterface, CategoryOpportunityInterface, InsightBlockInterface, ProfileAnalysisRecommendationInterface, PerformanceMetricInterface, KeyStrengthInterface, CriticalGapInterface, AiChartInterface, ProfileAnalysisRecommendationActionStepInterface, MetricStatusEnum, TrendDirectionEnum, CompetitiveScoreEnum, ProfileSectionInterface, ProfileSubsectionInterface, ProfileInterface, BreakdownMetricInterface, UserInterface, FunnelAnalysisInterface, PerformanceOverviewStructuredV3Interface, OverallAssessmentInterface, ProfileItemTypeEnum, IconObjectInterface as IconObjectInterface$1, NapkinVisualInterface, HierarchyDataInterface, ProfileAnalysisInterface, ProfileAnalysisTypeEnum, FocusAreaDetailInterface, IconSourceEnum, FocusAreaDomainEnum, ProfileAnalysisSectionV3Interface, ExecutiveSummaryInterface, FocusAreaExecutiveSummaryInterface, MetricExecutiveSummaryInterface, ChartTypeEnum } from '@jebgem/model';
3
3
  export * from '@jebgem/model';
4
4
  import * as _angular_core from '@angular/core';
5
- import { AfterViewInit, ElementRef, WritableSignal, OnInit, OnDestroy, OnChanges, SimpleChanges, EventEmitter, Renderer2 } from '@angular/core';
5
+ import { AfterViewInit, ElementRef, WritableSignal, OnDestroy, OnInit, OnChanges, SimpleChanges, Renderer2 } from '@angular/core';
6
6
  import * as rxjs from 'rxjs';
7
7
  import { Observable } from 'rxjs';
8
8
  import { HttpClient } from '@angular/common/http';
9
9
  import * as _angular_platform_browser from '@angular/platform-browser';
10
10
  import { DomSanitizer, SafeHtml } from '@angular/platform-browser';
11
11
  import * as _jebgem_model_lib_funnel_analysis_performance_overview_structured_v3_interface from '@jebgem/model/lib/funnel-analysis/performance-overview-structured-v3.interface';
12
+ import { FormGroup } from '@angular/forms';
12
13
  import { ScrollCustomEvent as ScrollCustomEvent$1 } from '@symphiq-components/components/funnel-analysis-dashboard/symphiq-funnel-analysis-dashboard.component';
13
14
 
14
15
  interface FunnelMetricOrder {
@@ -36,6 +37,7 @@ declare class FunnelOrderService {
36
37
  static ɵprov: _angular_core.ɵɵInjectableDeclaration<FunnelOrderService>;
37
38
  }
38
39
 
40
+ type TopPriorityInterface = FocusAreaTopPriorityInterface | MetricTopPriorityInterface;
39
41
  interface VisualizationData {
40
42
  type: 'horizontal-bar' | 'circular-progress' | 'napkin-visual' | 'custom';
41
43
  title: string;
@@ -237,12 +239,12 @@ interface FunnelWeaknessDetailModalData {
237
239
  isLightMode: boolean;
238
240
  }
239
241
  interface TopPrioritiesListModalData {
240
- priorities: FocusAreaTopPriorityInterface[];
242
+ priorities: TopPriorityInterface[];
241
243
  viewMode: ViewModeEnum;
242
244
  focusAreaName?: string;
243
245
  }
244
246
  interface TopPriorityDetailModalData {
245
- priority: FocusAreaTopPriorityInterface;
247
+ priority: TopPriorityInterface;
246
248
  index: number;
247
249
  totalCount: number;
248
250
  viewMode: ViewModeEnum;
@@ -432,10 +434,10 @@ declare class ModalService {
432
434
  openFunnelWeaknessesListModal(weaknesses: FunnelWeaknessInterface[], isLightMode: boolean): void;
433
435
  navigateToFunnelStrengthDetail(strength: FunnelStrengthInterface, isLightMode: boolean): void;
434
436
  navigateToFunnelWeaknessDetail(weakness: FunnelWeaknessInterface, isLightMode: boolean): void;
435
- openFunnelWeaknessDetailModal(weakness: InsightBlockInterface, parentModalState?: ModalState): void;
436
- openFunnelStrengthDetailModal(strength: any, parentModalState?: ModalState): void;
437
- openTopPrioritiesListModal(priorities: FocusAreaTopPriorityInterface[], viewMode: ViewModeEnum, focusAreaName?: string): void;
438
- navigateToTopPriorityDetail(priority: FocusAreaTopPriorityInterface, index: number, viewMode: ViewModeEnum, focusAreaName?: string): void;
437
+ openFunnelWeaknessDetailModal(weakness: InsightBlockInterface & Partial<FunnelWeaknessInterface>, parentModalState?: ModalState): void;
438
+ openFunnelStrengthDetailModal(strength: InsightBlockInterface & Partial<FunnelStrengthInterface>, parentModalState?: ModalState): void;
439
+ openTopPrioritiesListModal(priorities: TopPriorityInterface[], viewMode: ViewModeEnum, focusAreaName?: string): void;
440
+ navigateToTopPriorityDetail(priority: TopPriorityInterface, index: number, viewMode: ViewModeEnum, focusAreaName?: string): void;
439
441
  openFocusAreaStrengthsListModal(strengths: CategoryStrengthInterface[], viewMode: ViewModeEnum, categoryTitle: string): void;
440
442
  navigateToFocusAreaStrengthDetail(strength: CategoryStrengthInterface, categoryTitle: string, viewMode: ViewModeEnum): void;
441
443
  openFocusAreaGapsListModal(gaps: CategoryGapInterface[], viewMode: ViewModeEnum, categoryTitle: string): void;
@@ -997,7 +999,7 @@ declare class ModalComponent {
997
999
  description: string;
998
1000
  icon: string;
999
1001
  } | null>;
1000
- metricsListData: _angular_core.Signal<PerformanceMetricInterface | AiChartInterface | InsightBlockInterface | FunnelStrengthsListModalData | FunnelWeaknessesListModalData | FunnelStrengthDetailModalData | FunnelWeaknessDetailModalData | (PerformanceMetricInterface | InsightBlockInterface)[] | null>;
1002
+ metricsListData: _angular_core.Signal<InsightBlockInterface | PerformanceMetricInterface | AiChartInterface | FunnelStrengthsListModalData | FunnelWeaknessesListModalData | FunnelStrengthDetailModalData | FunnelWeaknessDetailModalData | (InsightBlockInterface | PerformanceMetricInterface)[] | null>;
1001
1003
  metricsListMetrics: _angular_core.Signal<PerformanceMetricInterface[]>;
1002
1004
  metricsListInsightContext: _angular_core.Signal<{
1003
1005
  title: string;
@@ -1005,7 +1007,7 @@ declare class ModalComponent {
1005
1007
  businessContext: string;
1006
1008
  priority: number;
1007
1009
  } | null>;
1008
- chartsListData: _angular_core.Signal<PerformanceMetricInterface | AiChartInterface | InsightBlockInterface | FunnelStrengthsListModalData | FunnelWeaknessesListModalData | FunnelStrengthDetailModalData | FunnelWeaknessDetailModalData | (PerformanceMetricInterface | InsightBlockInterface)[] | null>;
1010
+ chartsListData: _angular_core.Signal<InsightBlockInterface | PerformanceMetricInterface | AiChartInterface | FunnelStrengthsListModalData | FunnelWeaknessesListModalData | FunnelStrengthDetailModalData | FunnelWeaknessDetailModalData | (InsightBlockInterface | PerformanceMetricInterface)[] | null>;
1009
1011
  chartsListCharts: _angular_core.Signal<AiChartInterface[]>;
1010
1012
  chartsListInsightContext: _angular_core.Signal<{
1011
1013
  title: string;
@@ -1013,7 +1015,7 @@ declare class ModalComponent {
1013
1015
  businessContext: string;
1014
1016
  priority: number;
1015
1017
  } | null>;
1016
- recommendationsListData: _angular_core.Signal<PerformanceMetricInterface | AiChartInterface | InsightBlockInterface | FunnelStrengthsListModalData | FunnelWeaknessesListModalData | FunnelStrengthDetailModalData | FunnelWeaknessDetailModalData | (PerformanceMetricInterface | InsightBlockInterface)[] | null>;
1018
+ recommendationsListData: _angular_core.Signal<InsightBlockInterface | PerformanceMetricInterface | AiChartInterface | FunnelStrengthsListModalData | FunnelWeaknessesListModalData | FunnelStrengthDetailModalData | FunnelWeaknessDetailModalData | (InsightBlockInterface | PerformanceMetricInterface)[] | null>;
1017
1019
  recommendationsListRecommendations: _angular_core.Signal<string[]>;
1018
1020
  recommendationsListInsightContext: _angular_core.Signal<{
1019
1021
  title: string;
@@ -1021,7 +1023,7 @@ declare class ModalComponent {
1021
1023
  businessContext: string;
1022
1024
  priority: number;
1023
1025
  } | null>;
1024
- competitiveAnalysisData: _angular_core.Signal<PerformanceMetricInterface | AiChartInterface | InsightBlockInterface | FunnelStrengthsListModalData | FunnelWeaknessesListModalData | FunnelStrengthDetailModalData | FunnelWeaknessDetailModalData | (PerformanceMetricInterface | InsightBlockInterface)[] | null>;
1026
+ competitiveAnalysisData: _angular_core.Signal<InsightBlockInterface | PerformanceMetricInterface | AiChartInterface | FunnelStrengthsListModalData | FunnelWeaknessesListModalData | FunnelStrengthDetailModalData | FunnelWeaknessDetailModalData | (InsightBlockInterface | PerformanceMetricInterface)[] | null>;
1025
1027
  competitiveAnalysisContext: _angular_core.Signal<{
1026
1028
  title: string;
1027
1029
  description: string;
@@ -1229,6 +1231,9 @@ declare class SymphiqFunnelAnalysisDashboardComponent implements AfterViewInit {
1229
1231
  scrollElement: _angular_core.InputSignal<HTMLElement | null | undefined>;
1230
1232
  isLoading: _angular_core.InputSignal<boolean | undefined>;
1231
1233
  isOnboarded: _angular_core.InputSignal<boolean>;
1234
+ forDemo: _angular_core.InputSignal<boolean>;
1235
+ stepClick: _angular_core.OutputEmitterRef<number>;
1236
+ nextStepClick: _angular_core.OutputEmitterRef<void>;
1232
1237
  selectedCategory: _angular_core.WritableSignal<string>;
1233
1238
  reverseSortOrder: _angular_core.WritableSignal<boolean>;
1234
1239
  selectedSectionFilter: _angular_core.WritableSignal<string>;
@@ -1364,7 +1369,7 @@ declare class SymphiqFunnelAnalysisDashboardComponent implements AfterViewInit {
1364
1369
  getCategoryPillClass(categoryValue: string): string;
1365
1370
  formatValue(value: number): string;
1366
1371
  static ɵfac: _angular_core.ɵɵFactoryDeclaration<SymphiqFunnelAnalysisDashboardComponent, never>;
1367
- static ɵcmp: _angular_core.ɵɵComponentDeclaration<SymphiqFunnelAnalysisDashboardComponent, "symphiq-funnel-analysis-dashboard", never, { "requestedByUser": { "alias": "requestedByUser"; "required": false; "isSignal": true; }; "viewMode": { "alias": "viewMode"; "required": false; "isSignal": true; }; "funnelAnalysis": { "alias": "funnelAnalysis"; "required": false; "isSignal": true; }; "businessProfile": { "alias": "businessProfile"; "required": false; "isSignal": true; }; "embedded": { "alias": "embedded"; "required": false; "isSignal": true; }; "scrollEvent": { "alias": "scrollEvent"; "required": false; "isSignal": true; }; "scrollElement": { "alias": "scrollElement"; "required": false; "isSignal": true; }; "isLoading": { "alias": "isLoading"; "required": false; "isSignal": true; }; "isOnboarded": { "alias": "isOnboarded"; "required": false; "isSignal": true; }; }, {}, never, never, true, never>;
1372
+ static ɵcmp: _angular_core.ɵɵComponentDeclaration<SymphiqFunnelAnalysisDashboardComponent, "symphiq-funnel-analysis-dashboard", never, { "requestedByUser": { "alias": "requestedByUser"; "required": false; "isSignal": true; }; "viewMode": { "alias": "viewMode"; "required": false; "isSignal": true; }; "funnelAnalysis": { "alias": "funnelAnalysis"; "required": false; "isSignal": true; }; "businessProfile": { "alias": "businessProfile"; "required": false; "isSignal": true; }; "embedded": { "alias": "embedded"; "required": false; "isSignal": true; }; "scrollEvent": { "alias": "scrollEvent"; "required": false; "isSignal": true; }; "scrollElement": { "alias": "scrollElement"; "required": false; "isSignal": true; }; "isLoading": { "alias": "isLoading"; "required": false; "isSignal": true; }; "isOnboarded": { "alias": "isOnboarded"; "required": false; "isSignal": true; }; "forDemo": { "alias": "forDemo"; "required": false; "isSignal": true; }; }, { "stepClick": "stepClick"; "nextStepClick": "nextStepClick"; }, never, never, true, never>;
1368
1373
  }
1369
1374
 
1370
1375
  declare class MetricCardComponent {
@@ -1452,9 +1457,9 @@ declare class MetricCardComponent {
1452
1457
  competitiveScoreBadgeLightClass: _angular_core.Signal<string>;
1453
1458
  competitiveScoreBadgeDarkClass: _angular_core.Signal<string>;
1454
1459
  competitiveScoreBadgeClass: _angular_core.Signal<string>;
1455
- competitiveScoreTextClass: _angular_core.Signal<"" | "text-blue-400" | "text-blue-700" | "text-emerald-600" | "text-orange-600">;
1456
- competitiveComparisonDefaultClass: _angular_core.Signal<"text-slate-700" | "text-slate-300">;
1457
- competitiveComparisonClass: _angular_core.Signal<"text-slate-700" | "text-slate-300" | "text-emerald-600 font-semibold" | "text-orange-600 font-semibold">;
1460
+ competitiveScoreTextClass: _angular_core.Signal<"" | "text-emerald-600" | "text-blue-400" | "text-blue-700" | "text-orange-600">;
1461
+ competitiveComparisonDefaultClass: _angular_core.Signal<"text-slate-300" | "text-slate-700">;
1462
+ competitiveComparisonClass: _angular_core.Signal<"text-slate-300" | "text-slate-700" | "text-emerald-600 font-semibold" | "text-orange-600 font-semibold">;
1458
1463
  getCompetitiveScoreIcon(): string;
1459
1464
  getCompetitiveScoreLabel(): string;
1460
1465
  getCompetitiveScoreLabelFull(): string;
@@ -1504,9 +1509,9 @@ declare class InsightCardComponent {
1504
1509
  recommendationsContainerLightClass: _angular_core.Signal<string>;
1505
1510
  recommendationsContainerDarkClass: _angular_core.Signal<string>;
1506
1511
  recommendationsContainerClass: _angular_core.Signal<string>;
1507
- priorityBadgeLightClass: _angular_core.Signal<"w-8 h-8 flex items-center justify-center rounded-full text-xs font-bold border-2 backdrop-blur-md animate-pulse bg-red-100/70 text-red-700 border-red-400/60" | "w-8 h-8 flex items-center justify-center rounded-full text-xs font-bold border-2 backdrop-blur-md bg-amber-100/70 text-amber-700 border-amber-400/60" | "w-8 h-8 flex items-center justify-center rounded-full text-xs font-bold border-2 backdrop-blur-md bg-blue-100/70 text-blue-700 border-blue-400/60" | "w-8 h-8 flex items-center justify-center rounded-full text-xs font-bold border-2 backdrop-blur-md bg-slate-100/70 text-slate-700 border-slate-400/60">;
1508
- priorityBadgeDarkClass: _angular_core.Signal<"w-8 h-8 flex items-center justify-center rounded-full text-xs font-bold border-2 backdrop-blur-md animate-pulse bg-red-500/20 text-red-400 border-red-500/50" | "w-8 h-8 flex items-center justify-center rounded-full text-xs font-bold border-2 backdrop-blur-md bg-amber-500/20 text-amber-400 border-amber-500/50" | "w-8 h-8 flex items-center justify-center rounded-full text-xs font-bold border-2 backdrop-blur-md bg-blue-500/20 text-blue-400 border-blue-500/50" | "w-8 h-8 flex items-center justify-center rounded-full text-xs font-bold border-2 backdrop-blur-md bg-slate-500/20 text-slate-400 border-slate-500/50">;
1509
- priorityBadgeClass: _angular_core.Signal<"w-8 h-8 flex items-center justify-center rounded-full text-xs font-bold border-2 backdrop-blur-md animate-pulse bg-red-100/70 text-red-700 border-red-400/60" | "w-8 h-8 flex items-center justify-center rounded-full text-xs font-bold border-2 backdrop-blur-md bg-amber-100/70 text-amber-700 border-amber-400/60" | "w-8 h-8 flex items-center justify-center rounded-full text-xs font-bold border-2 backdrop-blur-md bg-blue-100/70 text-blue-700 border-blue-400/60" | "w-8 h-8 flex items-center justify-center rounded-full text-xs font-bold border-2 backdrop-blur-md bg-slate-100/70 text-slate-700 border-slate-400/60" | "w-8 h-8 flex items-center justify-center rounded-full text-xs font-bold border-2 backdrop-blur-md animate-pulse bg-red-500/20 text-red-400 border-red-500/50" | "w-8 h-8 flex items-center justify-center rounded-full text-xs font-bold border-2 backdrop-blur-md bg-amber-500/20 text-amber-400 border-amber-500/50" | "w-8 h-8 flex items-center justify-center rounded-full text-xs font-bold border-2 backdrop-blur-md bg-blue-500/20 text-blue-400 border-blue-500/50" | "w-8 h-8 flex items-center justify-center rounded-full text-xs font-bold border-2 backdrop-blur-md bg-slate-500/20 text-slate-400 border-slate-500/50">;
1512
+ priorityBadgeLightClass: _angular_core.Signal<"w-8 h-8 flex items-center justify-center rounded-full text-xs font-bold border-2 backdrop-blur-md bg-amber-100/70 text-amber-700 border-amber-400/60" | "w-8 h-8 flex items-center justify-center rounded-full text-xs font-bold border-2 backdrop-blur-md bg-blue-100/70 text-blue-700 border-blue-400/60" | "w-8 h-8 flex items-center justify-center rounded-full text-xs font-bold border-2 backdrop-blur-md bg-slate-100/70 text-slate-700 border-slate-400/60" | "w-8 h-8 flex items-center justify-center rounded-full text-xs font-bold border-2 backdrop-blur-md animate-pulse bg-red-100/70 text-red-700 border-red-400/60">;
1513
+ priorityBadgeDarkClass: _angular_core.Signal<"w-8 h-8 flex items-center justify-center rounded-full text-xs font-bold border-2 backdrop-blur-md bg-amber-500/20 text-amber-400 border-amber-500/50" | "w-8 h-8 flex items-center justify-center rounded-full text-xs font-bold border-2 backdrop-blur-md bg-blue-500/20 text-blue-400 border-blue-500/50" | "w-8 h-8 flex items-center justify-center rounded-full text-xs font-bold border-2 backdrop-blur-md bg-slate-500/20 text-slate-400 border-slate-500/50" | "w-8 h-8 flex items-center justify-center rounded-full text-xs font-bold border-2 backdrop-blur-md animate-pulse bg-red-500/20 text-red-400 border-red-500/50">;
1514
+ priorityBadgeClass: _angular_core.Signal<"w-8 h-8 flex items-center justify-center rounded-full text-xs font-bold border-2 backdrop-blur-md bg-amber-100/70 text-amber-700 border-amber-400/60" | "w-8 h-8 flex items-center justify-center rounded-full text-xs font-bold border-2 backdrop-blur-md bg-blue-100/70 text-blue-700 border-blue-400/60" | "w-8 h-8 flex items-center justify-center rounded-full text-xs font-bold border-2 backdrop-blur-md bg-slate-100/70 text-slate-700 border-slate-400/60" | "w-8 h-8 flex items-center justify-center rounded-full text-xs font-bold border-2 backdrop-blur-md bg-amber-500/20 text-amber-400 border-amber-500/50" | "w-8 h-8 flex items-center justify-center rounded-full text-xs font-bold border-2 backdrop-blur-md bg-blue-500/20 text-blue-400 border-blue-500/50" | "w-8 h-8 flex items-center justify-center rounded-full text-xs font-bold border-2 backdrop-blur-md bg-slate-500/20 text-slate-400 border-slate-500/50" | "w-8 h-8 flex items-center justify-center rounded-full text-xs font-bold border-2 backdrop-blur-md animate-pulse bg-red-100/70 text-red-700 border-red-400/60" | "w-8 h-8 flex items-center justify-center rounded-full text-xs font-bold border-2 backdrop-blur-md animate-pulse bg-red-500/20 text-red-400 border-red-500/50">;
1510
1515
  containerLightClass: _angular_core.Signal<"transition-all duration-300 hover:shadow-2xl hover:-translate-y-1 cursor-pointer group bg-gradient-to-br from-white to-blue-50/50 border-2 border-blue-300 hover:border-blue-400 shadow-lg shadow-blue-200/50 hover:shadow-blue-300/60" | "transition-all duration-300 hover:shadow-2xl hover:-translate-y-1 cursor-pointer group bg-white border-slate-200 hover:border-blue-400 hover:shadow-blue-100/50">;
1511
1516
  containerDarkClass: _angular_core.Signal<"transition-all duration-300 hover:shadow-2xl hover:-translate-y-1 cursor-pointer group bg-gradient-to-br from-slate-800 to-blue-900/20 border-2 border-blue-500/40 hover:border-blue-400/60 shadow-lg shadow-blue-500/20 hover:shadow-blue-500/30" | "transition-all duration-300 hover:shadow-2xl hover:-translate-y-1 cursor-pointer group bg-slate-800 border-slate-700 hover:border-slate-500 hover:shadow-slate-900/50">;
1512
1517
  containerClass: _angular_core.Signal<"transition-all duration-300 hover:shadow-2xl hover:-translate-y-1 cursor-pointer group bg-gradient-to-br from-white to-blue-50/50 border-2 border-blue-300 hover:border-blue-400 shadow-lg shadow-blue-200/50 hover:shadow-blue-300/60" | "transition-all duration-300 hover:shadow-2xl hover:-translate-y-1 cursor-pointer group bg-white border-slate-200 hover:border-blue-400 hover:shadow-blue-100/50" | "transition-all duration-300 hover:shadow-2xl hover:-translate-y-1 cursor-pointer group bg-gradient-to-br from-slate-800 to-blue-900/20 border-2 border-blue-500/40 hover:border-blue-400/60 shadow-lg shadow-blue-500/20 hover:shadow-blue-500/30" | "transition-all duration-300 hover:shadow-2xl hover:-translate-y-1 cursor-pointer group bg-slate-800 border-slate-700 hover:border-slate-500 hover:shadow-slate-900/50">;
@@ -1695,10 +1700,10 @@ declare class OverallAssessmentComponent {
1695
1700
  revenueTrendArrowPath: _angular_core.Signal<"M5.293 9.707a1 1 0 010-1.414l4-4a1 1 0 011.414 0l4 4a1 1 0 01-1.414 1.414L11 7.414V15a1 1 0 11-2 0V7.414L6.707 9.707a1 1 0 01-1.414 0z" | "M14.707 10.293a1 1 0 010 1.414l-4 4a1 1 0 01-1.414 0l-4-4a1 1 0 111.414-1.414L9 12.586V5a1 1 0 012 0v7.586l2.293-2.293a1 1 0 011.414 0z" | "M3 10h11m0 0l-4-4m4 4l-4 4">;
1696
1701
  lightModeTrendIconClass: _angular_core.Signal<"text-emerald-600" | "text-red-600">;
1697
1702
  darkModeTrendIconClass: _angular_core.Signal<"text-emerald-400" | "text-red-400">;
1698
- trendIconClass: _angular_core.Signal<"text-emerald-400" | "text-red-400" | "text-emerald-600" | "text-red-600">;
1703
+ trendIconClass: _angular_core.Signal<"text-emerald-400" | "text-emerald-600" | "text-red-400" | "text-red-600">;
1699
1704
  lightModeTrendValueClass: _angular_core.Signal<"text-emerald-600" | "text-red-600">;
1700
1705
  darkModeTrendValueClass: _angular_core.Signal<"text-emerald-400" | "text-red-400">;
1701
- trendValueClass: _angular_core.Signal<"text-emerald-400" | "text-red-400" | "text-emerald-600" | "text-red-600">;
1706
+ trendValueClass: _angular_core.Signal<"text-emerald-400" | "text-emerald-600" | "text-red-400" | "text-red-600">;
1702
1707
  formattedRevenueTrend: _angular_core.Signal<string>;
1703
1708
  formattedRevenueTarget: _angular_core.Signal<string>;
1704
1709
  hasRevenuePacing: _angular_core.Signal<boolean>;
@@ -1978,7 +1983,7 @@ declare class SymphiqFunnelAnalysisPreviewComponent {
1978
1983
  topMetrics: _angular_core.Signal<PerformanceMetricInterface[]>;
1979
1984
  formattedRevenueValue: _angular_core.Signal<string>;
1980
1985
  formattedRevenueTrend: _angular_core.Signal<string>;
1981
- revenueStatusIcon: _angular_core.Signal<"" | "" | "→" | "">;
1986
+ revenueStatusIcon: _angular_core.Signal<"" | "" | "→" | "">;
1982
1987
  hasCompetitiveData: _angular_core.Signal<boolean>;
1983
1988
  hasOverallCompetitiveBenchmark: _angular_core.Signal<boolean>;
1984
1989
  overallCompetitiveDescription: _angular_core.Signal<string>;
@@ -2020,7 +2025,7 @@ declare class SymphiqFunnelAnalysisPreviewComponent {
2020
2025
  competitiveTooltip: _angular_core.Signal<{
2021
2026
  industry: string;
2022
2027
  metricBenchmark: string;
2023
- competitiveScore: "LEADING" | "LAGGING" | "COMPETITIVE";
2028
+ competitiveScore: "LEADING" | "COMPETITIVE" | "LAGGING";
2024
2029
  description: string;
2025
2030
  keyOpportunities: string;
2026
2031
  }>;
@@ -2087,6 +2092,163 @@ declare class SymphiqFunnelAnalysisPreviewComponent {
2087
2092
  static ɵcmp: _angular_core.ɵɵComponentDeclaration<SymphiqFunnelAnalysisPreviewComponent, "symphiq-funnel-analysis-preview", never, { "analysisInput": { "alias": "funnelAnalysis"; "required": false; "isSignal": true; }; "viewMode": { "alias": "viewMode"; "required": false; "isSignal": true; }; "scrollElement": { "alias": "scrollElement"; "required": false; "isSignal": true; }; }, { "onViewAnalysis": "onViewAnalysis"; }, never, never, true, never>;
2088
2093
  }
2089
2094
 
2095
+ interface JourneyStep {
2096
+ id: string;
2097
+ number: number;
2098
+ title: string;
2099
+ description: string;
2100
+ }
2101
+ declare class SymphiqWelcomeDashboardComponent implements AfterViewInit, OnDestroy {
2102
+ embedded: _angular_core.InputSignal<boolean>;
2103
+ parentHeaderOffset: _angular_core.InputSignal<number>;
2104
+ viewMode: _angular_core.InputSignal<ViewModeEnum>;
2105
+ scrollEvent: _angular_core.InputSignal<ScrollCustomEvent | null | undefined>;
2106
+ scrollElement: _angular_core.InputSignal<HTMLElement | null | undefined>;
2107
+ forDemo: _angular_core.InputSignal<boolean>;
2108
+ stepClick: _angular_core.OutputEmitterRef<number>;
2109
+ nextStepClick: _angular_core.OutputEmitterRef<void>;
2110
+ protected headerScrollService: HeaderScrollService;
2111
+ private readonly COLLAPSE_THRESHOLD;
2112
+ private readonly EXPAND_THRESHOLD;
2113
+ protected journeySteps: JourneyStep[];
2114
+ private embeddedScrollEffect;
2115
+ protected scrollProgress: _angular_core.Signal<number>;
2116
+ protected isLightMode: _angular_core.Signal<boolean>;
2117
+ constructor();
2118
+ onScroll(): void;
2119
+ ngAfterViewInit(): void;
2120
+ ngOnDestroy(): void;
2121
+ protected getContainerClasses(): string;
2122
+ protected getHeaderClasses(): string;
2123
+ protected getMainTitleClasses(): string;
2124
+ protected getSubtitleClasses(): string;
2125
+ protected containerClasses(): string;
2126
+ protected contentClasses(): string;
2127
+ protected iconContainerClasses(): string;
2128
+ protected titleClasses(): string;
2129
+ protected textClasses(): string;
2130
+ protected highlightBoxClasses(): string;
2131
+ protected highlightIconClasses(): string;
2132
+ protected highlightTitleClasses(): string;
2133
+ protected highlightListClasses(): string;
2134
+ protected nextStepsBoxClasses(): string;
2135
+ protected nextStepsIconClasses(): string;
2136
+ protected nextStepsTitleClasses(): string;
2137
+ protected nextStepsTextClasses(): string;
2138
+ static ɵfac: _angular_core.ɵɵFactoryDeclaration<SymphiqWelcomeDashboardComponent, never>;
2139
+ static ɵcmp: _angular_core.ɵɵComponentDeclaration<SymphiqWelcomeDashboardComponent, "symphiq-welcome-dashboard", never, { "embedded": { "alias": "embedded"; "required": false; "isSignal": true; }; "parentHeaderOffset": { "alias": "parentHeaderOffset"; "required": false; "isSignal": true; }; "viewMode": { "alias": "viewMode"; "required": false; "isSignal": true; }; "scrollEvent": { "alias": "scrollEvent"; "required": false; "isSignal": true; }; "scrollElement": { "alias": "scrollElement"; "required": false; "isSignal": true; }; "forDemo": { "alias": "forDemo"; "required": false; "isSignal": true; }; }, { "stepClick": "stepClick"; "nextStepClick": "nextStepClick"; }, never, never, true, never>;
2140
+ }
2141
+
2142
+ declare enum ShopPlatformEnum {
2143
+ SHOPIFY = "SHOPIFY",
2144
+ OTHER = "OTHER"
2145
+ }
2146
+ interface CreateAccountData {
2147
+ shopName: string;
2148
+ shopUrl: string;
2149
+ shopPlatform: ShopPlatformEnum;
2150
+ otherPlatformName?: string;
2151
+ companyName: string;
2152
+ }
2153
+ declare class SymphiqCreateAccountDashboardComponent implements AfterViewInit, OnDestroy {
2154
+ embedded: _angular_core.InputSignal<boolean>;
2155
+ parentHeaderOffset: _angular_core.InputSignal<number>;
2156
+ viewMode: _angular_core.InputSignal<ViewModeEnum>;
2157
+ scrollEvent: _angular_core.InputSignal<ScrollCustomEvent | null | undefined>;
2158
+ scrollElement: _angular_core.InputSignal<HTMLElement | null | undefined>;
2159
+ accountData: _angular_core.InputSignal<CreateAccountData | undefined>;
2160
+ forDemo: _angular_core.InputSignal<boolean>;
2161
+ onContinue: _angular_core.OutputEmitterRef<CreateAccountData>;
2162
+ stepClick: _angular_core.OutputEmitterRef<number>;
2163
+ nextStepClick: _angular_core.OutputEmitterRef<void>;
2164
+ protected headerScrollService: HeaderScrollService;
2165
+ private fb;
2166
+ protected scrollProgress: _angular_core.Signal<number>;
2167
+ protected editMode: _angular_core.WritableSignal<boolean>;
2168
+ protected sameAsShopName: _angular_core.WritableSignal<boolean>;
2169
+ protected ShopPlatformEnum: typeof ShopPlatformEnum;
2170
+ protected accountForm: FormGroup;
2171
+ constructor();
2172
+ onScroll(): void;
2173
+ ngAfterViewInit(): void;
2174
+ ngOnDestroy(): void;
2175
+ protected toggleSameAsShopName(): void;
2176
+ protected enableEditMode(): void;
2177
+ protected isFieldInvalid(fieldName: string): boolean;
2178
+ protected isFormValid(): boolean;
2179
+ protected handleContinue(): void;
2180
+ protected isLightMode(): boolean;
2181
+ protected getContainerClasses(): string;
2182
+ protected getHeaderClasses(): string;
2183
+ protected getMainTitleClasses(): string;
2184
+ protected getSubtitleClasses(): string;
2185
+ protected containerClasses(): string;
2186
+ protected contentClasses(): string;
2187
+ protected sectionTitleClasses(): string;
2188
+ protected sectionDescriptionClasses(): string;
2189
+ protected labelClasses(): string;
2190
+ protected inputClasses(fieldName: string): string;
2191
+ protected urlPrefixClasses(): string;
2192
+ protected urlInputClasses(fieldName: string): string;
2193
+ protected radioPlatformClasses(platform: ShopPlatformEnum): string;
2194
+ protected radioIndicatorClasses(platform: ShopPlatformEnum): string;
2195
+ protected radioLabelClasses(): string;
2196
+ protected checkboxClasses(): string;
2197
+ protected checkboxLabelClasses(): string;
2198
+ protected errorClasses(): string;
2199
+ protected viewLabelClasses(): string;
2200
+ protected viewValueClasses(): string;
2201
+ protected viewLinkClasses(): string;
2202
+ protected editButtonClasses(): string;
2203
+ protected stickyButtonContainerClasses(): string;
2204
+ protected continueButtonClasses(): string;
2205
+ static ɵfac: _angular_core.ɵɵFactoryDeclaration<SymphiqCreateAccountDashboardComponent, never>;
2206
+ static ɵcmp: _angular_core.ɵɵComponentDeclaration<SymphiqCreateAccountDashboardComponent, "symphiq-create-account-dashboard", never, { "embedded": { "alias": "embedded"; "required": false; "isSignal": true; }; "parentHeaderOffset": { "alias": "parentHeaderOffset"; "required": false; "isSignal": true; }; "viewMode": { "alias": "viewMode"; "required": false; "isSignal": true; }; "scrollEvent": { "alias": "scrollEvent"; "required": false; "isSignal": true; }; "scrollElement": { "alias": "scrollElement"; "required": false; "isSignal": true; }; "accountData": { "alias": "accountData"; "required": false; "isSignal": true; }; "forDemo": { "alias": "forDemo"; "required": false; "isSignal": true; }; }, { "onContinue": "onContinue"; "stepClick": "stepClick"; "nextStepClick": "nextStepClick"; }, never, never, true, never>;
2207
+ }
2208
+
2209
+ declare class SymphiqConnectGaDashboardComponent implements AfterViewInit, OnDestroy {
2210
+ embedded: _angular_core.InputSignal<boolean>;
2211
+ parentHeaderOffset: _angular_core.InputSignal<number>;
2212
+ viewMode: _angular_core.InputSignal<ViewModeEnum>;
2213
+ scrollEvent: _angular_core.InputSignal<ScrollCustomEvent | null | undefined>;
2214
+ scrollElement: _angular_core.InputSignal<HTMLElement | null | undefined>;
2215
+ forDemo: _angular_core.InputSignal<boolean>;
2216
+ stepClick: _angular_core.OutputEmitterRef<number>;
2217
+ nextStepClick: _angular_core.OutputEmitterRef<void>;
2218
+ protected headerScrollService: HeaderScrollService;
2219
+ private readonly COLLAPSE_THRESHOLD;
2220
+ private readonly EXPAND_THRESHOLD;
2221
+ protected isExpanded: _angular_core.WritableSignal<boolean>;
2222
+ private embeddedScrollEffect;
2223
+ protected scrollProgress: _angular_core.Signal<number>;
2224
+ protected isLightMode: _angular_core.Signal<boolean>;
2225
+ constructor();
2226
+ onScroll(): void;
2227
+ ngAfterViewInit(): void;
2228
+ ngOnDestroy(): void;
2229
+ protected toggleExpanded(): void;
2230
+ protected getContainerClasses(): string;
2231
+ protected getHeaderClasses(): string;
2232
+ protected getMainTitleClasses(): string;
2233
+ protected getSubtitleClasses(): string;
2234
+ protected containerClasses(): string;
2235
+ protected contentClasses(): string;
2236
+ protected iconContainerClasses(): string;
2237
+ protected titleClasses(): string;
2238
+ protected textClasses(): string;
2239
+ protected noteBoxClasses(): string;
2240
+ protected noteIconClasses(): string;
2241
+ protected noteTextClasses(): string;
2242
+ protected expandableCardClasses(): string;
2243
+ protected expandableHeaderClasses(): string;
2244
+ protected expandableHeaderTextClasses(): string;
2245
+ protected chevronClasses(): string;
2246
+ protected expandedContentClasses(): string;
2247
+ protected expandedTextClasses(): string;
2248
+ static ɵfac: _angular_core.ɵɵFactoryDeclaration<SymphiqConnectGaDashboardComponent, never>;
2249
+ static ɵcmp: _angular_core.ɵɵComponentDeclaration<SymphiqConnectGaDashboardComponent, "symphiq-connect-ga-dashboard", never, { "embedded": { "alias": "embedded"; "required": false; "isSignal": true; }; "parentHeaderOffset": { "alias": "parentHeaderOffset"; "required": false; "isSignal": true; }; "viewMode": { "alias": "viewMode"; "required": false; "isSignal": true; }; "scrollEvent": { "alias": "scrollEvent"; "required": false; "isSignal": true; }; "scrollElement": { "alias": "scrollElement"; "required": false; "isSignal": true; }; "forDemo": { "alias": "forDemo"; "required": false; "isSignal": true; }; }, { "stepClick": "stepClick"; "nextStepClick": "nextStepClick"; }, never, never, true, never>;
2250
+ }
2251
+
2090
2252
  declare class SymphiqBusinessAnalysisDashboardComponent implements OnInit, AfterViewInit, OnDestroy {
2091
2253
  embedded: _angular_core.InputSignal<boolean>;
2092
2254
  profile: _angular_core.InputSignal<ProfileInterface | undefined>;
@@ -2097,6 +2259,9 @@ declare class SymphiqBusinessAnalysisDashboardComponent implements OnInit, After
2097
2259
  scrollElement: _angular_core.InputSignal<HTMLElement | null | undefined>;
2098
2260
  isLoading: _angular_core.InputSignal<boolean | undefined>;
2099
2261
  isOnboarded: _angular_core.InputSignal<boolean>;
2262
+ forDemo: _angular_core.InputSignal<boolean>;
2263
+ stepClick: _angular_core.OutputEmitterRef<number>;
2264
+ nextStepClick: _angular_core.OutputEmitterRef<void>;
2100
2265
  protected headerScrollService: HeaderScrollService;
2101
2266
  protected lookupService: ProfileItemLookupService;
2102
2267
  protected navigationService: NavigationStateService;
@@ -2168,15 +2333,13 @@ declare class SymphiqBusinessAnalysisDashboardComponent implements OnInit, After
2168
2333
  protected getSpinnerClasses(): string;
2169
2334
  protected trackBySectionId(index: number, section: ProfileSectionInterface): string | number;
2170
2335
  static ɵfac: _angular_core.ɵɵFactoryDeclaration<SymphiqBusinessAnalysisDashboardComponent, never>;
2171
- static ɵcmp: _angular_core.ɵɵComponentDeclaration<SymphiqBusinessAnalysisDashboardComponent, "symphiq-business-analysis-dashboard", never, { "embedded": { "alias": "embedded"; "required": false; "isSignal": true; }; "profile": { "alias": "profile"; "required": false; "isSignal": true; }; "parentHeaderOffset": { "alias": "parentHeaderOffset"; "required": false; "isSignal": true; }; "requestedByUser": { "alias": "requestedByUser"; "required": false; "isSignal": true; }; "viewMode": { "alias": "viewMode"; "required": false; "isSignal": true; }; "scrollEvent": { "alias": "scrollEvent"; "required": false; "isSignal": true; }; "scrollElement": { "alias": "scrollElement"; "required": false; "isSignal": true; }; "isLoading": { "alias": "isLoading"; "required": false; "isSignal": true; }; "isOnboarded": { "alias": "isOnboarded"; "required": false; "isSignal": true; }; }, {}, never, never, true, never>;
2336
+ static ɵcmp: _angular_core.ɵɵComponentDeclaration<SymphiqBusinessAnalysisDashboardComponent, "symphiq-business-analysis-dashboard", never, { "embedded": { "alias": "embedded"; "required": false; "isSignal": true; }; "profile": { "alias": "profile"; "required": false; "isSignal": true; }; "parentHeaderOffset": { "alias": "parentHeaderOffset"; "required": false; "isSignal": true; }; "requestedByUser": { "alias": "requestedByUser"; "required": false; "isSignal": true; }; "viewMode": { "alias": "viewMode"; "required": false; "isSignal": true; }; "scrollEvent": { "alias": "scrollEvent"; "required": false; "isSignal": true; }; "scrollElement": { "alias": "scrollElement"; "required": false; "isSignal": true; }; "isLoading": { "alias": "isLoading"; "required": false; "isSignal": true; }; "isOnboarded": { "alias": "isOnboarded"; "required": false; "isSignal": true; }; "forDemo": { "alias": "forDemo"; "required": false; "isSignal": true; }; }, { "stepClick": "stepClick"; "nextStepClick": "nextStepClick"; }, never, never, true, never>;
2172
2337
  }
2173
2338
 
2174
2339
  declare class ProfileSectionComponent {
2175
- private sectionSignal;
2176
- set section(value: ProfileSectionInterface | undefined);
2177
- get section(): ProfileSectionInterface | null;
2178
- viewMode: ViewModeEnum;
2179
- forceExpanded: boolean;
2340
+ section: _angular_core.InputSignal<ProfileSectionInterface | undefined>;
2341
+ viewMode: _angular_core.InputSignal<ViewModeEnum>;
2342
+ forceExpanded: _angular_core.InputSignal<boolean>;
2180
2343
  protected visibleSubsections: _angular_core.Signal<ProfileSubsectionInterface[]>;
2181
2344
  protected isDark: _angular_core.Signal<boolean>;
2182
2345
  protected containerClasses: _angular_core.Signal<"relative" | "relative bg-slate-50/50">;
@@ -2186,15 +2349,15 @@ declare class ProfileSectionComponent {
2186
2349
  protected subsectionHasContent(subsection: ProfileSubsectionInterface): boolean;
2187
2350
  protected trackBySubsectionId(index: number, subsection: ProfileSubsectionInterface): string | number;
2188
2351
  static ɵfac: _angular_core.ɵɵFactoryDeclaration<ProfileSectionComponent, never>;
2189
- static ɵcmp: _angular_core.ɵɵComponentDeclaration<ProfileSectionComponent, "symphiq-profile-section", never, { "section": { "alias": "section"; "required": false; }; "viewMode": { "alias": "viewMode"; "required": false; }; "forceExpanded": { "alias": "forceExpanded"; "required": false; }; }, {}, never, never, true, never>;
2352
+ static ɵcmp: _angular_core.ɵɵComponentDeclaration<ProfileSectionComponent, "symphiq-profile-section", never, { "section": { "alias": "section"; "required": false; "isSignal": true; }; "viewMode": { "alias": "viewMode"; "required": false; "isSignal": true; }; "forceExpanded": { "alias": "forceExpanded"; "required": false; "isSignal": true; }; }, {}, never, never, true, never>;
2190
2353
  }
2191
2354
 
2192
2355
  declare class ProfileSubsectionComponent {
2193
- subsection?: ProfileSubsectionInterface;
2194
- viewMode: ViewModeEnum;
2195
- parentSectionTitle?: string;
2196
- subsectionIndex: number;
2197
- forceExpanded: boolean;
2356
+ subsection: _angular_core.InputSignal<ProfileSubsectionInterface | undefined>;
2357
+ viewMode: _angular_core.InputSignal<ViewModeEnum>;
2358
+ parentSectionTitle: _angular_core.InputSignal<string | undefined>;
2359
+ subsectionIndex: _angular_core.InputSignal<number>;
2360
+ forceExpanded: _angular_core.InputSignal<boolean>;
2198
2361
  private sanitizer;
2199
2362
  private profileContextService;
2200
2363
  protected ProfileItemTypeEnum: typeof ProfileItemTypeEnum;
@@ -2217,18 +2380,18 @@ declare class ProfileSubsectionComponent {
2217
2380
  keyOpportunities: string;
2218
2381
  } | undefined;
2219
2382
  static ɵfac: _angular_core.ɵɵFactoryDeclaration<ProfileSubsectionComponent, never>;
2220
- static ɵcmp: _angular_core.ɵɵComponentDeclaration<ProfileSubsectionComponent, "symphiq-profile-subsection", never, { "subsection": { "alias": "subsection"; "required": false; }; "viewMode": { "alias": "viewMode"; "required": false; }; "parentSectionTitle": { "alias": "parentSectionTitle"; "required": false; }; "subsectionIndex": { "alias": "subsectionIndex"; "required": false; }; "forceExpanded": { "alias": "forceExpanded"; "required": false; }; }, {}, never, never, true, never>;
2383
+ static ɵcmp: _angular_core.ɵɵComponentDeclaration<ProfileSubsectionComponent, "symphiq-profile-subsection", never, { "subsection": { "alias": "subsection"; "required": false; "isSignal": true; }; "viewMode": { "alias": "viewMode"; "required": false; "isSignal": true; }; "parentSectionTitle": { "alias": "parentSectionTitle"; "required": false; "isSignal": true; }; "subsectionIndex": { "alias": "subsectionIndex"; "required": false; "isSignal": true; }; "forceExpanded": { "alias": "forceExpanded"; "required": false; "isSignal": true; }; }, {}, never, never, true, never>;
2221
2384
  }
2222
2385
 
2223
2386
  declare class ProfileItemCardComponent {
2224
- item?: ProfileItemInterface;
2225
- viewMode: ViewModeEnum;
2226
- subsectionId?: string;
2227
- forceExpanded: boolean;
2228
- animationIndex: number;
2229
- isLoading: boolean;
2230
- inModalContext: boolean;
2231
- isCompactMode: boolean;
2387
+ item: _angular_core.InputSignal<ProfileItemInterface | undefined>;
2388
+ viewMode: _angular_core.InputSignal<ViewModeEnum>;
2389
+ subsectionId: _angular_core.InputSignal<string | undefined>;
2390
+ forceExpanded: _angular_core.InputSignal<boolean>;
2391
+ animationIndex: _angular_core.InputSignal<number>;
2392
+ isLoading: _angular_core.InputSignal<boolean>;
2393
+ inModalContext: _angular_core.InputSignal<boolean>;
2394
+ isCompactMode: _angular_core.InputSignal<boolean>;
2232
2395
  protected isRecommendation(): boolean;
2233
2396
  protected getCardClasses(): string;
2234
2397
  protected getIconClasses(): string;
@@ -2236,12 +2399,12 @@ declare class ProfileItemCardComponent {
2236
2399
  protected getValueClasses(): string;
2237
2400
  protected getItemIcon(): IconObjectInterface$1 | undefined;
2238
2401
  static ɵfac: _angular_core.ɵɵFactoryDeclaration<ProfileItemCardComponent, never>;
2239
- static ɵcmp: _angular_core.ɵɵComponentDeclaration<ProfileItemCardComponent, "symphiq-profile-item-card", never, { "item": { "alias": "item"; "required": false; }; "viewMode": { "alias": "viewMode"; "required": false; }; "subsectionId": { "alias": "subsectionId"; "required": false; }; "forceExpanded": { "alias": "forceExpanded"; "required": false; }; "animationIndex": { "alias": "animationIndex"; "required": false; }; "isLoading": { "alias": "isLoading"; "required": false; }; "inModalContext": { "alias": "inModalContext"; "required": false; }; "isCompactMode": { "alias": "isCompactMode"; "required": false; }; }, {}, never, never, true, never>;
2402
+ static ɵcmp: _angular_core.ɵɵComponentDeclaration<ProfileItemCardComponent, "symphiq-profile-item-card", never, { "item": { "alias": "item"; "required": false; "isSignal": true; }; "viewMode": { "alias": "viewMode"; "required": false; "isSignal": true; }; "subsectionId": { "alias": "subsectionId"; "required": false; "isSignal": true; }; "forceExpanded": { "alias": "forceExpanded"; "required": false; "isSignal": true; }; "animationIndex": { "alias": "animationIndex"; "required": false; "isSignal": true; }; "isLoading": { "alias": "isLoading"; "required": false; "isSignal": true; }; "inModalContext": { "alias": "inModalContext"; "required": false; "isSignal": true; }; "isCompactMode": { "alias": "isCompactMode"; "required": false; "isSignal": true; }; }, {}, never, never, true, never>;
2240
2403
  }
2241
2404
 
2242
2405
  declare class NapkinVisualPlaceholderComponent implements OnInit, OnChanges {
2243
- visual?: NapkinVisualInterface;
2244
- viewMode: ViewModeEnum;
2406
+ visual: _angular_core.InputSignal<NapkinVisualInterface | undefined>;
2407
+ viewMode: _angular_core.InputSignal<ViewModeEnum>;
2245
2408
  private sanitizer;
2246
2409
  private modalService;
2247
2410
  ngOnInit(): void;
@@ -2259,12 +2422,12 @@ declare class NapkinVisualPlaceholderComponent implements OnInit, OnChanges {
2259
2422
  protected getExpandIconClasses(): string;
2260
2423
  protected openModal(): void;
2261
2424
  static ɵfac: _angular_core.ɵɵFactoryDeclaration<NapkinVisualPlaceholderComponent, never>;
2262
- static ɵcmp: _angular_core.ɵɵComponentDeclaration<NapkinVisualPlaceholderComponent, "symphiq-napkin-visual-placeholder", never, { "visual": { "alias": "visual"; "required": false; }; "viewMode": { "alias": "viewMode"; "required": false; }; }, {}, never, never, true, never>;
2425
+ static ɵcmp: _angular_core.ɵɵComponentDeclaration<NapkinVisualPlaceholderComponent, "symphiq-napkin-visual-placeholder", never, { "visual": { "alias": "visual"; "required": false; "isSignal": true; }; "viewMode": { "alias": "viewMode"; "required": false; "isSignal": true; }; }, {}, never, never, true, never>;
2263
2426
  }
2264
2427
 
2265
2428
  declare class HierarchyDisplayComponent {
2266
- hierarchyData?: HierarchyDataInterface;
2267
- viewMode: ViewModeEnum;
2429
+ hierarchyData: _angular_core.InputSignal<HierarchyDataInterface | undefined>;
2430
+ viewMode: _angular_core.InputSignal<ViewModeEnum>;
2268
2431
  protected getNodeClasses(level: number): string;
2269
2432
  protected getNodeIconClasses(level: number): string;
2270
2433
  protected getNodeLabelClasses(): string;
@@ -2277,15 +2440,15 @@ declare class HierarchyDisplayComponent {
2277
2440
  protected getCompetitorOverlap(): number | undefined;
2278
2441
  protected getMarketShareType(share: number): 'advantage' | 'parity' | 'disadvantage' | 'opportunity' | 'threat';
2279
2442
  static ɵfac: _angular_core.ɵɵFactoryDeclaration<HierarchyDisplayComponent, never>;
2280
- static ɵcmp: _angular_core.ɵɵComponentDeclaration<HierarchyDisplayComponent, "symphiq-hierarchy-display", never, { "hierarchyData": { "alias": "hierarchyData"; "required": false; }; "viewMode": { "alias": "viewMode"; "required": false; }; }, {}, never, never, true, never>;
2443
+ static ɵcmp: _angular_core.ɵɵComponentDeclaration<HierarchyDisplayComponent, "symphiq-hierarchy-display", never, { "hierarchyData": { "alias": "hierarchyData"; "required": false; "isSignal": true; }; "viewMode": { "alias": "viewMode"; "required": false; "isSignal": true; }; }, {}, never, never, true, never>;
2281
2444
  }
2282
2445
 
2283
2446
  declare class SectionNavigationComponent implements OnInit {
2284
- sections: ProfileSectionInterface[];
2285
- viewMode: ViewModeEnum;
2286
- embedded: boolean;
2287
- scrollElement?: HTMLElement;
2288
- parentHeaderOffset: number;
2447
+ sections: _angular_core.InputSignal<ProfileSectionInterface[]>;
2448
+ viewMode: _angular_core.InputSignal<ViewModeEnum>;
2449
+ embedded: _angular_core.InputSignal<boolean>;
2450
+ scrollElement: _angular_core.InputSignal<HTMLElement | undefined>;
2451
+ parentHeaderOffset: _angular_core.InputSignal<number>;
2289
2452
  private readonly HEADER_OFFSET;
2290
2453
  protected activeSection: _angular_core.WritableSignal<number>;
2291
2454
  ngOnInit(): void;
@@ -2297,16 +2460,16 @@ declare class SectionNavigationComponent implements OnInit {
2297
2460
  private scrollToElement;
2298
2461
  protected trackBySectionId(index: number, section: ProfileSectionInterface): string | number;
2299
2462
  static ɵfac: _angular_core.ɵɵFactoryDeclaration<SectionNavigationComponent, never>;
2300
- static ɵcmp: _angular_core.ɵɵComponentDeclaration<SectionNavigationComponent, "symphiq-section-navigation", never, { "sections": { "alias": "sections"; "required": false; }; "viewMode": { "alias": "viewMode"; "required": false; }; "embedded": { "alias": "embedded"; "required": false; }; "scrollElement": { "alias": "scrollElement"; "required": false; }; "parentHeaderOffset": { "alias": "parentHeaderOffset"; "required": false; }; }, {}, never, never, true, never>;
2463
+ static ɵcmp: _angular_core.ɵɵComponentDeclaration<SectionNavigationComponent, "symphiq-section-navigation", never, { "sections": { "alias": "sections"; "required": false; "isSignal": true; }; "viewMode": { "alias": "viewMode"; "required": false; "isSignal": true; }; "embedded": { "alias": "embedded"; "required": false; "isSignal": true; }; "scrollElement": { "alias": "scrollElement"; "required": false; "isSignal": true; }; "parentHeaderOffset": { "alias": "parentHeaderOffset"; "required": false; "isSignal": true; }; }, {}, never, never, true, never>;
2301
2464
  }
2302
2465
 
2303
2466
  declare class FloatingTocComponent implements OnInit, OnDestroy {
2304
- sections: ProfileSectionInterface[];
2305
- viewMode: ViewModeEnum;
2306
- embedded: boolean;
2307
- containerElement?: HTMLElement;
2308
- scrollElement?: HTMLElement;
2309
- parentHeaderOffset: number;
2467
+ sections: _angular_core.InputSignal<ProfileSectionInterface[]>;
2468
+ viewMode: _angular_core.InputSignal<ViewModeEnum>;
2469
+ embedded: _angular_core.InputSignal<boolean>;
2470
+ containerElement: _angular_core.InputSignal<HTMLElement | undefined>;
2471
+ scrollElement: _angular_core.InputSignal<HTMLElement | undefined>;
2472
+ parentHeaderOffset: _angular_core.InputSignal<number>;
2310
2473
  protected isHovered: _angular_core.WritableSignal<boolean>;
2311
2474
  protected isPinned: _angular_core.WritableSignal<boolean>;
2312
2475
  protected activeSection: _angular_core.WritableSignal<string>;
@@ -2360,12 +2523,12 @@ declare class FloatingTocComponent implements OnInit, OnDestroy {
2360
2523
  protected getActiveSubIndicatorClasses(): string;
2361
2524
  protected getBackToTopButtonClasses(): string;
2362
2525
  static ɵfac: _angular_core.ɵɵFactoryDeclaration<FloatingTocComponent, never>;
2363
- static ɵcmp: _angular_core.ɵɵComponentDeclaration<FloatingTocComponent, "symphiq-floating-toc", never, { "sections": { "alias": "sections"; "required": false; }; "viewMode": { "alias": "viewMode"; "required": false; }; "embedded": { "alias": "embedded"; "required": false; }; "containerElement": { "alias": "containerElement"; "required": false; }; "scrollElement": { "alias": "scrollElement"; "required": false; }; "parentHeaderOffset": { "alias": "parentHeaderOffset"; "required": false; }; }, {}, never, never, true, never>;
2526
+ static ɵcmp: _angular_core.ɵɵComponentDeclaration<FloatingTocComponent, "symphiq-floating-toc", never, { "sections": { "alias": "sections"; "required": false; "isSignal": true; }; "viewMode": { "alias": "viewMode"; "required": false; "isSignal": true; }; "embedded": { "alias": "embedded"; "required": false; "isSignal": true; }; "containerElement": { "alias": "containerElement"; "required": false; "isSignal": true; }; "scrollElement": { "alias": "scrollElement"; "required": false; "isSignal": true; }; "parentHeaderOffset": { "alias": "parentHeaderOffset"; "required": false; "isSignal": true; }; }, {}, never, never, true, never>;
2364
2527
  }
2365
2528
 
2366
2529
  declare class FloatingBackButtonComponent implements OnInit, OnDestroy {
2367
- viewMode: ViewModeEnum;
2368
- embedded: boolean;
2530
+ viewMode: _angular_core.InputSignal<ViewModeEnum>;
2531
+ embedded: _angular_core.InputSignal<boolean>;
2369
2532
  private navigationService;
2370
2533
  private readonly HEADER_OFFSET;
2371
2534
  protected navigationState: _angular_core.Signal<NavigationState>;
@@ -2378,10 +2541,10 @@ declare class FloatingBackButtonComponent implements OnInit, OnDestroy {
2378
2541
  protected getInnerContainerClasses(): string;
2379
2542
  protected getCloseButtonClasses(): string;
2380
2543
  static ɵfac: _angular_core.ɵɵFactoryDeclaration<FloatingBackButtonComponent, never>;
2381
- static ɵcmp: _angular_core.ɵɵComponentDeclaration<FloatingBackButtonComponent, "symphiq-floating-back-button", never, { "viewMode": { "alias": "viewMode"; "required": false; }; "embedded": { "alias": "embedded"; "required": false; }; }, {}, never, never, true, never>;
2544
+ static ɵcmp: _angular_core.ɵɵComponentDeclaration<FloatingBackButtonComponent, "symphiq-floating-back-button", never, { "viewMode": { "alias": "viewMode"; "required": false; "isSignal": true; }; "embedded": { "alias": "embedded"; "required": false; "isSignal": true; }; }, {}, never, never, true, never>;
2382
2545
  }
2383
2546
 
2384
- declare class BusinessAnalysisModalComponent implements OnInit {
2547
+ declare class BusinessAnalysisModalComponent implements OnInit, OnDestroy {
2385
2548
  isLightMode: _angular_core.InputSignal<boolean>;
2386
2549
  viewInContextRequested: _angular_core.OutputEmitterRef<{
2387
2550
  itemId: string;
@@ -2389,8 +2552,14 @@ declare class BusinessAnalysisModalComponent implements OnInit {
2389
2552
  }>;
2390
2553
  private modalService;
2391
2554
  private sanitizer;
2555
+ private renderer;
2556
+ private document;
2557
+ private hostElement;
2392
2558
  modalContent?: ElementRef<HTMLDivElement>;
2559
+ modalWrapper?: ElementRef<HTMLDivElement>;
2393
2560
  isOpen: _angular_core.WritableSignal<boolean>;
2561
+ modalReady: _angular_core.WritableSignal<boolean>;
2562
+ private modalMovedToBody;
2394
2563
  modalType: _angular_core.WritableSignal<string | null>;
2395
2564
  modalTitle: _angular_core.WritableSignal<string>;
2396
2565
  visualizationData: _angular_core.WritableSignal<VisualizationData | null>;
@@ -2405,8 +2574,13 @@ declare class BusinessAnalysisModalComponent implements OnInit {
2405
2574
  } | null>;
2406
2575
  itemDetailModalData: _angular_core.WritableSignal<ItemDetailModalData | null>;
2407
2576
  navigationStack: _angular_core.WritableSignal<ItemDetailModalData[]>;
2577
+ private cleanupTimeoutId;
2408
2578
  itemDetailData: _angular_core.Signal<ItemDetailModalData | null>;
2409
2579
  previousState: _angular_core.WritableSignal<any>;
2580
+ modalDepth: _angular_core.Signal<number>;
2581
+ baseZIndex: _angular_core.Signal<number>;
2582
+ backdropZIndex: _angular_core.Signal<number>;
2583
+ contentZIndex: _angular_core.Signal<number>;
2410
2584
  visualizationType: _angular_core.Signal<"horizontal-bar" | "circular-progress" | "napkin-visual" | "custom" | null>;
2411
2585
  horizontalBarData: _angular_core.Signal<{
2412
2586
  percentage: number;
@@ -2440,6 +2614,9 @@ declare class BusinessAnalysisModalComponent implements OnInit {
2440
2614
  protected getBackButtonClasses(): string;
2441
2615
  protected getBreadcrumbLinkClasses(): string;
2442
2616
  closeModal(): void;
2617
+ private moveModalToBody;
2618
+ private returnModalToHost;
2619
+ ngOnDestroy(): void;
2443
2620
  static ɵfac: _angular_core.ɵɵFactoryDeclaration<BusinessAnalysisModalComponent, never>;
2444
2621
  static ɵcmp: _angular_core.ɵɵComponentDeclaration<BusinessAnalysisModalComponent, "symphiq-business-analysis-modal", never, { "isLightMode": { "alias": "isLightMode"; "required": false; "isSignal": true; }; }, { "viewInContextRequested": "viewInContextRequested"; }, never, never, true, never>;
2445
2622
  }
@@ -2478,7 +2655,7 @@ type ProfileModalData = {
2478
2655
  } | null;
2479
2656
  declare class SymphiqProfileAnalysisDashboardComponent implements OnInit, OnChanges, OnDestroy, AfterViewInit {
2480
2657
  funnelModalComponent?: ModalComponent;
2481
- viewMode: ViewModeEnum;
2658
+ viewMode: _angular_core.InputSignal<ViewModeEnum>;
2482
2659
  constructor();
2483
2660
  requestedByUser: _angular_core.InputSignal<UserInterface | undefined>;
2484
2661
  createdDate: _angular_core.InputSignal<Date | undefined>;
@@ -2492,6 +2669,9 @@ declare class SymphiqProfileAnalysisDashboardComponent implements OnInit, OnChan
2492
2669
  scrollEvent: _angular_core.InputSignal<ScrollCustomEvent$1 | null | undefined>;
2493
2670
  scrollElement: _angular_core.InputSignal<HTMLElement | null | undefined>;
2494
2671
  isLoading: _angular_core.InputSignal<boolean | undefined>;
2672
+ forDemo: _angular_core.InputSignal<boolean>;
2673
+ stepClick: _angular_core.OutputEmitterRef<number>;
2674
+ nextStepClick: _angular_core.OutputEmitterRef<void>;
2495
2675
  private readonly COLLAPSE_THRESHOLD;
2496
2676
  private readonly EXPAND_THRESHOLD;
2497
2677
  private embeddedScrollEffect;
@@ -2658,13 +2838,13 @@ declare class SymphiqProfileAnalysisDashboardComponent implements OnInit, OnChan
2658
2838
  protected onCriticalGapsClick(summary: ExecutiveSummaryInterface): void;
2659
2839
  protected scrollToQuickWins(): void;
2660
2840
  static ɵfac: _angular_core.ɵɵFactoryDeclaration<SymphiqProfileAnalysisDashboardComponent, never>;
2661
- static ɵcmp: _angular_core.ɵɵComponentDeclaration<SymphiqProfileAnalysisDashboardComponent, "symphiq-profile-analysis-dashboard", never, { "viewMode": { "alias": "viewMode"; "required": false; }; "requestedByUser": { "alias": "requestedByUser"; "required": false; "isSignal": true; }; "createdDate": { "alias": "createdDate"; "required": false; "isSignal": true; }; "embedded": { "alias": "embedded"; "required": false; "isSignal": true; }; "profileAnalysis": { "alias": "profileAnalysis"; "required": false; "isSignal": true; }; "profile": { "alias": "profile"; "required": false; "isSignal": true; }; "funnelAnalysis": { "alias": "funnelAnalysis"; "required": false; "isSignal": true; }; "analysisType": { "alias": "analysisType"; "required": false; "isSignal": true; }; "focusAreaDetails": { "alias": "focusAreaDetails"; "required": false; "isSignal": true; }; "isOnboarded": { "alias": "isOnboarded"; "required": false; "isSignal": true; }; "scrollEvent": { "alias": "scrollEvent"; "required": false; "isSignal": true; }; "scrollElement": { "alias": "scrollElement"; "required": false; "isSignal": true; }; "isLoading": { "alias": "isLoading"; "required": false; "isSignal": true; }; }, {}, never, never, true, never>;
2841
+ static ɵcmp: _angular_core.ɵɵComponentDeclaration<SymphiqProfileAnalysisDashboardComponent, "symphiq-profile-analysis-dashboard", never, { "viewMode": { "alias": "viewMode"; "required": false; "isSignal": true; }; "requestedByUser": { "alias": "requestedByUser"; "required": false; "isSignal": true; }; "createdDate": { "alias": "createdDate"; "required": false; "isSignal": true; }; "embedded": { "alias": "embedded"; "required": false; "isSignal": true; }; "profileAnalysis": { "alias": "profileAnalysis"; "required": false; "isSignal": true; }; "profile": { "alias": "profile"; "required": false; "isSignal": true; }; "funnelAnalysis": { "alias": "funnelAnalysis"; "required": false; "isSignal": true; }; "analysisType": { "alias": "analysisType"; "required": false; "isSignal": true; }; "focusAreaDetails": { "alias": "focusAreaDetails"; "required": false; "isSignal": true; }; "isOnboarded": { "alias": "isOnboarded"; "required": false; "isSignal": true; }; "scrollEvent": { "alias": "scrollEvent"; "required": false; "isSignal": true; }; "scrollElement": { "alias": "scrollElement"; "required": false; "isSignal": true; }; "isLoading": { "alias": "isLoading"; "required": false; "isSignal": true; }; "forDemo": { "alias": "forDemo"; "required": false; "isSignal": true; }; }, { "stepClick": "stepClick"; "nextStepClick": "nextStepClick"; }, never, never, true, never>;
2662
2842
  }
2663
2843
 
2664
2844
  declare class ShopWelcomeBannerComponent {
2665
- viewMode: ViewModeEnum;
2666
- businessName: string;
2667
- isOnboarded: boolean;
2845
+ viewMode: _angular_core.InputSignal<ViewModeEnum>;
2846
+ businessName: _angular_core.InputSignal<string>;
2847
+ isOnboarded: _angular_core.InputSignal<boolean>;
2668
2848
  protected containerClasses(): string;
2669
2849
  protected contentClasses(): string;
2670
2850
  protected iconContainerClasses(): string;
@@ -2679,13 +2859,13 @@ declare class ShopWelcomeBannerComponent {
2679
2859
  protected nextStepsTitleClasses(): string;
2680
2860
  protected nextStepsTextClasses(): string;
2681
2861
  static ɵfac: _angular_core.ɵɵFactoryDeclaration<ShopWelcomeBannerComponent, never>;
2682
- static ɵcmp: _angular_core.ɵɵComponentDeclaration<ShopWelcomeBannerComponent, "symphiq-shop-welcome-banner", never, { "viewMode": { "alias": "viewMode"; "required": false; }; "businessName": { "alias": "businessName"; "required": false; }; "isOnboarded": { "alias": "isOnboarded"; "required": false; }; }, {}, never, never, true, never>;
2862
+ static ɵcmp: _angular_core.ɵɵComponentDeclaration<ShopWelcomeBannerComponent, "symphiq-shop-welcome-banner", never, { "viewMode": { "alias": "viewMode"; "required": false; "isSignal": true; }; "businessName": { "alias": "businessName"; "required": false; "isSignal": true; }; "isOnboarded": { "alias": "isOnboarded"; "required": false; "isSignal": true; }; }, {}, never, never, true, never>;
2683
2863
  }
2684
2864
 
2685
2865
  declare class MetricWelcomeBannerComponent {
2686
- viewMode: ViewModeEnum;
2687
- metricName?: string;
2688
- isOnboarded: boolean;
2866
+ viewMode: _angular_core.InputSignal<ViewModeEnum>;
2867
+ metricName: _angular_core.InputSignal<string | undefined>;
2868
+ isOnboarded: _angular_core.InputSignal<boolean>;
2689
2869
  protected readonly IconSourceEnum: typeof IconSourceEnum;
2690
2870
  protected metricDisplayName: _angular_core.Signal<string>;
2691
2871
  protected metricIcon: _angular_core.Signal<{
@@ -2706,15 +2886,15 @@ declare class MetricWelcomeBannerComponent {
2706
2886
  protected nextStepsTitleClasses(): string;
2707
2887
  protected nextStepsTextClasses(): string;
2708
2888
  static ɵfac: _angular_core.ɵɵFactoryDeclaration<MetricWelcomeBannerComponent, never>;
2709
- static ɵcmp: _angular_core.ɵɵComponentDeclaration<MetricWelcomeBannerComponent, "symphiq-metric-welcome-banner", never, { "viewMode": { "alias": "viewMode"; "required": false; }; "metricName": { "alias": "metricName"; "required": false; }; "isOnboarded": { "alias": "isOnboarded"; "required": false; }; }, {}, never, never, true, never>;
2889
+ static ɵcmp: _angular_core.ɵɵComponentDeclaration<MetricWelcomeBannerComponent, "symphiq-metric-welcome-banner", never, { "viewMode": { "alias": "viewMode"; "required": false; "isSignal": true; }; "metricName": { "alias": "metricName"; "required": false; "isSignal": true; }; "isOnboarded": { "alias": "isOnboarded"; "required": false; "isSignal": true; }; }, {}, never, never, true, never>;
2710
2890
  }
2711
2891
 
2712
2892
  declare class FocusAreaExecutiveSummaryComponent {
2713
- viewMode: ViewModeEnum;
2714
- summary?: FocusAreaExecutiveSummaryInterface;
2715
- allGoals: GoalV3Interface[];
2716
- topPrioritiesClick: EventEmitter<void>;
2717
- priorityDetailClick: EventEmitter<{
2893
+ viewMode: _angular_core.InputSignal<ViewModeEnum>;
2894
+ summary: _angular_core.InputSignal<FocusAreaExecutiveSummaryInterface | undefined>;
2895
+ allGoals: _angular_core.InputSignal<GoalV3Interface[]>;
2896
+ topPrioritiesClick: _angular_core.OutputEmitterRef<void>;
2897
+ priorityDetailClick: _angular_core.OutputEmitterRef<{
2718
2898
  priority: FocusAreaTopPriorityInterface;
2719
2899
  index: number;
2720
2900
  }>;
@@ -2746,63 +2926,64 @@ declare class FocusAreaExecutiveSummaryComponent {
2746
2926
  protected getImpactBadgeClasses(impact?: string): string;
2747
2927
  protected getMetaTextClasses(): string;
2748
2928
  static ɵfac: _angular_core.ɵɵFactoryDeclaration<FocusAreaExecutiveSummaryComponent, never>;
2749
- static ɵcmp: _angular_core.ɵɵComponentDeclaration<FocusAreaExecutiveSummaryComponent, "symphiq-focus-area-executive-summary", never, { "viewMode": { "alias": "viewMode"; "required": false; }; "summary": { "alias": "summary"; "required": false; }; "allGoals": { "alias": "allGoals"; "required": false; }; }, { "topPrioritiesClick": "topPrioritiesClick"; "priorityDetailClick": "priorityDetailClick"; }, never, never, true, never>;
2929
+ static ɵcmp: _angular_core.ɵɵComponentDeclaration<FocusAreaExecutiveSummaryComponent, "symphiq-focus-area-executive-summary", never, { "viewMode": { "alias": "viewMode"; "required": false; "isSignal": true; }; "summary": { "alias": "summary"; "required": false; "isSignal": true; }; "allGoals": { "alias": "allGoals"; "required": false; "isSignal": true; }; }, { "topPrioritiesClick": "topPrioritiesClick"; "priorityDetailClick": "priorityDetailClick"; }, never, never, true, never>;
2750
2930
  }
2751
2931
 
2752
2932
  declare class MetricExecutiveSummaryComponent {
2753
- viewMode: ViewModeEnum;
2754
- summary: MetricExecutiveSummaryInterface;
2755
- metricName: string;
2756
- allGoals?: GoalV3Interface[];
2757
- topPrioritiesClick: EventEmitter<void>;
2758
- priorityDetailClick: EventEmitter<any>;
2933
+ viewMode: _angular_core.InputSignal<ViewModeEnum>;
2934
+ summary: _angular_core.InputSignal<MetricExecutiveSummaryInterface>;
2935
+ metricName: _angular_core.InputSignal<string>;
2936
+ allGoals: _angular_core.InputSignal<GoalV3Interface[] | undefined>;
2937
+ topPrioritiesClick: _angular_core.OutputEmitterRef<void>;
2938
+ priorityDetailClick: _angular_core.OutputEmitterRef<any>;
2759
2939
  protected iconSource: IconSourceEnum;
2760
2940
  protected isDark: _angular_core.Signal<boolean>;
2761
2941
  protected bannerClasses: _angular_core.Signal<"bg-gradient-to-br from-slate-800/50 to-slate-800/30 border border-slate-700/50" | "bg-gradient-to-br from-white to-slate-50/50 border border-slate-200">;
2762
- protected titleClasses: _angular_core.Signal<"text-slate-900" | "text-slate-100">;
2763
- protected textClasses: _angular_core.Signal<"text-slate-700" | "text-slate-300">;
2764
- protected iconClasses: _angular_core.Signal<"text-blue-600" | "text-blue-400">;
2942
+ protected titleClasses: _angular_core.Signal<"text-slate-100" | "text-slate-900">;
2943
+ protected textClasses: _angular_core.Signal<"text-slate-300" | "text-slate-700">;
2944
+ protected iconClasses: _angular_core.Signal<"text-blue-400" | "text-blue-600">;
2765
2945
  protected healthBadgeClasses: _angular_core.Signal<string>;
2766
2946
  protected pacingBadgeClasses: _angular_core.Signal<string>;
2767
2947
  protected metricCardClasses: _angular_core.Signal<"bg-white border border-slate-200" | "bg-slate-800/50 border border-slate-700/50">;
2768
2948
  protected metricLabelClasses: _angular_core.Signal<"text-slate-600" | "text-slate-400">;
2769
- protected metricValueClasses: _angular_core.Signal<"text-slate-900" | "text-slate-100">;
2770
- protected yoyChangeClasses: _angular_core.Signal<"text-slate-600" | "text-slate-400" | "text-emerald-400" | "text-red-400" | "text-emerald-600" | "text-red-600">;
2949
+ protected metricValueClasses: _angular_core.Signal<"text-slate-100" | "text-slate-900">;
2950
+ protected yoyChangeClasses: _angular_core.Signal<"text-slate-600" | "text-slate-400" | "text-emerald-400" | "text-emerald-600" | "text-red-400" | "text-red-600">;
2771
2951
  protected getYoyIcon(): string;
2772
2952
  protected getPacingValueClasses(): string;
2773
2953
  protected getHealthValueClasses(): string;
2774
2954
  protected narrativeClasses: _angular_core.Signal<"bg-white border border-slate-200" | "bg-slate-800/50 border border-slate-600/20">;
2775
- protected narrativeTitleClasses: _angular_core.Signal<"text-slate-800" | "text-slate-200">;
2955
+ protected narrativeTitleClasses: _angular_core.Signal<"text-slate-200" | "text-slate-800">;
2776
2956
  protected narrativeTextClasses: _angular_core.Signal<"text-slate-600" | "text-slate-400">;
2777
- protected sectionTitleClasses: _angular_core.Signal<"text-slate-900" | "text-slate-100">;
2957
+ protected sectionTitleClasses: _angular_core.Signal<"text-slate-100" | "text-slate-900">;
2778
2958
  protected priorityCardClasses: _angular_core.Signal<"bg-slate-800/50 border border-slate-700/50 hover:border-slate-600/70" | "bg-white border border-slate-200 hover:border-slate-300">;
2779
2959
  protected priorityNumberClasses: _angular_core.Signal<"bg-blue-500/20 text-blue-300" | "bg-blue-100 text-blue-800">;
2780
- protected priorityTitleClasses: _angular_core.Signal<"text-slate-900" | "text-slate-100">;
2781
- protected priorityTextClasses: _angular_core.Signal<"text-slate-700" | "text-slate-300">;
2960
+ protected priorityTitleClasses: _angular_core.Signal<"text-slate-100" | "text-slate-900">;
2961
+ protected priorityTextClasses: _angular_core.Signal<"text-slate-300" | "text-slate-700">;
2782
2962
  protected impactBoxClasses: _angular_core.Signal<"bg-slate-800/30 border border-slate-700/30" | "bg-slate-50/50 border border-slate-200">;
2783
- protected impactLabelClasses: _angular_core.Signal<"text-blue-600" | "text-blue-400">;
2963
+ protected impactLabelClasses: _angular_core.Signal<"text-blue-400" | "text-blue-600">;
2784
2964
  protected impactTextClasses: _angular_core.Signal<"text-slate-600" | "text-slate-400">;
2785
2965
  protected quickWinCardClasses: _angular_core.Signal<"bg-white border border-slate-200" | "bg-slate-800/50 border border-slate-700/50">;
2786
2966
  protected numberBadgeClasses: _angular_core.Signal<"bg-blue-500/20 text-blue-300" | "bg-blue-100 text-blue-800">;
2787
- protected quickWinTextClasses: _angular_core.Signal<"text-slate-900" | "text-slate-100">;
2967
+ protected quickWinTextClasses: _angular_core.Signal<"text-slate-100" | "text-slate-900">;
2788
2968
  protected metaTextClasses: _angular_core.Signal<"text-slate-600" | "text-slate-400">;
2789
2969
  protected getEffortBadgeClasses(effort: string | undefined): string;
2790
2970
  protected getImpactBadgeClasses(impact: string | undefined): string;
2971
+ protected formatMetricName(name: string): string;
2791
2972
  protected formatLabel(str: string | undefined): string;
2792
2973
  static ɵfac: _angular_core.ɵɵFactoryDeclaration<MetricExecutiveSummaryComponent, never>;
2793
- static ɵcmp: _angular_core.ɵɵComponentDeclaration<MetricExecutiveSummaryComponent, "symphiq-metric-executive-summary", never, { "viewMode": { "alias": "viewMode"; "required": false; }; "summary": { "alias": "summary"; "required": false; }; "metricName": { "alias": "metricName"; "required": false; }; "allGoals": { "alias": "allGoals"; "required": false; }; }, { "topPrioritiesClick": "topPrioritiesClick"; "priorityDetailClick": "priorityDetailClick"; }, never, never, true, never>;
2974
+ static ɵcmp: _angular_core.ɵɵComponentDeclaration<MetricExecutiveSummaryComponent, "symphiq-metric-executive-summary", never, { "viewMode": { "alias": "viewMode"; "required": false; "isSignal": true; }; "summary": { "alias": "summary"; "required": true; "isSignal": true; }; "metricName": { "alias": "metricName"; "required": false; "isSignal": true; }; "allGoals": { "alias": "allGoals"; "required": false; "isSignal": true; }; }, { "topPrioritiesClick": "topPrioritiesClick"; "priorityDetailClick": "priorityDetailClick"; }, never, never, true, never>;
2794
2975
  }
2795
2976
 
2796
2977
  declare class HorizontalBarComponent implements OnInit, OnDestroy {
2797
- percentage: number;
2798
- label: string;
2799
- value: string;
2800
- height: number;
2801
- showLabel: boolean;
2802
- gradient: string;
2803
- isDark: boolean;
2804
- animationDuration: number;
2805
- animationDelay: number;
2978
+ percentage: _angular_core.InputSignal<number>;
2979
+ label: _angular_core.InputSignal<string>;
2980
+ value: _angular_core.InputSignal<string>;
2981
+ height: _angular_core.InputSignal<number>;
2982
+ showLabel: _angular_core.InputSignal<boolean>;
2983
+ gradient: _angular_core.InputSignal<string>;
2984
+ isDark: _angular_core.InputSignal<boolean>;
2985
+ animationDuration: _angular_core.InputSignal<number>;
2986
+ animationDelay: _angular_core.InputSignal<number>;
2806
2987
  private elementRef;
2807
2988
  private observer?;
2808
2989
  private animationFrame?;
@@ -2818,20 +2999,20 @@ declare class HorizontalBarComponent implements OnInit, OnDestroy {
2818
2999
  get labelClasses(): string;
2819
3000
  get valueClasses(): string;
2820
3001
  static ɵfac: _angular_core.ɵɵFactoryDeclaration<HorizontalBarComponent, never>;
2821
- static ɵcmp: _angular_core.ɵɵComponentDeclaration<HorizontalBarComponent, "symphiq-horizontal-bar", never, { "percentage": { "alias": "percentage"; "required": false; }; "label": { "alias": "label"; "required": false; }; "value": { "alias": "value"; "required": false; }; "height": { "alias": "height"; "required": false; }; "showLabel": { "alias": "showLabel"; "required": false; }; "gradient": { "alias": "gradient"; "required": false; }; "isDark": { "alias": "isDark"; "required": false; }; "animationDuration": { "alias": "animationDuration"; "required": false; }; "animationDelay": { "alias": "animationDelay"; "required": false; }; }, {}, never, never, true, never>;
3002
+ static ɵcmp: _angular_core.ɵɵComponentDeclaration<HorizontalBarComponent, "symphiq-horizontal-bar", never, { "percentage": { "alias": "percentage"; "required": false; "isSignal": true; }; "label": { "alias": "label"; "required": false; "isSignal": true; }; "value": { "alias": "value"; "required": false; "isSignal": true; }; "height": { "alias": "height"; "required": false; "isSignal": true; }; "showLabel": { "alias": "showLabel"; "required": false; "isSignal": true; }; "gradient": { "alias": "gradient"; "required": false; "isSignal": true; }; "isDark": { "alias": "isDark"; "required": false; "isSignal": true; }; "animationDuration": { "alias": "animationDuration"; "required": false; "isSignal": true; }; "animationDelay": { "alias": "animationDelay"; "required": false; "isSignal": true; }; }, {}, never, never, true, never>;
2822
3003
  }
2823
3004
 
2824
3005
  declare class CircularProgressComponent implements OnInit, OnDestroy {
2825
- percentage: number;
2826
- size: number;
2827
- strokeWidth: number;
2828
- progressColor: string;
2829
- backgroundColor: string;
2830
- showPercentage: boolean;
2831
- textClasses: string;
2832
- strokeLinecap: 'butt' | 'round' | 'square';
2833
- animationDuration: number;
2834
- animationDelay: number;
3006
+ percentage: _angular_core.InputSignal<number>;
3007
+ size: _angular_core.InputSignal<number>;
3008
+ strokeWidth: _angular_core.InputSignal<number>;
3009
+ progressColor: _angular_core.InputSignal<string>;
3010
+ backgroundColor: _angular_core.InputSignal<string>;
3011
+ showPercentage: _angular_core.InputSignal<boolean>;
3012
+ textClasses: _angular_core.InputSignal<string>;
3013
+ strokeLinecap: _angular_core.InputSignal<"butt" | "round" | "square">;
3014
+ animationDuration: _angular_core.InputSignal<number>;
3015
+ animationDelay: _angular_core.InputSignal<number>;
2835
3016
  private elementRef;
2836
3017
  private observer?;
2837
3018
  private animationFrame?;
@@ -2846,7 +3027,7 @@ declare class CircularProgressComponent implements OnInit, OnDestroy {
2846
3027
  protected animatedOffset(): number;
2847
3028
  protected animatedDisplayValue(): string;
2848
3029
  static ɵfac: _angular_core.ɵɵFactoryDeclaration<CircularProgressComponent, never>;
2849
- static ɵcmp: _angular_core.ɵɵComponentDeclaration<CircularProgressComponent, "symphiq-circular-progress", never, { "percentage": { "alias": "percentage"; "required": false; }; "size": { "alias": "size"; "required": false; }; "strokeWidth": { "alias": "strokeWidth"; "required": false; }; "progressColor": { "alias": "progressColor"; "required": false; }; "backgroundColor": { "alias": "backgroundColor"; "required": false; }; "showPercentage": { "alias": "showPercentage"; "required": false; }; "textClasses": { "alias": "textClasses"; "required": false; }; "strokeLinecap": { "alias": "strokeLinecap"; "required": false; }; "animationDuration": { "alias": "animationDuration"; "required": false; }; "animationDelay": { "alias": "animationDelay"; "required": false; }; }, {}, never, never, true, never>;
3030
+ static ɵcmp: _angular_core.ɵɵComponentDeclaration<CircularProgressComponent, "symphiq-circular-progress", never, { "percentage": { "alias": "percentage"; "required": false; "isSignal": true; }; "size": { "alias": "size"; "required": false; "isSignal": true; }; "strokeWidth": { "alias": "strokeWidth"; "required": false; "isSignal": true; }; "progressColor": { "alias": "progressColor"; "required": false; "isSignal": true; }; "backgroundColor": { "alias": "backgroundColor"; "required": false; "isSignal": true; }; "showPercentage": { "alias": "showPercentage"; "required": false; "isSignal": true; }; "textClasses": { "alias": "textClasses"; "required": false; "isSignal": true; }; "strokeLinecap": { "alias": "strokeLinecap"; "required": false; "isSignal": true; }; "animationDuration": { "alias": "animationDuration"; "required": false; "isSignal": true; }; "animationDelay": { "alias": "animationDelay"; "required": false; "isSignal": true; }; }, {}, never, never, true, never>;
2850
3031
  }
2851
3032
 
2852
3033
  type VisualizationType = 'horizontal-bar' | 'circular-progress' | 'custom';
@@ -2860,7 +3041,7 @@ declare class VisualizationContainerComponent {
2860
3041
  data: unknown;
2861
3042
  }>;
2862
3043
  containerClass: _angular_core.Signal<"" | "cursor-pointer">;
2863
- iconClass: _angular_core.Signal<"text-slate-400 group-hover:text-blue-500" | "text-slate-500 group-hover:text-blue-400">;
3044
+ iconClass: _angular_core.Signal<"text-slate-500 group-hover:text-blue-400" | "text-slate-400 group-hover:text-blue-500">;
2864
3045
  onExpandClick(event: Event): void;
2865
3046
  onVisualizationClick(event: Event): void;
2866
3047
  static ɵfac: _angular_core.ɵɵFactoryDeclaration<VisualizationContainerComponent, never>;
@@ -2868,14 +3049,13 @@ declare class VisualizationContainerComponent {
2868
3049
  }
2869
3050
 
2870
3051
  declare class ScrollProgressBarComponent {
2871
- set progress(value: number);
2872
- isLightMode: boolean;
2873
- embedded: boolean;
2874
- protected scrollProgress: _angular_core.WritableSignal<number>;
3052
+ progress: _angular_core.InputSignal<number>;
3053
+ isLightMode: _angular_core.InputSignal<boolean>;
3054
+ embedded: _angular_core.InputSignal<boolean>;
2875
3055
  protected getContainerClasses(): string;
2876
3056
  protected getGradientClasses(): string;
2877
3057
  static ɵfac: _angular_core.ɵɵFactoryDeclaration<ScrollProgressBarComponent, never>;
2878
- static ɵcmp: _angular_core.ɵɵComponentDeclaration<ScrollProgressBarComponent, "symphiq-scroll-progress-bar", never, { "progress": { "alias": "progress"; "required": false; }; "isLightMode": { "alias": "isLightMode"; "required": false; }; "embedded": { "alias": "embedded"; "required": false; }; }, {}, never, never, true, never>;
3058
+ static ɵcmp: _angular_core.ɵɵComponentDeclaration<ScrollProgressBarComponent, "symphiq-scroll-progress-bar", never, { "progress": { "alias": "progress"; "required": false; "isSignal": true; }; "isLightMode": { "alias": "isLightMode"; "required": false; "isSignal": true; }; "embedded": { "alias": "embedded"; "required": false; "isSignal": true; }; }, {}, never, never, true, never>;
2879
3059
  }
2880
3060
 
2881
3061
  interface IconObjectInterface {
@@ -2884,29 +3064,25 @@ interface IconObjectInterface {
2884
3064
  }
2885
3065
  declare class SymphiqIconComponent {
2886
3066
  private iconService;
2887
- set icon(value: IconObjectInterface | undefined);
2888
- set size(value: string);
2889
- set customClass(value: string);
2890
- private iconSignal;
2891
- private sizeSignal;
2892
- private customClassSignal;
3067
+ icon: _angular_core.InputSignal<IconObjectInterface | undefined>;
3068
+ size: _angular_core.InputSignal<string>;
3069
+ customClass: _angular_core.InputSignal<string>;
2893
3070
  protected containerClass: _angular_core.Signal<string>;
2894
3071
  private iconRequest$;
2895
3072
  protected iconHtml: _angular_core.Signal<"" | _angular_platform_browser.SafeHtml>;
2896
3073
  static ɵfac: _angular_core.ɵɵFactoryDeclaration<SymphiqIconComponent, never>;
2897
- static ɵcmp: _angular_core.ɵɵComponentDeclaration<SymphiqIconComponent, "symphiq-icon", never, { "icon": { "alias": "icon"; "required": false; }; "size": { "alias": "size"; "required": false; }; "customClass": { "alias": "customClass"; "required": false; }; }, {}, never, never, true, never>;
3074
+ static ɵcmp: _angular_core.ɵɵComponentDeclaration<SymphiqIconComponent, "symphiq-icon", never, { "icon": { "alias": "icon"; "required": false; "isSignal": true; }; "size": { "alias": "size"; "required": false; "isSignal": true; }; "customClass": { "alias": "customClass"; "required": false; "isSignal": true; }; }, {}, never, never, true, never>;
2898
3075
  }
2899
3076
 
2900
3077
  declare class SectionDividerComponent {
2901
- viewMode: ViewModeEnum;
2902
- animationDelay: string;
2903
- sectionIcon?: IconObjectInterface$1;
2904
- private subsectionsSignal;
2905
- set subsections(value: ProfileSubsectionInterface[] | undefined);
3078
+ viewMode: _angular_core.InputSignal<ViewModeEnum>;
3079
+ animationDelay: _angular_core.InputSignal<string>;
3080
+ sectionIcon: _angular_core.InputSignal<IconObjectInterface$1 | undefined>;
3081
+ subsections: _angular_core.InputSignal<ProfileSubsectionInterface[]>;
2906
3082
  protected displayIcons: _angular_core.Signal<IconObjectInterface$1[]>;
2907
3083
  protected isLightMode(): boolean;
2908
3084
  static ɵfac: _angular_core.ɵɵFactoryDeclaration<SectionDividerComponent, never>;
2909
- static ɵcmp: _angular_core.ɵɵComponentDeclaration<SectionDividerComponent, "symphiq-section-divider", never, { "viewMode": { "alias": "viewMode"; "required": false; }; "animationDelay": { "alias": "animationDelay"; "required": false; }; "sectionIcon": { "alias": "sectionIcon"; "required": false; }; "subsections": { "alias": "subsections"; "required": false; }; }, {}, never, never, true, never>;
3085
+ static ɵcmp: _angular_core.ɵɵComponentDeclaration<SectionDividerComponent, "symphiq-section-divider", never, { "viewMode": { "alias": "viewMode"; "required": false; "isSignal": true; }; "animationDelay": { "alias": "animationDelay"; "required": false; "isSignal": true; }; "sectionIcon": { "alias": "sectionIcon"; "required": false; "isSignal": true; }; "subsections": { "alias": "subsections"; "required": false; "isSignal": true; }; }, {}, never, never, true, never>;
2910
3086
  }
2911
3087
 
2912
3088
  declare class SearchButtonComponent {
@@ -2945,17 +3121,17 @@ declare class SearchModalComponent {
2945
3121
  iconClass: _angular_core.Signal<"text-slate-400" | "text-slate-500">;
2946
3122
  clearButtonClass: _angular_core.Signal<"bg-slate-100 text-slate-600 hover:bg-slate-200" | "bg-slate-700 text-slate-300 hover:bg-slate-600">;
2947
3123
  closeButtonClass: _angular_core.Signal<"text-slate-400 hover:text-slate-600 hover:bg-slate-100" | "text-slate-500 hover:text-slate-300 hover:bg-slate-700">;
2948
- resultsContainerClass: _angular_core.Signal<"border-slate-200" | "border-slate-700">;
3124
+ resultsContainerClass: _angular_core.Signal<"border-slate-700" | "border-slate-200">;
2949
3125
  resultTitleClass: _angular_core.Signal<"text-slate-900" | "text-white">;
2950
3126
  resultDescClass: _angular_core.Signal<"text-slate-600" | "text-slate-400">;
2951
3127
  breadcrumbClass: _angular_core.Signal<string>;
2952
3128
  typeBadgeClass: _angular_core.Signal<"bg-slate-100 text-slate-600" | "bg-slate-700 text-slate-300">;
2953
3129
  arrowClass: _angular_core.Signal<"text-slate-400" | "text-slate-500">;
2954
- emptyStateClass: _angular_core.Signal<"border-slate-200" | "border-slate-700">;
2955
- emptyIconClass: _angular_core.Signal<"text-slate-600" | "text-slate-300">;
3130
+ emptyStateClass: _angular_core.Signal<"border-slate-700" | "border-slate-200">;
3131
+ emptyIconClass: _angular_core.Signal<"text-slate-300" | "text-slate-600">;
2956
3132
  emptyTitleClass: _angular_core.Signal<"text-slate-900" | "text-white">;
2957
3133
  emptyDescClass: _angular_core.Signal<"text-slate-600" | "text-slate-400">;
2958
- shortcutsClass: _angular_core.Signal<"bg-slate-900/50 border-slate-700" | "bg-slate-50 border-slate-200">;
3134
+ shortcutsClass: _angular_core.Signal<"bg-slate-50 border-slate-200" | "bg-slate-900/50 border-slate-700">;
2959
3135
  kbdClass: _angular_core.Signal<"bg-white border border-slate-300 text-slate-700 shadow-sm" | "bg-slate-700 border border-slate-600 text-slate-300">;
2960
3136
  shortcutTextClass: _angular_core.Signal<"text-slate-600" | "text-slate-400">;
2961
3137
  static ɵfac: _angular_core.ɵɵFactoryDeclaration<SearchModalComponent, never>;
@@ -3027,11 +3203,11 @@ interface ConfidenceData {
3027
3203
  description: string;
3028
3204
  }
3029
3205
  declare class ConfidenceLevelCardComponent implements OnInit, OnDestroy {
3030
- viewMode: ViewModeEnum;
3031
- currentStepId: string;
3032
- focusAreaDetails?: FocusAreaDetailInterface[];
3033
- currentFocusAreaDomain?: FocusAreaDomainEnum;
3034
- currentMetric?: string;
3206
+ viewMode: _angular_core.InputSignal<ViewModeEnum>;
3207
+ currentStepId: _angular_core.InputSignal<string>;
3208
+ focusAreaDetails: _angular_core.InputSignal<FocusAreaDetailInterface[] | undefined>;
3209
+ currentFocusAreaDomain: _angular_core.InputSignal<FocusAreaDomainEnum | undefined>;
3210
+ currentMetric: _angular_core.InputSignal<string | undefined>;
3035
3211
  private elementRef;
3036
3212
  private observer?;
3037
3213
  private animationFrame?;
@@ -3056,17 +3232,17 @@ declare class ConfidenceLevelCardComponent implements OnInit, OnDestroy {
3056
3232
  protected gradeBadgeContainerClasses: _angular_core.Signal<string>;
3057
3233
  protected glowEffectClasses: _angular_core.Signal<"bg-emerald-500" | "bg-blue-500" | "bg-orange-500" | "bg-red-500">;
3058
3234
  protected gradeBadgeClasses: _angular_core.Signal<"bg-gradient-to-br from-emerald-500/30 to-teal-500/30 border-2 border-emerald-500/50 shadow-[0_0_20px_rgba(16,185,129,0.3)]" | "bg-gradient-to-br from-emerald-50 to-teal-50 border-2 border-emerald-300/50 shadow-[0_0_20px_rgba(16,185,129,0.2)]" | "bg-gradient-to-br from-blue-500/30 to-cyan-500/30 border-2 border-blue-500/50 shadow-[0_0_20px_rgba(59,130,246,0.3)]" | "bg-gradient-to-br from-blue-50 to-cyan-50 border-2 border-blue-300/50 shadow-[0_0_20px_rgba(59,130,246,0.2)]" | "bg-gradient-to-br from-orange-500/30 to-amber-500/30 border-2 border-orange-500/50 shadow-[0_0_20px_rgba(249,115,22,0.3)]" | "bg-gradient-to-br from-orange-50 to-amber-50 border-2 border-orange-300/50 shadow-[0_0_20px_rgba(249,115,22,0.2)]" | "bg-gradient-to-br from-red-500/30 to-rose-500/30 border-2 border-red-500/50 shadow-[0_0_20px_rgba(239,68,68,0.3)]" | "bg-gradient-to-br from-red-50 to-rose-50 border-2 border-red-300/50 shadow-[0_0_20px_rgba(239,68,68,0.2)]">;
3059
- protected gradeLabelClasses: _angular_core.Signal<"text-emerald-700" | "text-red-700" | "text-blue-700" | "text-orange-700" | "text-red-300" | "text-emerald-300" | "text-blue-300" | "text-orange-300">;
3235
+ protected gradeLabelClasses: _angular_core.Signal<"text-blue-700" | "text-emerald-700" | "text-red-700" | "text-orange-700" | "text-emerald-300" | "text-blue-300" | "text-red-300" | "text-orange-300">;
3060
3236
  protected gradeValueClasses: _angular_core.Signal<"bg-gradient-to-b from-emerald-300 to-emerald-500 bg-clip-text text-transparent" | "bg-gradient-to-b from-emerald-600 to-emerald-800 bg-clip-text text-transparent" | "bg-gradient-to-b from-blue-300 to-blue-500 bg-clip-text text-transparent" | "bg-gradient-to-b from-blue-600 to-blue-800 bg-clip-text text-transparent" | "bg-gradient-to-b from-orange-300 to-orange-500 bg-clip-text text-transparent" | "bg-gradient-to-b from-orange-600 to-orange-800 bg-clip-text text-transparent" | "bg-gradient-to-b from-red-300 to-red-500 bg-clip-text text-transparent" | "bg-gradient-to-b from-red-600 to-red-800 bg-clip-text text-transparent">;
3061
- protected descriptionClasses: _angular_core.Signal<"text-slate-700" | "text-slate-300">;
3062
- protected progressLabelClasses: _angular_core.Signal<"text-slate-700" | "text-slate-300">;
3063
- protected progressValueClasses: _angular_core.Signal<"text-blue-600" | "text-blue-400" | "text-emerald-400" | "text-red-400" | "text-emerald-600" | "text-red-600" | "text-orange-600" | "text-orange-400">;
3237
+ protected descriptionClasses: _angular_core.Signal<"text-slate-300" | "text-slate-700">;
3238
+ protected progressLabelClasses: _angular_core.Signal<"text-slate-300" | "text-slate-700">;
3239
+ protected progressValueClasses: _angular_core.Signal<"text-emerald-400" | "text-emerald-600" | "text-blue-400" | "text-blue-600" | "text-red-400" | "text-red-600" | "text-orange-600" | "text-orange-400">;
3064
3240
  protected progressTrackClasses: _angular_core.Signal<"bg-slate-700/50 shadow-inner" | "bg-slate-200 shadow-inner">;
3065
3241
  protected progressBarClasses: _angular_core.Signal<"rounded-full overflow-hidden bg-gradient-to-r from-emerald-500 via-teal-500 to-emerald-600" | "rounded-full overflow-hidden bg-gradient-to-r from-blue-500 via-cyan-500 to-blue-600" | "rounded-full overflow-hidden bg-gradient-to-r from-orange-500 via-amber-500 to-orange-600" | "rounded-full overflow-hidden bg-gradient-to-r from-red-500 via-rose-500 to-red-600">;
3066
3242
  protected shimmerClasses: _angular_core.Signal<string>;
3067
3243
  protected progressGlowClasses: _angular_core.Signal<"bg-gradient-to-r from-emerald-500 to-teal-500" | "bg-gradient-to-r from-blue-500 to-cyan-500" | "bg-gradient-to-r from-orange-500 to-amber-500" | "bg-gradient-to-r from-red-500 to-rose-500">;
3068
3244
  static ɵfac: _angular_core.ɵɵFactoryDeclaration<ConfidenceLevelCardComponent, never>;
3069
- static ɵcmp: _angular_core.ɵɵComponentDeclaration<ConfidenceLevelCardComponent, "symphiq-confidence-level-card", never, { "viewMode": { "alias": "viewMode"; "required": false; }; "currentStepId": { "alias": "currentStepId"; "required": false; }; "focusAreaDetails": { "alias": "focusAreaDetails"; "required": false; }; "currentFocusAreaDomain": { "alias": "currentFocusAreaDomain"; "required": false; }; "currentMetric": { "alias": "currentMetric"; "required": false; }; }, {}, never, never, true, never>;
3245
+ static ɵcmp: _angular_core.ɵɵComponentDeclaration<ConfidenceLevelCardComponent, "symphiq-confidence-level-card", never, { "viewMode": { "alias": "viewMode"; "required": false; "isSignal": true; }; "currentStepId": { "alias": "currentStepId"; "required": false; "isSignal": true; }; "focusAreaDetails": { "alias": "focusAreaDetails"; "required": false; "isSignal": true; }; "currentFocusAreaDomain": { "alias": "currentFocusAreaDomain"; "required": false; "isSignal": true; }; "currentMetric": { "alias": "currentMetric"; "required": false; "isSignal": true; }; }, {}, never, never, true, never>;
3070
3246
  }
3071
3247
 
3072
3248
  declare class RelatedContentSidebarComponent {
@@ -3083,12 +3259,12 @@ declare class RelatedContentSidebarComponent {
3083
3259
  protected funnelMetricsCount: _angular_core.Signal<number>;
3084
3260
  protected businessInsightsCount: _angular_core.Signal<number>;
3085
3261
  protected headerClasses: _angular_core.Signal<"text-slate-600" | "text-slate-400">;
3086
- protected buttonClasses: _angular_core.Signal<"bg-slate-50 border-slate-200 hover:border-blue-500/50 hover:bg-slate-100" | "bg-slate-800/50 border-slate-700 hover:border-blue-500/50 hover:bg-slate-700/50">;
3262
+ protected buttonClasses: _angular_core.Signal<"bg-slate-800/50 border-slate-700 hover:border-blue-500/50 hover:bg-slate-700/50" | "bg-slate-50 border-slate-200 hover:border-blue-500/50 hover:bg-slate-100">;
3087
3263
  protected iconBgClasses: _angular_core.Signal<"bg-blue-100 text-blue-600" | "bg-blue-900/30 text-blue-400">;
3088
- protected iconClasses: _angular_core.Signal<"text-blue-600" | "text-blue-400">;
3264
+ protected iconClasses: _angular_core.Signal<"text-blue-400" | "text-blue-600">;
3089
3265
  protected countClasses: _angular_core.Signal<"text-slate-900" | "text-white">;
3090
3266
  protected labelClasses: _angular_core.Signal<"text-slate-600" | "text-slate-400">;
3091
- protected chevronClasses: _angular_core.Signal<"text-slate-500 group-hover:text-blue-400" | "text-slate-400 group-hover:text-blue-600">;
3267
+ protected chevronClasses: _angular_core.Signal<"text-slate-400 group-hover:text-blue-600" | "text-slate-500 group-hover:text-blue-400">;
3092
3268
  protected onFunnelInsightsClick(): void;
3093
3269
  protected onFunnelMetricsClick(): void;
3094
3270
  protected onBusinessInsightsClick(): void;
@@ -3108,10 +3284,10 @@ declare class ChartContainerComponent {
3108
3284
  isExpanded: _angular_core.WritableSignal<boolean>;
3109
3285
  protected ChartTypeEnum: typeof ChartTypeEnum;
3110
3286
  containerClass: _angular_core.Signal<"bg-white border-slate-200 hover:border-blue-300 hover:shadow-blue-100/50" | "bg-slate-800 border-slate-700 hover:border-slate-600 hover:shadow-slate-900/50">;
3111
- headerClass: _angular_core.Signal<"border-slate-200" | "border-slate-700">;
3287
+ headerClass: _angular_core.Signal<"border-slate-700" | "border-slate-200">;
3112
3288
  titleClass: _angular_core.Signal<"text-slate-900" | "text-white">;
3113
3289
  descriptionClass: _angular_core.Signal<"text-slate-600" | "text-slate-400">;
3114
- iconClass: _angular_core.Signal<"text-slate-400 group-hover:text-blue-500" | "text-slate-500 group-hover:text-blue-400">;
3290
+ iconClass: _angular_core.Signal<"text-slate-500 group-hover:text-blue-400" | "text-slate-400 group-hover:text-blue-500">;
3115
3291
  chartIconClass: _angular_core.Signal<"bg-blue-500/20 text-blue-400" | "bg-blue-100 text-blue-600">;
3116
3292
  expandButtonClass: _angular_core.Signal<"bg-blue-100 text-blue-600 hover:bg-blue-200" | "bg-blue-500/20 text-blue-400 hover:bg-blue-500/30">;
3117
3293
  closeButtonClass: _angular_core.Signal<"bg-slate-100 text-slate-600 hover:bg-slate-200" | "bg-slate-700/50 text-slate-400 hover:bg-slate-600/50">;
@@ -3312,7 +3488,7 @@ declare class TooltipContainerComponent {
3312
3488
  shouldCenter: _angular_core.Signal<boolean>;
3313
3489
  containerClass: _angular_core.Signal<"" | "-translate-x-1/2">;
3314
3490
  contentClass: _angular_core.Signal<"bg-white/95 border-slate-300 text-slate-900" | "bg-slate-800/95 border-slate-600 text-white">;
3315
- textClass: _angular_core.Signal<"text-slate-200" | "text-slate-700">;
3491
+ textClass: _angular_core.Signal<"text-slate-700" | "text-slate-200">;
3316
3492
  viewMoreButtonClass: _angular_core.Signal<"bg-blue-50 text-blue-700 border border-blue-200 hover:bg-blue-200 hover:border-blue-400 hover:text-blue-800 active:bg-blue-300" | "bg-blue-500/10 text-blue-400 border border-blue-500/20 hover:bg-blue-500/30 hover:border-blue-500/40 hover:text-blue-300 active:bg-blue-500/40">;
3317
3493
  transformStyle: _angular_core.Signal<"none" | "translateX(-192px)">;
3318
3494
  constructor();
@@ -3407,10 +3583,10 @@ declare class ViewportAnimationDirective implements OnInit, OnDestroy {
3407
3583
  type BadgeType = 'primary' | 'success' | 'warning' | 'info' | 'premium' | 'default' | 'danger' | 'neutral';
3408
3584
 
3409
3585
  declare class FocusAreaDetailCardComponent {
3410
- item?: ProfileItemInterface;
3411
- viewMode: ViewModeEnum;
3412
- set forceExpanded(value: boolean);
3413
- animationIndex: number;
3586
+ item: _angular_core.InputSignal<ProfileItemInterface | undefined>;
3587
+ viewMode: _angular_core.InputSignal<ViewModeEnum>;
3588
+ forceExpanded: _angular_core.InputSignal<boolean>;
3589
+ animationIndex: _angular_core.InputSignal<number>;
3414
3590
  protected IconSourceEnum: typeof IconSourceEnum;
3415
3591
  private _isExpanded;
3416
3592
  protected isCompetitiveGapExpanded: _angular_core.WritableSignal<boolean>;
@@ -3424,7 +3600,7 @@ declare class FocusAreaDetailCardComponent {
3424
3600
  protected isActuallyExpanded: _angular_core.Signal<boolean>;
3425
3601
  protected forceExpandedValue: _angular_core.Signal<boolean>;
3426
3602
  protected shouldAnimateExpand: _angular_core.Signal<boolean>;
3427
- protected iconSize: _angular_core.Signal<"w-6 h-6" | "w-7 h-7">;
3603
+ protected iconSize: _angular_core.Signal<"w-7 h-7" | "w-6 h-6">;
3428
3604
  protected relatedRecommendations: _angular_core.Signal<_jebgem_model.ProfileAnalysisRecommendationInterface[]>;
3429
3605
  protected statusLabel: _angular_core.Signal<string>;
3430
3606
  protected statusBadgeType: _angular_core.Signal<BadgeType>;
@@ -3439,11 +3615,11 @@ declare class FocusAreaDetailCardComponent {
3439
3615
  protected metaLabelClasses: _angular_core.Signal<"text-xs font-medium text-slate-400 uppercase tracking-wide" | "text-xs font-medium text-slate-600 uppercase tracking-wide">;
3440
3616
  protected toolChipClasses: _angular_core.Signal<"px-2.5 py-1 rounded-md bg-emerald-500/10 text-emerald-300 text-xs border border-emerald-500/30" | "px-2.5 py-1 rounded-md bg-emerald-50 text-emerald-700 text-xs border border-emerald-200">;
3441
3617
  protected expandedSectionClasses: _angular_core.Signal<"p-4 rounded-lg bg-slate-700/30 border border-slate-600/30" | "p-4 rounded-lg bg-slate-50 border border-slate-200">;
3442
- protected expandedIconClasses: _angular_core.Signal<"text-blue-600" | "text-blue-400">;
3618
+ protected expandedIconClasses: _angular_core.Signal<"text-blue-400" | "text-blue-600">;
3443
3619
  protected expandedTitleClasses: _angular_core.Signal<"text-sm font-semibold text-white" | "text-sm font-semibold text-slate-900">;
3444
3620
  protected insightItemClasses: _angular_core.Signal<"text-sm text-slate-300 leading-relaxed flex" | "text-sm text-slate-600 leading-relaxed flex">;
3445
3621
  protected expandButtonClasses: _angular_core.Signal<"text-sm font-medium text-blue-400" | "text-sm font-medium text-blue-600">;
3446
- protected chevronClasses: _angular_core.Signal<"text-blue-600" | "text-blue-400">;
3622
+ protected chevronClasses: _angular_core.Signal<"text-blue-400" | "text-blue-600">;
3447
3623
  protected toggleExpanded(): void;
3448
3624
  protected toggleCompetitiveGap(): void;
3449
3625
  onExpandItem(event: CustomEvent): void;
@@ -3451,7 +3627,7 @@ declare class FocusAreaDetailCardComponent {
3451
3627
  protected getToolChipClasses(): string;
3452
3628
  protected formatFocusAreaStatus(status: string): string;
3453
3629
  static ɵfac: _angular_core.ɵɵFactoryDeclaration<FocusAreaDetailCardComponent, never>;
3454
- static ɵcmp: _angular_core.ɵɵComponentDeclaration<FocusAreaDetailCardComponent, "symphiq-focus-area-detail-card", never, { "item": { "alias": "item"; "required": false; }; "viewMode": { "alias": "viewMode"; "required": false; }; "forceExpanded": { "alias": "forceExpanded"; "required": false; }; "animationIndex": { "alias": "animationIndex"; "required": false; }; }, {}, never, never, true, never>;
3630
+ static ɵcmp: _angular_core.ɵɵComponentDeclaration<FocusAreaDetailCardComponent, "symphiq-focus-area-detail-card", never, { "item": { "alias": "item"; "required": false; "isSignal": true; }; "viewMode": { "alias": "viewMode"; "required": false; "isSignal": true; }; "forceExpanded": { "alias": "forceExpanded"; "required": false; "isSignal": true; }; "animationIndex": { "alias": "animationIndex"; "required": false; "isSignal": true; }; }, {}, never, never, true, never>;
3455
3631
  }
3456
3632
 
3457
3633
  interface CompetitorContext {
@@ -3470,11 +3646,11 @@ interface StrengthOrWeaknessObject {
3470
3646
  }
3471
3647
  type StrengthOrWeakness = string | StrengthOrWeaknessObject;
3472
3648
  declare class CompetitorAnalysisCardComponent {
3473
- item?: ProfileItemInterface;
3474
- viewMode: ViewModeEnum;
3475
- set forceExpanded(value: boolean);
3476
- animationIndex: number;
3477
- inModalContext: boolean;
3649
+ item: _angular_core.InputSignal<ProfileItemInterface | undefined>;
3650
+ viewMode: _angular_core.InputSignal<ViewModeEnum>;
3651
+ forceExpanded: _angular_core.InputSignal<boolean>;
3652
+ animationIndex: _angular_core.InputSignal<number>;
3653
+ inModalContext: _angular_core.InputSignal<boolean>;
3478
3654
  protected IconSourceEnum: typeof IconSourceEnum;
3479
3655
  protected isExpanded: _angular_core.WritableSignal<boolean>;
3480
3656
  private _forceExpanded;
@@ -3489,7 +3665,7 @@ declare class CompetitorAnalysisCardComponent {
3489
3665
  protected isActuallyExpanded: _angular_core.Signal<boolean>;
3490
3666
  protected isExpandedMode: _angular_core.Signal<boolean>;
3491
3667
  protected shouldAnimateExpand: _angular_core.Signal<boolean>;
3492
- protected iconSize: _angular_core.Signal<"w-6 h-6" | "w-7 h-7">;
3668
+ protected iconSize: _angular_core.Signal<"w-7 h-7" | "w-6 h-6">;
3493
3669
  protected animationType: _angular_core.Signal<"none" | "slide-up">;
3494
3670
  constructor();
3495
3671
  protected hasCompanyInfo: _angular_core.Signal<boolean>;
@@ -3520,104 +3696,104 @@ declare class CompetitorAnalysisCardComponent {
3520
3696
  protected linkClasses: _angular_core.Signal<"text-sm text-blue-400 hover:text-blue-300 underline transition-colors" | "text-sm text-blue-600 hover:text-blue-700 underline transition-colors">;
3521
3697
  protected listItemClasses: _angular_core.Signal<"text-sm text-slate-200 leading-relaxed flex items-start" | "text-sm text-slate-600 leading-relaxed flex items-start">;
3522
3698
  protected expandedSectionClasses: _angular_core.Signal<"p-4 rounded-lg bg-slate-700/30 border border-slate-600/30" | "p-4 rounded-lg bg-slate-50 border border-slate-200">;
3523
- protected expandedIconClasses: _angular_core.Signal<"text-blue-600" | "text-blue-400">;
3699
+ protected expandedIconClasses: _angular_core.Signal<"text-blue-400" | "text-blue-600">;
3524
3700
  protected expandedTitleClasses: _angular_core.Signal<"text-sm font-semibold text-white" | "text-sm font-semibold text-slate-900">;
3525
3701
  protected expandedTextClasses: _angular_core.Signal<"text-sm text-slate-300 leading-relaxed" | "text-sm text-slate-600 leading-relaxed">;
3526
3702
  protected expandButtonClasses: _angular_core.Signal<"text-sm font-medium text-blue-400" | "text-sm font-medium text-blue-600">;
3527
- protected chevronClasses: _angular_core.Signal<"text-blue-600" | "text-blue-400">;
3703
+ protected chevronClasses: _angular_core.Signal<"text-blue-400" | "text-blue-600">;
3528
3704
  protected toggleExpanded(): void;
3529
3705
  protected navigateToItem(item: ProfileItemInterface): void;
3530
3706
  onExpandItem(event: CustomEvent): void;
3531
3707
  static ɵfac: _angular_core.ɵɵFactoryDeclaration<CompetitorAnalysisCardComponent, never>;
3532
- static ɵcmp: _angular_core.ɵɵComponentDeclaration<CompetitorAnalysisCardComponent, "symphiq-competitor-analysis-card", never, { "item": { "alias": "item"; "required": false; }; "viewMode": { "alias": "viewMode"; "required": false; }; "forceExpanded": { "alias": "forceExpanded"; "required": false; }; "animationIndex": { "alias": "animationIndex"; "required": false; }; "inModalContext": { "alias": "inModalContext"; "required": false; }; }, {}, never, never, true, never>;
3708
+ static ɵcmp: _angular_core.ɵɵComponentDeclaration<CompetitorAnalysisCardComponent, "symphiq-competitor-analysis-card", never, { "item": { "alias": "item"; "required": false; "isSignal": true; }; "viewMode": { "alias": "viewMode"; "required": false; "isSignal": true; }; "forceExpanded": { "alias": "forceExpanded"; "required": false; "isSignal": true; }; "animationIndex": { "alias": "animationIndex"; "required": false; "isSignal": true; }; "inModalContext": { "alias": "inModalContext"; "required": false; "isSignal": true; }; }, {}, never, never, true, never>;
3533
3709
  }
3534
3710
 
3535
3711
  declare class OpportunityHighlightBannerComponent {
3536
- title: string;
3537
- message?: string;
3538
- isDark: boolean;
3539
- isExpanded: boolean;
3540
- bannerClick: EventEmitter<void>;
3712
+ title: _angular_core.InputSignal<string>;
3713
+ message: _angular_core.InputSignal<string | undefined>;
3714
+ isDark: _angular_core.InputSignal<boolean>;
3715
+ isExpanded: _angular_core.InputSignal<boolean>;
3716
+ bannerClick: _angular_core.OutputEmitterRef<void>;
3541
3717
  protected iconSource: IconSourceEnum;
3542
3718
  protected bannerClasses: _angular_core.Signal<"bg-gradient-to-r from-amber-500/10 to-orange-500/10 border-l-amber-500 border-r border-t border-b border-amber-500/30" | "bg-gradient-to-r from-amber-50 to-orange-50 border-l-amber-500 border-r border-t border-b border-amber-200">;
3543
3719
  protected iconContainerClasses: _angular_core.Signal<"bg-amber-500/20 text-amber-400" | "bg-amber-100 text-amber-600">;
3544
3720
  protected titleClasses: _angular_core.Signal<"text-amber-300" | "text-amber-900">;
3545
3721
  protected badgeClasses: _angular_core.Signal<"bg-amber-500/30 text-amber-300" | "bg-amber-200 text-amber-800">;
3546
3722
  protected messageClasses: _angular_core.Signal<"text-amber-700" | "text-amber-400/90">;
3547
- protected chevronClasses: _angular_core.Signal<"text-amber-600" | "text-amber-400">;
3723
+ protected chevronClasses: _angular_core.Signal<"text-amber-400" | "text-amber-600">;
3548
3724
  handleClick(event: Event): void;
3549
3725
  static ɵfac: _angular_core.ɵɵFactoryDeclaration<OpportunityHighlightBannerComponent, never>;
3550
- static ɵcmp: _angular_core.ɵɵComponentDeclaration<OpportunityHighlightBannerComponent, "symphiq-opportunity-highlight-banner", never, { "title": { "alias": "title"; "required": false; }; "message": { "alias": "message"; "required": false; }; "isDark": { "alias": "isDark"; "required": false; }; "isExpanded": { "alias": "isExpanded"; "required": false; }; }, { "bannerClick": "bannerClick"; }, never, never, true, never>;
3726
+ static ɵcmp: _angular_core.ɵɵComponentDeclaration<OpportunityHighlightBannerComponent, "symphiq-opportunity-highlight-banner", never, { "title": { "alias": "title"; "required": false; "isSignal": true; }; "message": { "alias": "message"; "required": false; "isSignal": true; }; "isDark": { "alias": "isDark"; "required": false; "isSignal": true; }; "isExpanded": { "alias": "isExpanded"; "required": false; "isSignal": true; }; }, { "bannerClick": "bannerClick"; }, never, never, true, never>;
3551
3727
  }
3552
3728
 
3553
3729
  declare class SkeletonCardBaseComponent {
3554
- viewMode: ViewModeEnum;
3730
+ viewMode: _angular_core.InputSignal<ViewModeEnum>;
3555
3731
  protected getCardClasses(): string;
3556
3732
  static ɵfac: _angular_core.ɵɵFactoryDeclaration<SkeletonCardBaseComponent, never>;
3557
- static ɵcmp: _angular_core.ɵɵComponentDeclaration<SkeletonCardBaseComponent, "symphiq-skeleton-card-base", never, { "viewMode": { "alias": "viewMode"; "required": false; }; }, {}, never, ["*"], true, never>;
3733
+ static ɵcmp: _angular_core.ɵɵComponentDeclaration<SkeletonCardBaseComponent, "symphiq-skeleton-card-base", never, { "viewMode": { "alias": "viewMode"; "required": false; "isSignal": true; }; }, {}, never, ["*"], true, never>;
3558
3734
  }
3559
3735
  declare class SkeletonBarComponent {
3560
- viewMode: ViewModeEnum;
3561
- width: string;
3562
- height: string;
3736
+ viewMode: _angular_core.InputSignal<ViewModeEnum>;
3737
+ width: _angular_core.InputSignal<string>;
3738
+ height: _angular_core.InputSignal<string>;
3563
3739
  protected getClasses(): string;
3564
3740
  static ɵfac: _angular_core.ɵɵFactoryDeclaration<SkeletonBarComponent, never>;
3565
- static ɵcmp: _angular_core.ɵɵComponentDeclaration<SkeletonBarComponent, "symphiq-skeleton-bar", never, { "viewMode": { "alias": "viewMode"; "required": false; }; "width": { "alias": "width"; "required": false; }; "height": { "alias": "height"; "required": false; }; }, {}, never, never, true, never>;
3741
+ static ɵcmp: _angular_core.ɵɵComponentDeclaration<SkeletonBarComponent, "symphiq-skeleton-bar", never, { "viewMode": { "alias": "viewMode"; "required": false; "isSignal": true; }; "width": { "alias": "width"; "required": false; "isSignal": true; }; "height": { "alias": "height"; "required": false; "isSignal": true; }; }, {}, never, never, true, never>;
3566
3742
  }
3567
3743
  declare class SkeletonCircleComponent {
3568
- viewMode: ViewModeEnum;
3569
- size: string;
3744
+ viewMode: _angular_core.InputSignal<ViewModeEnum>;
3745
+ size: _angular_core.InputSignal<string>;
3570
3746
  protected getClasses(): string;
3571
3747
  static ɵfac: _angular_core.ɵɵFactoryDeclaration<SkeletonCircleComponent, never>;
3572
- static ɵcmp: _angular_core.ɵɵComponentDeclaration<SkeletonCircleComponent, "symphiq-skeleton-circle", never, { "viewMode": { "alias": "viewMode"; "required": false; }; "size": { "alias": "size"; "required": false; }; }, {}, never, never, true, never>;
3748
+ static ɵcmp: _angular_core.ɵɵComponentDeclaration<SkeletonCircleComponent, "symphiq-skeleton-circle", never, { "viewMode": { "alias": "viewMode"; "required": false; "isSignal": true; }; "size": { "alias": "size"; "required": false; "isSignal": true; }; }, {}, never, never, true, never>;
3573
3749
  }
3574
3750
 
3575
3751
  declare class SkeletonCustomerSegmentCardComponent {
3576
- viewMode: ViewModeEnum;
3752
+ viewMode: _angular_core.InputSignal<ViewModeEnum>;
3577
3753
  static ɵfac: _angular_core.ɵɵFactoryDeclaration<SkeletonCustomerSegmentCardComponent, never>;
3578
- static ɵcmp: _angular_core.ɵɵComponentDeclaration<SkeletonCustomerSegmentCardComponent, "symphiq-skeleton-customer-segment-card", never, { "viewMode": { "alias": "viewMode"; "required": false; }; }, {}, never, never, true, never>;
3754
+ static ɵcmp: _angular_core.ɵɵComponentDeclaration<SkeletonCustomerSegmentCardComponent, "symphiq-skeleton-customer-segment-card", never, { "viewMode": { "alias": "viewMode"; "required": false; "isSignal": true; }; }, {}, never, never, true, never>;
3579
3755
  }
3580
3756
 
3581
3757
  declare class SkeletonProductCategoryCardComponent {
3582
- viewMode: ViewModeEnum;
3758
+ viewMode: _angular_core.InputSignal<ViewModeEnum>;
3583
3759
  static ɵfac: _angular_core.ɵɵFactoryDeclaration<SkeletonProductCategoryCardComponent, never>;
3584
- static ɵcmp: _angular_core.ɵɵComponentDeclaration<SkeletonProductCategoryCardComponent, "symphiq-skeleton-product-category-card", never, { "viewMode": { "alias": "viewMode"; "required": false; }; }, {}, never, never, true, never>;
3760
+ static ɵcmp: _angular_core.ɵɵComponentDeclaration<SkeletonProductCategoryCardComponent, "symphiq-skeleton-product-category-card", never, { "viewMode": { "alias": "viewMode"; "required": false; "isSignal": true; }; }, {}, never, never, true, never>;
3585
3761
  }
3586
3762
 
3587
3763
  declare class SkeletonGenericCardComponent {
3588
- viewMode: ViewModeEnum;
3764
+ viewMode: _angular_core.InputSignal<ViewModeEnum>;
3589
3765
  static ɵfac: _angular_core.ɵɵFactoryDeclaration<SkeletonGenericCardComponent, never>;
3590
- static ɵcmp: _angular_core.ɵɵComponentDeclaration<SkeletonGenericCardComponent, "symphiq-skeleton-generic-card", never, { "viewMode": { "alias": "viewMode"; "required": false; }; }, {}, never, never, true, never>;
3766
+ static ɵcmp: _angular_core.ɵɵComponentDeclaration<SkeletonGenericCardComponent, "symphiq-skeleton-generic-card", never, { "viewMode": { "alias": "viewMode"; "required": false; "isSignal": true; }; }, {}, never, never, true, never>;
3591
3767
  }
3592
3768
  declare class SkeletonRegionCardComponent {
3593
- viewMode: ViewModeEnum;
3769
+ viewMode: _angular_core.InputSignal<ViewModeEnum>;
3594
3770
  static ɵfac: _angular_core.ɵɵFactoryDeclaration<SkeletonRegionCardComponent, never>;
3595
- static ɵcmp: _angular_core.ɵɵComponentDeclaration<SkeletonRegionCardComponent, "symphiq-skeleton-region-card", never, { "viewMode": { "alias": "viewMode"; "required": false; }; }, {}, never, never, true, never>;
3771
+ static ɵcmp: _angular_core.ɵɵComponentDeclaration<SkeletonRegionCardComponent, "symphiq-skeleton-region-card", never, { "viewMode": { "alias": "viewMode"; "required": false; "isSignal": true; }; }, {}, never, never, true, never>;
3596
3772
  }
3597
3773
  declare class SkeletonSeasonCardComponent {
3598
- viewMode: ViewModeEnum;
3774
+ viewMode: _angular_core.InputSignal<ViewModeEnum>;
3599
3775
  static ɵfac: _angular_core.ɵɵFactoryDeclaration<SkeletonSeasonCardComponent, never>;
3600
- static ɵcmp: _angular_core.ɵɵComponentDeclaration<SkeletonSeasonCardComponent, "symphiq-skeleton-season-card", never, { "viewMode": { "alias": "viewMode"; "required": false; }; }, {}, never, never, true, never>;
3776
+ static ɵcmp: _angular_core.ɵɵComponentDeclaration<SkeletonSeasonCardComponent, "symphiq-skeleton-season-card", never, { "viewMode": { "alias": "viewMode"; "required": false; "isSignal": true; }; }, {}, never, never, true, never>;
3601
3777
  }
3602
3778
  declare class SkeletonPriceTierCardComponent {
3603
- viewMode: ViewModeEnum;
3779
+ viewMode: _angular_core.InputSignal<ViewModeEnum>;
3604
3780
  static ɵfac: _angular_core.ɵɵFactoryDeclaration<SkeletonPriceTierCardComponent, never>;
3605
- static ɵcmp: _angular_core.ɵɵComponentDeclaration<SkeletonPriceTierCardComponent, "symphiq-skeleton-price-tier-card", never, { "viewMode": { "alias": "viewMode"; "required": false; }; }, {}, never, never, true, never>;
3781
+ static ɵcmp: _angular_core.ɵɵComponentDeclaration<SkeletonPriceTierCardComponent, "symphiq-skeleton-price-tier-card", never, { "viewMode": { "alias": "viewMode"; "required": false; "isSignal": true; }; }, {}, never, never, true, never>;
3606
3782
  }
3607
3783
 
3608
3784
  declare class SkeletonFocusAreaCardComponent {
3609
- viewMode: ViewModeEnum;
3785
+ viewMode: _angular_core.InputSignal<ViewModeEnum>;
3610
3786
  protected isDark: _angular_core.Signal<boolean>;
3611
3787
  protected iconSkeletonClasses: _angular_core.Signal<"w-12 h-12 bg-slate-700" | "w-12 h-12 bg-slate-200">;
3612
3788
  protected titleSkeletonClasses: _angular_core.Signal<"bg-slate-200" | "bg-slate-700">;
3613
3789
  protected textSkeletonClasses: _angular_core.Signal<"bg-slate-200" | "bg-slate-700">;
3614
3790
  protected badgeSkeletonClasses: _angular_core.Signal<"bg-slate-200" | "bg-slate-700">;
3615
3791
  static ɵfac: _angular_core.ɵɵFactoryDeclaration<SkeletonFocusAreaCardComponent, never>;
3616
- static ɵcmp: _angular_core.ɵɵComponentDeclaration<SkeletonFocusAreaCardComponent, "symphiq-skeleton-focus-area-card", never, { "viewMode": { "alias": "viewMode"; "required": false; }; }, {}, never, never, true, never>;
3792
+ static ɵcmp: _angular_core.ɵɵComponentDeclaration<SkeletonFocusAreaCardComponent, "symphiq-skeleton-focus-area-card", never, { "viewMode": { "alias": "viewMode"; "required": false; "isSignal": true; }; }, {}, never, never, true, never>;
3617
3793
  }
3618
3794
 
3619
3795
  declare class SkeletonCompetitorCardComponent {
3620
- viewMode: ViewModeEnum;
3796
+ viewMode: _angular_core.InputSignal<ViewModeEnum>;
3621
3797
  protected isDark: _angular_core.Signal<boolean>;
3622
3798
  protected iconSkeletonClasses: _angular_core.Signal<"w-12 h-12 bg-slate-700" | "w-12 h-12 bg-slate-200">;
3623
3799
  protected titleSkeletonClasses: _angular_core.Signal<"bg-slate-200" | "bg-slate-700">;
@@ -3625,7 +3801,7 @@ declare class SkeletonCompetitorCardComponent {
3625
3801
  protected boxSkeletonClasses: _angular_core.Signal<"bg-slate-200" | "bg-slate-700">;
3626
3802
  protected badgeSkeletonClasses: _angular_core.Signal<"bg-slate-200" | "bg-slate-700">;
3627
3803
  static ɵfac: _angular_core.ɵɵFactoryDeclaration<SkeletonCompetitorCardComponent, never>;
3628
- static ɵcmp: _angular_core.ɵɵComponentDeclaration<SkeletonCompetitorCardComponent, "symphiq-skeleton-competitor-card", never, { "viewMode": { "alias": "viewMode"; "required": false; }; }, {}, never, never, true, never>;
3804
+ static ɵcmp: _angular_core.ɵɵComponentDeclaration<SkeletonCompetitorCardComponent, "symphiq-skeleton-competitor-card", never, { "viewMode": { "alias": "viewMode"; "required": false; "isSignal": true; }; }, {}, never, never, true, never>;
3629
3805
  }
3630
3806
 
3631
3807
  declare const FUNNEL_ANALYSIS: FunnelAnalysisInterface;
@@ -3764,6 +3940,6 @@ declare function getCategoryColor(category: string): CategoryColorPalette;
3764
3940
  */
3765
3941
  declare function getCategoryBadgeClasses(category: string, isDark: boolean): string;
3766
3942
 
3767
- export { AreaChartComponent, BUSINESS_PROFILE, BarChartComponent, BreakdownSectionComponent, BusinessAnalysisModalComponent, BusinessProfileSearchService, ChartCardComponent, ChartContainerComponent, ChartThemeService, CircularProgressComponent, CompetitivePositioningSummaryComponent, CompetitorAnalysisCardComponent, ConfidenceLevelCardComponent, CrossDashboardRelationshipsService, FUNNEL_ANALYSIS, FloatingBackButtonComponent, FloatingTocComponent, FocusAreaDetailCardComponent, FocusAreaExecutiveSummaryComponent, FunnelOrderService, GradeBadgeComponent, HeaderScrollService, HierarchyDisplayComponent, HorizontalBarComponent, IconService, InsightCardComponent, LineChartComponent, MetricCardComponent, MetricExecutiveSummaryComponent, MetricFormatterService, MetricListItemComponent, MetricWelcomeBannerComponent, MobileBottomNavComponent, MobileFABComponent, ModalComponent, ModalService, NapkinVisualPlaceholderComponent, NavigationStateService, OpportunityHighlightBannerComponent, OverallAssessmentComponent, PROFILE_ANALYSIS_FOCUS_AREA_AFFILIATE, PROFILE_ANALYSIS_METRIC_SCREEN_PAGE_VIEWS, PROFILE_ANALYSIS_SHOP, PieChartComponent, ProfileItemCardComponent, ProfileSectionComponent, ProfileSubsectionComponent, RelatedContentSidebarComponent, ScrollDepthService, ScrollProgressBarComponent, SearchButtonComponent, SearchModalComponent, SectionDividerComponent, SectionNavigationComponent, ShadowElevationDirective, ShopWelcomeBannerComponent, SkeletonBarComponent, SkeletonCardBaseComponent, SkeletonCircleComponent, SkeletonCompetitorCardComponent, SkeletonCustomerSegmentCardComponent, SkeletonFocusAreaCardComponent, SkeletonGenericCardComponent, SkeletonLoaderComponent, SkeletonPriceTierCardComponent, SkeletonProductCategoryCardComponent, SkeletonRegionCardComponent, SkeletonSeasonCardComponent, SymphiqBusinessAnalysisDashboardComponent, SymphiqFunnelAnalysisDashboardComponent, SymphiqFunnelAnalysisPreviewComponent, SymphiqIconComponent, SymphiqProfileAnalysisDashboardComponent, TooltipContainerComponent, TooltipDataService, TooltipDirective, TooltipService, ViewModeService, ViewportAnimationDirective, VisualizationContainerComponent, getBadgeLabelClasses, getButtonClasses, getCategoryBadgeClasses, getCategoryColor, getCompetitiveBadgeClasses, getContainerClasses, getFooterClasses, getGradeBadgeClasses, getHeaderClasses, getInsightsBadgeClasses, getInsightsCardClasses, getMetricLabelClasses, getMetricMiniCardClasses, getMetricValueClasses, getNarrativeTextClasses, getRevenueCardClasses, getRevenueIconClasses, getStatusBadgeClasses, getStatusDotClasses, getStatusIconClasses, getStatusSummaryClasses, getSubtitleClasses, getTitleClasses, getTrendClasses, getTrendIconClasses, getTrendValueClasses, isLightMode };
3768
- export type { AnimationType, BusinessInsightDetailModalData, BusinessSearchResult, CategoryColorPalette, CategoryDetailModalData, ChartThemeColors, CriticalGapDetailModalData, CriticalGapsListModalData, CrossDashboardRelationships, FocusAreaGapDetailModalData, FocusAreaGapsListModalData, FocusAreaOpportunitiesListModalData, FocusAreaOpportunityDetailModalData, FocusAreaStrengthDetailModalData, FocusAreaStrengthsListModalData, FunnelMetricOrder, FunnelStrengthDetailModalData, FunnelStrengthInterface, FunnelStrengthsListModalData, FunnelWeaknessDetailModalData, FunnelWeaknessInterface, FunnelWeaknessesListModalData, GapDetailModalData, GoalBusinessInsightsListModalData, GoalDetailModalData, GoalInsightsListModalData, GoalObjectivesModalData, HeaderScrollConfig, ItemDetailModalData, KeyStrengthDetailModalData, KeyStrengthsListModalData, LayoutMode, Metric, MetricsListModalData, ModalState, NavSection, NavigationState, ObjectiveStrategiesModalData, OpportunityDetailModalData, RecommendationBusinessInsightsListModalData, RecommendationInsightsListModalData, RelatedBusinessContent, RelatedFunnelContent, ScrollBaseCustomEvent, ScrollBaseDetail, ScrollCustomEvent, ScrollDepthInfo, ScrollDetail, SemanticColors, ShadowLevel, StrategyRecommendationsModalData, StrengthDetailModalData, ThemeColorContext, ThemeMode, TooltipPosition, TooltipState, TooltipType, TopPrioritiesListModalData, TopPriorityDetailModalData, ViewMode, ViewportBounds, VisualizationData, VisualizationType };
3943
+ export { AreaChartComponent, BUSINESS_PROFILE, BarChartComponent, BreakdownSectionComponent, BusinessAnalysisModalComponent, BusinessProfileSearchService, ChartCardComponent, ChartContainerComponent, ChartThemeService, CircularProgressComponent, CompetitivePositioningSummaryComponent, CompetitorAnalysisCardComponent, ConfidenceLevelCardComponent, CrossDashboardRelationshipsService, FUNNEL_ANALYSIS, FloatingBackButtonComponent, FloatingTocComponent, FocusAreaDetailCardComponent, FocusAreaExecutiveSummaryComponent, FunnelOrderService, GradeBadgeComponent, HeaderScrollService, HierarchyDisplayComponent, HorizontalBarComponent, IconService, InsightCardComponent, LineChartComponent, MetricCardComponent, MetricExecutiveSummaryComponent, MetricFormatterService, MetricListItemComponent, MetricWelcomeBannerComponent, MobileBottomNavComponent, MobileFABComponent, ModalComponent, ModalService, NapkinVisualPlaceholderComponent, NavigationStateService, OpportunityHighlightBannerComponent, OverallAssessmentComponent, PROFILE_ANALYSIS_FOCUS_AREA_AFFILIATE, PROFILE_ANALYSIS_METRIC_SCREEN_PAGE_VIEWS, PROFILE_ANALYSIS_SHOP, PieChartComponent, ProfileItemCardComponent, ProfileSectionComponent, ProfileSubsectionComponent, RelatedContentSidebarComponent, ScrollDepthService, ScrollProgressBarComponent, SearchButtonComponent, SearchModalComponent, SectionDividerComponent, SectionNavigationComponent, ShadowElevationDirective, ShopPlatformEnum, ShopWelcomeBannerComponent, SkeletonBarComponent, SkeletonCardBaseComponent, SkeletonCircleComponent, SkeletonCompetitorCardComponent, SkeletonCustomerSegmentCardComponent, SkeletonFocusAreaCardComponent, SkeletonGenericCardComponent, SkeletonLoaderComponent, SkeletonPriceTierCardComponent, SkeletonProductCategoryCardComponent, SkeletonRegionCardComponent, SkeletonSeasonCardComponent, SymphiqBusinessAnalysisDashboardComponent, SymphiqConnectGaDashboardComponent, SymphiqCreateAccountDashboardComponent, SymphiqFunnelAnalysisDashboardComponent, SymphiqFunnelAnalysisPreviewComponent, SymphiqIconComponent, SymphiqProfileAnalysisDashboardComponent, SymphiqWelcomeDashboardComponent, TooltipContainerComponent, TooltipDataService, TooltipDirective, TooltipService, ViewModeService, ViewportAnimationDirective, VisualizationContainerComponent, getBadgeLabelClasses, getButtonClasses, getCategoryBadgeClasses, getCategoryColor, getCompetitiveBadgeClasses, getContainerClasses, getFooterClasses, getGradeBadgeClasses, getHeaderClasses, getInsightsBadgeClasses, getInsightsCardClasses, getMetricLabelClasses, getMetricMiniCardClasses, getMetricValueClasses, getNarrativeTextClasses, getRevenueCardClasses, getRevenueIconClasses, getStatusBadgeClasses, getStatusDotClasses, getStatusIconClasses, getStatusSummaryClasses, getSubtitleClasses, getTitleClasses, getTrendClasses, getTrendIconClasses, getTrendValueClasses, isLightMode };
3944
+ export type { AnimationType, BusinessInsightDetailModalData, BusinessSearchResult, CategoryColorPalette, CategoryDetailModalData, ChartThemeColors, CreateAccountData, CriticalGapDetailModalData, CriticalGapsListModalData, CrossDashboardRelationships, FocusAreaGapDetailModalData, FocusAreaGapsListModalData, FocusAreaOpportunitiesListModalData, FocusAreaOpportunityDetailModalData, FocusAreaStrengthDetailModalData, FocusAreaStrengthsListModalData, FunnelMetricOrder, FunnelStrengthDetailModalData, FunnelStrengthInterface, FunnelStrengthsListModalData, FunnelWeaknessDetailModalData, FunnelWeaknessInterface, FunnelWeaknessesListModalData, GapDetailModalData, GoalBusinessInsightsListModalData, GoalDetailModalData, GoalInsightsListModalData, GoalObjectivesModalData, HeaderScrollConfig, ItemDetailModalData, KeyStrengthDetailModalData, KeyStrengthsListModalData, LayoutMode, Metric, MetricsListModalData, ModalState, NavSection, NavigationState, ObjectiveStrategiesModalData, OpportunityDetailModalData, RecommendationBusinessInsightsListModalData, RecommendationInsightsListModalData, RelatedBusinessContent, RelatedFunnelContent, ScrollBaseCustomEvent, ScrollBaseDetail, ScrollCustomEvent, ScrollDepthInfo, ScrollDetail, SemanticColors, ShadowLevel, StrategyRecommendationsModalData, StrengthDetailModalData, ThemeColorContext, ThemeMode, TooltipPosition, TooltipState, TooltipType, TopPrioritiesListModalData, TopPriorityDetailModalData, TopPriorityInterface, ViewMode, ViewportBounds, VisualizationData, VisualizationType };
3769
3945
  //# sourceMappingURL=index.d.ts.map