@eric-emg/symphiq-components 1.3.77 → 1.3.78
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/fesm2022/symphiq-components.mjs +1431 -318
- package/fesm2022/symphiq-components.mjs.map +1 -1
- package/package.json +1 -1
- package/styles.css +116 -0
- package/types/symphiq-components.d.ts +131 -86
- package/types/symphiq-components.d.ts.map +1 -1
|
@@ -94,6 +94,8 @@ interface ObjectiveStrategiesModalData {
|
|
|
94
94
|
objective: ObjectiveV3Interface;
|
|
95
95
|
goalTitle?: string;
|
|
96
96
|
viewMode: ViewModeEnum;
|
|
97
|
+
sourceAnalysisType?: ProfileAnalysisTypeEnum;
|
|
98
|
+
sourceTypeTitle?: string;
|
|
97
99
|
}
|
|
98
100
|
interface StrategyRecommendationsModalData {
|
|
99
101
|
strategy: StrategyV3Interface;
|
|
@@ -101,6 +103,8 @@ interface StrategyRecommendationsModalData {
|
|
|
101
103
|
goalTitle?: string;
|
|
102
104
|
viewMode: ViewModeEnum;
|
|
103
105
|
expandedRecommendationId?: string;
|
|
106
|
+
sourceAnalysisType?: ProfileAnalysisTypeEnum;
|
|
107
|
+
sourceTypeTitle?: string;
|
|
104
108
|
}
|
|
105
109
|
interface CategoryDetailModalData {
|
|
106
110
|
category: OperationalCategoryInterface;
|
|
@@ -293,6 +297,7 @@ interface UnifiedGoalDetailModalData {
|
|
|
293
297
|
allMetrics: PerformanceMetricInterface[];
|
|
294
298
|
allCharts: AiChartInterface[];
|
|
295
299
|
allInsights?: InsightBlockInterface[];
|
|
300
|
+
allBusinessInsights?: ProfileAnalysisRecommendationInterface[];
|
|
296
301
|
loadedSourceAnalysisIds: string[];
|
|
297
302
|
loadingSourceAnalysisId?: string;
|
|
298
303
|
viewMode: ViewModeEnum;
|
|
@@ -302,6 +307,7 @@ interface UnifiedGoalObjectivesModalData {
|
|
|
302
307
|
allMetrics: PerformanceMetricInterface[];
|
|
303
308
|
allCharts: AiChartInterface[];
|
|
304
309
|
allInsights?: InsightBlockInterface[];
|
|
310
|
+
allBusinessInsights?: ProfileAnalysisRecommendationInterface[];
|
|
305
311
|
viewMode: ViewModeEnum;
|
|
306
312
|
}
|
|
307
313
|
interface UnifiedGoalRelatedMetricsModalData {
|
|
@@ -525,7 +531,7 @@ declare class ModalService {
|
|
|
525
531
|
navigateToFocusAreaGapDetail(gap: CategoryGapInterface, categoryTitle: string, viewMode: ViewModeEnum): void;
|
|
526
532
|
openFocusAreaOpportunitiesListModal(opportunities: CategoryOpportunityInterface[], viewMode: ViewModeEnum, categoryTitle: string): void;
|
|
527
533
|
navigateToFocusAreaOpportunityDetail(opportunity: CategoryOpportunityInterface, categoryTitle: string, viewMode: ViewModeEnum): void;
|
|
528
|
-
openUnifiedGoalModal(goal: UnifiedGoalInterface, allMetrics: PerformanceMetricInterface[], allCharts: AiChartInterface[], loadedSourceAnalysisIds: string[], viewMode: ViewModeEnum, loadingSourceAnalysisId?: string, previousState?: ModalState | null, allInsights?: InsightBlockInterface[]): void;
|
|
534
|
+
openUnifiedGoalModal(goal: UnifiedGoalInterface, allMetrics: PerformanceMetricInterface[], allCharts: AiChartInterface[], loadedSourceAnalysisIds: string[], viewMode: ViewModeEnum, loadingSourceAnalysisId?: string, previousState?: ModalState | null, allInsights?: InsightBlockInterface[], allBusinessInsights?: ProfileAnalysisRecommendationInterface[]): void;
|
|
529
535
|
openUnifiedStrategyRecommendationsModal(strategy: StrategyV3Interface, objective: ObjectiveV3Interface, goal: UnifiedGoalInterface, allMetrics: PerformanceMetricInterface[], allCharts: AiChartInterface[], viewMode: ViewModeEnum, expandedRecommendationId?: string, previousState?: ModalState): void;
|
|
530
536
|
navigateToUnifiedGoalObjectives(goal: UnifiedGoalInterface, allMetrics: PerformanceMetricInterface[], allCharts: AiChartInterface[], viewMode: ViewModeEnum): void;
|
|
531
537
|
navigateToUnifiedGoalRelatedMetrics(goal: UnifiedGoalInterface, contributingMetrics: PerformanceMetricInterface[], allCharts: AiChartInterface[], viewMode: ViewModeEnum): void;
|
|
@@ -1138,6 +1144,40 @@ declare class DataLoaderService {
|
|
|
1138
1144
|
static ɵprov: _angular_core.ɵɵInjectableDeclaration<DataLoaderService>;
|
|
1139
1145
|
}
|
|
1140
1146
|
|
|
1147
|
+
declare enum GoalActionStateEnum {
|
|
1148
|
+
PLAN = "PLAN",
|
|
1149
|
+
POTENTIAL = "POTENTIAL",
|
|
1150
|
+
SKIP = "SKIP"
|
|
1151
|
+
}
|
|
1152
|
+
interface GoalActionStatesMap {
|
|
1153
|
+
[unifiedGoalId: string]: GoalActionStateEnum;
|
|
1154
|
+
}
|
|
1155
|
+
interface GoalActionStatesOutput {
|
|
1156
|
+
goalStates: GoalActionStatesMap;
|
|
1157
|
+
completedCount: number;
|
|
1158
|
+
totalCount: number;
|
|
1159
|
+
}
|
|
1160
|
+
declare class GoalActionStateService {
|
|
1161
|
+
private statesSignal;
|
|
1162
|
+
private stateChangesSubject;
|
|
1163
|
+
readonly states: _angular_core.Signal<GoalActionStatesMap>;
|
|
1164
|
+
readonly stateChanges$: rxjs.Observable<GoalActionStatesMap>;
|
|
1165
|
+
constructor();
|
|
1166
|
+
getState(goalId: string): GoalActionStateEnum | undefined;
|
|
1167
|
+
setState(goalId: string, state: GoalActionStateEnum): void;
|
|
1168
|
+
getAllStates(): GoalActionStatesMap;
|
|
1169
|
+
getStatesByGoalIds(ids: string[]): GoalActionStatesMap;
|
|
1170
|
+
clearState(goalId: string): void;
|
|
1171
|
+
clearAllStates(): void;
|
|
1172
|
+
getCompletedCount(goalIds: string[]): number;
|
|
1173
|
+
allGoalsHaveState(goalIds: string[]): boolean;
|
|
1174
|
+
getOutput(goalIds: string[]): GoalActionStatesOutput;
|
|
1175
|
+
private loadFromStorage;
|
|
1176
|
+
private saveToStorage;
|
|
1177
|
+
static ɵfac: _angular_core.ɵɵFactoryDeclaration<GoalActionStateService, never>;
|
|
1178
|
+
static ɵprov: _angular_core.ɵɵInjectableDeclaration<GoalActionStateService>;
|
|
1179
|
+
}
|
|
1180
|
+
|
|
1141
1181
|
interface BreadcrumbLevel {
|
|
1142
1182
|
label: string;
|
|
1143
1183
|
clickable: boolean;
|
|
@@ -1160,7 +1200,7 @@ declare class ModalComponent {
|
|
|
1160
1200
|
private animatedTrendValues;
|
|
1161
1201
|
private animationFrames;
|
|
1162
1202
|
isOpen: _angular_core.Signal<boolean>;
|
|
1163
|
-
modalType: _angular_core.Signal<"
|
|
1203
|
+
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>;
|
|
1164
1204
|
charts: _angular_core.Signal<AiChartInterface[]>;
|
|
1165
1205
|
modalKey: _angular_core.Signal<number>;
|
|
1166
1206
|
insightData: _angular_core.Signal<InsightBlockInterface | null>;
|
|
@@ -1179,7 +1219,7 @@ declare class ModalComponent {
|
|
|
1179
1219
|
description: string;
|
|
1180
1220
|
icon: string;
|
|
1181
1221
|
} | null>;
|
|
1182
|
-
metricsListData: _angular_core.Signal<InsightBlockInterface | PerformanceMetricInterface |
|
|
1222
|
+
metricsListData: _angular_core.Signal<InsightBlockInterface | PerformanceMetricInterface | FunnelStrengthsListModalData | FunnelWeaknessesListModalData | FunnelStrengthDetailModalData | FunnelWeaknessDetailModalData | AiChartInterface | (InsightBlockInterface | PerformanceMetricInterface)[] | null>;
|
|
1183
1223
|
metricsListMetrics: _angular_core.Signal<PerformanceMetricInterface[]>;
|
|
1184
1224
|
metricsListInsightContext: _angular_core.Signal<{
|
|
1185
1225
|
title: string;
|
|
@@ -1187,7 +1227,7 @@ declare class ModalComponent {
|
|
|
1187
1227
|
businessContext: string;
|
|
1188
1228
|
priority: number;
|
|
1189
1229
|
} | null>;
|
|
1190
|
-
chartsListData: _angular_core.Signal<InsightBlockInterface | PerformanceMetricInterface |
|
|
1230
|
+
chartsListData: _angular_core.Signal<InsightBlockInterface | PerformanceMetricInterface | FunnelStrengthsListModalData | FunnelWeaknessesListModalData | FunnelStrengthDetailModalData | FunnelWeaknessDetailModalData | AiChartInterface | (InsightBlockInterface | PerformanceMetricInterface)[] | null>;
|
|
1191
1231
|
chartsListCharts: _angular_core.Signal<AiChartInterface[]>;
|
|
1192
1232
|
chartsListInsightContext: _angular_core.Signal<{
|
|
1193
1233
|
title: string;
|
|
@@ -1195,7 +1235,7 @@ declare class ModalComponent {
|
|
|
1195
1235
|
businessContext: string;
|
|
1196
1236
|
priority: number;
|
|
1197
1237
|
} | null>;
|
|
1198
|
-
recommendationsListData: _angular_core.Signal<InsightBlockInterface | PerformanceMetricInterface |
|
|
1238
|
+
recommendationsListData: _angular_core.Signal<InsightBlockInterface | PerformanceMetricInterface | FunnelStrengthsListModalData | FunnelWeaknessesListModalData | FunnelStrengthDetailModalData | FunnelWeaknessDetailModalData | AiChartInterface | (InsightBlockInterface | PerformanceMetricInterface)[] | null>;
|
|
1199
1239
|
recommendationsListRecommendations: _angular_core.Signal<string[]>;
|
|
1200
1240
|
recommendationsListInsightContext: _angular_core.Signal<{
|
|
1201
1241
|
title: string;
|
|
@@ -1203,7 +1243,7 @@ declare class ModalComponent {
|
|
|
1203
1243
|
businessContext: string;
|
|
1204
1244
|
priority: number;
|
|
1205
1245
|
} | null>;
|
|
1206
|
-
competitiveAnalysisData: _angular_core.Signal<InsightBlockInterface | PerformanceMetricInterface |
|
|
1246
|
+
competitiveAnalysisData: _angular_core.Signal<InsightBlockInterface | PerformanceMetricInterface | FunnelStrengthsListModalData | FunnelWeaknessesListModalData | FunnelStrengthDetailModalData | FunnelWeaknessDetailModalData | AiChartInterface | (InsightBlockInterface | PerformanceMetricInterface)[] | null>;
|
|
1207
1247
|
competitiveAnalysisContext: _angular_core.Signal<{
|
|
1208
1248
|
title: string;
|
|
1209
1249
|
description: string;
|
|
@@ -1500,11 +1540,11 @@ declare class ViewModeSwitcherModalComponent {
|
|
|
1500
1540
|
protected backdropClasses: _angular_core.Signal<"bg-slate-950/25" | "bg-slate-900/15">;
|
|
1501
1541
|
protected modalClasses: _angular_core.Signal<"bg-slate-800/95 border border-slate-700/50" | "bg-white/95 border border-slate-200">;
|
|
1502
1542
|
protected headerClasses: _angular_core.Signal<"border-slate-200" | "border-slate-700/50">;
|
|
1503
|
-
protected titleClasses: _angular_core.Signal<"text-
|
|
1543
|
+
protected titleClasses: _angular_core.Signal<"text-slate-900" | "text-white">;
|
|
1504
1544
|
protected descriptionClasses: _angular_core.Signal<"text-slate-600" | "text-slate-400">;
|
|
1505
|
-
protected closeButtonClasses: _angular_core.Signal<"text-slate-
|
|
1545
|
+
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">;
|
|
1506
1546
|
protected contentClasses: _angular_core.Signal<"bg-slate-800/50" | "bg-slate-50/50">;
|
|
1507
|
-
protected badgeClasses: _angular_core.Signal<"bg-amber-
|
|
1547
|
+
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">;
|
|
1508
1548
|
protected spinnerClasses: _angular_core.Signal<"border-blue-500" | "border-blue-600">;
|
|
1509
1549
|
protected loadingTextClasses: _angular_core.Signal<"text-slate-700" | "text-slate-300">;
|
|
1510
1550
|
static ɵfac: _angular_core.ɵɵFactoryDeclaration<ViewModeSwitcherModalComponent, never>;
|
|
@@ -1618,10 +1658,10 @@ declare class SymphiqFunnelAnalysisDashboardComponent implements AfterViewInit {
|
|
|
1618
1658
|
*/
|
|
1619
1659
|
private chartsById;
|
|
1620
1660
|
headerClass: _angular_core.Signal<string>;
|
|
1621
|
-
headerTitleClass: _angular_core.Signal<"text-
|
|
1661
|
+
headerTitleClass: _angular_core.Signal<"text-slate-900" | "text-white">;
|
|
1622
1662
|
headerSubtitleClass: _angular_core.Signal<"text-slate-600" | "text-slate-400">;
|
|
1623
1663
|
metaLabelClass: _angular_core.Signal<"text-slate-600" | "text-slate-500">;
|
|
1624
|
-
sectionTitleClass: _angular_core.Signal<"text-
|
|
1664
|
+
sectionTitleClass: _angular_core.Signal<"text-slate-900" | "text-white">;
|
|
1625
1665
|
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">;
|
|
1626
1666
|
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">;
|
|
1627
1667
|
formattedGeneratedDate: _angular_core.Signal<string | null>;
|
|
@@ -1792,7 +1832,7 @@ declare class MetricCardComponent {
|
|
|
1792
1832
|
competitiveScoreBadgeLightClass: _angular_core.Signal<string>;
|
|
1793
1833
|
competitiveScoreBadgeDarkClass: _angular_core.Signal<string>;
|
|
1794
1834
|
competitiveScoreBadgeClass: _angular_core.Signal<string>;
|
|
1795
|
-
competitiveScoreTextClass: _angular_core.Signal<"" | "text-
|
|
1835
|
+
competitiveScoreTextClass: _angular_core.Signal<"" | "text-emerald-600" | "text-blue-700" | "text-blue-400" | "text-orange-600">;
|
|
1796
1836
|
competitiveComparisonDefaultClass: _angular_core.Signal<"text-slate-700" | "text-slate-300">;
|
|
1797
1837
|
competitiveComparisonClass: _angular_core.Signal<"text-slate-700" | "text-slate-300" | "text-emerald-600 font-semibold" | "text-orange-600 font-semibold">;
|
|
1798
1838
|
getCompetitiveScoreIcon(): string;
|
|
@@ -2067,10 +2107,10 @@ declare class OverallAssessmentComponent {
|
|
|
2067
2107
|
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">;
|
|
2068
2108
|
lightModeTrendIconClass: _angular_core.Signal<"text-emerald-600" | "text-red-600">;
|
|
2069
2109
|
darkModeTrendIconClass: _angular_core.Signal<"text-emerald-400" | "text-red-400">;
|
|
2070
|
-
trendIconClass: _angular_core.Signal<"text-emerald-
|
|
2110
|
+
trendIconClass: _angular_core.Signal<"text-emerald-600" | "text-emerald-400" | "text-red-600" | "text-red-400">;
|
|
2071
2111
|
lightModeTrendValueClass: _angular_core.Signal<"text-emerald-600" | "text-red-600">;
|
|
2072
2112
|
darkModeTrendValueClass: _angular_core.Signal<"text-emerald-400" | "text-red-400">;
|
|
2073
|
-
trendValueClass: _angular_core.Signal<"text-emerald-
|
|
2113
|
+
trendValueClass: _angular_core.Signal<"text-emerald-600" | "text-emerald-400" | "text-red-600" | "text-red-400">;
|
|
2074
2114
|
formattedRevenueTrend: _angular_core.Signal<string>;
|
|
2075
2115
|
formattedRevenueTarget: _angular_core.Signal<string>;
|
|
2076
2116
|
hasRevenuePacing: _angular_core.Signal<boolean>;
|
|
@@ -2372,12 +2412,12 @@ declare class SymphiqFunnelAnalysisPreviewComponent {
|
|
|
2372
2412
|
private computeMetricTooltip;
|
|
2373
2413
|
formattedRevenueValue: _angular_core.Signal<string>;
|
|
2374
2414
|
formattedRevenueTrend: _angular_core.Signal<string>;
|
|
2375
|
-
revenueStatusIcon: _angular_core.Signal<"
|
|
2415
|
+
revenueStatusIcon: _angular_core.Signal<"↑" | "•" | "→" | "⚠">;
|
|
2376
2416
|
hasCompetitiveData: _angular_core.Signal<boolean>;
|
|
2377
2417
|
hasOverallCompetitiveBenchmark: _angular_core.Signal<boolean>;
|
|
2378
2418
|
overallCompetitiveDescription: _angular_core.Signal<string>;
|
|
2379
|
-
overallCompetitiveLabel: _angular_core.Signal<"N/A"
|
|
2380
|
-
overallCompetitiveIcon: _angular_core.Signal<"↑" | "
|
|
2419
|
+
overallCompetitiveLabel: _angular_core.Signal<_jebgem_model.CompetitiveScoreEnum | "N/A">;
|
|
2420
|
+
overallCompetitiveIcon: _angular_core.Signal<"↑" | "↔" | "↓" | "•">;
|
|
2381
2421
|
competitiveScore: _angular_core.Signal<string>;
|
|
2382
2422
|
gradeTooltip: _angular_core.Signal<{
|
|
2383
2423
|
title: string;
|
|
@@ -2509,11 +2549,11 @@ declare class SymphiqWelcomeDashboardComponent implements AfterViewInit, OnDestr
|
|
|
2509
2549
|
protected titleClasses: _angular_core.Signal<"text-white" | "bg-gradient-to-r from-blue-600 to-purple-600 bg-clip-text text-transparent">;
|
|
2510
2550
|
protected textClasses: _angular_core.Signal<"text-slate-700" | "text-slate-300">;
|
|
2511
2551
|
protected highlightBoxClasses: _angular_core.Signal<"bg-blue-500/10 border-blue-500/30" | "bg-blue-50 border-blue-300">;
|
|
2512
|
-
protected highlightIconClasses: _angular_core.Signal<"text-blue-
|
|
2513
|
-
protected highlightTitleClasses: _angular_core.Signal<"text-blue-
|
|
2552
|
+
protected highlightIconClasses: _angular_core.Signal<"text-blue-400" | "text-blue-600">;
|
|
2553
|
+
protected highlightTitleClasses: _angular_core.Signal<"text-blue-700" | "text-blue-400">;
|
|
2514
2554
|
protected highlightListClasses: _angular_core.Signal<"text-slate-700" | "text-slate-300">;
|
|
2515
2555
|
protected nextStepsBoxClasses: _angular_core.Signal<"bg-amber-500/10 border-amber-500/30" | "bg-amber-50 border-amber-200">;
|
|
2516
|
-
protected nextStepsIconClasses: _angular_core.Signal<"text-amber-
|
|
2556
|
+
protected nextStepsIconClasses: _angular_core.Signal<"text-amber-600" | "text-amber-400">;
|
|
2517
2557
|
protected nextStepsTitleClasses: _angular_core.Signal<"text-amber-400" | "text-amber-700">;
|
|
2518
2558
|
protected nextStepsTextClasses: _angular_core.Signal<"text-slate-700" | "text-slate-300">;
|
|
2519
2559
|
static ɵfac: _angular_core.ɵɵFactoryDeclaration<SymphiqWelcomeDashboardComponent, never>;
|
|
@@ -2629,7 +2669,7 @@ declare class SymphiqCreateAccountDashboardComponent implements OnDestroy {
|
|
|
2629
2669
|
protected containerWrapperClasses: _angular_core.Signal<"" | "min-h-screen">;
|
|
2630
2670
|
protected containerClasses: _angular_core.Signal<"bg-white border-slate-200" | "bg-slate-800 border-slate-700">;
|
|
2631
2671
|
protected contentClasses: _angular_core.Signal<"bg-gradient-to-br from-white to-slate-50" | "bg-gradient-to-br from-slate-800 to-slate-900">;
|
|
2632
|
-
protected sectionTitleClasses: _angular_core.Signal<"text-
|
|
2672
|
+
protected sectionTitleClasses: _angular_core.Signal<"text-slate-900" | "text-white">;
|
|
2633
2673
|
protected sectionDescriptionClasses: _angular_core.Signal<"text-slate-600" | "text-slate-400">;
|
|
2634
2674
|
protected labelClasses: _angular_core.Signal<"text-slate-700" | "text-slate-300">;
|
|
2635
2675
|
protected inputClasses(fieldName: string): string;
|
|
@@ -2637,26 +2677,26 @@ declare class SymphiqCreateAccountDashboardComponent implements OnDestroy {
|
|
|
2637
2677
|
protected urlInputClasses(fieldName: string): string;
|
|
2638
2678
|
protected radioPlatformClasses(platform: ShopPlatformEnum): string;
|
|
2639
2679
|
protected radioIndicatorClasses(platform: ShopPlatformEnum): string;
|
|
2640
|
-
protected radioLabelClasses: _angular_core.Signal<"text-
|
|
2680
|
+
protected radioLabelClasses: _angular_core.Signal<"text-slate-900" | "text-white">;
|
|
2641
2681
|
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">;
|
|
2642
2682
|
protected checkboxLabelClasses: _angular_core.Signal<"text-slate-600" | "text-slate-400">;
|
|
2643
2683
|
protected errorClasses: _angular_core.Signal<string>;
|
|
2644
2684
|
protected viewLabelClasses: _angular_core.Signal<"text-slate-600" | "text-slate-400">;
|
|
2645
|
-
protected viewValueClasses: _angular_core.Signal<"text-
|
|
2685
|
+
protected viewValueClasses: _angular_core.Signal<"text-slate-900" | "text-white">;
|
|
2646
2686
|
protected viewLinkClasses: _angular_core.Signal<"text-blue-600 hover:text-blue-700" | "text-blue-400 hover:text-blue-300">;
|
|
2647
2687
|
protected editButtonClasses: _angular_core.Signal<"bg-blue-500 text-white hover:bg-blue-600" | "bg-blue-600 text-white hover:bg-blue-700">;
|
|
2648
2688
|
protected stickyButtonContainerClasses: _angular_core.Signal<"bg-white/90 border-slate-200" | "bg-slate-900/90 border-slate-700">;
|
|
2649
2689
|
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">;
|
|
2650
2690
|
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">;
|
|
2651
2691
|
protected focusAreaProgressLabelClasses: _angular_core.Signal<"text-slate-600" | "text-slate-400">;
|
|
2652
|
-
protected focusAreaProgressCountClasses: _angular_core.Signal<"text-
|
|
2692
|
+
protected focusAreaProgressCountClasses: _angular_core.Signal<"text-emerald-600" | "text-emerald-400" | "text-blue-400" | "text-blue-600">;
|
|
2653
2693
|
protected focusAreaProgressBarBgClasses: _angular_core.Signal<"bg-slate-200" | "bg-slate-700">;
|
|
2654
2694
|
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">;
|
|
2655
|
-
protected progressBadgeClasses: _angular_core.Signal<"bg-
|
|
2695
|
+
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">;
|
|
2656
2696
|
protected dividerClasses: _angular_core.Signal<"border-t border-slate-200" | "border-t border-slate-700">;
|
|
2657
2697
|
protected groupTitleClasses(type: 'engaged' | 'interested' | 'not-interested'): string;
|
|
2658
2698
|
protected focusAreaViewCardClasses(type: 'engaged' | 'interested' | 'not-interested'): string;
|
|
2659
|
-
protected focusAreaViewTitleClasses: _angular_core.Signal<"text-
|
|
2699
|
+
protected focusAreaViewTitleClasses: _angular_core.Signal<"text-slate-900" | "text-white">;
|
|
2660
2700
|
protected focusAreaViewTitleSmallClasses: _angular_core.Signal<"text-slate-600" | "text-slate-400">;
|
|
2661
2701
|
protected statusBadgeClasses(type: 'engaged' | 'interested' | 'not-interested'): string;
|
|
2662
2702
|
protected toolsLabelViewClasses: _angular_core.Signal<"text-slate-600" | "text-slate-400">;
|
|
@@ -2693,7 +2733,7 @@ declare class FocusAreaQuestionComponent {
|
|
|
2693
2733
|
private computeRadioLabelClasses;
|
|
2694
2734
|
protected containerClasses: _angular_core.Signal<"bg-white border-slate-200" | "bg-slate-800 border-slate-700">;
|
|
2695
2735
|
protected contentClasses: _angular_core.Signal<"bg-gradient-to-br from-white to-slate-50" | "bg-gradient-to-br from-slate-800 to-slate-900">;
|
|
2696
|
-
protected titleClasses: _angular_core.Signal<"text-
|
|
2736
|
+
protected titleClasses: _angular_core.Signal<"text-slate-900" | "text-white">;
|
|
2697
2737
|
protected descriptionClasses: _angular_core.Signal<"text-slate-600" | "text-slate-400">;
|
|
2698
2738
|
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">;
|
|
2699
2739
|
protected radioDescriptionClasses: _angular_core.Signal<"text-slate-600" | "text-slate-400">;
|
|
@@ -2728,7 +2768,7 @@ declare class FocusAreaToolsModalComponent {
|
|
|
2728
2768
|
protected backdropClasses: _angular_core.Signal<"bg-black/15" | "bg-black/40">;
|
|
2729
2769
|
protected containerClasses: _angular_core.Signal<"bg-white border border-slate-200" | "bg-slate-800 border border-slate-700">;
|
|
2730
2770
|
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">;
|
|
2731
|
-
protected titleClasses: _angular_core.Signal<"text-
|
|
2771
|
+
protected titleClasses: _angular_core.Signal<"text-slate-900" | "text-white">;
|
|
2732
2772
|
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">;
|
|
2733
2773
|
protected labelClasses: _angular_core.Signal<"text-slate-700" | "text-slate-300">;
|
|
2734
2774
|
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">;
|
|
@@ -2997,7 +3037,7 @@ declare class PacingStatusBadgeComponent implements OnDestroy {
|
|
|
2997
3037
|
private animateValue;
|
|
2998
3038
|
protected displayInfo: _angular_core.Signal<PacingDisplayInfo>;
|
|
2999
3039
|
protected containerClasses: _angular_core.Signal<string>;
|
|
3000
|
-
protected targetRotation: _angular_core.Signal<
|
|
3040
|
+
protected targetRotation: _angular_core.Signal<1 | 0 | -1>;
|
|
3001
3041
|
protected rotationStyle: _angular_core.Signal<string>;
|
|
3002
3042
|
protected fullBadgeRotationStyle: _angular_core.Signal<string>;
|
|
3003
3043
|
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">;
|
|
@@ -4193,11 +4233,11 @@ declare class SymphiqProfileFocusAreasAnalysesDashboardComponent {
|
|
|
4193
4233
|
getCardFooterClasses(): string;
|
|
4194
4234
|
protected welcomeBannerContainerClasses: _angular_core.Signal<"bg-white border-slate-200" | "bg-slate-800/50 border-slate-700/50">;
|
|
4195
4235
|
protected welcomeBannerIconClasses: _angular_core.Signal<"bg-purple-500/20 text-purple-400" | "bg-purple-100 text-purple-600">;
|
|
4196
|
-
protected welcomeBannerTitleClasses: _angular_core.Signal<"text-
|
|
4236
|
+
protected welcomeBannerTitleClasses: _angular_core.Signal<"text-slate-900" | "text-white">;
|
|
4197
4237
|
protected welcomeBannerTextClasses: _angular_core.Signal<"text-slate-700" | "text-slate-300">;
|
|
4198
4238
|
protected welcomeBannerHighlightClasses: _angular_core.Signal<"bg-blue-500/10 border-blue-500/30" | "bg-blue-50/50 border-blue-300">;
|
|
4199
|
-
protected welcomeBannerHighlightIconClasses: _angular_core.Signal<"text-blue-
|
|
4200
|
-
protected welcomeBannerHighlightTitleClasses: _angular_core.Signal<"text-
|
|
4239
|
+
protected welcomeBannerHighlightIconClasses: _angular_core.Signal<"text-blue-400" | "text-blue-600">;
|
|
4240
|
+
protected welcomeBannerHighlightTitleClasses: _angular_core.Signal<"text-slate-900" | "text-white">;
|
|
4201
4241
|
protected welcomeBannerHighlightListClasses: _angular_core.Signal<"text-slate-700" | "text-slate-300">;
|
|
4202
4242
|
protected statusComponentContainerClasses: _angular_core.Signal<"bg-slate-50/80 border-slate-200" | "bg-slate-900/40 border-slate-700/50">;
|
|
4203
4243
|
protected statusSectionTitleClasses: _angular_core.Signal<"text-slate-700" | "text-slate-300">;
|
|
@@ -4399,11 +4439,11 @@ declare class SymphiqProfileAnalysisFocusAreaDashboardComponent implements OnIni
|
|
|
4399
4439
|
} | null;
|
|
4400
4440
|
protected handleDisplayModeChange(mode: DisplayModeEnum): void;
|
|
4401
4441
|
protected getAnalysisSubtitle(): string;
|
|
4402
|
-
protected containerClasses: _angular_core.Signal<"text-
|
|
4442
|
+
protected containerClasses: _angular_core.Signal<"text-slate-900" | "text-white">;
|
|
4403
4443
|
protected progressCardClasses: _angular_core.Signal<"bg-white border-slate-200" | "bg-slate-800/40 border-slate-700/50">;
|
|
4404
|
-
protected sectionTitleClasses: _angular_core.Signal<"text-
|
|
4444
|
+
protected sectionTitleClasses: _angular_core.Signal<"text-slate-900" | "text-white">;
|
|
4405
4445
|
protected sectionCardClasses: _angular_core.Signal<"bg-white border border-slate-200" | "bg-slate-800/50 border border-slate-700/50">;
|
|
4406
|
-
protected sectionIconClasses: _angular_core.Signal<"bg-blue-
|
|
4446
|
+
protected sectionIconClasses: _angular_core.Signal<"bg-blue-500/20 text-blue-400" | "bg-blue-50 text-blue-600">;
|
|
4407
4447
|
protected sectionDescriptionClasses: _angular_core.Signal<"text-slate-600" | "text-slate-400">;
|
|
4408
4448
|
private formatGradeInText;
|
|
4409
4449
|
static ɵfac: _angular_core.ɵɵFactoryDeclaration<SymphiqProfileAnalysisFocusAreaDashboardComponent, never>;
|
|
@@ -4464,6 +4504,7 @@ declare class SymphiqProfileAnalysisUnifiedDashboardComponent implements OnChang
|
|
|
4464
4504
|
stepClick: _angular_core.OutputEmitterRef<number>;
|
|
4465
4505
|
nextStepClick: _angular_core.OutputEmitterRef<void>;
|
|
4466
4506
|
sourceAnalysisRequest: _angular_core.OutputEmitterRef<SourceAnalysisRequestEvent>;
|
|
4507
|
+
integrateGoalsClick: _angular_core.OutputEmitterRef<GoalActionStatesOutput>;
|
|
4467
4508
|
protected readonly headerScrollService: HeaderScrollService;
|
|
4468
4509
|
protected readonly modalService: ModalService;
|
|
4469
4510
|
protected readonly viewModeService: ViewModeService;
|
|
@@ -4495,6 +4536,8 @@ declare class SymphiqProfileAnalysisUnifiedDashboardComponent implements OnChang
|
|
|
4495
4536
|
protected businessName: _angular_core.Signal<string>;
|
|
4496
4537
|
protected executiveSummary: _angular_core.Signal<UnifiedExecutiveSummaryInterface | undefined>;
|
|
4497
4538
|
protected unifiedGoals: _angular_core.Signal<UnifiedGoalInterface[]>;
|
|
4539
|
+
protected unifiedGoalIds: _angular_core.Signal<string[]>;
|
|
4540
|
+
protected shouldShowProgressFooter: _angular_core.Signal<boolean>;
|
|
4498
4541
|
protected sourceAnalysesMap: _angular_core.Signal<Map<number, ProfileAnalysisInterface>>;
|
|
4499
4542
|
protected loadedSourceAnalysisIds: _angular_core.Signal<number[]>;
|
|
4500
4543
|
protected sourceAnalysesCount: _angular_core.Signal<number>;
|
|
@@ -4516,6 +4559,7 @@ declare class SymphiqProfileAnalysisUnifiedDashboardComponent implements OnChang
|
|
|
4516
4559
|
protected allMetrics: _angular_core.Signal<PerformanceMetricInterface[]>;
|
|
4517
4560
|
protected allCharts: _angular_core.Signal<AiChartInterface[]>;
|
|
4518
4561
|
protected allInsights: _angular_core.Signal<_jebgem_model.InsightBlockInterface[]>;
|
|
4562
|
+
protected allBusinessInsights: _angular_core.Signal<ProfileAnalysisRecommendationInterface[]>;
|
|
4519
4563
|
protected unifiedTimeline: _angular_core.Signal<TimelineDataInterface>;
|
|
4520
4564
|
protected priorityMatrix: _angular_core.Signal<{
|
|
4521
4565
|
quickWins: UnifiedGoalInterface[];
|
|
@@ -4531,11 +4575,11 @@ declare class SymphiqProfileAnalysisUnifiedDashboardComponent implements OnChang
|
|
|
4531
4575
|
protected welcomeSubtitleClasses: _angular_core.Signal<string>;
|
|
4532
4576
|
protected welcomeDescriptionClasses: _angular_core.Signal<string>;
|
|
4533
4577
|
protected bannerClasses: _angular_core.Signal<"bg-white border border-slate-200" | "bg-slate-800/50 border border-slate-700/50">;
|
|
4534
|
-
protected sectionTitleClasses: _angular_core.Signal<"text-
|
|
4578
|
+
protected sectionTitleClasses: _angular_core.Signal<"text-slate-900" | "text-white">;
|
|
4535
4579
|
protected textClasses: _angular_core.Signal<"text-slate-700" | "text-slate-300">;
|
|
4536
|
-
protected subheadingClasses: _angular_core.Signal<"text-slate-
|
|
4580
|
+
protected subheadingClasses: _angular_core.Signal<"text-slate-200" | "text-slate-800">;
|
|
4537
4581
|
protected narrativeClasses: _angular_core.Signal<"bg-slate-50 border border-slate-200" | "bg-slate-900/50 border border-slate-700">;
|
|
4538
|
-
protected goalTitleClasses: _angular_core.Signal<"text-
|
|
4582
|
+
protected goalTitleClasses: _angular_core.Signal<"text-slate-900" | "text-white">;
|
|
4539
4583
|
protected goalDescriptionClasses: _angular_core.Signal<"text-slate-600" | "text-slate-400">;
|
|
4540
4584
|
protected timeframeBadgeClasses: _angular_core.Signal<"bg-slate-100 text-slate-600" | "bg-slate-700 text-slate-300">;
|
|
4541
4585
|
protected cardBorderClasses: _angular_core.Signal<"border-slate-200" | "border-slate-700">;
|
|
@@ -4543,12 +4587,12 @@ declare class SymphiqProfileAnalysisUnifiedDashboardComponent implements OnChang
|
|
|
4543
4587
|
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">;
|
|
4544
4588
|
protected timelineContainerClasses: _angular_core.Signal<"bg-white border border-slate-200" | "bg-slate-800/50 border border-slate-700/50">;
|
|
4545
4589
|
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">;
|
|
4546
|
-
protected timelineItemTitleClasses: _angular_core.Signal<"text-
|
|
4590
|
+
protected timelineItemTitleClasses: _angular_core.Signal<"text-slate-900" | "text-white">;
|
|
4547
4591
|
protected timeframeDisplayClasses: _angular_core.Signal<"text-slate-600" | "text-slate-400">;
|
|
4548
4592
|
protected objectivesLabelClasses: _angular_core.Signal<string>;
|
|
4549
4593
|
protected objectiveItemClasses: _angular_core.Signal<"text-slate-700" | "text-slate-300">;
|
|
4550
4594
|
protected moreObjectivesClasses: _angular_core.Signal<"text-slate-400" | "text-slate-500">;
|
|
4551
|
-
protected phaseIndicatorClasses: _angular_core.Signal<"text-blue-
|
|
4595
|
+
protected phaseIndicatorClasses: _angular_core.Signal<"text-blue-400" | "text-blue-600">;
|
|
4552
4596
|
protected matrixContainerClasses: _angular_core.Signal<"bg-white border border-slate-200" | "bg-slate-800/50 border border-slate-700/50">;
|
|
4553
4597
|
protected matrixAxisLabelClasses: _angular_core.Signal<"text-slate-400" | "text-slate-500">;
|
|
4554
4598
|
protected quadrantTitleClasses: _angular_core.Signal<"text-white" | "text-slate-800">;
|
|
@@ -4556,8 +4600,8 @@ declare class SymphiqProfileAnalysisUnifiedDashboardComponent implements OnChang
|
|
|
4556
4600
|
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">;
|
|
4557
4601
|
protected moreGoalsClasses: _angular_core.Signal<"text-slate-400" | "text-slate-500">;
|
|
4558
4602
|
protected emptyQuadrantClasses: _angular_core.Signal<"text-slate-400 italic" | "text-slate-500 italic">;
|
|
4559
|
-
protected stepTitleClasses: _angular_core.Signal<"text-
|
|
4560
|
-
protected stepDescriptionClasses: _angular_core.Signal<"text-slate-
|
|
4603
|
+
protected stepTitleClasses: _angular_core.Signal<"text-slate-900" | "text-white">;
|
|
4604
|
+
protected stepDescriptionClasses: _angular_core.Signal<"text-slate-600" | "text-slate-300">;
|
|
4561
4605
|
protected stepBorderClasses: _angular_core.Signal<"border-slate-200" | "border-slate-700">;
|
|
4562
4606
|
protected strategiesLabelClasses: _angular_core.Signal<"text-slate-400" | "text-slate-500">;
|
|
4563
4607
|
protected strategyItemClasses: _angular_core.Signal<"text-slate-700" | "text-slate-300">;
|
|
@@ -4576,6 +4620,7 @@ declare class SymphiqProfileAnalysisUnifiedDashboardComponent implements OnChang
|
|
|
4576
4620
|
protected handleDisplayModeChange(mode: DisplayModeEnum): void;
|
|
4577
4621
|
protected onGoalClick(goal: UnifiedGoalInterface): void;
|
|
4578
4622
|
protected onViewAllPriorityActionsClick(): void;
|
|
4623
|
+
protected onIntegrateGoals(output: GoalActionStatesOutput): void;
|
|
4579
4624
|
protected onPriorityActionGoalClick(goalId: string): void;
|
|
4580
4625
|
protected onPriorityActionRecommendationClick(recommendationId: string): void;
|
|
4581
4626
|
private findRecommendationInUnifiedGoals;
|
|
@@ -4610,7 +4655,7 @@ declare class SymphiqProfileAnalysisUnifiedDashboardComponent implements OnChang
|
|
|
4610
4655
|
protected scrollToSection(sectionId: string): void;
|
|
4611
4656
|
handleMobileNavigation(sectionId: string): void;
|
|
4612
4657
|
static ɵfac: _angular_core.ɵɵFactoryDeclaration<SymphiqProfileAnalysisUnifiedDashboardComponent, never>;
|
|
4613
|
-
static ɵcmp: _angular_core.ɵɵComponentDeclaration<SymphiqProfileAnalysisUnifiedDashboardComponent, "symphiq-profile-analysis-unified-dashboard", never, { "viewMode": { "alias": "viewMode"; "required": false; "isSignal": true; }; "embedded": { "alias": "embedded"; "required": false; "isSignal": true; }; "isLoading": { "alias": "isLoading"; "required": false; "isSignal": true; }; "profile": { "alias": "profile"; "required": false; "isSignal": true; }; "funnelAnalysis": { "alias": "funnelAnalysis"; "required": false; "isSignal": true; }; "unifiedProfileAnalysis": { "alias": "unifiedProfileAnalysis"; "required": false; "isSignal": true; }; "sourceProfileAnalyses": { "alias": "sourceProfileAnalyses"; "required": false; "isSignal": true; }; "isLoadingSourceAnalysis": { "alias": "isLoadingSourceAnalysis"; "required": false; "isSignal": true; }; "scrollEvent": { "alias": "scrollEvent"; "required": false; "isSignal": true; }; "scrollElement": { "alias": "scrollElement"; "required": false; "isSignal": true; }; "isOnboarded": { "alias": "isOnboarded"; "required": false; "isSignal": true; }; "forDemo": { "alias": "forDemo"; "required": false; "isSignal": true; }; "maxAccessibleStepId": { "alias": "maxAccessibleStepId"; "required": false; "isSignal": true; }; "itemStatus": { "alias": "itemStatus"; "required": false; "isSignal": true; }; "requestedByUser": { "alias": "requestedByUser"; "required": false; "isSignal": true; }; }, { "generateGoalsClick": "generateGoalsClick"; "stepClick": "stepClick"; "nextStepClick": "nextStepClick"; "sourceAnalysisRequest": "sourceAnalysisRequest"; }, never, never, true, never>;
|
|
4658
|
+
static ɵcmp: _angular_core.ɵɵComponentDeclaration<SymphiqProfileAnalysisUnifiedDashboardComponent, "symphiq-profile-analysis-unified-dashboard", never, { "viewMode": { "alias": "viewMode"; "required": false; "isSignal": true; }; "embedded": { "alias": "embedded"; "required": false; "isSignal": true; }; "isLoading": { "alias": "isLoading"; "required": false; "isSignal": true; }; "profile": { "alias": "profile"; "required": false; "isSignal": true; }; "funnelAnalysis": { "alias": "funnelAnalysis"; "required": false; "isSignal": true; }; "unifiedProfileAnalysis": { "alias": "unifiedProfileAnalysis"; "required": false; "isSignal": true; }; "sourceProfileAnalyses": { "alias": "sourceProfileAnalyses"; "required": false; "isSignal": true; }; "isLoadingSourceAnalysis": { "alias": "isLoadingSourceAnalysis"; "required": false; "isSignal": true; }; "scrollEvent": { "alias": "scrollEvent"; "required": false; "isSignal": true; }; "scrollElement": { "alias": "scrollElement"; "required": false; "isSignal": true; }; "isOnboarded": { "alias": "isOnboarded"; "required": false; "isSignal": true; }; "forDemo": { "alias": "forDemo"; "required": false; "isSignal": true; }; "maxAccessibleStepId": { "alias": "maxAccessibleStepId"; "required": false; "isSignal": true; }; "itemStatus": { "alias": "itemStatus"; "required": false; "isSignal": true; }; "requestedByUser": { "alias": "requestedByUser"; "required": false; "isSignal": true; }; }, { "generateGoalsClick": "generateGoalsClick"; "stepClick": "stepClick"; "nextStepClick": "nextStepClick"; "sourceAnalysisRequest": "sourceAnalysisRequest"; "integrateGoalsClick": "integrateGoalsClick"; }, never, never, true, never>;
|
|
4614
4659
|
}
|
|
4615
4660
|
|
|
4616
4661
|
interface MetricAnalysisNavigationData {
|
|
@@ -4707,8 +4752,8 @@ declare class SymphiqProfileMetricsAnalysesDashboardComponent {
|
|
|
4707
4752
|
handleSearchClick(): void;
|
|
4708
4753
|
handleCloseSearchModal(): void;
|
|
4709
4754
|
protected welcomeBannerContainerClasses: _angular_core.Signal<"bg-white border-slate-200" | "bg-slate-800/50 border-slate-700/50">;
|
|
4710
|
-
protected welcomeBannerIconClasses: _angular_core.Signal<"bg-blue-
|
|
4711
|
-
protected welcomeBannerTitleClasses: _angular_core.Signal<"text-
|
|
4755
|
+
protected welcomeBannerIconClasses: _angular_core.Signal<"bg-blue-100 text-blue-600" | "bg-blue-500/20 text-blue-400">;
|
|
4756
|
+
protected welcomeBannerTitleClasses: _angular_core.Signal<"text-slate-900" | "text-white">;
|
|
4712
4757
|
protected welcomeBannerTextClasses: _angular_core.Signal<"text-slate-700" | "text-slate-300">;
|
|
4713
4758
|
private getIconForMetric;
|
|
4714
4759
|
private getMetricDescription;
|
|
@@ -4989,8 +5034,8 @@ declare class FocusAreaExecutiveSummaryComponent {
|
|
|
4989
5034
|
protected readonly IconSourceEnum: typeof IconSourceEnum;
|
|
4990
5035
|
protected isLight: _angular_core.Signal<boolean>;
|
|
4991
5036
|
protected bannerClasses: _angular_core.Signal<"bg-white border border-slate-200" | "bg-slate-800/50 border border-slate-700/50">;
|
|
4992
|
-
protected sectionTitleClasses: _angular_core.Signal<"text-
|
|
4993
|
-
protected subheadingClasses: _angular_core.Signal<"text-slate-
|
|
5037
|
+
protected sectionTitleClasses: _angular_core.Signal<"text-slate-900" | "text-white">;
|
|
5038
|
+
protected subheadingClasses: _angular_core.Signal<"text-slate-200" | "text-slate-800">;
|
|
4994
5039
|
protected textClasses: _angular_core.Signal<"text-slate-700" | "text-slate-300">;
|
|
4995
5040
|
protected narrativeClasses: _angular_core.Signal<"bg-slate-50 border border-slate-200" | "bg-slate-900/30 border border-slate-700/50">;
|
|
4996
5041
|
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">;
|
|
@@ -4998,9 +5043,9 @@ declare class FocusAreaExecutiveSummaryComponent {
|
|
|
4998
5043
|
protected topPrioritiesStatValueClasses: _angular_core.Signal<"text-purple-900" | "text-purple-100">;
|
|
4999
5044
|
protected topPrioritiesButtonTextClasses: _angular_core.Signal<"text-purple-400" | "text-purple-700">;
|
|
5000
5045
|
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">;
|
|
5001
|
-
protected quickWinsStatLabelClasses: _angular_core.Signal<"text-blue-
|
|
5046
|
+
protected quickWinsStatLabelClasses: _angular_core.Signal<"text-blue-700" | "text-blue-400">;
|
|
5002
5047
|
protected quickWinsStatValueClasses: _angular_core.Signal<"text-blue-100" | "text-blue-900">;
|
|
5003
|
-
protected quickWinsButtonTextClasses: _angular_core.Signal<"text-blue-
|
|
5048
|
+
protected quickWinsButtonTextClasses: _angular_core.Signal<"text-blue-700" | "text-blue-400">;
|
|
5004
5049
|
protected onTopPrioritiesClick(): void;
|
|
5005
5050
|
protected onPriorityDetailClick(event: {
|
|
5006
5051
|
priority: FocusAreaTopPriorityInterface;
|
|
@@ -5039,22 +5084,22 @@ declare class MetricExecutiveSummaryComponent {
|
|
|
5039
5084
|
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">;
|
|
5040
5085
|
protected titleClasses: _angular_core.Signal<"text-slate-900" | "text-slate-100">;
|
|
5041
5086
|
protected textClasses: _angular_core.Signal<"text-slate-700" | "text-slate-300">;
|
|
5042
|
-
protected iconClasses: _angular_core.Signal<"text-blue-
|
|
5087
|
+
protected iconClasses: _angular_core.Signal<"text-blue-400" | "text-blue-600">;
|
|
5043
5088
|
protected healthBadgeClasses: _angular_core.Signal<string>;
|
|
5044
5089
|
protected pacingBadgeClasses: _angular_core.Signal<string>;
|
|
5045
5090
|
protected metricCardClasses: _angular_core.Signal<"bg-white border border-slate-200" | "bg-slate-800/50 border border-slate-700/50">;
|
|
5046
|
-
protected viewDetailsTextClasses: _angular_core.Signal<"text-blue-
|
|
5047
|
-
protected viewDetailsButtonClasses: _angular_core.Signal<"bg-blue-
|
|
5091
|
+
protected viewDetailsTextClasses: _angular_core.Signal<"text-blue-400" | "text-blue-600">;
|
|
5092
|
+
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">;
|
|
5048
5093
|
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">;
|
|
5049
5094
|
protected metricLabelClasses: _angular_core.Signal<"text-slate-600" | "text-slate-400">;
|
|
5050
5095
|
protected metricValueClasses: _angular_core.Signal<"text-slate-900" | "text-slate-100">;
|
|
5051
|
-
protected yoyChangeClasses: _angular_core.Signal<"text-slate-600" | "text-slate-400" | "text-emerald-
|
|
5096
|
+
protected yoyChangeClasses: _angular_core.Signal<"text-slate-600" | "text-slate-400" | "text-emerald-600" | "text-emerald-400" | "text-red-600" | "text-red-400">;
|
|
5052
5097
|
protected getYoyIcon(): string;
|
|
5053
5098
|
protected getPacingValueClasses(): string;
|
|
5054
5099
|
protected getHealthValueClasses(): string;
|
|
5055
5100
|
protected healthDescriptionClasses: _angular_core.Signal<"text-slate-400" | "text-slate-500">;
|
|
5056
5101
|
protected narrativeClasses: _angular_core.Signal<"bg-white border border-slate-200" | "bg-slate-800/50 border border-slate-600/20">;
|
|
5057
|
-
protected narrativeTitleClasses: _angular_core.Signal<"text-slate-
|
|
5102
|
+
protected narrativeTitleClasses: _angular_core.Signal<"text-slate-200" | "text-slate-800">;
|
|
5058
5103
|
protected narrativeTextClasses: _angular_core.Signal<"text-slate-600" | "text-slate-400">;
|
|
5059
5104
|
protected sectionTitleClasses: _angular_core.Signal<"text-slate-900" | "text-slate-100">;
|
|
5060
5105
|
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">;
|
|
@@ -5062,7 +5107,7 @@ declare class MetricExecutiveSummaryComponent {
|
|
|
5062
5107
|
protected priorityTitleClasses: _angular_core.Signal<"text-slate-900" | "text-slate-100">;
|
|
5063
5108
|
protected priorityTextClasses: _angular_core.Signal<"text-slate-700" | "text-slate-300">;
|
|
5064
5109
|
protected impactBoxClasses: _angular_core.Signal<"bg-slate-800/30 border border-slate-700/30" | "bg-slate-50/50 border border-slate-200">;
|
|
5065
|
-
protected impactLabelClasses: _angular_core.Signal<"text-blue-
|
|
5110
|
+
protected impactLabelClasses: _angular_core.Signal<"text-blue-400" | "text-blue-600">;
|
|
5066
5111
|
protected impactTextClasses: _angular_core.Signal<"text-slate-600" | "text-slate-400">;
|
|
5067
5112
|
protected quickWinCardClasses: _angular_core.Signal<"bg-white border border-slate-200" | "bg-slate-800/50 border border-slate-700/50">;
|
|
5068
5113
|
protected numberBadgeClasses: _angular_core.Signal<"bg-blue-500/20 text-blue-300" | "bg-blue-100 text-blue-800">;
|
|
@@ -5498,7 +5543,7 @@ declare class VisualizationContainerComponent {
|
|
|
5498
5543
|
data: unknown;
|
|
5499
5544
|
}>;
|
|
5500
5545
|
containerClass: _angular_core.Signal<"" | "cursor-pointer">;
|
|
5501
|
-
iconClass: _angular_core.Signal<"text-slate-
|
|
5546
|
+
iconClass: _angular_core.Signal<"text-slate-400 group-hover:text-blue-500" | "text-slate-500 group-hover:text-blue-400">;
|
|
5502
5547
|
onExpandClick(event: Event): void;
|
|
5503
5548
|
onVisualizationClick(event: Event): void;
|
|
5504
5549
|
static ɵfac: _angular_core.ɵɵFactoryDeclaration<VisualizationContainerComponent, never>;
|
|
@@ -5589,16 +5634,16 @@ declare class SearchModalComponent {
|
|
|
5589
5634
|
clearButtonClass: _angular_core.Signal<"bg-slate-100 text-slate-600 hover:bg-slate-200" | "bg-slate-700 text-slate-300 hover:bg-slate-600">;
|
|
5590
5635
|
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">;
|
|
5591
5636
|
resultsContainerClass: _angular_core.Signal<"border-slate-200" | "border-slate-700">;
|
|
5592
|
-
resultTitleClass: _angular_core.Signal<"text-
|
|
5637
|
+
resultTitleClass: _angular_core.Signal<"text-slate-900" | "text-white">;
|
|
5593
5638
|
resultDescClass: _angular_core.Signal<"text-slate-600" | "text-slate-400">;
|
|
5594
5639
|
breadcrumbClass: _angular_core.Signal<string>;
|
|
5595
5640
|
typeBadgeClass: _angular_core.Signal<"bg-slate-100 text-slate-600" | "bg-slate-700 text-slate-300">;
|
|
5596
5641
|
arrowClass: _angular_core.Signal<"text-slate-400" | "text-slate-500">;
|
|
5597
5642
|
emptyStateClass: _angular_core.Signal<"border-slate-200" | "border-slate-700">;
|
|
5598
|
-
emptyIconClass: _angular_core.Signal<"text-slate-
|
|
5599
|
-
emptyTitleClass: _angular_core.Signal<"text-
|
|
5643
|
+
emptyIconClass: _angular_core.Signal<"text-slate-600" | "text-slate-300">;
|
|
5644
|
+
emptyTitleClass: _angular_core.Signal<"text-slate-900" | "text-white">;
|
|
5600
5645
|
emptyDescClass: _angular_core.Signal<"text-slate-600" | "text-slate-400">;
|
|
5601
|
-
shortcutsClass: _angular_core.Signal<"bg-slate-50 border-slate-
|
|
5646
|
+
shortcutsClass: _angular_core.Signal<"bg-slate-900/50 border-slate-700" | "bg-slate-50 border-slate-200">;
|
|
5602
5647
|
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">;
|
|
5603
5648
|
shortcutTextClass: _angular_core.Signal<"text-slate-600" | "text-slate-400">;
|
|
5604
5649
|
static ɵfac: _angular_core.ɵɵFactoryDeclaration<SearchModalComponent, never>;
|
|
@@ -5640,7 +5685,7 @@ declare class DashboardHeaderComponent implements OnInit {
|
|
|
5640
5685
|
protected onTitleMouseLeave(): void;
|
|
5641
5686
|
formattedGeneratedDate: _angular_core.Signal<string>;
|
|
5642
5687
|
formatDate(dateString: string): string;
|
|
5643
|
-
headerTitleClass: _angular_core.Signal<"text-
|
|
5688
|
+
headerTitleClass: _angular_core.Signal<"text-slate-900" | "text-white">;
|
|
5644
5689
|
metaLabelClass: _angular_core.Signal<"text-slate-600" | "text-slate-500">;
|
|
5645
5690
|
protected getHeaderClasses(): string;
|
|
5646
5691
|
protected getMainTitleClasses(): string;
|
|
@@ -5657,7 +5702,7 @@ declare class GradeBadgeComponent {
|
|
|
5657
5702
|
gradeRationale: _angular_core.InputSignal<string>;
|
|
5658
5703
|
label: _angular_core.InputSignal<string>;
|
|
5659
5704
|
viewMode: _angular_core.InputSignal<ViewModeEnum>;
|
|
5660
|
-
tooltipPosition: _angular_core.InputSignal<"top" | "
|
|
5705
|
+
tooltipPosition: _angular_core.InputSignal<"top" | "bottom" | "left" | "right">;
|
|
5661
5706
|
isLightMode: _angular_core.Signal<boolean>;
|
|
5662
5707
|
formattedGrade: _angular_core.Signal<string>;
|
|
5663
5708
|
shouldPulse: _angular_core.Signal<boolean>;
|
|
@@ -5769,22 +5814,22 @@ declare class ConfidenceLevelCardComponent implements OnInit, OnDestroy {
|
|
|
5769
5814
|
protected gradeBadgeContainerClasses: _angular_core.Signal<string>;
|
|
5770
5815
|
protected glowEffectClasses: _angular_core.Signal<"bg-emerald-500" | "bg-blue-500" | "bg-orange-500" | "bg-red-500">;
|
|
5771
5816
|
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)]">;
|
|
5772
|
-
protected gradeLabelClasses: _angular_core.Signal<"text-
|
|
5817
|
+
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">;
|
|
5773
5818
|
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">;
|
|
5774
5819
|
protected descriptionClasses: _angular_core.Signal<"text-slate-700" | "text-slate-300">;
|
|
5775
5820
|
protected progressLabelClasses: _angular_core.Signal<"text-slate-700" | "text-slate-300">;
|
|
5776
|
-
protected progressValueClasses: _angular_core.Signal<"text-
|
|
5821
|
+
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">;
|
|
5777
5822
|
protected progressTrackClasses: _angular_core.Signal<"bg-slate-700/50 shadow-inner" | "bg-slate-200 shadow-inner">;
|
|
5778
5823
|
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">;
|
|
5779
5824
|
protected shimmerClasses: _angular_core.Signal<string>;
|
|
5780
5825
|
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">;
|
|
5781
5826
|
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">;
|
|
5782
5827
|
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">;
|
|
5783
|
-
protected nextStepBadgeClasses: _angular_core.Signal<"bg-blue-500/20 text-blue-400" | "bg-
|
|
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-100 text-red-700" | "bg-red-500/20 text-red-400">;
|
|
5784
5829
|
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">;
|
|
5785
|
-
protected currentStepBadgeClasses: _angular_core.Signal<"bg-blue-500/20 text-blue-400" | "bg-
|
|
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-100 text-red-700" | "bg-red-500/20 text-red-400">;
|
|
5786
5831
|
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">;
|
|
5787
|
-
protected nextDashboardBadgeClasses: _angular_core.Signal<"bg-
|
|
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-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">;
|
|
5788
5833
|
static ɵfac: _angular_core.ɵɵFactoryDeclaration<ConfidenceLevelCardComponent, never>;
|
|
5789
5834
|
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>;
|
|
5790
5835
|
}
|
|
@@ -5862,11 +5907,11 @@ declare class IndeterminateSpinnerComponent {
|
|
|
5862
5907
|
viewMode: _angular_core.InputSignal<ViewModeEnum>;
|
|
5863
5908
|
size: _angular_core.InputSignal<SpinnerSize>;
|
|
5864
5909
|
color: _angular_core.InputSignal<string | undefined>;
|
|
5865
|
-
svgSize: _angular_core.Signal<
|
|
5910
|
+
svgSize: _angular_core.Signal<40 | 80 | 60>;
|
|
5866
5911
|
circleRadius: _angular_core.Signal<16 | 36 | 26>;
|
|
5867
5912
|
svgCircleRadius: _angular_core.Signal<number>;
|
|
5868
|
-
strokeWidth: _angular_core.Signal<
|
|
5869
|
-
dotSize: _angular_core.Signal<
|
|
5913
|
+
strokeWidth: _angular_core.Signal<3 | 2 | 2.5>;
|
|
5914
|
+
dotSize: _angular_core.Signal<5 | 10 | 7>;
|
|
5870
5915
|
containerClasses: _angular_core.Signal<{
|
|
5871
5916
|
'w-10 h-10': boolean;
|
|
5872
5917
|
'w-[60px] h-[60px]': boolean;
|
|
@@ -5908,7 +5953,7 @@ declare class UserDisplayComponent {
|
|
|
5908
5953
|
avatarSize: _angular_core.InputSignal<AvatarSize>;
|
|
5909
5954
|
showEmail: _angular_core.InputSignal<boolean>;
|
|
5910
5955
|
protected displayName: _angular_core.Signal<string>;
|
|
5911
|
-
protected nameClasses: _angular_core.Signal<"text-
|
|
5956
|
+
protected nameClasses: _angular_core.Signal<"text-slate-900" | "text-white">;
|
|
5912
5957
|
protected emailClasses: _angular_core.Signal<"text-slate-400" | "text-slate-500">;
|
|
5913
5958
|
static ɵfac: _angular_core.ɵɵFactoryDeclaration<UserDisplayComponent, never>;
|
|
5914
5959
|
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>;
|
|
@@ -5927,10 +5972,10 @@ declare class ChartContainerComponent {
|
|
|
5927
5972
|
protected ChartTypeEnum: typeof ChartTypeEnum;
|
|
5928
5973
|
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">;
|
|
5929
5974
|
headerClass: _angular_core.Signal<"border-slate-200" | "border-slate-700">;
|
|
5930
|
-
titleClass: _angular_core.Signal<"text-
|
|
5975
|
+
titleClass: _angular_core.Signal<"text-slate-900" | "text-white">;
|
|
5931
5976
|
descriptionClass: _angular_core.Signal<"text-slate-600" | "text-slate-400">;
|
|
5932
|
-
iconClass: _angular_core.Signal<"text-slate-
|
|
5933
|
-
chartIconClass: _angular_core.Signal<"bg-blue-
|
|
5977
|
+
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-100 text-blue-600" | "bg-blue-500/20 text-blue-400">;
|
|
5934
5979
|
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">;
|
|
5935
5980
|
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">;
|
|
5936
5981
|
isCollapsible: _angular_core.Signal<boolean>;
|
|
@@ -5994,7 +6039,7 @@ declare class BarChartComponent implements OnInit, AfterViewInit, OnDestroy {
|
|
|
5994
6039
|
showAxisLabels: _angular_core.InputSignal<boolean>;
|
|
5995
6040
|
viewMode: _angular_core.InputSignal<ViewModeEnum>;
|
|
5996
6041
|
currencySymbol: _angular_core.InputSignal<string>;
|
|
5997
|
-
chartHeight: _angular_core.Signal<"
|
|
6042
|
+
chartHeight: _angular_core.Signal<"500px" | "175px">;
|
|
5998
6043
|
cursorColor: _angular_core.Signal<9741240 | 16777215>;
|
|
5999
6044
|
tooltipTextColor: _angular_core.Signal<0 | 16777215>;
|
|
6000
6045
|
chartHash: _angular_core.Signal<string>;
|
|
@@ -6031,7 +6076,7 @@ declare class PieChartComponent implements OnInit, AfterViewInit, OnDestroy {
|
|
|
6031
6076
|
showAxisLabels: _angular_core.InputSignal<boolean>;
|
|
6032
6077
|
viewMode: _angular_core.InputSignal<ViewModeEnum>;
|
|
6033
6078
|
currencySymbol: _angular_core.InputSignal<string>;
|
|
6034
|
-
chartHeight: _angular_core.Signal<"
|
|
6079
|
+
chartHeight: _angular_core.Signal<"500px" | "200px">;
|
|
6035
6080
|
chartHash: _angular_core.Signal<string>;
|
|
6036
6081
|
chartDiv: ElementRef;
|
|
6037
6082
|
private root?;
|
|
@@ -6113,7 +6158,7 @@ declare class TooltipContainerComponent implements AfterViewInit, OnDestroy {
|
|
|
6113
6158
|
isVisible: _angular_core.Signal<boolean>;
|
|
6114
6159
|
tooltipType: _angular_core.Signal<string | null>;
|
|
6115
6160
|
tooltipContent: _angular_core.Signal<string | Record<string, unknown> | undefined>;
|
|
6116
|
-
tooltipPosition: _angular_core.Signal<"
|
|
6161
|
+
tooltipPosition: _angular_core.Signal<"top" | "bottom" | "left" | "right" | "auto">;
|
|
6117
6162
|
targetRect: _angular_core.Signal<DOMRect | null>;
|
|
6118
6163
|
mousePosition: _angular_core.Signal<{
|
|
6119
6164
|
x: number;
|
|
@@ -6253,7 +6298,7 @@ declare class FocusAreaDetailCardComponent {
|
|
|
6253
6298
|
protected isActuallyExpanded: _angular_core.Signal<boolean>;
|
|
6254
6299
|
protected forceExpandedValue: _angular_core.Signal<boolean>;
|
|
6255
6300
|
protected shouldAnimateExpand: _angular_core.Signal<boolean>;
|
|
6256
|
-
protected iconSize: _angular_core.Signal<"w-
|
|
6301
|
+
protected iconSize: _angular_core.Signal<"w-6 h-6" | "w-7 h-7">;
|
|
6257
6302
|
protected relatedRecommendations: _angular_core.Signal<_jebgem_model.ProfileAnalysisRecommendationInterface[]>;
|
|
6258
6303
|
protected statusLabel: _angular_core.Signal<string>;
|
|
6259
6304
|
protected statusBadgeType: _angular_core.Signal<BadgeType>;
|
|
@@ -6268,11 +6313,11 @@ declare class FocusAreaDetailCardComponent {
|
|
|
6268
6313
|
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">;
|
|
6269
6314
|
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">;
|
|
6270
6315
|
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">;
|
|
6271
|
-
protected expandedIconClasses: _angular_core.Signal<"text-blue-
|
|
6316
|
+
protected expandedIconClasses: _angular_core.Signal<"text-blue-400" | "text-blue-600">;
|
|
6272
6317
|
protected expandedTitleClasses: _angular_core.Signal<"text-sm font-semibold text-white" | "text-sm font-semibold text-slate-900">;
|
|
6273
6318
|
protected insightItemClasses: _angular_core.Signal<"text-sm text-slate-300 leading-relaxed flex" | "text-sm text-slate-600 leading-relaxed flex">;
|
|
6274
6319
|
protected expandButtonClasses: _angular_core.Signal<"text-sm font-medium text-blue-400" | "text-sm font-medium text-blue-600">;
|
|
6275
|
-
protected chevronClasses: _angular_core.Signal<"text-blue-
|
|
6320
|
+
protected chevronClasses: _angular_core.Signal<"text-blue-400" | "text-blue-600">;
|
|
6276
6321
|
protected toggleExpanded(): void;
|
|
6277
6322
|
protected toggleCompetitiveGap(): void;
|
|
6278
6323
|
onExpandItem(event: Event): void;
|
|
@@ -6317,7 +6362,7 @@ declare class CompetitorAnalysisCardComponent {
|
|
|
6317
6362
|
protected isActuallyExpanded: _angular_core.Signal<boolean>;
|
|
6318
6363
|
protected isExpandedMode: _angular_core.Signal<boolean>;
|
|
6319
6364
|
protected shouldAnimateExpand: _angular_core.Signal<boolean>;
|
|
6320
|
-
protected iconSize: _angular_core.Signal<"w-
|
|
6365
|
+
protected iconSize: _angular_core.Signal<"w-6 h-6" | "w-7 h-7">;
|
|
6321
6366
|
protected animationType: _angular_core.Signal<"none" | "slide-up">;
|
|
6322
6367
|
constructor();
|
|
6323
6368
|
protected hasCompanyInfo: _angular_core.Signal<boolean>;
|
|
@@ -6348,11 +6393,11 @@ declare class CompetitorAnalysisCardComponent {
|
|
|
6348
6393
|
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">;
|
|
6349
6394
|
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">;
|
|
6350
6395
|
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">;
|
|
6351
|
-
protected expandedIconClasses: _angular_core.Signal<"text-blue-
|
|
6396
|
+
protected expandedIconClasses: _angular_core.Signal<"text-blue-400" | "text-blue-600">;
|
|
6352
6397
|
protected expandedTitleClasses: _angular_core.Signal<"text-sm font-semibold text-white" | "text-sm font-semibold text-slate-900">;
|
|
6353
6398
|
protected expandedTextClasses: _angular_core.Signal<"text-sm text-slate-300 leading-relaxed" | "text-sm text-slate-600 leading-relaxed">;
|
|
6354
6399
|
protected expandButtonClasses: _angular_core.Signal<"text-sm font-medium text-blue-400" | "text-sm font-medium text-blue-600">;
|
|
6355
|
-
protected chevronClasses: _angular_core.Signal<"text-blue-
|
|
6400
|
+
protected chevronClasses: _angular_core.Signal<"text-blue-400" | "text-blue-600">;
|
|
6356
6401
|
protected toggleExpanded(): void;
|
|
6357
6402
|
protected navigateToItem(item: ProfileItemInterface): void;
|
|
6358
6403
|
onExpandItem(event: Event): void;
|
|
@@ -6372,7 +6417,7 @@ declare class OpportunityHighlightBannerComponent {
|
|
|
6372
6417
|
protected titleClasses: _angular_core.Signal<"text-amber-300" | "text-amber-900">;
|
|
6373
6418
|
protected badgeClasses: _angular_core.Signal<"bg-amber-500/30 text-amber-300" | "bg-amber-200 text-amber-800">;
|
|
6374
6419
|
protected messageClasses: _angular_core.Signal<"text-amber-700" | "text-amber-400/90">;
|
|
6375
|
-
protected chevronClasses: _angular_core.Signal<"text-amber-
|
|
6420
|
+
protected chevronClasses: _angular_core.Signal<"text-amber-600" | "text-amber-400">;
|
|
6376
6421
|
handleClick(event: Event): void;
|
|
6377
6422
|
static ɵfac: _angular_core.ɵɵFactoryDeclaration<OpportunityHighlightBannerComponent, never>;
|
|
6378
6423
|
static ɵcmp: _angular_core.ɵɵComponentDeclaration<OpportunityHighlightBannerComponent, "symphiq-opportunity-highlight-banner", never, { "title": { "alias": "title"; "required": false; "isSignal": true; }; "message": { "alias": "message"; "required": false; "isSignal": true; }; "isDark": { "alias": "isDark"; "required": false; "isSignal": true; }; "isExpanded": { "alias": "isExpanded"; "required": false; "isSignal": true; }; }, { "bannerClick": "bannerClick"; }, never, never, true, never>;
|
|
@@ -6624,6 +6669,6 @@ declare function validateRevenueTarget(targetRevenue: number, calculations: Metr
|
|
|
6624
6669
|
withinTolerance: boolean;
|
|
6625
6670
|
};
|
|
6626
6671
|
|
|
6627
|
-
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 };
|
|
6628
|
-
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, 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 };
|
|
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 };
|
|
6673
|
+
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 };
|
|
6629
6674
|
//# sourceMappingURL=symphiq-components.d.ts.map
|