@eric-emg/symphiq-components 1.3.78 → 1.3.80
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.
|
@@ -533,7 +533,7 @@ declare class ModalService {
|
|
|
533
533
|
navigateToFocusAreaOpportunityDetail(opportunity: CategoryOpportunityInterface, categoryTitle: string, viewMode: ViewModeEnum): void;
|
|
534
534
|
openUnifiedGoalModal(goal: UnifiedGoalInterface, allMetrics: PerformanceMetricInterface[], allCharts: AiChartInterface[], loadedSourceAnalysisIds: string[], viewMode: ViewModeEnum, loadingSourceAnalysisId?: string, previousState?: ModalState | null, allInsights?: InsightBlockInterface[], allBusinessInsights?: ProfileAnalysisRecommendationInterface[]): void;
|
|
535
535
|
openUnifiedStrategyRecommendationsModal(strategy: StrategyV3Interface, objective: ObjectiveV3Interface, goal: UnifiedGoalInterface, allMetrics: PerformanceMetricInterface[], allCharts: AiChartInterface[], viewMode: ViewModeEnum, expandedRecommendationId?: string, previousState?: ModalState): void;
|
|
536
|
-
navigateToUnifiedGoalObjectives(goal: UnifiedGoalInterface, allMetrics: PerformanceMetricInterface[], allCharts: AiChartInterface[], viewMode: ViewModeEnum): void;
|
|
536
|
+
navigateToUnifiedGoalObjectives(goal: UnifiedGoalInterface, allMetrics: PerformanceMetricInterface[], allCharts: AiChartInterface[], viewMode: ViewModeEnum, allInsights?: InsightBlockInterface[], allBusinessInsights?: ProfileAnalysisRecommendationInterface[]): void;
|
|
537
537
|
navigateToUnifiedGoalRelatedMetrics(goal: UnifiedGoalInterface, contributingMetrics: PerformanceMetricInterface[], allCharts: AiChartInterface[], viewMode: ViewModeEnum): void;
|
|
538
538
|
navigateToSourceGoal(sourceAnalysis: SourceAnalysisReferenceInterface, sourceProfileAnalysis: ProfileAnalysisInterface | undefined, unifiedGoal: UnifiedGoalInterface, allMetrics: PerformanceMetricInterface[], allCharts: AiChartInterface[], viewMode: ViewModeEnum): void;
|
|
539
539
|
navigateToSourceObjective(objective: ObjectiveV3Interface, sourceGoal: GoalV3Interface, sourceAnalysis: SourceAnalysisReferenceInterface, unifiedGoal: UnifiedGoalInterface, allMetrics: PerformanceMetricInterface[], allCharts: AiChartInterface[], viewMode: ViewModeEnum): void;
|
|
@@ -1160,11 +1160,14 @@ interface GoalActionStatesOutput {
|
|
|
1160
1160
|
declare class GoalActionStateService {
|
|
1161
1161
|
private statesSignal;
|
|
1162
1162
|
private stateChangesSubject;
|
|
1163
|
+
private lastChangedGoalIdSignal;
|
|
1163
1164
|
readonly states: _angular_core.Signal<GoalActionStatesMap>;
|
|
1164
1165
|
readonly stateChanges$: rxjs.Observable<GoalActionStatesMap>;
|
|
1166
|
+
readonly lastChangedGoalId: _angular_core.Signal<string | null>;
|
|
1165
1167
|
constructor();
|
|
1166
1168
|
getState(goalId: string): GoalActionStateEnum | undefined;
|
|
1167
1169
|
setState(goalId: string, state: GoalActionStateEnum): void;
|
|
1170
|
+
clearLastChangedGoalId(): void;
|
|
1168
1171
|
getAllStates(): GoalActionStatesMap;
|
|
1169
1172
|
getStatesByGoalIds(ids: string[]): GoalActionStatesMap;
|
|
1170
1173
|
clearState(goalId: string): void;
|
|
@@ -1200,7 +1203,7 @@ declare class ModalComponent {
|
|
|
1200
1203
|
private animatedTrendValues;
|
|
1201
1204
|
private animationFrames;
|
|
1202
1205
|
isOpen: _angular_core.Signal<boolean>;
|
|
1203
|
-
modalType: _angular_core.Signal<"
|
|
1206
|
+
modalType: _angular_core.Signal<"insight" | "metric" | "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>;
|
|
1204
1207
|
charts: _angular_core.Signal<AiChartInterface[]>;
|
|
1205
1208
|
modalKey: _angular_core.Signal<number>;
|
|
1206
1209
|
insightData: _angular_core.Signal<InsightBlockInterface | null>;
|
|
@@ -1219,7 +1222,7 @@ declare class ModalComponent {
|
|
|
1219
1222
|
description: string;
|
|
1220
1223
|
icon: string;
|
|
1221
1224
|
} | null>;
|
|
1222
|
-
metricsListData: _angular_core.Signal<InsightBlockInterface | PerformanceMetricInterface | FunnelStrengthsListModalData | FunnelWeaknessesListModalData | FunnelStrengthDetailModalData | FunnelWeaknessDetailModalData |
|
|
1225
|
+
metricsListData: _angular_core.Signal<InsightBlockInterface | PerformanceMetricInterface | AiChartInterface | FunnelStrengthsListModalData | FunnelWeaknessesListModalData | FunnelStrengthDetailModalData | FunnelWeaknessDetailModalData | (InsightBlockInterface | PerformanceMetricInterface)[] | null>;
|
|
1223
1226
|
metricsListMetrics: _angular_core.Signal<PerformanceMetricInterface[]>;
|
|
1224
1227
|
metricsListInsightContext: _angular_core.Signal<{
|
|
1225
1228
|
title: string;
|
|
@@ -1227,7 +1230,7 @@ declare class ModalComponent {
|
|
|
1227
1230
|
businessContext: string;
|
|
1228
1231
|
priority: number;
|
|
1229
1232
|
} | null>;
|
|
1230
|
-
chartsListData: _angular_core.Signal<InsightBlockInterface | PerformanceMetricInterface | FunnelStrengthsListModalData | FunnelWeaknessesListModalData | FunnelStrengthDetailModalData | FunnelWeaknessDetailModalData |
|
|
1233
|
+
chartsListData: _angular_core.Signal<InsightBlockInterface | PerformanceMetricInterface | AiChartInterface | FunnelStrengthsListModalData | FunnelWeaknessesListModalData | FunnelStrengthDetailModalData | FunnelWeaknessDetailModalData | (InsightBlockInterface | PerformanceMetricInterface)[] | null>;
|
|
1231
1234
|
chartsListCharts: _angular_core.Signal<AiChartInterface[]>;
|
|
1232
1235
|
chartsListInsightContext: _angular_core.Signal<{
|
|
1233
1236
|
title: string;
|
|
@@ -1235,7 +1238,7 @@ declare class ModalComponent {
|
|
|
1235
1238
|
businessContext: string;
|
|
1236
1239
|
priority: number;
|
|
1237
1240
|
} | null>;
|
|
1238
|
-
recommendationsListData: _angular_core.Signal<InsightBlockInterface | PerformanceMetricInterface | FunnelStrengthsListModalData | FunnelWeaknessesListModalData | FunnelStrengthDetailModalData | FunnelWeaknessDetailModalData |
|
|
1241
|
+
recommendationsListData: _angular_core.Signal<InsightBlockInterface | PerformanceMetricInterface | AiChartInterface | FunnelStrengthsListModalData | FunnelWeaknessesListModalData | FunnelStrengthDetailModalData | FunnelWeaknessDetailModalData | (InsightBlockInterface | PerformanceMetricInterface)[] | null>;
|
|
1239
1242
|
recommendationsListRecommendations: _angular_core.Signal<string[]>;
|
|
1240
1243
|
recommendationsListInsightContext: _angular_core.Signal<{
|
|
1241
1244
|
title: string;
|
|
@@ -1243,7 +1246,7 @@ declare class ModalComponent {
|
|
|
1243
1246
|
businessContext: string;
|
|
1244
1247
|
priority: number;
|
|
1245
1248
|
} | null>;
|
|
1246
|
-
competitiveAnalysisData: _angular_core.Signal<InsightBlockInterface | PerformanceMetricInterface | FunnelStrengthsListModalData | FunnelWeaknessesListModalData | FunnelStrengthDetailModalData | FunnelWeaknessDetailModalData |
|
|
1249
|
+
competitiveAnalysisData: _angular_core.Signal<InsightBlockInterface | PerformanceMetricInterface | AiChartInterface | FunnelStrengthsListModalData | FunnelWeaknessesListModalData | FunnelStrengthDetailModalData | FunnelWeaknessDetailModalData | (InsightBlockInterface | PerformanceMetricInterface)[] | null>;
|
|
1247
1250
|
competitiveAnalysisContext: _angular_core.Signal<{
|
|
1248
1251
|
title: string;
|
|
1249
1252
|
description: string;
|
|
@@ -1540,9 +1543,9 @@ declare class ViewModeSwitcherModalComponent {
|
|
|
1540
1543
|
protected backdropClasses: _angular_core.Signal<"bg-slate-950/25" | "bg-slate-900/15">;
|
|
1541
1544
|
protected modalClasses: _angular_core.Signal<"bg-slate-800/95 border border-slate-700/50" | "bg-white/95 border border-slate-200">;
|
|
1542
1545
|
protected headerClasses: _angular_core.Signal<"border-slate-200" | "border-slate-700/50">;
|
|
1543
|
-
protected titleClasses: _angular_core.Signal<"text-
|
|
1546
|
+
protected titleClasses: _angular_core.Signal<"text-white" | "text-slate-900">;
|
|
1544
1547
|
protected descriptionClasses: _angular_core.Signal<"text-slate-600" | "text-slate-400">;
|
|
1545
|
-
protected closeButtonClasses: _angular_core.Signal<"text-slate-
|
|
1548
|
+
protected closeButtonClasses: _angular_core.Signal<"text-slate-400 hover:text-white hover:bg-slate-700" | "text-slate-600 hover:text-slate-900 hover:bg-slate-100">;
|
|
1546
1549
|
protected contentClasses: _angular_core.Signal<"bg-slate-800/50" | "bg-slate-50/50">;
|
|
1547
1550
|
protected badgeClasses: _angular_core.Signal<"bg-amber-100 text-amber-700 border border-amber-200" | "bg-amber-500/20 text-amber-400 border border-amber-500/30">;
|
|
1548
1551
|
protected spinnerClasses: _angular_core.Signal<"border-blue-500" | "border-blue-600">;
|
|
@@ -1658,10 +1661,10 @@ declare class SymphiqFunnelAnalysisDashboardComponent implements AfterViewInit {
|
|
|
1658
1661
|
*/
|
|
1659
1662
|
private chartsById;
|
|
1660
1663
|
headerClass: _angular_core.Signal<string>;
|
|
1661
|
-
headerTitleClass: _angular_core.Signal<"text-
|
|
1664
|
+
headerTitleClass: _angular_core.Signal<"text-white" | "text-slate-900">;
|
|
1662
1665
|
headerSubtitleClass: _angular_core.Signal<"text-slate-600" | "text-slate-400">;
|
|
1663
1666
|
metaLabelClass: _angular_core.Signal<"text-slate-600" | "text-slate-500">;
|
|
1664
|
-
sectionTitleClass: _angular_core.Signal<"text-
|
|
1667
|
+
sectionTitleClass: _angular_core.Signal<"text-white" | "text-slate-900">;
|
|
1665
1668
|
selectClass: _angular_core.Signal<"bg-white text-slate-900 border-slate-300 hover:border-blue-400 transition-all duration-200" | "bg-slate-700 text-white border-slate-600 hover:border-slate-500 transition-all duration-200">;
|
|
1666
1669
|
sortButtonClass: _angular_core.Signal<"bg-white text-slate-900 border border-slate-300 hover:bg-blue-50 hover:border-blue-400 hover:text-blue-600 transition-all duration-200" | "bg-slate-700 text-white border border-slate-600 hover:bg-slate-600 hover:border-slate-500 transition-all duration-200">;
|
|
1667
1670
|
formattedGeneratedDate: _angular_core.Signal<string | null>;
|
|
@@ -1832,7 +1835,7 @@ declare class MetricCardComponent {
|
|
|
1832
1835
|
competitiveScoreBadgeLightClass: _angular_core.Signal<string>;
|
|
1833
1836
|
competitiveScoreBadgeDarkClass: _angular_core.Signal<string>;
|
|
1834
1837
|
competitiveScoreBadgeClass: _angular_core.Signal<string>;
|
|
1835
|
-
competitiveScoreTextClass: _angular_core.Signal<"" | "text-
|
|
1838
|
+
competitiveScoreTextClass: _angular_core.Signal<"" | "text-blue-400" | "text-emerald-600" | "text-blue-700" | "text-orange-600">;
|
|
1836
1839
|
competitiveComparisonDefaultClass: _angular_core.Signal<"text-slate-700" | "text-slate-300">;
|
|
1837
1840
|
competitiveComparisonClass: _angular_core.Signal<"text-slate-700" | "text-slate-300" | "text-emerald-600 font-semibold" | "text-orange-600 font-semibold">;
|
|
1838
1841
|
getCompetitiveScoreIcon(): string;
|
|
@@ -2107,10 +2110,10 @@ declare class OverallAssessmentComponent {
|
|
|
2107
2110
|
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">;
|
|
2108
2111
|
lightModeTrendIconClass: _angular_core.Signal<"text-emerald-600" | "text-red-600">;
|
|
2109
2112
|
darkModeTrendIconClass: _angular_core.Signal<"text-emerald-400" | "text-red-400">;
|
|
2110
|
-
trendIconClass: _angular_core.Signal<"text-emerald-600" | "text-emerald-400" | "text-red-
|
|
2113
|
+
trendIconClass: _angular_core.Signal<"text-emerald-600" | "text-emerald-400" | "text-red-400" | "text-red-600">;
|
|
2111
2114
|
lightModeTrendValueClass: _angular_core.Signal<"text-emerald-600" | "text-red-600">;
|
|
2112
2115
|
darkModeTrendValueClass: _angular_core.Signal<"text-emerald-400" | "text-red-400">;
|
|
2113
|
-
trendValueClass: _angular_core.Signal<"text-emerald-600" | "text-emerald-400" | "text-red-
|
|
2116
|
+
trendValueClass: _angular_core.Signal<"text-emerald-600" | "text-emerald-400" | "text-red-400" | "text-red-600">;
|
|
2114
2117
|
formattedRevenueTrend: _angular_core.Signal<string>;
|
|
2115
2118
|
formattedRevenueTarget: _angular_core.Signal<string>;
|
|
2116
2119
|
hasRevenuePacing: _angular_core.Signal<boolean>;
|
|
@@ -2416,7 +2419,7 @@ declare class SymphiqFunnelAnalysisPreviewComponent {
|
|
|
2416
2419
|
hasCompetitiveData: _angular_core.Signal<boolean>;
|
|
2417
2420
|
hasOverallCompetitiveBenchmark: _angular_core.Signal<boolean>;
|
|
2418
2421
|
overallCompetitiveDescription: _angular_core.Signal<string>;
|
|
2419
|
-
overallCompetitiveLabel: _angular_core.Signal<
|
|
2422
|
+
overallCompetitiveLabel: _angular_core.Signal<"N/A" | _jebgem_model.CompetitiveScoreEnum>;
|
|
2420
2423
|
overallCompetitiveIcon: _angular_core.Signal<"↑" | "↔" | "↓" | "•">;
|
|
2421
2424
|
competitiveScore: _angular_core.Signal<string>;
|
|
2422
2425
|
gradeTooltip: _angular_core.Signal<{
|
|
@@ -2454,7 +2457,7 @@ declare class SymphiqFunnelAnalysisPreviewComponent {
|
|
|
2454
2457
|
competitiveTooltip: _angular_core.Signal<{
|
|
2455
2458
|
industry: string;
|
|
2456
2459
|
metricBenchmark: string;
|
|
2457
|
-
competitiveScore: "LEADING" | "
|
|
2460
|
+
competitiveScore: "LEADING" | "LAGGING" | "COMPETITIVE";
|
|
2458
2461
|
description: string;
|
|
2459
2462
|
keyOpportunities: string;
|
|
2460
2463
|
}>;
|
|
@@ -2549,8 +2552,8 @@ declare class SymphiqWelcomeDashboardComponent implements AfterViewInit, OnDestr
|
|
|
2549
2552
|
protected titleClasses: _angular_core.Signal<"text-white" | "bg-gradient-to-r from-blue-600 to-purple-600 bg-clip-text text-transparent">;
|
|
2550
2553
|
protected textClasses: _angular_core.Signal<"text-slate-700" | "text-slate-300">;
|
|
2551
2554
|
protected highlightBoxClasses: _angular_core.Signal<"bg-blue-500/10 border-blue-500/30" | "bg-blue-50 border-blue-300">;
|
|
2552
|
-
protected highlightIconClasses: _angular_core.Signal<"text-blue-
|
|
2553
|
-
protected highlightTitleClasses: _angular_core.Signal<"text-blue-
|
|
2555
|
+
protected highlightIconClasses: _angular_core.Signal<"text-blue-600" | "text-blue-400">;
|
|
2556
|
+
protected highlightTitleClasses: _angular_core.Signal<"text-blue-400" | "text-blue-700">;
|
|
2554
2557
|
protected highlightListClasses: _angular_core.Signal<"text-slate-700" | "text-slate-300">;
|
|
2555
2558
|
protected nextStepsBoxClasses: _angular_core.Signal<"bg-amber-500/10 border-amber-500/30" | "bg-amber-50 border-amber-200">;
|
|
2556
2559
|
protected nextStepsIconClasses: _angular_core.Signal<"text-amber-600" | "text-amber-400">;
|
|
@@ -2669,7 +2672,7 @@ declare class SymphiqCreateAccountDashboardComponent implements OnDestroy {
|
|
|
2669
2672
|
protected containerWrapperClasses: _angular_core.Signal<"" | "min-h-screen">;
|
|
2670
2673
|
protected containerClasses: _angular_core.Signal<"bg-white border-slate-200" | "bg-slate-800 border-slate-700">;
|
|
2671
2674
|
protected contentClasses: _angular_core.Signal<"bg-gradient-to-br from-white to-slate-50" | "bg-gradient-to-br from-slate-800 to-slate-900">;
|
|
2672
|
-
protected sectionTitleClasses: _angular_core.Signal<"text-
|
|
2675
|
+
protected sectionTitleClasses: _angular_core.Signal<"text-white" | "text-slate-900">;
|
|
2673
2676
|
protected sectionDescriptionClasses: _angular_core.Signal<"text-slate-600" | "text-slate-400">;
|
|
2674
2677
|
protected labelClasses: _angular_core.Signal<"text-slate-700" | "text-slate-300">;
|
|
2675
2678
|
protected inputClasses(fieldName: string): string;
|
|
@@ -2677,26 +2680,26 @@ declare class SymphiqCreateAccountDashboardComponent implements OnDestroy {
|
|
|
2677
2680
|
protected urlInputClasses(fieldName: string): string;
|
|
2678
2681
|
protected radioPlatformClasses(platform: ShopPlatformEnum): string;
|
|
2679
2682
|
protected radioIndicatorClasses(platform: ShopPlatformEnum): string;
|
|
2680
|
-
protected radioLabelClasses: _angular_core.Signal<"text-
|
|
2683
|
+
protected radioLabelClasses: _angular_core.Signal<"text-white" | "text-slate-900">;
|
|
2681
2684
|
protected checkboxClasses: _angular_core.Signal<"text-blue-600 border-slate-300 focus:ring-blue-500" | "text-blue-400 border-slate-600 focus:ring-blue-400 bg-slate-700">;
|
|
2682
2685
|
protected checkboxLabelClasses: _angular_core.Signal<"text-slate-600" | "text-slate-400">;
|
|
2683
2686
|
protected errorClasses: _angular_core.Signal<string>;
|
|
2684
2687
|
protected viewLabelClasses: _angular_core.Signal<"text-slate-600" | "text-slate-400">;
|
|
2685
|
-
protected viewValueClasses: _angular_core.Signal<"text-
|
|
2688
|
+
protected viewValueClasses: _angular_core.Signal<"text-white" | "text-slate-900">;
|
|
2686
2689
|
protected viewLinkClasses: _angular_core.Signal<"text-blue-600 hover:text-blue-700" | "text-blue-400 hover:text-blue-300">;
|
|
2687
2690
|
protected editButtonClasses: _angular_core.Signal<"bg-blue-500 text-white hover:bg-blue-600" | "bg-blue-600 text-white hover:bg-blue-700">;
|
|
2688
2691
|
protected stickyButtonContainerClasses: _angular_core.Signal<"bg-white/90 border-slate-200" | "bg-slate-900/90 border-slate-700">;
|
|
2689
2692
|
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">;
|
|
2690
2693
|
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">;
|
|
2691
2694
|
protected focusAreaProgressLabelClasses: _angular_core.Signal<"text-slate-600" | "text-slate-400">;
|
|
2692
|
-
protected focusAreaProgressCountClasses: _angular_core.Signal<"text-
|
|
2695
|
+
protected focusAreaProgressCountClasses: _angular_core.Signal<"text-blue-600" | "text-blue-400" | "text-emerald-600" | "text-emerald-400">;
|
|
2693
2696
|
protected focusAreaProgressBarBgClasses: _angular_core.Signal<"bg-slate-200" | "bg-slate-700">;
|
|
2694
2697
|
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">;
|
|
2695
|
-
protected progressBadgeClasses: _angular_core.Signal<"bg-
|
|
2698
|
+
protected progressBadgeClasses: _angular_core.Signal<"bg-emerald-100 text-emerald-700 border border-emerald-200" | "bg-blue-100 text-blue-700 border border-blue-200" | "bg-emerald-900/30 text-emerald-400 border border-emerald-700" | "bg-blue-900/30 text-blue-400 border border-blue-700">;
|
|
2696
2699
|
protected dividerClasses: _angular_core.Signal<"border-t border-slate-200" | "border-t border-slate-700">;
|
|
2697
2700
|
protected groupTitleClasses(type: 'engaged' | 'interested' | 'not-interested'): string;
|
|
2698
2701
|
protected focusAreaViewCardClasses(type: 'engaged' | 'interested' | 'not-interested'): string;
|
|
2699
|
-
protected focusAreaViewTitleClasses: _angular_core.Signal<"text-
|
|
2702
|
+
protected focusAreaViewTitleClasses: _angular_core.Signal<"text-white" | "text-slate-900">;
|
|
2700
2703
|
protected focusAreaViewTitleSmallClasses: _angular_core.Signal<"text-slate-600" | "text-slate-400">;
|
|
2701
2704
|
protected statusBadgeClasses(type: 'engaged' | 'interested' | 'not-interested'): string;
|
|
2702
2705
|
protected toolsLabelViewClasses: _angular_core.Signal<"text-slate-600" | "text-slate-400">;
|
|
@@ -2733,7 +2736,7 @@ declare class FocusAreaQuestionComponent {
|
|
|
2733
2736
|
private computeRadioLabelClasses;
|
|
2734
2737
|
protected containerClasses: _angular_core.Signal<"bg-white border-slate-200" | "bg-slate-800 border-slate-700">;
|
|
2735
2738
|
protected contentClasses: _angular_core.Signal<"bg-gradient-to-br from-white to-slate-50" | "bg-gradient-to-br from-slate-800 to-slate-900">;
|
|
2736
|
-
protected titleClasses: _angular_core.Signal<"text-
|
|
2739
|
+
protected titleClasses: _angular_core.Signal<"text-white" | "text-slate-900">;
|
|
2737
2740
|
protected descriptionClasses: _angular_core.Signal<"text-slate-600" | "text-slate-400">;
|
|
2738
2741
|
protected notAnsweredBadgeClasses: _angular_core.Signal<"bg-orange-100 text-orange-700 border border-orange-200" | "bg-orange-900/30 text-orange-400 border border-orange-700">;
|
|
2739
2742
|
protected radioDescriptionClasses: _angular_core.Signal<"text-slate-600" | "text-slate-400">;
|
|
@@ -2768,7 +2771,7 @@ declare class FocusAreaToolsModalComponent {
|
|
|
2768
2771
|
protected backdropClasses: _angular_core.Signal<"bg-black/15" | "bg-black/40">;
|
|
2769
2772
|
protected containerClasses: _angular_core.Signal<"bg-white border border-slate-200" | "bg-slate-800 border border-slate-700">;
|
|
2770
2773
|
protected headerClasses: _angular_core.Signal<"bg-gradient-to-r from-white to-slate-50 border-slate-200" | "bg-gradient-to-r from-slate-800 to-slate-900 border-slate-700">;
|
|
2771
|
-
protected titleClasses: _angular_core.Signal<"text-
|
|
2774
|
+
protected titleClasses: _angular_core.Signal<"text-white" | "text-slate-900">;
|
|
2772
2775
|
protected closeButtonClasses: _angular_core.Signal<"text-slate-500 hover:bg-slate-100 hover:text-slate-700" | "text-slate-400 hover:bg-slate-700 hover:text-slate-200">;
|
|
2773
2776
|
protected labelClasses: _angular_core.Signal<"text-slate-700" | "text-slate-300">;
|
|
2774
2777
|
protected checkboxClasses: _angular_core.Signal<"text-blue-600 border-slate-300 focus:ring-blue-500" | "text-blue-400 border-slate-600 focus:ring-blue-400 bg-slate-700">;
|
|
@@ -3037,7 +3040,7 @@ declare class PacingStatusBadgeComponent implements OnDestroy {
|
|
|
3037
3040
|
private animateValue;
|
|
3038
3041
|
protected displayInfo: _angular_core.Signal<PacingDisplayInfo>;
|
|
3039
3042
|
protected containerClasses: _angular_core.Signal<string>;
|
|
3040
|
-
protected targetRotation: _angular_core.Signal<
|
|
3043
|
+
protected targetRotation: _angular_core.Signal<0 | 1 | -1>;
|
|
3041
3044
|
protected rotationStyle: _angular_core.Signal<string>;
|
|
3042
3045
|
protected fullBadgeRotationStyle: _angular_core.Signal<string>;
|
|
3043
3046
|
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">;
|
|
@@ -3052,7 +3055,7 @@ declare class PacingStatusBadgeComponent implements OnDestroy {
|
|
|
3052
3055
|
protected animatedPercentage: _angular_core.Signal<string>;
|
|
3053
3056
|
protected extractPercentage: _angular_core.Signal<string>;
|
|
3054
3057
|
protected displayTextWithoutPercentage: _angular_core.Signal<string>;
|
|
3055
|
-
protected overlayBadgeClasses: _angular_core.Signal<"bg-
|
|
3058
|
+
protected overlayBadgeClasses: _angular_core.Signal<"bg-emerald-500 text-white" | "bg-red-500 text-white" | "bg-amber-500 text-white" | "bg-emerald-600 text-emerald-50" | "bg-amber-600 text-amber-50" | "bg-red-600 text-red-50">;
|
|
3056
3059
|
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">;
|
|
3057
3060
|
static ɵfac: _angular_core.ɵɵFactoryDeclaration<PacingStatusBadgeComponent, never>;
|
|
3058
3061
|
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>;
|
|
@@ -4233,11 +4236,11 @@ declare class SymphiqProfileFocusAreasAnalysesDashboardComponent {
|
|
|
4233
4236
|
getCardFooterClasses(): string;
|
|
4234
4237
|
protected welcomeBannerContainerClasses: _angular_core.Signal<"bg-white border-slate-200" | "bg-slate-800/50 border-slate-700/50">;
|
|
4235
4238
|
protected welcomeBannerIconClasses: _angular_core.Signal<"bg-purple-500/20 text-purple-400" | "bg-purple-100 text-purple-600">;
|
|
4236
|
-
protected welcomeBannerTitleClasses: _angular_core.Signal<"text-
|
|
4239
|
+
protected welcomeBannerTitleClasses: _angular_core.Signal<"text-white" | "text-slate-900">;
|
|
4237
4240
|
protected welcomeBannerTextClasses: _angular_core.Signal<"text-slate-700" | "text-slate-300">;
|
|
4238
4241
|
protected welcomeBannerHighlightClasses: _angular_core.Signal<"bg-blue-500/10 border-blue-500/30" | "bg-blue-50/50 border-blue-300">;
|
|
4239
|
-
protected welcomeBannerHighlightIconClasses: _angular_core.Signal<"text-blue-
|
|
4240
|
-
protected welcomeBannerHighlightTitleClasses: _angular_core.Signal<"text-
|
|
4242
|
+
protected welcomeBannerHighlightIconClasses: _angular_core.Signal<"text-blue-600" | "text-blue-400">;
|
|
4243
|
+
protected welcomeBannerHighlightTitleClasses: _angular_core.Signal<"text-white" | "text-slate-900">;
|
|
4241
4244
|
protected welcomeBannerHighlightListClasses: _angular_core.Signal<"text-slate-700" | "text-slate-300">;
|
|
4242
4245
|
protected statusComponentContainerClasses: _angular_core.Signal<"bg-slate-50/80 border-slate-200" | "bg-slate-900/40 border-slate-700/50">;
|
|
4243
4246
|
protected statusSectionTitleClasses: _angular_core.Signal<"text-slate-700" | "text-slate-300">;
|
|
@@ -4439,11 +4442,11 @@ declare class SymphiqProfileAnalysisFocusAreaDashboardComponent implements OnIni
|
|
|
4439
4442
|
} | null;
|
|
4440
4443
|
protected handleDisplayModeChange(mode: DisplayModeEnum): void;
|
|
4441
4444
|
protected getAnalysisSubtitle(): string;
|
|
4442
|
-
protected containerClasses: _angular_core.Signal<"text-
|
|
4445
|
+
protected containerClasses: _angular_core.Signal<"text-white" | "text-slate-900">;
|
|
4443
4446
|
protected progressCardClasses: _angular_core.Signal<"bg-white border-slate-200" | "bg-slate-800/40 border-slate-700/50">;
|
|
4444
|
-
protected sectionTitleClasses: _angular_core.Signal<"text-
|
|
4447
|
+
protected sectionTitleClasses: _angular_core.Signal<"text-white" | "text-slate-900">;
|
|
4445
4448
|
protected sectionCardClasses: _angular_core.Signal<"bg-white border border-slate-200" | "bg-slate-800/50 border border-slate-700/50">;
|
|
4446
|
-
protected sectionIconClasses: _angular_core.Signal<"bg-blue-
|
|
4449
|
+
protected sectionIconClasses: _angular_core.Signal<"bg-blue-50 text-blue-600" | "bg-blue-500/20 text-blue-400">;
|
|
4447
4450
|
protected sectionDescriptionClasses: _angular_core.Signal<"text-slate-600" | "text-slate-400">;
|
|
4448
4451
|
private formatGradeInText;
|
|
4449
4452
|
static ɵfac: _angular_core.ɵɵFactoryDeclaration<SymphiqProfileAnalysisFocusAreaDashboardComponent, never>;
|
|
@@ -4575,11 +4578,11 @@ declare class SymphiqProfileAnalysisUnifiedDashboardComponent implements OnChang
|
|
|
4575
4578
|
protected welcomeSubtitleClasses: _angular_core.Signal<string>;
|
|
4576
4579
|
protected welcomeDescriptionClasses: _angular_core.Signal<string>;
|
|
4577
4580
|
protected bannerClasses: _angular_core.Signal<"bg-white border border-slate-200" | "bg-slate-800/50 border border-slate-700/50">;
|
|
4578
|
-
protected sectionTitleClasses: _angular_core.Signal<"text-
|
|
4581
|
+
protected sectionTitleClasses: _angular_core.Signal<"text-white" | "text-slate-900">;
|
|
4579
4582
|
protected textClasses: _angular_core.Signal<"text-slate-700" | "text-slate-300">;
|
|
4580
|
-
protected subheadingClasses: _angular_core.Signal<"text-slate-
|
|
4583
|
+
protected subheadingClasses: _angular_core.Signal<"text-slate-800" | "text-slate-200">;
|
|
4581
4584
|
protected narrativeClasses: _angular_core.Signal<"bg-slate-50 border border-slate-200" | "bg-slate-900/50 border border-slate-700">;
|
|
4582
|
-
protected goalTitleClasses: _angular_core.Signal<"text-
|
|
4585
|
+
protected goalTitleClasses: _angular_core.Signal<"text-white" | "text-slate-900">;
|
|
4583
4586
|
protected goalDescriptionClasses: _angular_core.Signal<"text-slate-600" | "text-slate-400">;
|
|
4584
4587
|
protected timeframeBadgeClasses: _angular_core.Signal<"bg-slate-100 text-slate-600" | "bg-slate-700 text-slate-300">;
|
|
4585
4588
|
protected cardBorderClasses: _angular_core.Signal<"border-slate-200" | "border-slate-700">;
|
|
@@ -4587,12 +4590,12 @@ declare class SymphiqProfileAnalysisUnifiedDashboardComponent implements OnChang
|
|
|
4587
4590
|
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">;
|
|
4588
4591
|
protected timelineContainerClasses: _angular_core.Signal<"bg-white border border-slate-200" | "bg-slate-800/50 border border-slate-700/50">;
|
|
4589
4592
|
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">;
|
|
4590
|
-
protected timelineItemTitleClasses: _angular_core.Signal<"text-
|
|
4593
|
+
protected timelineItemTitleClasses: _angular_core.Signal<"text-white" | "text-slate-900">;
|
|
4591
4594
|
protected timeframeDisplayClasses: _angular_core.Signal<"text-slate-600" | "text-slate-400">;
|
|
4592
4595
|
protected objectivesLabelClasses: _angular_core.Signal<string>;
|
|
4593
4596
|
protected objectiveItemClasses: _angular_core.Signal<"text-slate-700" | "text-slate-300">;
|
|
4594
4597
|
protected moreObjectivesClasses: _angular_core.Signal<"text-slate-400" | "text-slate-500">;
|
|
4595
|
-
protected phaseIndicatorClasses: _angular_core.Signal<"text-blue-
|
|
4598
|
+
protected phaseIndicatorClasses: _angular_core.Signal<"text-blue-600" | "text-blue-400">;
|
|
4596
4599
|
protected matrixContainerClasses: _angular_core.Signal<"bg-white border border-slate-200" | "bg-slate-800/50 border border-slate-700/50">;
|
|
4597
4600
|
protected matrixAxisLabelClasses: _angular_core.Signal<"text-slate-400" | "text-slate-500">;
|
|
4598
4601
|
protected quadrantTitleClasses: _angular_core.Signal<"text-white" | "text-slate-800">;
|
|
@@ -4600,8 +4603,8 @@ declare class SymphiqProfileAnalysisUnifiedDashboardComponent implements OnChang
|
|
|
4600
4603
|
protected sourceIndicatorClasses: _angular_core.Signal<"bg-slate-200 text-slate-600 px-1.5 py-0.5 rounded-full" | "bg-slate-600 text-slate-300 px-1.5 py-0.5 rounded-full">;
|
|
4601
4604
|
protected moreGoalsClasses: _angular_core.Signal<"text-slate-400" | "text-slate-500">;
|
|
4602
4605
|
protected emptyQuadrantClasses: _angular_core.Signal<"text-slate-400 italic" | "text-slate-500 italic">;
|
|
4603
|
-
protected stepTitleClasses: _angular_core.Signal<"text-
|
|
4604
|
-
protected stepDescriptionClasses: _angular_core.Signal<"text-slate-
|
|
4606
|
+
protected stepTitleClasses: _angular_core.Signal<"text-white" | "text-slate-900">;
|
|
4607
|
+
protected stepDescriptionClasses: _angular_core.Signal<"text-slate-300" | "text-slate-600">;
|
|
4605
4608
|
protected stepBorderClasses: _angular_core.Signal<"border-slate-200" | "border-slate-700">;
|
|
4606
4609
|
protected strategiesLabelClasses: _angular_core.Signal<"text-slate-400" | "text-slate-500">;
|
|
4607
4610
|
protected strategyItemClasses: _angular_core.Signal<"text-slate-700" | "text-slate-300">;
|
|
@@ -4752,8 +4755,8 @@ declare class SymphiqProfileMetricsAnalysesDashboardComponent {
|
|
|
4752
4755
|
handleSearchClick(): void;
|
|
4753
4756
|
handleCloseSearchModal(): void;
|
|
4754
4757
|
protected welcomeBannerContainerClasses: _angular_core.Signal<"bg-white border-slate-200" | "bg-slate-800/50 border-slate-700/50">;
|
|
4755
|
-
protected welcomeBannerIconClasses: _angular_core.Signal<"bg-blue-
|
|
4756
|
-
protected welcomeBannerTitleClasses: _angular_core.Signal<"text-
|
|
4758
|
+
protected welcomeBannerIconClasses: _angular_core.Signal<"bg-blue-500/20 text-blue-400" | "bg-blue-100 text-blue-600">;
|
|
4759
|
+
protected welcomeBannerTitleClasses: _angular_core.Signal<"text-white" | "text-slate-900">;
|
|
4757
4760
|
protected welcomeBannerTextClasses: _angular_core.Signal<"text-slate-700" | "text-slate-300">;
|
|
4758
4761
|
private getIconForMetric;
|
|
4759
4762
|
private getMetricDescription;
|
|
@@ -5034,18 +5037,18 @@ declare class FocusAreaExecutiveSummaryComponent {
|
|
|
5034
5037
|
protected readonly IconSourceEnum: typeof IconSourceEnum;
|
|
5035
5038
|
protected isLight: _angular_core.Signal<boolean>;
|
|
5036
5039
|
protected bannerClasses: _angular_core.Signal<"bg-white border border-slate-200" | "bg-slate-800/50 border border-slate-700/50">;
|
|
5037
|
-
protected sectionTitleClasses: _angular_core.Signal<"text-
|
|
5038
|
-
protected subheadingClasses: _angular_core.Signal<"text-slate-
|
|
5040
|
+
protected sectionTitleClasses: _angular_core.Signal<"text-white" | "text-slate-900">;
|
|
5041
|
+
protected subheadingClasses: _angular_core.Signal<"text-slate-800" | "text-slate-200">;
|
|
5039
5042
|
protected textClasses: _angular_core.Signal<"text-slate-700" | "text-slate-300">;
|
|
5040
5043
|
protected narrativeClasses: _angular_core.Signal<"bg-slate-50 border border-slate-200" | "bg-slate-900/30 border border-slate-700/50">;
|
|
5041
5044
|
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">;
|
|
5042
5045
|
protected topPrioritiesStatLabelClasses: _angular_core.Signal<"text-purple-400" | "text-purple-700">;
|
|
5043
5046
|
protected topPrioritiesStatValueClasses: _angular_core.Signal<"text-purple-900" | "text-purple-100">;
|
|
5044
5047
|
protected topPrioritiesButtonTextClasses: _angular_core.Signal<"text-purple-400" | "text-purple-700">;
|
|
5045
|
-
protected quickWinsStatCardClasses: _angular_core.Signal<"bg-blue-
|
|
5046
|
-
protected quickWinsStatLabelClasses: _angular_core.Signal<"text-blue-
|
|
5047
|
-
protected quickWinsStatValueClasses: _angular_core.Signal<"text-blue-
|
|
5048
|
-
protected quickWinsButtonTextClasses: _angular_core.Signal<"text-blue-
|
|
5048
|
+
protected quickWinsStatCardClasses: _angular_core.Signal<"bg-blue-50 border-2 border-blue-200 hover:border-blue-400 hover:shadow-lg hover:shadow-blue-100/50" | "bg-blue-500/10 border-2 border-blue-500/30 hover:border-blue-400/50 hover:shadow-lg hover:shadow-blue-500/10">;
|
|
5049
|
+
protected quickWinsStatLabelClasses: _angular_core.Signal<"text-blue-400" | "text-blue-700">;
|
|
5050
|
+
protected quickWinsStatValueClasses: _angular_core.Signal<"text-blue-900" | "text-blue-100">;
|
|
5051
|
+
protected quickWinsButtonTextClasses: _angular_core.Signal<"text-blue-400" | "text-blue-700">;
|
|
5049
5052
|
protected onTopPrioritiesClick(): void;
|
|
5050
5053
|
protected onPriorityDetailClick(event: {
|
|
5051
5054
|
priority: FocusAreaTopPriorityInterface;
|
|
@@ -5084,22 +5087,22 @@ declare class MetricExecutiveSummaryComponent {
|
|
|
5084
5087
|
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">;
|
|
5085
5088
|
protected titleClasses: _angular_core.Signal<"text-slate-900" | "text-slate-100">;
|
|
5086
5089
|
protected textClasses: _angular_core.Signal<"text-slate-700" | "text-slate-300">;
|
|
5087
|
-
protected iconClasses: _angular_core.Signal<"text-blue-
|
|
5090
|
+
protected iconClasses: _angular_core.Signal<"text-blue-600" | "text-blue-400">;
|
|
5088
5091
|
protected healthBadgeClasses: _angular_core.Signal<string>;
|
|
5089
5092
|
protected pacingBadgeClasses: _angular_core.Signal<string>;
|
|
5090
5093
|
protected metricCardClasses: _angular_core.Signal<"bg-white border border-slate-200" | "bg-slate-800/50 border border-slate-700/50">;
|
|
5091
|
-
protected viewDetailsTextClasses: _angular_core.Signal<"text-blue-
|
|
5092
|
-
protected viewDetailsButtonClasses: _angular_core.Signal<"bg-blue-
|
|
5094
|
+
protected viewDetailsTextClasses: _angular_core.Signal<"text-blue-600" | "text-blue-400">;
|
|
5095
|
+
protected viewDetailsButtonClasses: _angular_core.Signal<"bg-blue-50 text-blue-700 border border-blue-200 hover:bg-blue-100" | "bg-blue-500/20 text-blue-300 border border-blue-500/40 hover:bg-blue-500/30">;
|
|
5093
5096
|
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">;
|
|
5094
5097
|
protected metricLabelClasses: _angular_core.Signal<"text-slate-600" | "text-slate-400">;
|
|
5095
5098
|
protected metricValueClasses: _angular_core.Signal<"text-slate-900" | "text-slate-100">;
|
|
5096
|
-
protected yoyChangeClasses: _angular_core.Signal<"text-slate-600" | "text-slate-400" | "text-emerald-600" | "text-emerald-400" | "text-red-
|
|
5099
|
+
protected yoyChangeClasses: _angular_core.Signal<"text-slate-600" | "text-slate-400" | "text-emerald-600" | "text-emerald-400" | "text-red-400" | "text-red-600">;
|
|
5097
5100
|
protected getYoyIcon(): string;
|
|
5098
5101
|
protected getPacingValueClasses(): string;
|
|
5099
5102
|
protected getHealthValueClasses(): string;
|
|
5100
5103
|
protected healthDescriptionClasses: _angular_core.Signal<"text-slate-400" | "text-slate-500">;
|
|
5101
5104
|
protected narrativeClasses: _angular_core.Signal<"bg-white border border-slate-200" | "bg-slate-800/50 border border-slate-600/20">;
|
|
5102
|
-
protected narrativeTitleClasses: _angular_core.Signal<"text-slate-
|
|
5105
|
+
protected narrativeTitleClasses: _angular_core.Signal<"text-slate-800" | "text-slate-200">;
|
|
5103
5106
|
protected narrativeTextClasses: _angular_core.Signal<"text-slate-600" | "text-slate-400">;
|
|
5104
5107
|
protected sectionTitleClasses: _angular_core.Signal<"text-slate-900" | "text-slate-100">;
|
|
5105
5108
|
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">;
|
|
@@ -5107,7 +5110,7 @@ declare class MetricExecutiveSummaryComponent {
|
|
|
5107
5110
|
protected priorityTitleClasses: _angular_core.Signal<"text-slate-900" | "text-slate-100">;
|
|
5108
5111
|
protected priorityTextClasses: _angular_core.Signal<"text-slate-700" | "text-slate-300">;
|
|
5109
5112
|
protected impactBoxClasses: _angular_core.Signal<"bg-slate-800/30 border border-slate-700/30" | "bg-slate-50/50 border border-slate-200">;
|
|
5110
|
-
protected impactLabelClasses: _angular_core.Signal<"text-blue-
|
|
5113
|
+
protected impactLabelClasses: _angular_core.Signal<"text-blue-600" | "text-blue-400">;
|
|
5111
5114
|
protected impactTextClasses: _angular_core.Signal<"text-slate-600" | "text-slate-400">;
|
|
5112
5115
|
protected quickWinCardClasses: _angular_core.Signal<"bg-white border border-slate-200" | "bg-slate-800/50 border border-slate-700/50">;
|
|
5113
5116
|
protected numberBadgeClasses: _angular_core.Signal<"bg-blue-500/20 text-blue-300" | "bg-blue-100 text-blue-800">;
|
|
@@ -5634,14 +5637,14 @@ declare class SearchModalComponent {
|
|
|
5634
5637
|
clearButtonClass: _angular_core.Signal<"bg-slate-100 text-slate-600 hover:bg-slate-200" | "bg-slate-700 text-slate-300 hover:bg-slate-600">;
|
|
5635
5638
|
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">;
|
|
5636
5639
|
resultsContainerClass: _angular_core.Signal<"border-slate-200" | "border-slate-700">;
|
|
5637
|
-
resultTitleClass: _angular_core.Signal<"text-
|
|
5640
|
+
resultTitleClass: _angular_core.Signal<"text-white" | "text-slate-900">;
|
|
5638
5641
|
resultDescClass: _angular_core.Signal<"text-slate-600" | "text-slate-400">;
|
|
5639
5642
|
breadcrumbClass: _angular_core.Signal<string>;
|
|
5640
5643
|
typeBadgeClass: _angular_core.Signal<"bg-slate-100 text-slate-600" | "bg-slate-700 text-slate-300">;
|
|
5641
5644
|
arrowClass: _angular_core.Signal<"text-slate-400" | "text-slate-500">;
|
|
5642
5645
|
emptyStateClass: _angular_core.Signal<"border-slate-200" | "border-slate-700">;
|
|
5643
|
-
emptyIconClass: _angular_core.Signal<"text-slate-
|
|
5644
|
-
emptyTitleClass: _angular_core.Signal<"text-
|
|
5646
|
+
emptyIconClass: _angular_core.Signal<"text-slate-300" | "text-slate-600">;
|
|
5647
|
+
emptyTitleClass: _angular_core.Signal<"text-white" | "text-slate-900">;
|
|
5645
5648
|
emptyDescClass: _angular_core.Signal<"text-slate-600" | "text-slate-400">;
|
|
5646
5649
|
shortcutsClass: _angular_core.Signal<"bg-slate-900/50 border-slate-700" | "bg-slate-50 border-slate-200">;
|
|
5647
5650
|
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">;
|
|
@@ -5685,7 +5688,7 @@ declare class DashboardHeaderComponent implements OnInit {
|
|
|
5685
5688
|
protected onTitleMouseLeave(): void;
|
|
5686
5689
|
formattedGeneratedDate: _angular_core.Signal<string>;
|
|
5687
5690
|
formatDate(dateString: string): string;
|
|
5688
|
-
headerTitleClass: _angular_core.Signal<"text-
|
|
5691
|
+
headerTitleClass: _angular_core.Signal<"text-white" | "text-slate-900">;
|
|
5689
5692
|
metaLabelClass: _angular_core.Signal<"text-slate-600" | "text-slate-500">;
|
|
5690
5693
|
protected getHeaderClasses(): string;
|
|
5691
5694
|
protected getMainTitleClasses(): string;
|
|
@@ -5702,7 +5705,7 @@ declare class GradeBadgeComponent {
|
|
|
5702
5705
|
gradeRationale: _angular_core.InputSignal<string>;
|
|
5703
5706
|
label: _angular_core.InputSignal<string>;
|
|
5704
5707
|
viewMode: _angular_core.InputSignal<ViewModeEnum>;
|
|
5705
|
-
tooltipPosition: _angular_core.InputSignal<"top" | "
|
|
5708
|
+
tooltipPosition: _angular_core.InputSignal<"top" | "left" | "right" | "bottom">;
|
|
5706
5709
|
isLightMode: _angular_core.Signal<boolean>;
|
|
5707
5710
|
formattedGrade: _angular_core.Signal<string>;
|
|
5708
5711
|
shouldPulse: _angular_core.Signal<boolean>;
|
|
@@ -5812,24 +5815,24 @@ declare class ConfidenceLevelCardComponent implements OnInit, OnDestroy {
|
|
|
5812
5815
|
protected titleClasses: _angular_core.Signal<"text-white" | "bg-gradient-to-r from-slate-700 to-slate-900 bg-clip-text text-transparent">;
|
|
5813
5816
|
protected subtitleClasses: _angular_core.Signal<"text-slate-600" | "text-slate-400">;
|
|
5814
5817
|
protected gradeBadgeContainerClasses: _angular_core.Signal<string>;
|
|
5815
|
-
protected glowEffectClasses: _angular_core.Signal<"bg-
|
|
5818
|
+
protected glowEffectClasses: _angular_core.Signal<"bg-red-500" | "bg-blue-500" | "bg-emerald-500" | "bg-orange-500">;
|
|
5816
5819
|
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)]">;
|
|
5817
|
-
protected gradeLabelClasses: _angular_core.Signal<"text-emerald-700" | "text-
|
|
5820
|
+
protected gradeLabelClasses: _angular_core.Signal<"text-emerald-700" | "text-red-700" | "text-blue-700" | "text-orange-700" | "text-red-300" | "text-blue-300" | "text-emerald-300" | "text-orange-300">;
|
|
5818
5821
|
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">;
|
|
5819
5822
|
protected descriptionClasses: _angular_core.Signal<"text-slate-700" | "text-slate-300">;
|
|
5820
5823
|
protected progressLabelClasses: _angular_core.Signal<"text-slate-700" | "text-slate-300">;
|
|
5821
|
-
protected progressValueClasses: _angular_core.Signal<"text-
|
|
5824
|
+
protected progressValueClasses: _angular_core.Signal<"text-blue-600" | "text-blue-400" | "text-emerald-600" | "text-emerald-400" | "text-red-400" | "text-red-600" | "text-orange-600" | "text-orange-400">;
|
|
5822
5825
|
protected progressTrackClasses: _angular_core.Signal<"bg-slate-700/50 shadow-inner" | "bg-slate-200 shadow-inner">;
|
|
5823
5826
|
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">;
|
|
5824
5827
|
protected shimmerClasses: _angular_core.Signal<string>;
|
|
5825
5828
|
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">;
|
|
5826
5829
|
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">;
|
|
5827
5830
|
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">;
|
|
5828
|
-
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-
|
|
5831
|
+
protected nextStepBadgeClasses: _angular_core.Signal<"bg-blue-500/20 text-blue-400" | "bg-red-100 text-red-700" | "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-500/20 text-red-400">;
|
|
5829
5832
|
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">;
|
|
5830
|
-
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-
|
|
5833
|
+
protected currentStepBadgeClasses: _angular_core.Signal<"bg-blue-500/20 text-blue-400" | "bg-red-100 text-red-700" | "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-500/20 text-red-400">;
|
|
5831
5834
|
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">;
|
|
5832
|
-
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-
|
|
5835
|
+
protected nextDashboardBadgeClasses: _angular_core.Signal<"bg-blue-50 text-blue-600" | "bg-emerald-500/10 text-emerald-500" | "bg-emerald-50 text-emerald-600" | "bg-blue-500/10 text-blue-500" | "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">;
|
|
5833
5836
|
static ɵfac: _angular_core.ɵɵFactoryDeclaration<ConfidenceLevelCardComponent, never>;
|
|
5834
5837
|
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; }; "targets": { "alias": "targets"; "required": false; "isSignal": true; }; "isCurrentStepComplete": { "alias": "isCurrentStepComplete"; "required": false; "isSignal": true; }; }, {}, never, never, true, never>;
|
|
5835
5838
|
}
|
|
@@ -5907,11 +5910,11 @@ declare class IndeterminateSpinnerComponent {
|
|
|
5907
5910
|
viewMode: _angular_core.InputSignal<ViewModeEnum>;
|
|
5908
5911
|
size: _angular_core.InputSignal<SpinnerSize>;
|
|
5909
5912
|
color: _angular_core.InputSignal<string | undefined>;
|
|
5910
|
-
svgSize: _angular_core.Signal<
|
|
5913
|
+
svgSize: _angular_core.Signal<60 | 40 | 80>;
|
|
5911
5914
|
circleRadius: _angular_core.Signal<16 | 36 | 26>;
|
|
5912
5915
|
svgCircleRadius: _angular_core.Signal<number>;
|
|
5913
|
-
strokeWidth: _angular_core.Signal<
|
|
5914
|
-
dotSize: _angular_core.Signal<5 |
|
|
5916
|
+
strokeWidth: _angular_core.Signal<2 | 3 | 2.5>;
|
|
5917
|
+
dotSize: _angular_core.Signal<5 | 7 | 10>;
|
|
5915
5918
|
containerClasses: _angular_core.Signal<{
|
|
5916
5919
|
'w-10 h-10': boolean;
|
|
5917
5920
|
'w-[60px] h-[60px]': boolean;
|
|
@@ -5953,12 +5956,23 @@ declare class UserDisplayComponent {
|
|
|
5953
5956
|
avatarSize: _angular_core.InputSignal<AvatarSize>;
|
|
5954
5957
|
showEmail: _angular_core.InputSignal<boolean>;
|
|
5955
5958
|
protected displayName: _angular_core.Signal<string>;
|
|
5956
|
-
protected nameClasses: _angular_core.Signal<"text-
|
|
5959
|
+
protected nameClasses: _angular_core.Signal<"text-white" | "text-slate-900">;
|
|
5957
5960
|
protected emailClasses: _angular_core.Signal<"text-slate-400" | "text-slate-500">;
|
|
5958
5961
|
static ɵfac: _angular_core.ɵɵFactoryDeclaration<UserDisplayComponent, never>;
|
|
5959
5962
|
static ɵcmp: _angular_core.ɵɵComponentDeclaration<UserDisplayComponent, "symphiq-user-display", never, { "viewMode": { "alias": "viewMode"; "required": false; "isSignal": true; }; "user": { "alias": "user"; "required": false; "isSignal": true; }; "avatarSize": { "alias": "avatarSize"; "required": false; "isSignal": true; }; "showEmail": { "alias": "showEmail"; "required": false; "isSignal": true; }; }, {}, never, never, true, never>;
|
|
5960
5963
|
}
|
|
5961
5964
|
|
|
5965
|
+
declare class ReviewButtonComponent {
|
|
5966
|
+
viewMode: _angular_core.InputSignal<ViewModeEnum>;
|
|
5967
|
+
label: _angular_core.InputSignal<string>;
|
|
5968
|
+
buttonClick: _angular_core.OutputEmitterRef<void>;
|
|
5969
|
+
protected isDark: _angular_core.Signal<boolean>;
|
|
5970
|
+
protected buttonClasses: _angular_core.Signal<string>;
|
|
5971
|
+
protected onClick(event: Event): void;
|
|
5972
|
+
static ɵfac: _angular_core.ɵɵFactoryDeclaration<ReviewButtonComponent, never>;
|
|
5973
|
+
static ɵcmp: _angular_core.ɵɵComponentDeclaration<ReviewButtonComponent, "symphiq-review-button", never, { "viewMode": { "alias": "viewMode"; "required": false; "isSignal": true; }; "label": { "alias": "label"; "required": false; "isSignal": true; }; }, { "buttonClick": "buttonClick"; }, never, never, true, never>;
|
|
5974
|
+
}
|
|
5975
|
+
|
|
5962
5976
|
declare class ChartContainerComponent {
|
|
5963
5977
|
chart: _angular_core.InputSignal<AiChartInterface>;
|
|
5964
5978
|
isLightMode: _angular_core.InputSignal<boolean>;
|
|
@@ -5972,10 +5986,10 @@ declare class ChartContainerComponent {
|
|
|
5972
5986
|
protected ChartTypeEnum: typeof ChartTypeEnum;
|
|
5973
5987
|
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">;
|
|
5974
5988
|
headerClass: _angular_core.Signal<"border-slate-200" | "border-slate-700">;
|
|
5975
|
-
titleClass: _angular_core.Signal<"text-
|
|
5989
|
+
titleClass: _angular_core.Signal<"text-white" | "text-slate-900">;
|
|
5976
5990
|
descriptionClass: _angular_core.Signal<"text-slate-600" | "text-slate-400">;
|
|
5977
5991
|
iconClass: _angular_core.Signal<"text-slate-400 group-hover:text-blue-500" | "text-slate-500 group-hover:text-blue-400">;
|
|
5978
|
-
chartIconClass: _angular_core.Signal<"bg-blue-
|
|
5992
|
+
chartIconClass: _angular_core.Signal<"bg-blue-500/20 text-blue-400" | "bg-blue-100 text-blue-600">;
|
|
5979
5993
|
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">;
|
|
5980
5994
|
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">;
|
|
5981
5995
|
isCollapsible: _angular_core.Signal<boolean>;
|
|
@@ -6039,7 +6053,7 @@ declare class BarChartComponent implements OnInit, AfterViewInit, OnDestroy {
|
|
|
6039
6053
|
showAxisLabels: _angular_core.InputSignal<boolean>;
|
|
6040
6054
|
viewMode: _angular_core.InputSignal<ViewModeEnum>;
|
|
6041
6055
|
currencySymbol: _angular_core.InputSignal<string>;
|
|
6042
|
-
chartHeight: _angular_core.Signal<"
|
|
6056
|
+
chartHeight: _angular_core.Signal<"175px" | "500px">;
|
|
6043
6057
|
cursorColor: _angular_core.Signal<9741240 | 16777215>;
|
|
6044
6058
|
tooltipTextColor: _angular_core.Signal<0 | 16777215>;
|
|
6045
6059
|
chartHash: _angular_core.Signal<string>;
|
|
@@ -6076,7 +6090,7 @@ declare class PieChartComponent implements OnInit, AfterViewInit, OnDestroy {
|
|
|
6076
6090
|
showAxisLabels: _angular_core.InputSignal<boolean>;
|
|
6077
6091
|
viewMode: _angular_core.InputSignal<ViewModeEnum>;
|
|
6078
6092
|
currencySymbol: _angular_core.InputSignal<string>;
|
|
6079
|
-
chartHeight: _angular_core.Signal<"
|
|
6093
|
+
chartHeight: _angular_core.Signal<"200px" | "500px">;
|
|
6080
6094
|
chartHash: _angular_core.Signal<string>;
|
|
6081
6095
|
chartDiv: ElementRef;
|
|
6082
6096
|
private root?;
|
|
@@ -6158,7 +6172,7 @@ declare class TooltipContainerComponent implements AfterViewInit, OnDestroy {
|
|
|
6158
6172
|
isVisible: _angular_core.Signal<boolean>;
|
|
6159
6173
|
tooltipType: _angular_core.Signal<string | null>;
|
|
6160
6174
|
tooltipContent: _angular_core.Signal<string | Record<string, unknown> | undefined>;
|
|
6161
|
-
tooltipPosition: _angular_core.Signal<"
|
|
6175
|
+
tooltipPosition: _angular_core.Signal<"auto" | "top" | "left" | "right" | "bottom">;
|
|
6162
6176
|
targetRect: _angular_core.Signal<DOMRect | null>;
|
|
6163
6177
|
mousePosition: _angular_core.Signal<{
|
|
6164
6178
|
x: number;
|
|
@@ -6313,11 +6327,11 @@ declare class FocusAreaDetailCardComponent {
|
|
|
6313
6327
|
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">;
|
|
6314
6328
|
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">;
|
|
6315
6329
|
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">;
|
|
6316
|
-
protected expandedIconClasses: _angular_core.Signal<"text-blue-
|
|
6330
|
+
protected expandedIconClasses: _angular_core.Signal<"text-blue-600" | "text-blue-400">;
|
|
6317
6331
|
protected expandedTitleClasses: _angular_core.Signal<"text-sm font-semibold text-white" | "text-sm font-semibold text-slate-900">;
|
|
6318
6332
|
protected insightItemClasses: _angular_core.Signal<"text-sm text-slate-300 leading-relaxed flex" | "text-sm text-slate-600 leading-relaxed flex">;
|
|
6319
6333
|
protected expandButtonClasses: _angular_core.Signal<"text-sm font-medium text-blue-400" | "text-sm font-medium text-blue-600">;
|
|
6320
|
-
protected chevronClasses: _angular_core.Signal<"text-blue-
|
|
6334
|
+
protected chevronClasses: _angular_core.Signal<"text-blue-600" | "text-blue-400">;
|
|
6321
6335
|
protected toggleExpanded(): void;
|
|
6322
6336
|
protected toggleCompetitiveGap(): void;
|
|
6323
6337
|
onExpandItem(event: Event): void;
|
|
@@ -6393,11 +6407,11 @@ declare class CompetitorAnalysisCardComponent {
|
|
|
6393
6407
|
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">;
|
|
6394
6408
|
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">;
|
|
6395
6409
|
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">;
|
|
6396
|
-
protected expandedIconClasses: _angular_core.Signal<"text-blue-
|
|
6410
|
+
protected expandedIconClasses: _angular_core.Signal<"text-blue-600" | "text-blue-400">;
|
|
6397
6411
|
protected expandedTitleClasses: _angular_core.Signal<"text-sm font-semibold text-white" | "text-sm font-semibold text-slate-900">;
|
|
6398
6412
|
protected expandedTextClasses: _angular_core.Signal<"text-sm text-slate-300 leading-relaxed" | "text-sm text-slate-600 leading-relaxed">;
|
|
6399
6413
|
protected expandButtonClasses: _angular_core.Signal<"text-sm font-medium text-blue-400" | "text-sm font-medium text-blue-600">;
|
|
6400
|
-
protected chevronClasses: _angular_core.Signal<"text-blue-
|
|
6414
|
+
protected chevronClasses: _angular_core.Signal<"text-blue-600" | "text-blue-400">;
|
|
6401
6415
|
protected toggleExpanded(): void;
|
|
6402
6416
|
protected navigateToItem(item: ProfileItemInterface): void;
|
|
6403
6417
|
onExpandItem(event: Event): void;
|
|
@@ -6669,6 +6683,6 @@ declare function validateRevenueTarget(targetRevenue: number, calculations: Metr
|
|
|
6669
6683
|
withinTolerance: boolean;
|
|
6670
6684
|
};
|
|
6671
6685
|
|
|
6672
|
-
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, GoalActionStateEnum, GoalActionStateService, 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 };
|
|
6686
|
+
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, GoalActionStateEnum, GoalActionStateService, 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, ReviewButtonComponent, 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 };
|
|
6673
6687
|
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, GoalActionStatesMap, GoalActionStatesOutput, GoalBusinessInsightsListModalData, GoalDetailModalData, GoalInsightsListModalData, GoalObjectivesModalData, HeaderScrollConfig, ItemDetailModalData, JourneyStep$1 as JourneyStep, KeyStrengthDetailModalData, KeyStrengthsListModalData, LayoutMode, Metric, MetricAnalysisNavigationData, MetricTargetCalculation, MetricTargetWithPrecision, MetricsListModalData, ModalState, NavSection, NavigationState, ObjectiveStrategiesModalData, OpportunityDetailModalData, PriorityActionItemInterface, PriorityActionsListModalData, 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, UnifiedGoalRelatedMetricsModalData, ViewMode, ViewportBounds, VisualizationData, VisualizationType };
|
|
6674
6688
|
//# sourceMappingURL=symphiq-components.d.ts.map
|