@eric-emg/symphiq-components 1.3.39 → 1.3.40
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/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@eric-emg/symphiq-components",
|
|
3
|
-
"version": "1.3.
|
|
3
|
+
"version": "1.3.40",
|
|
4
4
|
"description": "A comprehensive Angular library for component dashboards with performance visualization and metrics analysis",
|
|
5
5
|
"author": "Your Organization",
|
|
6
6
|
"license": "MIT",
|
|
@@ -293,6 +293,12 @@ interface UnifiedGoalDetailModalData {
|
|
|
293
293
|
loadingSourceAnalysisId?: string;
|
|
294
294
|
viewMode: ViewModeEnum;
|
|
295
295
|
}
|
|
296
|
+
interface UnifiedGoalObjectivesModalData {
|
|
297
|
+
goal: UnifiedGoalInterface;
|
|
298
|
+
allMetrics: PerformanceMetricInterface[];
|
|
299
|
+
allCharts: AiChartInterface[];
|
|
300
|
+
viewMode: ViewModeEnum;
|
|
301
|
+
}
|
|
296
302
|
interface SourceGoalModalData {
|
|
297
303
|
sourceAnalysis: SourceAnalysisReferenceInterface;
|
|
298
304
|
sourceProfileAnalysis?: ProfileAnalysisInterface;
|
|
@@ -330,7 +336,7 @@ interface SourceRecommendationModalData {
|
|
|
330
336
|
viewMode: ViewModeEnum;
|
|
331
337
|
}
|
|
332
338
|
interface ModalState {
|
|
333
|
-
type: 'insight' | 'metric' | 'chart' | 'insights-list' | 'goal-insights-list' | 'goal-business-insights-list' | 'recommendation-business-insights-list' | 'recommendation-insights-list' | 'business-insight-detail' | 'metrics-list' | 'charts-list' | 'recommendations-list' | 'competitive-analysis' | 'competitive-gap' | 'visualization' | 'recommendation-action-steps' | 'item-detail' | 'goal-detail' | 'goal-objectives' | 'objective-strategies' | 'strategy-recommendations' | 'category-detail' | 'strength-detail' | 'gap-detail' | 'opportunity-detail' | 'key-strengths-list' | 'critical-gaps-list' | 'key-strength-detail' | 'critical-gap-detail' | 'funnel-strengths-list' | 'funnel-weaknesses-list' | 'funnel-strength-detail' | 'funnel-weakness-detail' | 'top-priorities-list' | 'top-priority-detail' | 'focus-area-strengths-list' | 'focus-area-gaps-list' | 'focus-area-opportunities-list' | 'focus-area-strength-detail' | 'focus-area-gap-detail' | 'focus-area-opportunity-detail' | 'unified-goal-detail' | 'source-goal' | 'source-objective' | 'source-strategy' | 'source-recommendation' | null;
|
|
339
|
+
type: 'insight' | 'metric' | 'chart' | 'insights-list' | 'goal-insights-list' | 'goal-business-insights-list' | 'recommendation-business-insights-list' | 'recommendation-insights-list' | 'business-insight-detail' | 'metrics-list' | 'charts-list' | 'recommendations-list' | 'competitive-analysis' | 'competitive-gap' | 'visualization' | 'recommendation-action-steps' | 'item-detail' | 'goal-detail' | 'goal-objectives' | 'objective-strategies' | 'strategy-recommendations' | 'category-detail' | 'strength-detail' | 'gap-detail' | 'opportunity-detail' | 'key-strengths-list' | 'critical-gaps-list' | 'key-strength-detail' | 'critical-gap-detail' | 'funnel-strengths-list' | 'funnel-weaknesses-list' | 'funnel-strength-detail' | 'funnel-weakness-detail' | 'top-priorities-list' | 'top-priority-detail' | 'focus-area-strengths-list' | 'focus-area-gaps-list' | 'focus-area-opportunities-list' | 'focus-area-strength-detail' | 'focus-area-gap-detail' | 'focus-area-opportunity-detail' | 'unified-goal-detail' | 'unified-goal-objectives' | 'source-goal' | 'source-objective' | 'source-strategy' | 'source-recommendation' | null;
|
|
334
340
|
data: InsightBlockInterface | InsightBlockInterface[] | PerformanceMetricInterface | PerformanceMetricInterface[] | AiChartInterface | {
|
|
335
341
|
charts: AiChartInterface[];
|
|
336
342
|
insightContext?: {
|
|
@@ -362,7 +368,7 @@ interface ModalState {
|
|
|
362
368
|
title?: string;
|
|
363
369
|
actionSteps: ProfileAnalysisRecommendationActionStepInterface[];
|
|
364
370
|
viewMode: ViewModeEnum;
|
|
365
|
-
} | ItemDetailModalData | VisualizationData | GoalDetailModalData | GoalObjectivesModalData | ObjectiveStrategiesModalData | StrategyRecommendationsModalData | CategoryDetailModalData | StrengthDetailModalData | GapDetailModalData | OpportunityDetailModalData | GoalInsightsListModalData | GoalBusinessInsightsListModalData | RecommendationBusinessInsightsListModalData | RecommendationInsightsListModalData | MetricsListModalData | BusinessInsightDetailModalData | KeyStrengthsListModalData | CriticalGapsListModalData | KeyStrengthDetailModalData | CriticalGapDetailModalData | FunnelStrengthsListModalData | FunnelWeaknessesListModalData | FunnelStrengthDetailModalData | FunnelWeaknessDetailModalData | TopPrioritiesListModalData | TopPriorityDetailModalData | FocusAreaStrengthsListModalData | FocusAreaGapsListModalData | FocusAreaOpportunitiesListModalData | FocusAreaStrengthDetailModalData | FocusAreaGapDetailModalData | FocusAreaOpportunityDetailModalData | UnifiedGoalDetailModalData | SourceGoalModalData | SourceObjectiveModalData | SourceStrategyModalData | SourceRecommendationModalData | {
|
|
371
|
+
} | ItemDetailModalData | VisualizationData | GoalDetailModalData | GoalObjectivesModalData | ObjectiveStrategiesModalData | StrategyRecommendationsModalData | CategoryDetailModalData | StrengthDetailModalData | GapDetailModalData | OpportunityDetailModalData | GoalInsightsListModalData | GoalBusinessInsightsListModalData | RecommendationBusinessInsightsListModalData | RecommendationInsightsListModalData | MetricsListModalData | BusinessInsightDetailModalData | KeyStrengthsListModalData | CriticalGapsListModalData | KeyStrengthDetailModalData | CriticalGapDetailModalData | FunnelStrengthsListModalData | FunnelWeaknessesListModalData | FunnelStrengthDetailModalData | FunnelWeaknessDetailModalData | TopPrioritiesListModalData | TopPriorityDetailModalData | FocusAreaStrengthsListModalData | FocusAreaGapsListModalData | FocusAreaOpportunitiesListModalData | FocusAreaStrengthDetailModalData | FocusAreaGapDetailModalData | FocusAreaOpportunityDetailModalData | UnifiedGoalDetailModalData | UnifiedGoalObjectivesModalData | SourceGoalModalData | SourceObjectiveModalData | SourceStrategyModalData | SourceRecommendationModalData | {
|
|
366
372
|
insight: InsightBlockInterface;
|
|
367
373
|
} | null;
|
|
368
374
|
charts: AiChartInterface[];
|
|
@@ -492,6 +498,7 @@ declare class ModalService {
|
|
|
492
498
|
openFocusAreaOpportunitiesListModal(opportunities: CategoryOpportunityInterface[], viewMode: ViewModeEnum, categoryTitle: string): void;
|
|
493
499
|
navigateToFocusAreaOpportunityDetail(opportunity: CategoryOpportunityInterface, categoryTitle: string, viewMode: ViewModeEnum): void;
|
|
494
500
|
openUnifiedGoalModal(goal: UnifiedGoalInterface, allMetrics: PerformanceMetricInterface[], allCharts: AiChartInterface[], loadedSourceAnalysisIds: string[], viewMode: ViewModeEnum, loadingSourceAnalysisId?: string): void;
|
|
501
|
+
navigateToUnifiedGoalObjectives(goal: UnifiedGoalInterface, allMetrics: PerformanceMetricInterface[], allCharts: AiChartInterface[], viewMode: ViewModeEnum): void;
|
|
495
502
|
navigateToSourceGoal(sourceAnalysis: SourceAnalysisReferenceInterface, sourceProfileAnalysis: ProfileAnalysisInterface | undefined, unifiedGoal: UnifiedGoalInterface, allMetrics: PerformanceMetricInterface[], allCharts: AiChartInterface[], viewMode: ViewModeEnum): void;
|
|
496
503
|
navigateToSourceObjective(objective: ObjectiveV3Interface, sourceGoal: GoalV3Interface, sourceAnalysis: SourceAnalysisReferenceInterface, unifiedGoal: UnifiedGoalInterface, allMetrics: PerformanceMetricInterface[], allCharts: AiChartInterface[], viewMode: ViewModeEnum): void;
|
|
497
504
|
navigateToSourceStrategy(strategy: StrategyV3Interface, objective: ObjectiveV3Interface, sourceGoal: GoalV3Interface, sourceAnalysis: SourceAnalysisReferenceInterface, unifiedGoal: UnifiedGoalInterface, allMetrics: PerformanceMetricInterface[], allCharts: AiChartInterface[], viewMode: ViewModeEnum): void;
|
|
@@ -1122,7 +1129,7 @@ declare class ModalComponent {
|
|
|
1122
1129
|
private animatedTrendValues;
|
|
1123
1130
|
private animationFrames;
|
|
1124
1131
|
isOpen: _angular_core.Signal<boolean>;
|
|
1125
|
-
modalType: _angular_core.Signal<"
|
|
1132
|
+
modalType: _angular_core.Signal<"metric" | "insight" | "chart" | "insights-list" | "goal-insights-list" | "goal-business-insights-list" | "business-insight-detail" | "metrics-list" | "charts-list" | "recommendations-list" | "competitive-analysis" | "funnel-strengths-list" | "funnel-weaknesses-list" | "funnel-strength-detail" | "funnel-weakness-detail" | null>;
|
|
1126
1133
|
charts: _angular_core.Signal<AiChartInterface[]>;
|
|
1127
1134
|
modalKey: _angular_core.Signal<number>;
|
|
1128
1135
|
insightData: _angular_core.Signal<InsightBlockInterface | null>;
|
|
@@ -1141,7 +1148,7 @@ declare class ModalComponent {
|
|
|
1141
1148
|
description: string;
|
|
1142
1149
|
icon: string;
|
|
1143
1150
|
} | null>;
|
|
1144
|
-
metricsListData: _angular_core.Signal<
|
|
1151
|
+
metricsListData: _angular_core.Signal<InsightBlockInterface | PerformanceMetricInterface | FunnelStrengthsListModalData | FunnelWeaknessesListModalData | FunnelStrengthDetailModalData | FunnelWeaknessDetailModalData | AiChartInterface | (InsightBlockInterface | PerformanceMetricInterface)[] | null>;
|
|
1145
1152
|
metricsListMetrics: _angular_core.Signal<PerformanceMetricInterface[]>;
|
|
1146
1153
|
metricsListInsightContext: _angular_core.Signal<{
|
|
1147
1154
|
title: string;
|
|
@@ -1149,7 +1156,7 @@ declare class ModalComponent {
|
|
|
1149
1156
|
businessContext: string;
|
|
1150
1157
|
priority: number;
|
|
1151
1158
|
} | null>;
|
|
1152
|
-
chartsListData: _angular_core.Signal<
|
|
1159
|
+
chartsListData: _angular_core.Signal<InsightBlockInterface | PerformanceMetricInterface | FunnelStrengthsListModalData | FunnelWeaknessesListModalData | FunnelStrengthDetailModalData | FunnelWeaknessDetailModalData | AiChartInterface | (InsightBlockInterface | PerformanceMetricInterface)[] | null>;
|
|
1153
1160
|
chartsListCharts: _angular_core.Signal<AiChartInterface[]>;
|
|
1154
1161
|
chartsListInsightContext: _angular_core.Signal<{
|
|
1155
1162
|
title: string;
|
|
@@ -1157,7 +1164,7 @@ declare class ModalComponent {
|
|
|
1157
1164
|
businessContext: string;
|
|
1158
1165
|
priority: number;
|
|
1159
1166
|
} | null>;
|
|
1160
|
-
recommendationsListData: _angular_core.Signal<
|
|
1167
|
+
recommendationsListData: _angular_core.Signal<InsightBlockInterface | PerformanceMetricInterface | FunnelStrengthsListModalData | FunnelWeaknessesListModalData | FunnelStrengthDetailModalData | FunnelWeaknessDetailModalData | AiChartInterface | (InsightBlockInterface | PerformanceMetricInterface)[] | null>;
|
|
1161
1168
|
recommendationsListRecommendations: _angular_core.Signal<string[]>;
|
|
1162
1169
|
recommendationsListInsightContext: _angular_core.Signal<{
|
|
1163
1170
|
title: string;
|
|
@@ -1165,7 +1172,7 @@ declare class ModalComponent {
|
|
|
1165
1172
|
businessContext: string;
|
|
1166
1173
|
priority: number;
|
|
1167
1174
|
} | null>;
|
|
1168
|
-
competitiveAnalysisData: _angular_core.Signal<
|
|
1175
|
+
competitiveAnalysisData: _angular_core.Signal<InsightBlockInterface | PerformanceMetricInterface | FunnelStrengthsListModalData | FunnelWeaknessesListModalData | FunnelStrengthDetailModalData | FunnelWeaknessDetailModalData | AiChartInterface | (InsightBlockInterface | PerformanceMetricInterface)[] | null>;
|
|
1169
1176
|
competitiveAnalysisContext: _angular_core.Signal<{
|
|
1170
1177
|
title: string;
|
|
1171
1178
|
description: string;
|
|
@@ -1461,7 +1468,7 @@ declare class ViewModeSwitcherModalComponent {
|
|
|
1461
1468
|
private computeOptionDescriptionClasses;
|
|
1462
1469
|
protected backdropClasses: _angular_core.Signal<"bg-slate-950/25" | "bg-slate-900/15">;
|
|
1463
1470
|
protected modalClasses: _angular_core.Signal<"bg-slate-800/95 border border-slate-700/50" | "bg-white/95 border border-slate-200">;
|
|
1464
|
-
protected headerClasses: _angular_core.Signal<"border-slate-
|
|
1471
|
+
protected headerClasses: _angular_core.Signal<"border-slate-200" | "border-slate-700/50">;
|
|
1465
1472
|
protected titleClasses: _angular_core.Signal<"text-slate-900" | "text-white">;
|
|
1466
1473
|
protected descriptionClasses: _angular_core.Signal<"text-slate-600" | "text-slate-400">;
|
|
1467
1474
|
protected closeButtonClasses: _angular_core.Signal<"text-slate-600 hover:text-slate-900 hover:bg-slate-100" | "text-slate-400 hover:text-white hover:bg-slate-700">;
|
|
@@ -1754,7 +1761,7 @@ declare class MetricCardComponent {
|
|
|
1754
1761
|
competitiveScoreBadgeLightClass: _angular_core.Signal<string>;
|
|
1755
1762
|
competitiveScoreBadgeDarkClass: _angular_core.Signal<string>;
|
|
1756
1763
|
competitiveScoreBadgeClass: _angular_core.Signal<string>;
|
|
1757
|
-
competitiveScoreTextClass: _angular_core.Signal<"" | "text-
|
|
1764
|
+
competitiveScoreTextClass: _angular_core.Signal<"" | "text-emerald-600" | "text-blue-700" | "text-blue-400" | "text-orange-600">;
|
|
1758
1765
|
competitiveComparisonDefaultClass: _angular_core.Signal<"text-slate-700" | "text-slate-300">;
|
|
1759
1766
|
competitiveComparisonClass: _angular_core.Signal<"text-slate-700" | "text-slate-300" | "text-emerald-600 font-semibold" | "text-orange-600 font-semibold">;
|
|
1760
1767
|
getCompetitiveScoreIcon(): string;
|
|
@@ -2471,8 +2478,8 @@ declare class SymphiqWelcomeDashboardComponent implements AfterViewInit, OnDestr
|
|
|
2471
2478
|
protected titleClasses: _angular_core.Signal<"text-white" | "bg-gradient-to-r from-blue-600 to-purple-600 bg-clip-text text-transparent">;
|
|
2472
2479
|
protected textClasses: _angular_core.Signal<"text-slate-700" | "text-slate-300">;
|
|
2473
2480
|
protected highlightBoxClasses: _angular_core.Signal<"bg-blue-500/10 border-blue-500/30" | "bg-blue-50 border-blue-300">;
|
|
2474
|
-
protected highlightIconClasses: _angular_core.Signal<"text-blue-
|
|
2475
|
-
protected highlightTitleClasses: _angular_core.Signal<"text-blue-
|
|
2481
|
+
protected highlightIconClasses: _angular_core.Signal<"text-blue-400" | "text-blue-600">;
|
|
2482
|
+
protected highlightTitleClasses: _angular_core.Signal<"text-blue-700" | "text-blue-400">;
|
|
2476
2483
|
protected highlightListClasses: _angular_core.Signal<"text-slate-700" | "text-slate-300">;
|
|
2477
2484
|
protected nextStepsBoxClasses: _angular_core.Signal<"bg-amber-500/10 border-amber-500/30" | "bg-amber-50 border-amber-200">;
|
|
2478
2485
|
protected nextStepsIconClasses: _angular_core.Signal<"text-amber-600" | "text-amber-400">;
|
|
@@ -2611,9 +2618,9 @@ declare class SymphiqCreateAccountDashboardComponent implements OnDestroy {
|
|
|
2611
2618
|
protected cancelButtonClasses: _angular_core.Signal<"bg-slate-700 text-slate-300 hover:bg-slate-600" | "bg-slate-200 text-slate-700 hover:bg-slate-300">;
|
|
2612
2619
|
protected continueButtonClasses: _angular_core.Signal<"bg-gradient-to-r from-blue-600 to-cyan-600 hover:from-blue-700 hover:to-cyan-700 text-white" | "bg-gradient-to-r from-blue-500 to-cyan-500 hover:from-blue-600 hover:to-cyan-600 text-white" | "bg-slate-300 text-slate-500" | "bg-slate-700 text-slate-500">;
|
|
2613
2620
|
protected focusAreaProgressLabelClasses: _angular_core.Signal<"text-slate-600" | "text-slate-400">;
|
|
2614
|
-
protected focusAreaProgressCountClasses: _angular_core.Signal<"text-
|
|
2621
|
+
protected focusAreaProgressCountClasses: _angular_core.Signal<"text-emerald-600" | "text-emerald-400" | "text-blue-400" | "text-blue-600">;
|
|
2615
2622
|
protected focusAreaProgressBarBgClasses: _angular_core.Signal<"bg-slate-200" | "bg-slate-700">;
|
|
2616
|
-
protected focusAreaProgressBarFillClasses: _angular_core.Signal<"bg-gradient-to-r from-
|
|
2623
|
+
protected focusAreaProgressBarFillClasses: _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-emerald-400 to-teal-400" | "bg-gradient-to-r from-blue-400 to-cyan-400">;
|
|
2617
2624
|
protected progressBadgeClasses: _angular_core.Signal<"bg-blue-100 text-blue-700 border border-blue-200" | "bg-emerald-100 text-emerald-700 border border-emerald-200" | "bg-emerald-900/30 text-emerald-400 border border-emerald-700" | "bg-blue-900/30 text-blue-400 border border-blue-700">;
|
|
2618
2625
|
protected dividerClasses: _angular_core.Signal<"border-t border-slate-200" | "border-t border-slate-700">;
|
|
2619
2626
|
protected groupTitleClasses(type: 'engaged' | 'interested' | 'not-interested'): string;
|
|
@@ -2959,7 +2966,7 @@ declare class PacingStatusBadgeComponent implements OnDestroy {
|
|
|
2959
2966
|
private animateValue;
|
|
2960
2967
|
protected displayInfo: _angular_core.Signal<PacingDisplayInfo>;
|
|
2961
2968
|
protected containerClasses: _angular_core.Signal<string>;
|
|
2962
|
-
protected targetRotation: _angular_core.Signal<
|
|
2969
|
+
protected targetRotation: _angular_core.Signal<1 | 0 | -1>;
|
|
2963
2970
|
protected rotationStyle: _angular_core.Signal<string>;
|
|
2964
2971
|
protected fullBadgeRotationStyle: _angular_core.Signal<string>;
|
|
2965
2972
|
protected containerSizeClasses: _angular_core.Signal<"inline-flex flex-row items-center rounded-xl border-2 overflow-visible transition-transform hover:rotate-0 pl-1.5" | "inline-flex flex-row items-center rounded-xl border-2 overflow-visible transition-transform hover:rotate-0 pl-2">;
|
|
@@ -2974,7 +2981,7 @@ declare class PacingStatusBadgeComponent implements OnDestroy {
|
|
|
2974
2981
|
protected animatedPercentage: _angular_core.Signal<string>;
|
|
2975
2982
|
protected extractPercentage: _angular_core.Signal<string>;
|
|
2976
2983
|
protected displayTextWithoutPercentage: _angular_core.Signal<string>;
|
|
2977
|
-
protected overlayBadgeClasses: _angular_core.Signal<"bg-
|
|
2984
|
+
protected overlayBadgeClasses: _angular_core.Signal<"bg-red-500 text-white" | "bg-amber-500 text-white" | "bg-emerald-500 text-white" | "bg-emerald-600 text-emerald-50" | "bg-amber-600 text-amber-50" | "bg-red-600 text-red-50">;
|
|
2978
2985
|
protected overlaySizeClasses: _angular_core.Signal<"px-2 py-1.5 rounded-lg text-sm font-extrabold tracking-wide shadow-md transition-all duration-200 -my-1 -mr-1 z-10 inline-flex items-center gap-0.5 tabular-nums" | "px-2.5 py-2 rounded-lg text-sm font-extrabold tracking-wide shadow-md transition-all duration-200 -my-1.5 -mr-1 z-10 inline-flex items-center gap-1 tabular-nums">;
|
|
2979
2986
|
static ɵfac: _angular_core.ɵɵFactoryDeclaration<PacingStatusBadgeComponent, never>;
|
|
2980
2987
|
static ɵcmp: _angular_core.ɵɵComponentDeclaration<PacingStatusBadgeComponent, "symphiq-pacing-status-badge", never, { "viewMode": { "alias": "viewMode"; "required": false; "isSignal": true; }; "pacingPercentage": { "alias": "pacingPercentage"; "required": false; "isSignal": true; }; "status": { "alias": "status"; "required": false; "isSignal": true; }; "showAsFullText": { "alias": "showAsFullText"; "required": false; "isSignal": true; }; "isCompact": { "alias": "isCompact"; "required": false; "isSignal": true; }; "showEmphasizedPercentage": { "alias": "showEmphasizedPercentage"; "required": false; "isSignal": true; }; }, {}, never, never, true, never>;
|
|
@@ -4175,7 +4182,7 @@ declare class SymphiqProfileFocusAreasAnalysesDashboardComponent {
|
|
|
4175
4182
|
protected welcomeBannerTitleClasses: _angular_core.Signal<"text-slate-900" | "text-white">;
|
|
4176
4183
|
protected welcomeBannerTextClasses: _angular_core.Signal<"text-slate-700" | "text-slate-300">;
|
|
4177
4184
|
protected welcomeBannerHighlightClasses: _angular_core.Signal<"bg-blue-500/10 border-blue-500/30" | "bg-blue-50/50 border-blue-300">;
|
|
4178
|
-
protected welcomeBannerHighlightIconClasses: _angular_core.Signal<"text-blue-
|
|
4185
|
+
protected welcomeBannerHighlightIconClasses: _angular_core.Signal<"text-blue-400" | "text-blue-600">;
|
|
4179
4186
|
protected welcomeBannerHighlightTitleClasses: _angular_core.Signal<"text-slate-900" | "text-white">;
|
|
4180
4187
|
protected welcomeBannerHighlightListClasses: _angular_core.Signal<"text-slate-700" | "text-slate-300">;
|
|
4181
4188
|
protected statusComponentContainerClasses: _angular_core.Signal<"bg-slate-50/80 border-slate-200" | "bg-slate-900/40 border-slate-700/50">;
|
|
@@ -4381,7 +4388,7 @@ declare class SymphiqProfileAnalysisFocusAreaDashboardComponent implements OnIni
|
|
|
4381
4388
|
protected containerClasses: _angular_core.Signal<"text-slate-900" | "text-white">;
|
|
4382
4389
|
protected progressCardClasses: _angular_core.Signal<"bg-white border-slate-200" | "bg-slate-800/40 border-slate-700/50">;
|
|
4383
4390
|
protected sectionTitleClasses: _angular_core.Signal<"text-slate-900" | "text-white">;
|
|
4384
|
-
protected sectionCardClasses: _angular_core.Signal<"bg-
|
|
4391
|
+
protected sectionCardClasses: _angular_core.Signal<"bg-white border border-slate-200" | "bg-slate-800/50 border border-slate-700/50">;
|
|
4385
4392
|
protected sectionIconClasses: _angular_core.Signal<"bg-blue-500/20 text-blue-400" | "bg-blue-50 text-blue-600">;
|
|
4386
4393
|
protected sectionDescriptionClasses: _angular_core.Signal<"text-slate-600" | "text-slate-400">;
|
|
4387
4394
|
private formatGradeInText;
|
|
@@ -4437,6 +4444,7 @@ declare class SymphiqProfileAnalysisUnifiedDashboardComponent implements OnChang
|
|
|
4437
4444
|
protected isSimplifiedView: _angular_core.Signal<boolean>;
|
|
4438
4445
|
protected selfContentStatus: _angular_core.Signal<AiDynamicContentStatusEnum | undefined>;
|
|
4439
4446
|
protected isGenerating: _angular_core.Signal<boolean>;
|
|
4447
|
+
protected shouldShowMain: _angular_core.Signal<boolean | undefined>;
|
|
4440
4448
|
protected isCompactView: _angular_core.Signal<boolean>;
|
|
4441
4449
|
protected isExpandedView: _angular_core.Signal<boolean>;
|
|
4442
4450
|
protected displayModeLabel: _angular_core.Signal<"Simplified" | "Compact" | "Expanded">;
|
|
@@ -4490,10 +4498,10 @@ declare class SymphiqProfileAnalysisUnifiedDashboardComponent implements OnChang
|
|
|
4490
4498
|
protected welcomeTitleClasses: _angular_core.Signal<string>;
|
|
4491
4499
|
protected welcomeSubtitleClasses: _angular_core.Signal<string>;
|
|
4492
4500
|
protected welcomeDescriptionClasses: _angular_core.Signal<string>;
|
|
4493
|
-
protected bannerClasses: _angular_core.Signal<"bg-
|
|
4501
|
+
protected bannerClasses: _angular_core.Signal<"bg-white border border-slate-200" | "bg-slate-800/50 border border-slate-700/50">;
|
|
4494
4502
|
protected sectionTitleClasses: _angular_core.Signal<"text-slate-900" | "text-white">;
|
|
4495
4503
|
protected textClasses: _angular_core.Signal<"text-slate-700" | "text-slate-300">;
|
|
4496
|
-
protected subheadingClasses: _angular_core.Signal<"text-slate-
|
|
4504
|
+
protected subheadingClasses: _angular_core.Signal<"text-slate-200" | "text-slate-800">;
|
|
4497
4505
|
protected narrativeClasses: _angular_core.Signal<"bg-slate-50 border border-slate-200" | "bg-slate-900/50 border border-slate-700">;
|
|
4498
4506
|
protected goalTitleClasses: _angular_core.Signal<"text-slate-900" | "text-white">;
|
|
4499
4507
|
protected goalDescriptionClasses: _angular_core.Signal<"text-slate-600" | "text-slate-400">;
|
|
@@ -4501,15 +4509,15 @@ declare class SymphiqProfileAnalysisUnifiedDashboardComponent implements OnChang
|
|
|
4501
4509
|
protected cardBorderClasses: _angular_core.Signal<"border-slate-200" | "border-slate-700">;
|
|
4502
4510
|
protected moreBadgeClasses: _angular_core.Signal<"bg-slate-100 text-slate-600" | "bg-slate-700 text-slate-400">;
|
|
4503
4511
|
protected relatedMetricsButtonClasses: _angular_core.Signal<"bg-blue-50 text-blue-700 border border-blue-200 hover:bg-blue-100" | "bg-blue-900/30 text-blue-300 border border-blue-700 hover:bg-blue-900/50">;
|
|
4504
|
-
protected timelineContainerClasses: _angular_core.Signal<"bg-
|
|
4512
|
+
protected timelineContainerClasses: _angular_core.Signal<"bg-white border border-slate-200" | "bg-slate-800/50 border border-slate-700/50">;
|
|
4505
4513
|
protected timelineLineClasses: _angular_core.Signal<"bg-gradient-to-b from-blue-400 via-cyan-400 to-teal-400" | "bg-gradient-to-b from-blue-600 via-cyan-600 to-teal-600">;
|
|
4506
4514
|
protected timelineItemTitleClasses: _angular_core.Signal<"text-slate-900" | "text-white">;
|
|
4507
4515
|
protected timeframeDisplayClasses: _angular_core.Signal<"text-slate-600" | "text-slate-400">;
|
|
4508
4516
|
protected objectivesLabelClasses: _angular_core.Signal<string>;
|
|
4509
4517
|
protected objectiveItemClasses: _angular_core.Signal<"text-slate-700" | "text-slate-300">;
|
|
4510
4518
|
protected moreObjectivesClasses: _angular_core.Signal<"text-slate-400" | "text-slate-500">;
|
|
4511
|
-
protected phaseIndicatorClasses: _angular_core.Signal<"text-blue-
|
|
4512
|
-
protected matrixContainerClasses: _angular_core.Signal<"bg-
|
|
4519
|
+
protected phaseIndicatorClasses: _angular_core.Signal<"text-blue-400" | "text-blue-600">;
|
|
4520
|
+
protected matrixContainerClasses: _angular_core.Signal<"bg-white border border-slate-200" | "bg-slate-800/50 border border-slate-700/50">;
|
|
4513
4521
|
protected matrixAxisLabelClasses: _angular_core.Signal<"text-slate-400" | "text-slate-500">;
|
|
4514
4522
|
protected quadrantTitleClasses: _angular_core.Signal<"text-white" | "text-slate-800">;
|
|
4515
4523
|
protected quadrantSubtitleClasses: _angular_core.Signal<"text-slate-400" | "text-slate-500">;
|
|
@@ -4521,7 +4529,7 @@ declare class SymphiqProfileAnalysisUnifiedDashboardComponent implements OnChang
|
|
|
4521
4529
|
protected stepBorderClasses: _angular_core.Signal<"border-slate-200" | "border-slate-700">;
|
|
4522
4530
|
protected strategiesLabelClasses: _angular_core.Signal<"text-slate-400" | "text-slate-500">;
|
|
4523
4531
|
protected strategyItemClasses: _angular_core.Signal<"text-slate-700" | "text-slate-300">;
|
|
4524
|
-
protected goalCardBaseClasses: _angular_core.Signal<"bg-
|
|
4532
|
+
protected goalCardBaseClasses: _angular_core.Signal<"bg-white border border-slate-200" | "bg-slate-800/50 border border-slate-700/50">;
|
|
4525
4533
|
private readonly COLLAPSE_THRESHOLD;
|
|
4526
4534
|
private readonly EXPAND_THRESHOLD;
|
|
4527
4535
|
private embeddedScrollEffect;
|
|
@@ -4955,9 +4963,9 @@ declare class FocusAreaExecutiveSummaryComponent {
|
|
|
4955
4963
|
private computeFormatLabel;
|
|
4956
4964
|
private computeEffortBadgeClasses;
|
|
4957
4965
|
private computeImpactBadgeClasses;
|
|
4958
|
-
protected bannerClasses: _angular_core.Signal<"bg-
|
|
4966
|
+
protected bannerClasses: _angular_core.Signal<"bg-white border border-slate-200" | "bg-slate-800/50 border border-slate-700/50">;
|
|
4959
4967
|
protected sectionTitleClasses: _angular_core.Signal<"text-slate-900" | "text-white">;
|
|
4960
|
-
protected subheadingClasses: _angular_core.Signal<"text-slate-
|
|
4968
|
+
protected subheadingClasses: _angular_core.Signal<"text-slate-200" | "text-slate-800">;
|
|
4961
4969
|
protected textClasses: _angular_core.Signal<"text-slate-700" | "text-slate-300">;
|
|
4962
4970
|
protected narrativeClasses: _angular_core.Signal<"bg-slate-50 border border-slate-200" | "bg-slate-900/30 border border-slate-700/50">;
|
|
4963
4971
|
protected topPrioritiesStatCardClasses: _angular_core.Signal<"bg-purple-50 border-2 border-purple-200 hover:border-purple-400 hover:shadow-lg hover:shadow-purple-100/50" | "bg-purple-500/10 border-2 border-purple-500/30 hover:border-purple-400/50 hover:shadow-lg hover:shadow-purple-500/10">;
|
|
@@ -4965,9 +4973,9 @@ declare class FocusAreaExecutiveSummaryComponent {
|
|
|
4965
4973
|
protected topPrioritiesStatValueClasses: _angular_core.Signal<"text-purple-900" | "text-purple-100">;
|
|
4966
4974
|
protected topPrioritiesButtonTextClasses: _angular_core.Signal<"text-purple-400" | "text-purple-700">;
|
|
4967
4975
|
protected quickWinsStatCardClasses: _angular_core.Signal<"bg-blue-500/10 border-2 border-blue-500/30 hover:border-blue-400/50 hover:shadow-lg hover:shadow-blue-500/10" | "bg-blue-50 border-2 border-blue-200 hover:border-blue-400 hover:shadow-lg hover:shadow-blue-100/50">;
|
|
4968
|
-
protected quickWinsStatLabelClasses: _angular_core.Signal<"text-blue-
|
|
4976
|
+
protected quickWinsStatLabelClasses: _angular_core.Signal<"text-blue-700" | "text-blue-400">;
|
|
4969
4977
|
protected quickWinsStatValueClasses: _angular_core.Signal<"text-blue-100" | "text-blue-900">;
|
|
4970
|
-
protected quickWinsButtonTextClasses: _angular_core.Signal<"text-blue-
|
|
4978
|
+
protected quickWinsButtonTextClasses: _angular_core.Signal<"text-blue-700" | "text-blue-400">;
|
|
4971
4979
|
protected quickWinCardClasses: _angular_core.Signal<"bg-white border border-slate-200 hover:border-blue-300 hover:shadow-xl" | "bg-slate-800/50 border border-slate-700/50 hover:border-blue-500/50 hover:shadow-xl hover:shadow-blue-500/10">;
|
|
4972
4980
|
protected quickWinTextClasses: _angular_core.Signal<"text-slate-900" | "text-slate-100">;
|
|
4973
4981
|
protected numberBadgeClasses: _angular_core.Signal<"bg-gradient-to-br from-blue-400 to-cyan-400 text-white" | "bg-gradient-to-br from-blue-500 to-cyan-500 text-white">;
|
|
@@ -5010,12 +5018,12 @@ declare class MetricExecutiveSummaryComponent {
|
|
|
5010
5018
|
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">;
|
|
5011
5019
|
protected titleClasses: _angular_core.Signal<"text-slate-900" | "text-slate-100">;
|
|
5012
5020
|
protected textClasses: _angular_core.Signal<"text-slate-700" | "text-slate-300">;
|
|
5013
|
-
protected iconClasses: _angular_core.Signal<"text-blue-
|
|
5021
|
+
protected iconClasses: _angular_core.Signal<"text-blue-400" | "text-blue-600">;
|
|
5014
5022
|
protected healthBadgeClasses: _angular_core.Signal<string>;
|
|
5015
5023
|
protected pacingBadgeClasses: _angular_core.Signal<string>;
|
|
5016
|
-
protected metricCardClasses: _angular_core.Signal<"bg-
|
|
5017
|
-
protected viewDetailsTextClasses: _angular_core.Signal<"text-blue-
|
|
5018
|
-
protected viewDetailsButtonClasses: _angular_core.Signal<"bg-blue-
|
|
5024
|
+
protected metricCardClasses: _angular_core.Signal<"bg-white border border-slate-200" | "bg-slate-800/50 border border-slate-700/50">;
|
|
5025
|
+
protected viewDetailsTextClasses: _angular_core.Signal<"text-blue-400" | "text-blue-600">;
|
|
5026
|
+
protected viewDetailsButtonClasses: _angular_core.Signal<"bg-blue-500/20 text-blue-300 border border-blue-500/40 hover:bg-blue-500/30" | "bg-blue-50 text-blue-700 border border-blue-200 hover:bg-blue-100">;
|
|
5019
5027
|
protected viewReportButtonClasses: _angular_core.Signal<"bg-slate-700/50 text-slate-300 border border-slate-600 hover:bg-slate-600/50" | "bg-slate-100 text-slate-700 border border-slate-300 hover:bg-slate-200">;
|
|
5020
5028
|
protected metricLabelClasses: _angular_core.Signal<"text-slate-600" | "text-slate-400">;
|
|
5021
5029
|
protected metricValueClasses: _angular_core.Signal<"text-slate-900" | "text-slate-100">;
|
|
@@ -5025,7 +5033,7 @@ declare class MetricExecutiveSummaryComponent {
|
|
|
5025
5033
|
protected getHealthValueClasses(): string;
|
|
5026
5034
|
protected healthDescriptionClasses: _angular_core.Signal<"text-slate-400" | "text-slate-500">;
|
|
5027
5035
|
protected narrativeClasses: _angular_core.Signal<"bg-white border border-slate-200" | "bg-slate-800/50 border border-slate-600/20">;
|
|
5028
|
-
protected narrativeTitleClasses: _angular_core.Signal<"text-slate-
|
|
5036
|
+
protected narrativeTitleClasses: _angular_core.Signal<"text-slate-200" | "text-slate-800">;
|
|
5029
5037
|
protected narrativeTextClasses: _angular_core.Signal<"text-slate-600" | "text-slate-400">;
|
|
5030
5038
|
protected sectionTitleClasses: _angular_core.Signal<"text-slate-900" | "text-slate-100">;
|
|
5031
5039
|
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">;
|
|
@@ -5033,9 +5041,9 @@ declare class MetricExecutiveSummaryComponent {
|
|
|
5033
5041
|
protected priorityTitleClasses: _angular_core.Signal<"text-slate-900" | "text-slate-100">;
|
|
5034
5042
|
protected priorityTextClasses: _angular_core.Signal<"text-slate-700" | "text-slate-300">;
|
|
5035
5043
|
protected impactBoxClasses: _angular_core.Signal<"bg-slate-800/30 border border-slate-700/30" | "bg-slate-50/50 border border-slate-200">;
|
|
5036
|
-
protected impactLabelClasses: _angular_core.Signal<"text-blue-
|
|
5044
|
+
protected impactLabelClasses: _angular_core.Signal<"text-blue-400" | "text-blue-600">;
|
|
5037
5045
|
protected impactTextClasses: _angular_core.Signal<"text-slate-600" | "text-slate-400">;
|
|
5038
|
-
protected quickWinCardClasses: _angular_core.Signal<"bg-
|
|
5046
|
+
protected quickWinCardClasses: _angular_core.Signal<"bg-white border border-slate-200" | "bg-slate-800/50 border border-slate-700/50">;
|
|
5039
5047
|
protected numberBadgeClasses: _angular_core.Signal<"bg-blue-500/20 text-blue-300" | "bg-blue-100 text-blue-800">;
|
|
5040
5048
|
protected quickWinTextClasses: _angular_core.Signal<"text-slate-900" | "text-slate-100">;
|
|
5041
5049
|
protected metaTextClasses: _angular_core.Signal<"text-slate-600" | "text-slate-400">;
|
|
@@ -5469,7 +5477,7 @@ declare class VisualizationContainerComponent {
|
|
|
5469
5477
|
data: unknown;
|
|
5470
5478
|
}>;
|
|
5471
5479
|
containerClass: _angular_core.Signal<"" | "cursor-pointer">;
|
|
5472
|
-
iconClass: _angular_core.Signal<"text-slate-
|
|
5480
|
+
iconClass: _angular_core.Signal<"text-slate-400 group-hover:text-blue-500" | "text-slate-500 group-hover:text-blue-400">;
|
|
5473
5481
|
onExpandClick(event: Event): void;
|
|
5474
5482
|
onVisualizationClick(event: Event): void;
|
|
5475
5483
|
static ɵfac: _angular_core.ɵɵFactoryDeclaration<VisualizationContainerComponent, never>;
|
|
@@ -5737,22 +5745,22 @@ declare class ConfidenceLevelCardComponent implements OnInit, OnDestroy {
|
|
|
5737
5745
|
protected titleClasses: _angular_core.Signal<"text-white" | "bg-gradient-to-r from-slate-700 to-slate-900 bg-clip-text text-transparent">;
|
|
5738
5746
|
protected subtitleClasses: _angular_core.Signal<"text-slate-600" | "text-slate-400">;
|
|
5739
5747
|
protected gradeBadgeContainerClasses: _angular_core.Signal<string>;
|
|
5740
|
-
protected glowEffectClasses: _angular_core.Signal<"bg-
|
|
5748
|
+
protected glowEffectClasses: _angular_core.Signal<"bg-emerald-500" | "bg-blue-500" | "bg-orange-500" | "bg-red-500">;
|
|
5741
5749
|
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)]">;
|
|
5742
5750
|
protected gradeLabelClasses: _angular_core.Signal<"text-emerald-700" | "text-blue-700" | "text-red-700" | "text-orange-700" | "text-red-300" | "text-blue-300" | "text-emerald-300" | "text-orange-300">;
|
|
5743
5751
|
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">;
|
|
5744
5752
|
protected descriptionClasses: _angular_core.Signal<"text-slate-700" | "text-slate-300">;
|
|
5745
5753
|
protected progressLabelClasses: _angular_core.Signal<"text-slate-700" | "text-slate-300">;
|
|
5746
|
-
protected progressValueClasses: _angular_core.Signal<"text-
|
|
5754
|
+
protected progressValueClasses: _angular_core.Signal<"text-emerald-600" | "text-emerald-400" | "text-red-600" | "text-red-400" | "text-blue-400" | "text-orange-600" | "text-orange-400" | "text-blue-600">;
|
|
5747
5755
|
protected progressTrackClasses: _angular_core.Signal<"bg-slate-700/50 shadow-inner" | "bg-slate-200 shadow-inner">;
|
|
5748
5756
|
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">;
|
|
5749
5757
|
protected shimmerClasses: _angular_core.Signal<string>;
|
|
5750
|
-
protected progressGlowClasses: _angular_core.Signal<"bg-gradient-to-r from-
|
|
5758
|
+
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">;
|
|
5751
5759
|
protected potentialProgressBarClasses: _angular_core.Signal<"opacity-40 bg-gradient-to-r from-emerald-500/50 via-teal-500/50 to-emerald-600/50" | "opacity-40 bg-gradient-to-r from-emerald-400/50 via-teal-400/50 to-emerald-500/50" | "opacity-40 bg-gradient-to-r from-blue-500/50 via-cyan-500/50 to-blue-600/50" | "opacity-40 bg-gradient-to-r from-blue-400/50 via-cyan-400/50 to-blue-500/50" | "opacity-40 bg-gradient-to-r from-orange-500/50 via-amber-500/50 to-orange-600/50" | "opacity-40 bg-gradient-to-r from-orange-400/50 via-amber-400/50 to-orange-500/50" | "opacity-40 bg-gradient-to-r from-red-500/50 via-rose-500/50 to-red-600/50" | "opacity-40 bg-gradient-to-r from-red-400/50 via-rose-400/50 to-red-500/50">;
|
|
5752
5760
|
protected nextStepCalloutClasses: _angular_core.Signal<"bg-slate-100 text-slate-700 border border-slate-200" | "bg-slate-700/50 text-slate-300 border border-slate-600/50">;
|
|
5753
|
-
protected nextStepBadgeClasses: _angular_core.Signal<"bg-
|
|
5761
|
+
protected nextStepBadgeClasses: _angular_core.Signal<"bg-blue-500/20 text-blue-400" | "bg-emerald-100 text-emerald-700" | "bg-emerald-500/20 text-emerald-400" | "bg-blue-100 text-blue-700" | "bg-orange-100 text-orange-700" | "bg-orange-500/20 text-orange-400" | "bg-red-100 text-red-700" | "bg-red-500/20 text-red-400">;
|
|
5754
5762
|
protected currentStepCalloutClasses: _angular_core.Signal<"bg-slate-100 text-slate-700 border border-slate-200" | "bg-slate-700/50 text-slate-300 border border-slate-600/50">;
|
|
5755
|
-
protected currentStepBadgeClasses: _angular_core.Signal<"bg-
|
|
5763
|
+
protected currentStepBadgeClasses: _angular_core.Signal<"bg-blue-500/20 text-blue-400" | "bg-emerald-100 text-emerald-700" | "bg-emerald-500/20 text-emerald-400" | "bg-blue-100 text-blue-700" | "bg-orange-100 text-orange-700" | "bg-orange-500/20 text-orange-400" | "bg-red-100 text-red-700" | "bg-red-500/20 text-red-400">;
|
|
5756
5764
|
protected nextDashboardCalloutClasses: _angular_core.Signal<"bg-slate-800/30 text-slate-400 border border-slate-700/30" | "bg-slate-50 text-slate-500 border border-slate-100">;
|
|
5757
5765
|
protected nextDashboardBadgeClasses: _angular_core.Signal<"bg-emerald-500/10 text-emerald-500" | "bg-emerald-50 text-emerald-600" | "bg-blue-500/10 text-blue-500" | "bg-blue-50 text-blue-600" | "bg-orange-500/10 text-orange-500" | "bg-orange-50 text-orange-600" | "bg-red-500/10 text-red-500" | "bg-red-50 text-red-600">;
|
|
5758
5766
|
static ɵfac: _angular_core.ɵɵFactoryDeclaration<ConfidenceLevelCardComponent, never>;
|
|
@@ -5773,12 +5781,12 @@ declare class RelatedContentSidebarComponent {
|
|
|
5773
5781
|
protected funnelMetricsCount: _angular_core.Signal<number>;
|
|
5774
5782
|
protected businessInsightsCount: _angular_core.Signal<number>;
|
|
5775
5783
|
protected headerClasses: _angular_core.Signal<"text-slate-600" | "text-slate-400">;
|
|
5776
|
-
protected buttonClasses: _angular_core.Signal<"bg-slate-
|
|
5784
|
+
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">;
|
|
5777
5785
|
protected iconBgClasses: _angular_core.Signal<"bg-blue-100 text-blue-600" | "bg-blue-900/30 text-blue-400">;
|
|
5778
|
-
protected iconClasses: _angular_core.Signal<"text-blue-
|
|
5786
|
+
protected iconClasses: _angular_core.Signal<"text-blue-400" | "text-blue-600">;
|
|
5779
5787
|
protected countClasses: _angular_core.Signal<"text-slate-900" | "text-white">;
|
|
5780
5788
|
protected labelClasses: _angular_core.Signal<"text-slate-600" | "text-slate-400">;
|
|
5781
|
-
protected chevronClasses: _angular_core.Signal<"text-slate-
|
|
5789
|
+
protected chevronClasses: _angular_core.Signal<"text-slate-500 group-hover:text-blue-400" | "text-slate-400 group-hover:text-blue-600">;
|
|
5782
5790
|
protected onFunnelInsightsClick(): void;
|
|
5783
5791
|
protected onFunnelMetricsClick(): void;
|
|
5784
5792
|
protected onBusinessInsightsClick(): void;
|
|
@@ -5839,7 +5847,7 @@ declare class IndeterminateSpinnerComponent {
|
|
|
5839
5847
|
circleRadius: _angular_core.Signal<16 | 36 | 26>;
|
|
5840
5848
|
svgCircleRadius: _angular_core.Signal<number>;
|
|
5841
5849
|
strokeWidth: _angular_core.Signal<3 | 2 | 2.5>;
|
|
5842
|
-
dotSize: _angular_core.Signal<
|
|
5850
|
+
dotSize: _angular_core.Signal<5 | 10 | 7>;
|
|
5843
5851
|
containerClasses: _angular_core.Signal<{
|
|
5844
5852
|
'w-10 h-10': boolean;
|
|
5845
5853
|
'w-[60px] h-[60px]': boolean;
|
|
@@ -5902,7 +5910,7 @@ declare class ChartContainerComponent {
|
|
|
5902
5910
|
headerClass: _angular_core.Signal<"border-slate-200" | "border-slate-700">;
|
|
5903
5911
|
titleClass: _angular_core.Signal<"text-slate-900" | "text-white">;
|
|
5904
5912
|
descriptionClass: _angular_core.Signal<"text-slate-600" | "text-slate-400">;
|
|
5905
|
-
iconClass: _angular_core.Signal<"text-slate-
|
|
5913
|
+
iconClass: _angular_core.Signal<"text-slate-400 group-hover:text-blue-500" | "text-slate-500 group-hover:text-blue-400">;
|
|
5906
5914
|
chartIconClass: _angular_core.Signal<"bg-blue-100 text-blue-600" | "bg-blue-500/20 text-blue-400">;
|
|
5907
5915
|
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">;
|
|
5908
5916
|
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">;
|
|
@@ -5967,7 +5975,7 @@ declare class BarChartComponent implements OnInit, AfterViewInit, OnDestroy {
|
|
|
5967
5975
|
showAxisLabels: _angular_core.InputSignal<boolean>;
|
|
5968
5976
|
viewMode: _angular_core.InputSignal<ViewModeEnum>;
|
|
5969
5977
|
currencySymbol: _angular_core.InputSignal<string>;
|
|
5970
|
-
chartHeight: _angular_core.Signal<"
|
|
5978
|
+
chartHeight: _angular_core.Signal<"500px" | "175px">;
|
|
5971
5979
|
cursorColor: _angular_core.Signal<9741240 | 16777215>;
|
|
5972
5980
|
tooltipTextColor: _angular_core.Signal<0 | 16777215>;
|
|
5973
5981
|
chartHash: _angular_core.Signal<string>;
|
|
@@ -6004,7 +6012,7 @@ declare class PieChartComponent implements OnInit, AfterViewInit, OnDestroy {
|
|
|
6004
6012
|
showAxisLabels: _angular_core.InputSignal<boolean>;
|
|
6005
6013
|
viewMode: _angular_core.InputSignal<ViewModeEnum>;
|
|
6006
6014
|
currencySymbol: _angular_core.InputSignal<string>;
|
|
6007
|
-
chartHeight: _angular_core.Signal<"
|
|
6015
|
+
chartHeight: _angular_core.Signal<"500px" | "200px">;
|
|
6008
6016
|
chartHash: _angular_core.Signal<string>;
|
|
6009
6017
|
chartDiv: ElementRef;
|
|
6010
6018
|
private root?;
|
|
@@ -6086,7 +6094,7 @@ declare class TooltipContainerComponent implements AfterViewInit, OnDestroy {
|
|
|
6086
6094
|
isVisible: _angular_core.Signal<boolean>;
|
|
6087
6095
|
tooltipType: _angular_core.Signal<string | null>;
|
|
6088
6096
|
tooltipContent: _angular_core.Signal<string | Record<string, unknown> | undefined>;
|
|
6089
|
-
tooltipPosition: _angular_core.Signal<"top" | "
|
|
6097
|
+
tooltipPosition: _angular_core.Signal<"top" | "bottom" | "left" | "right" | "auto">;
|
|
6090
6098
|
targetRect: _angular_core.Signal<DOMRect | null>;
|
|
6091
6099
|
mousePosition: _angular_core.Signal<{
|
|
6092
6100
|
x: number;
|
|
@@ -6241,11 +6249,11 @@ declare class FocusAreaDetailCardComponent {
|
|
|
6241
6249
|
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">;
|
|
6242
6250
|
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">;
|
|
6243
6251
|
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">;
|
|
6244
|
-
protected expandedIconClasses: _angular_core.Signal<"text-blue-
|
|
6252
|
+
protected expandedIconClasses: _angular_core.Signal<"text-blue-400" | "text-blue-600">;
|
|
6245
6253
|
protected expandedTitleClasses: _angular_core.Signal<"text-sm font-semibold text-white" | "text-sm font-semibold text-slate-900">;
|
|
6246
6254
|
protected insightItemClasses: _angular_core.Signal<"text-sm text-slate-300 leading-relaxed flex" | "text-sm text-slate-600 leading-relaxed flex">;
|
|
6247
6255
|
protected expandButtonClasses: _angular_core.Signal<"text-sm font-medium text-blue-400" | "text-sm font-medium text-blue-600">;
|
|
6248
|
-
protected chevronClasses: _angular_core.Signal<"text-blue-
|
|
6256
|
+
protected chevronClasses: _angular_core.Signal<"text-blue-400" | "text-blue-600">;
|
|
6249
6257
|
protected toggleExpanded(): void;
|
|
6250
6258
|
protected toggleCompetitiveGap(): void;
|
|
6251
6259
|
onExpandItem(event: Event): void;
|
|
@@ -6321,11 +6329,11 @@ declare class CompetitorAnalysisCardComponent {
|
|
|
6321
6329
|
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">;
|
|
6322
6330
|
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">;
|
|
6323
6331
|
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">;
|
|
6324
|
-
protected expandedIconClasses: _angular_core.Signal<"text-blue-
|
|
6332
|
+
protected expandedIconClasses: _angular_core.Signal<"text-blue-400" | "text-blue-600">;
|
|
6325
6333
|
protected expandedTitleClasses: _angular_core.Signal<"text-sm font-semibold text-white" | "text-sm font-semibold text-slate-900">;
|
|
6326
6334
|
protected expandedTextClasses: _angular_core.Signal<"text-sm text-slate-300 leading-relaxed" | "text-sm text-slate-600 leading-relaxed">;
|
|
6327
6335
|
protected expandButtonClasses: _angular_core.Signal<"text-sm font-medium text-blue-400" | "text-sm font-medium text-blue-600">;
|
|
6328
|
-
protected chevronClasses: _angular_core.Signal<"text-blue-
|
|
6336
|
+
protected chevronClasses: _angular_core.Signal<"text-blue-400" | "text-blue-600">;
|
|
6329
6337
|
protected toggleExpanded(): void;
|
|
6330
6338
|
protected navigateToItem(item: ProfileItemInterface): void;
|
|
6331
6339
|
onExpandItem(event: Event): void;
|
|
@@ -6598,5 +6606,5 @@ declare function validateRevenueTarget(targetRevenue: number, calculations: Metr
|
|
|
6598
6606
|
};
|
|
6599
6607
|
|
|
6600
6608
|
export { AreaChartComponent, BarChartComponent, BreakdownSectionComponent, BusinessAnalysisModalComponent, BusinessProfileSearchService, ChartCardComponent, ChartContainerComponent, ChartThemeService, CircularProgressComponent, CompetitivePositioningSummaryComponent, CompetitorAnalysisCardComponent, ConfettiService, ConfidenceLevelCardComponent, ContentGenerationProgressComponent, ContentGenerationProgressWithConfettiComponent, CrossDashboardRelationshipsService, DashboardHeaderComponent, DataLoaderService, DisplayModeEnum, FloatingBackButtonComponent, FloatingTocComponent, FocusAreaDetailCardComponent, FocusAreaExecutiveSummaryComponent, FocusAreaQuestionComponent, FocusAreaStatusCardComponent, FocusAreaToolsModalComponent, FunnelOrderService, GradeBadgeComponent, HeaderScrollService, HierarchyDisplayComponent, HorizontalBarComponent, IconService, IndeterminateSpinnerComponent, InsightCardComponent, JourneyProgressIndicatorComponent, JourneyStepIdEnum, LineChartComponent, MetricCardComponent, MetricExecutiveSummaryComponent, MetricFormatterService, MetricListItemComponent, MetricReportModalComponent, MetricWelcomeBannerComponent, MobileBottomNavComponent, MobileFABComponent, ModalComponent, ModalService, NapkinVisualPlaceholderComponent, NavigationStateService, OpportunityHighlightBannerComponent, OverallAssessmentComponent, PacingStatusBadgeComponent, PieChartComponent, ProfileItemCardComponent, ProfileSectionComponent, ProfileSubsectionComponent, RelatedContentSidebarComponent, RevenueCalculatorService, RevenueCalculatorWelcomeBannerComponent, ScrollDepthService, ScrollProgressBarComponent, SearchButtonComponent, SearchModalComponent, SectionDividerComponent, SectionNavigationComponent, ShadowElevationDirective, ShopPlatformEnum, ShopProfileCategoryListComponent, ShopProfileQuestionAnswerComponent, ShopProfileQuestionCardComponent, ShopProfileQuestionsModalComponent, ShopProfileStatusCardComponent, ShopProfileStickyFooterComponent, ShopProfileViewToggleComponent, ShopWelcomeBannerComponent, SkeletonBarComponent, SkeletonCardBaseComponent, SkeletonCircleComponent, SkeletonCompetitorCardComponent, SkeletonCustomerSegmentCardComponent, SkeletonFocusAreaCardComponent, SkeletonGenericCardComponent, SkeletonLoaderComponent, SkeletonPriceTierCardComponent, SkeletonProductCategoryCardComponent, SkeletonRegionCardComponent, SkeletonSeasonCardComponent, StickySubscriptionContinueButtonComponent, SubscriptionValuePropositionCardComponent, SymphiqBusinessAnalysisDashboardComponent, SymphiqConnectGaDashboardComponent, SymphiqCreateAccountDashboardComponent, SymphiqFunnelAnalysisDashboardComponent, SymphiqFunnelAnalysisPreviewComponent, SymphiqIconComponent, SymphiqProfileAnalysisFocusAreaDashboardComponent, SymphiqProfileAnalysisMetricDashboardComponent, SymphiqProfileAnalysisUnifiedDashboardComponent, SymphiqProfileFocusAreaDashboardComponent, SymphiqProfileFocusAreasAnalysesDashboardComponent, SymphiqProfileMetricDashboardComponent, SymphiqProfileMetricsAnalysesDashboardComponent, SymphiqProfileShopAnalysisDashboardComponent, SymphiqRevenueCalculatorDashboardComponent, SymphiqWelcomeDashboardComponent, TargetChangeBadgeComponent, TooltipContainerComponent, TooltipDataService, TooltipDirective, TooltipService, UserAvatarComponent, UserDisplayComponent, ViewModeService, ViewModeSwitcherModalComponent, ViewportAnimationDirective, VisualizationContainerComponent, calculateFunnelRatios, calculateMetricTargetsFromRevenue, calculateMetricTargetsFromRevenueReverse, calculateRelatedMetricRatios, generateTargetsFromCalculations, getBadgeLabelClasses, getButtonClasses, getCategoryBadgeClasses, getCategoryColor, getCompetitiveBadgeClasses, getContainerClasses, getFooterClasses, getFunnelStageMetrics, getGradeBadgeClasses, getHeaderClasses, getInsightsBadgeClasses, getInsightsCardClasses, getMetricLabelClasses, getMetricMiniCardClasses, getMetricValueClasses, getNarrativeTextClasses, getRevenueCardClasses, getRevenueIconClasses, getStatusBadgeClasses, getStatusDotClasses, getStatusIconClasses, getStatusSummaryClasses, getSubtitleClasses, getTitleClasses, getTrendClasses, getTrendIconClasses, getTrendValueClasses, groupMetricsByFunnelStage, isLightMode, validateRevenueTarget };
|
|
6601
|
-
export type { AnimationType, AvatarSize, BusinessInsightDetailModalData, BusinessSearchResult, CategoryColorPalette, CategoryDetailModalData, CategoryProgressItem, ChartThemeColors, ConfettiConfig, ConfettiIntensity, CreateAccountData, CriticalGapDetailModalData, CriticalGapsListModalData, CrossDashboardRelationships, DataKey, FocusAreaGapDetailModalData, FocusAreaGapsListModalData, FocusAreaOpportunitiesListModalData, FocusAreaOpportunityDetailModalData, FocusAreaStrengthDetailModalData, FocusAreaStrengthsListModalData, FunnelMetricOrder, FunnelRatio, FunnelStrengthDetailModalData, FunnelStrengthInterface, FunnelStrengthsListModalData, FunnelWeaknessDetailModalData, FunnelWeaknessInterface, FunnelWeaknessesListModalData, GapDetailModalData, GoalBusinessInsightsListModalData, GoalDetailModalData, GoalInsightsListModalData, GoalObjectivesModalData, HeaderScrollConfig, ItemDetailModalData, JourneyStep$1 as JourneyStep, KeyStrengthDetailModalData, KeyStrengthsListModalData, LayoutMode, Metric, MetricAnalysisNavigationData, MetricTargetCalculation, MetricTargetWithPrecision, MetricsListModalData, ModalState, NavSection, NavigationState, ObjectiveStrategiesModalData, OpportunityDetailModalData, ProfileAnalysisNavigationData, ProfileQuestionAnswerSaveEvent, RecommendationBusinessInsightsListModalData, RecommendationInsightsListModalData, RelatedBusinessContent, RelatedFunnelContent, RelatedMetricRatio, RevenueCalculationResult, ReverseCalculationContext, SaveActionType, ScrollBaseCustomEvent, ScrollBaseDetail, ScrollCustomEvent, ScrollDepthInfo, ScrollDetail, ScrollProgressBarColorScheme, SemanticColors, ShadowLevel, ShopProfileViewType, SourceAnalysisRequestEvent, SourceGoalModalData, SourceObjectiveModalData, SourceRecommendationModalData, SourceStrategyModalData, SpinnerSize, StrategyRecommendationsModalData, StrengthDetailModalData, ThemeColorContext, ThemeMode, TooltipPosition, TooltipState, TooltipType, TopPrioritiesListModalData, TopPriorityDetailModalData, TopPriorityInterface, UnifiedGoalDetailModalData, ViewMode, ViewportBounds, VisualizationData, VisualizationType };
|
|
6609
|
+
export type { AnimationType, AvatarSize, BusinessInsightDetailModalData, BusinessSearchResult, CategoryColorPalette, CategoryDetailModalData, CategoryProgressItem, ChartThemeColors, ConfettiConfig, ConfettiIntensity, CreateAccountData, CriticalGapDetailModalData, CriticalGapsListModalData, CrossDashboardRelationships, DataKey, FocusAreaGapDetailModalData, FocusAreaGapsListModalData, FocusAreaOpportunitiesListModalData, FocusAreaOpportunityDetailModalData, FocusAreaStrengthDetailModalData, FocusAreaStrengthsListModalData, FunnelMetricOrder, FunnelRatio, FunnelStrengthDetailModalData, FunnelStrengthInterface, FunnelStrengthsListModalData, FunnelWeaknessDetailModalData, FunnelWeaknessInterface, FunnelWeaknessesListModalData, GapDetailModalData, GoalBusinessInsightsListModalData, GoalDetailModalData, GoalInsightsListModalData, GoalObjectivesModalData, HeaderScrollConfig, ItemDetailModalData, JourneyStep$1 as JourneyStep, KeyStrengthDetailModalData, KeyStrengthsListModalData, LayoutMode, Metric, MetricAnalysisNavigationData, MetricTargetCalculation, MetricTargetWithPrecision, MetricsListModalData, ModalState, NavSection, NavigationState, ObjectiveStrategiesModalData, OpportunityDetailModalData, ProfileAnalysisNavigationData, ProfileQuestionAnswerSaveEvent, RecommendationBusinessInsightsListModalData, RecommendationInsightsListModalData, RelatedBusinessContent, RelatedFunnelContent, RelatedMetricRatio, RevenueCalculationResult, ReverseCalculationContext, SaveActionType, ScrollBaseCustomEvent, ScrollBaseDetail, ScrollCustomEvent, ScrollDepthInfo, ScrollDetail, ScrollProgressBarColorScheme, SemanticColors, ShadowLevel, ShopProfileViewType, SourceAnalysisRequestEvent, SourceGoalModalData, SourceObjectiveModalData, SourceRecommendationModalData, SourceStrategyModalData, SpinnerSize, StrategyRecommendationsModalData, StrengthDetailModalData, ThemeColorContext, ThemeMode, TooltipPosition, TooltipState, TooltipType, TopPrioritiesListModalData, TopPriorityDetailModalData, TopPriorityInterface, UnifiedGoalDetailModalData, UnifiedGoalObjectivesModalData, ViewMode, ViewportBounds, VisualizationData, VisualizationType };
|
|
6602
6610
|
//# sourceMappingURL=symphiq-components.d.ts.map
|