@eric-emg/symphiq-components 1.2.106 → 1.2.107
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 +65783 -55108
- package/fesm2022/symphiq-components.mjs.map +1 -1
- package/index.d.ts +338 -79
- package/index.d.ts.map +1 -1
- package/package.json +2 -2
- package/styles.css +428 -0
package/index.d.ts
CHANGED
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
import * as _jebgem_model from '@jebgem/model';
|
|
2
|
-
import { ProfileItemInterface, ViewModeEnum, GoalV3Interface, ObjectiveV3Interface, StrategyV3Interface, OperationalCategoryInterface, CategoryStrengthInterface, CategoryGapInterface, CategoryOpportunityInterface, InsightBlockInterface, ProfileAnalysisRecommendationInterface, PerformanceMetricInterface, KeyStrengthInterface, CriticalGapInterface, AiChartInterface, ProfileAnalysisRecommendationActionStepInterface, MetricStatusEnum, TrendDirectionEnum, CompetitiveScoreEnum, ProfileSectionInterface, ProfileSubsectionInterface, ProfileInterface, BreakdownMetricInterface, UserInterface, FunnelAnalysisInterface, PerformanceOverviewStructuredV3Interface, OverallAssessmentInterface, ProfileItemTypeEnum, IconObjectInterface as IconObjectInterface$1, NapkinVisualInterface, HierarchyDataInterface, ProfileAnalysisInterface, ProfileAnalysisTypeEnum, IconSourceEnum, ProfileAnalysisSectionV3Interface, ExecutiveSummaryInterface, ChartTypeEnum } from '@jebgem/model';
|
|
2
|
+
import { ProfileItemInterface, ViewModeEnum, GoalV3Interface, ObjectiveV3Interface, StrategyV3Interface, OperationalCategoryInterface, CategoryStrengthInterface, CategoryGapInterface, CategoryOpportunityInterface, InsightBlockInterface, ProfileAnalysisRecommendationInterface, PerformanceMetricInterface, KeyStrengthInterface, CriticalGapInterface, FocusAreaTopPriorityInterface, AiChartInterface, ProfileAnalysisRecommendationActionStepInterface, MetricStatusEnum, TrendDirectionEnum, CompetitiveScoreEnum, ProfileSectionInterface, ProfileSubsectionInterface, ProfileInterface, BreakdownMetricInterface, UserInterface, FunnelAnalysisInterface, PerformanceOverviewStructuredV3Interface, OverallAssessmentInterface, ProfileItemTypeEnum, IconObjectInterface as IconObjectInterface$1, NapkinVisualInterface, HierarchyDataInterface, ProfileAnalysisInterface, ProfileAnalysisTypeEnum, FocusAreaDetailInterface, IconSourceEnum, FocusAreaDomainEnum, ProfileAnalysisSectionV3Interface, ExecutiveSummaryInterface, FocusAreaExecutiveSummaryInterface, MetricExecutiveSummaryInterface, ChartTypeEnum } from '@jebgem/model';
|
|
3
3
|
export * from '@jebgem/model';
|
|
4
4
|
import * as _angular_core from '@angular/core';
|
|
5
|
-
import { AfterViewInit, ElementRef, WritableSignal, OnInit, OnDestroy, OnChanges, SimpleChanges,
|
|
5
|
+
import { AfterViewInit, ElementRef, WritableSignal, OnInit, OnDestroy, OnChanges, SimpleChanges, EventEmitter, Renderer2 } from '@angular/core';
|
|
6
6
|
import * as rxjs from 'rxjs';
|
|
7
7
|
import { Observable } from 'rxjs';
|
|
8
8
|
import { HttpClient } from '@angular/common/http';
|
|
@@ -41,28 +41,28 @@ interface VisualizationData {
|
|
|
41
41
|
data: unknown;
|
|
42
42
|
}
|
|
43
43
|
interface FunnelStrengthInterface {
|
|
44
|
-
id
|
|
45
|
-
title
|
|
46
|
-
description
|
|
47
|
-
relatedMetrics
|
|
48
|
-
category
|
|
49
|
-
priority
|
|
50
|
-
businessContext
|
|
51
|
-
impactScore
|
|
52
|
-
quantifiedValue
|
|
44
|
+
id?: string;
|
|
45
|
+
title?: string;
|
|
46
|
+
description?: string;
|
|
47
|
+
relatedMetrics?: string[];
|
|
48
|
+
category?: string;
|
|
49
|
+
priority?: number;
|
|
50
|
+
businessContext?: string;
|
|
51
|
+
impactScore?: number;
|
|
52
|
+
quantifiedValue?: string;
|
|
53
53
|
}
|
|
54
54
|
interface FunnelWeaknessInterface {
|
|
55
|
-
id
|
|
56
|
-
title
|
|
57
|
-
description
|
|
58
|
-
relatedMetrics
|
|
59
|
-
category
|
|
60
|
-
priority
|
|
61
|
-
businessContext
|
|
62
|
-
impactScore
|
|
63
|
-
quantifiedValue
|
|
64
|
-
severityLevel
|
|
65
|
-
suggestedActions
|
|
55
|
+
id?: string;
|
|
56
|
+
title?: string;
|
|
57
|
+
description?: string;
|
|
58
|
+
relatedMetrics?: string[];
|
|
59
|
+
category?: string;
|
|
60
|
+
priority?: number;
|
|
61
|
+
businessContext?: string;
|
|
62
|
+
impactScore?: number;
|
|
63
|
+
quantifiedValue?: string;
|
|
64
|
+
severityLevel?: 'CRITICAL' | 'HIGH' | 'MEDIUM';
|
|
65
|
+
suggestedActions?: string[];
|
|
66
66
|
}
|
|
67
67
|
interface ItemDetailModalData {
|
|
68
68
|
item: ProfileItemInterface;
|
|
@@ -103,6 +103,7 @@ interface StrengthDetailModalData {
|
|
|
103
103
|
strength: CategoryStrengthInterface;
|
|
104
104
|
categoryTitle: string;
|
|
105
105
|
viewMode: ViewModeEnum;
|
|
106
|
+
allFunnelStrengths?: FunnelStrengthInterface[];
|
|
106
107
|
}
|
|
107
108
|
interface GapDetailModalData {
|
|
108
109
|
gap: CategoryGapInterface;
|
|
@@ -113,6 +114,8 @@ interface OpportunityDetailModalData {
|
|
|
113
114
|
opportunity: CategoryOpportunityInterface;
|
|
114
115
|
categoryTitle: string;
|
|
115
116
|
viewMode: ViewModeEnum;
|
|
117
|
+
allStrengths?: FunnelStrengthInterface[];
|
|
118
|
+
allGoals?: GoalV3Interface[];
|
|
116
119
|
}
|
|
117
120
|
interface GoalInsightsListModalData {
|
|
118
121
|
insights: InsightBlockInterface[];
|
|
@@ -136,6 +139,28 @@ interface GoalBusinessInsightsListModalData {
|
|
|
136
139
|
sourceCategory?: string;
|
|
137
140
|
sourceGapTitle?: string;
|
|
138
141
|
}
|
|
142
|
+
interface RecommendationInsightsListModalData {
|
|
143
|
+
insights: InsightBlockInterface[];
|
|
144
|
+
recommendationContext: {
|
|
145
|
+
title: string;
|
|
146
|
+
description: string;
|
|
147
|
+
icon: string;
|
|
148
|
+
};
|
|
149
|
+
goalTitle?: string;
|
|
150
|
+
objectiveTitle?: string;
|
|
151
|
+
strategyTitle?: string;
|
|
152
|
+
}
|
|
153
|
+
interface RecommendationBusinessInsightsListModalData {
|
|
154
|
+
businessInsights: ProfileAnalysisRecommendationInterface[];
|
|
155
|
+
recommendationContext: {
|
|
156
|
+
title: string;
|
|
157
|
+
description: string;
|
|
158
|
+
icon: string;
|
|
159
|
+
};
|
|
160
|
+
goalTitle?: string;
|
|
161
|
+
objectiveTitle?: string;
|
|
162
|
+
strategyTitle?: string;
|
|
163
|
+
}
|
|
139
164
|
interface MetricsListModalData {
|
|
140
165
|
metrics: PerformanceMetricInterface[];
|
|
141
166
|
goalContext?: {
|
|
@@ -210,8 +235,53 @@ interface FunnelWeaknessDetailModalData {
|
|
|
210
235
|
totalCount: number;
|
|
211
236
|
isLightMode: boolean;
|
|
212
237
|
}
|
|
238
|
+
interface TopPrioritiesListModalData {
|
|
239
|
+
priorities: FocusAreaTopPriorityInterface[];
|
|
240
|
+
viewMode: ViewModeEnum;
|
|
241
|
+
focusAreaName?: string;
|
|
242
|
+
}
|
|
243
|
+
interface TopPriorityDetailModalData {
|
|
244
|
+
priority: FocusAreaTopPriorityInterface;
|
|
245
|
+
index: number;
|
|
246
|
+
totalCount: number;
|
|
247
|
+
viewMode: ViewModeEnum;
|
|
248
|
+
focusAreaName?: string;
|
|
249
|
+
}
|
|
250
|
+
interface FocusAreaStrengthsListModalData {
|
|
251
|
+
strengths: CategoryStrengthInterface[];
|
|
252
|
+
viewMode: ViewModeEnum;
|
|
253
|
+
categoryTitle: string;
|
|
254
|
+
}
|
|
255
|
+
interface FocusAreaGapsListModalData {
|
|
256
|
+
gaps: CategoryGapInterface[];
|
|
257
|
+
viewMode: ViewModeEnum;
|
|
258
|
+
categoryTitle: string;
|
|
259
|
+
}
|
|
260
|
+
interface FocusAreaOpportunitiesListModalData {
|
|
261
|
+
opportunities: CategoryOpportunityInterface[];
|
|
262
|
+
viewMode: ViewModeEnum;
|
|
263
|
+
categoryTitle: string;
|
|
264
|
+
}
|
|
265
|
+
interface FocusAreaStrengthDetailModalData {
|
|
266
|
+
strength: CategoryStrengthInterface;
|
|
267
|
+
categoryTitle: string;
|
|
268
|
+
viewMode: ViewModeEnum;
|
|
269
|
+
totalCount?: number;
|
|
270
|
+
}
|
|
271
|
+
interface FocusAreaGapDetailModalData {
|
|
272
|
+
gap: CategoryGapInterface;
|
|
273
|
+
categoryTitle: string;
|
|
274
|
+
viewMode: ViewModeEnum;
|
|
275
|
+
totalCount?: number;
|
|
276
|
+
}
|
|
277
|
+
interface FocusAreaOpportunityDetailModalData {
|
|
278
|
+
opportunity: CategoryOpportunityInterface;
|
|
279
|
+
categoryTitle: string;
|
|
280
|
+
viewMode: ViewModeEnum;
|
|
281
|
+
totalCount?: number;
|
|
282
|
+
}
|
|
213
283
|
interface ModalState {
|
|
214
|
-
type: 'insight' | 'metric' | 'chart' | 'insights-list' | 'goal-insights-list' | 'goal-business-insights-list' | 'business-insight-detail' | 'metrics-list' | 'charts-list' | 'recommendations-list' | 'competitive-analysis' | 'competitive-gap' | 'visualization' | 'recommendation-action-steps' | 'item-detail' | 'goal-detail' | 'goal-objectives' | 'objective-strategies' | 'strategy-recommendations' | 'category-detail' | 'strength-detail' | 'gap-detail' | 'opportunity-detail' | 'key-strengths-list' | 'critical-gaps-list' | 'key-strength-detail' | 'critical-gap-detail' | 'funnel-strengths-list' | 'funnel-weaknesses-list' | 'funnel-strength-detail' | 'funnel-weakness-detail' | null;
|
|
284
|
+
type: 'insight' | 'metric' | 'chart' | 'insights-list' | 'goal-insights-list' | 'goal-business-insights-list' | 'recommendation-business-insights-list' | 'recommendation-insights-list' | 'business-insight-detail' | 'metrics-list' | 'charts-list' | 'recommendations-list' | 'competitive-analysis' | 'competitive-gap' | 'visualization' | 'recommendation-action-steps' | 'item-detail' | 'goal-detail' | 'goal-objectives' | 'objective-strategies' | 'strategy-recommendations' | 'category-detail' | 'strength-detail' | 'gap-detail' | 'opportunity-detail' | 'key-strengths-list' | 'critical-gaps-list' | 'key-strength-detail' | 'critical-gap-detail' | 'funnel-strengths-list' | 'funnel-weaknesses-list' | 'funnel-strength-detail' | 'funnel-weakness-detail' | 'top-priorities-list' | 'top-priority-detail' | 'focus-area-strengths-list' | 'focus-area-gaps-list' | 'focus-area-opportunities-list' | 'focus-area-strength-detail' | 'focus-area-gap-detail' | 'focus-area-opportunity-detail' | null;
|
|
215
285
|
data: InsightBlockInterface | InsightBlockInterface[] | PerformanceMetricInterface | PerformanceMetricInterface[] | AiChartInterface | {
|
|
216
286
|
charts: AiChartInterface[];
|
|
217
287
|
insightContext?: {
|
|
@@ -243,13 +313,14 @@ interface ModalState {
|
|
|
243
313
|
title?: string;
|
|
244
314
|
actionSteps: ProfileAnalysisRecommendationActionStepInterface[];
|
|
245
315
|
viewMode: ViewModeEnum;
|
|
246
|
-
} | ItemDetailModalData | VisualizationData | GoalDetailModalData | GoalObjectivesModalData | ObjectiveStrategiesModalData | StrategyRecommendationsModalData | CategoryDetailModalData | StrengthDetailModalData | GapDetailModalData | OpportunityDetailModalData | GoalInsightsListModalData | GoalBusinessInsightsListModalData | MetricsListModalData | BusinessInsightDetailModalData | KeyStrengthsListModalData | CriticalGapsListModalData | KeyStrengthDetailModalData | CriticalGapDetailModalData | FunnelStrengthsListModalData | FunnelWeaknessesListModalData | FunnelStrengthDetailModalData | FunnelWeaknessDetailModalData | {
|
|
316
|
+
} | ItemDetailModalData | VisualizationData | GoalDetailModalData | GoalObjectivesModalData | ObjectiveStrategiesModalData | StrategyRecommendationsModalData | CategoryDetailModalData | StrengthDetailModalData | GapDetailModalData | OpportunityDetailModalData | GoalInsightsListModalData | GoalBusinessInsightsListModalData | RecommendationBusinessInsightsListModalData | RecommendationInsightsListModalData | MetricsListModalData | BusinessInsightDetailModalData | KeyStrengthsListModalData | CriticalGapsListModalData | KeyStrengthDetailModalData | CriticalGapDetailModalData | FunnelStrengthsListModalData | FunnelWeaknessesListModalData | FunnelStrengthDetailModalData | FunnelWeaknessDetailModalData | TopPrioritiesListModalData | TopPriorityDetailModalData | FocusAreaStrengthsListModalData | FocusAreaGapsListModalData | FocusAreaOpportunitiesListModalData | FocusAreaStrengthDetailModalData | FocusAreaGapDetailModalData | FocusAreaOpportunityDetailModalData | {
|
|
247
317
|
insight: InsightBlockInterface;
|
|
248
318
|
} | null;
|
|
249
319
|
charts: AiChartInterface[];
|
|
250
320
|
previousState?: ModalState | null;
|
|
251
321
|
expandedSection?: string;
|
|
252
322
|
navigationStack?: ModalState[];
|
|
323
|
+
openedFromMainBody?: boolean;
|
|
253
324
|
}
|
|
254
325
|
declare class ModalService {
|
|
255
326
|
private modalState;
|
|
@@ -258,6 +329,7 @@ declare class ModalService {
|
|
|
258
329
|
itemId: string;
|
|
259
330
|
itemType?: string;
|
|
260
331
|
} | null>;
|
|
332
|
+
constructor();
|
|
261
333
|
/**
|
|
262
334
|
* Checks if the current modal context is from Profile Analysis Dashboard
|
|
263
335
|
* by looking at the current modal state and navigation stack
|
|
@@ -277,6 +349,16 @@ declare class ModalService {
|
|
|
277
349
|
description: string;
|
|
278
350
|
icon: string;
|
|
279
351
|
}, viewMode: ViewModeEnum, previousState?: ModalState, sourceCategory?: string, sourceGapTitle?: string): void;
|
|
352
|
+
openRecommendationInsightsListModal(insights: InsightBlockInterface[], metrics: PerformanceMetricInterface[], charts: AiChartInterface[], recommendationContext: {
|
|
353
|
+
title: string;
|
|
354
|
+
description: string;
|
|
355
|
+
icon: string;
|
|
356
|
+
}, previousState?: ModalState, goalTitle?: string, objectiveTitle?: string, strategyTitle?: string): void;
|
|
357
|
+
openRecommendationBusinessInsightsListModal(businessInsights: ProfileAnalysisRecommendationInterface[], recommendationContext: {
|
|
358
|
+
title: string;
|
|
359
|
+
description: string;
|
|
360
|
+
icon: string;
|
|
361
|
+
}, previousState?: ModalState, goalTitle?: string, objectiveTitle?: string, strategyTitle?: string): void;
|
|
280
362
|
navigateToBusinessInsightDetail(recommendation: ProfileAnalysisRecommendationInterface, goalContext: {
|
|
281
363
|
title: string;
|
|
282
364
|
description: string;
|
|
@@ -338,9 +420,9 @@ declare class ModalService {
|
|
|
338
420
|
navigateToObjectiveStrategies(objective: ObjectiveV3Interface, goalTitle: string | undefined, viewMode: ViewModeEnum): void;
|
|
339
421
|
navigateToStrategyRecommendations(strategy: StrategyV3Interface, objectiveTitle: string | undefined, goalTitle: string | undefined, viewMode: ViewModeEnum): void;
|
|
340
422
|
openCategoryDetailModal(category: OperationalCategoryInterface, viewMode: ViewModeEnum, scrollToSection?: 'strengths' | 'gaps' | 'opportunities'): void;
|
|
341
|
-
navigateToStrengthDetail(strength: CategoryStrengthInterface, categoryTitle: string, viewMode: ViewModeEnum): void;
|
|
423
|
+
navigateToStrengthDetail(strength: CategoryStrengthInterface, categoryTitle: string, viewMode: ViewModeEnum, allFunnelStrengths?: FunnelStrengthInterface[]): void;
|
|
342
424
|
navigateToGapDetail(gap: CategoryGapInterface, categoryTitle: string, viewMode: ViewModeEnum): void;
|
|
343
|
-
navigateToOpportunityDetail(opportunity: CategoryOpportunityInterface, categoryTitle: string, viewMode: ViewModeEnum): void;
|
|
425
|
+
navigateToOpportunityDetail(opportunity: CategoryOpportunityInterface, categoryTitle: string, viewMode: ViewModeEnum, allStrengths?: FunnelStrengthInterface[], allGoals?: GoalV3Interface[]): void;
|
|
344
426
|
openKeyStrengthsListModal(keyStrengths: KeyStrengthInterface[], viewMode: ViewModeEnum): void;
|
|
345
427
|
openCriticalGapsListModal(criticalGaps: CriticalGapInterface[], viewMode: ViewModeEnum): void;
|
|
346
428
|
navigateToKeyStrengthDetail(strength: KeyStrengthInterface, viewMode: ViewModeEnum): void;
|
|
@@ -349,6 +431,16 @@ declare class ModalService {
|
|
|
349
431
|
openFunnelWeaknessesListModal(weaknesses: FunnelWeaknessInterface[], isLightMode: boolean): void;
|
|
350
432
|
navigateToFunnelStrengthDetail(strength: FunnelStrengthInterface, isLightMode: boolean): void;
|
|
351
433
|
navigateToFunnelWeaknessDetail(weakness: FunnelWeaknessInterface, isLightMode: boolean): void;
|
|
434
|
+
openFunnelWeaknessDetailModal(weakness: InsightBlockInterface, parentModalState?: ModalState): void;
|
|
435
|
+
openFunnelStrengthDetailModal(strength: any, parentModalState?: ModalState): void;
|
|
436
|
+
openTopPrioritiesListModal(priorities: FocusAreaTopPriorityInterface[], viewMode: ViewModeEnum, focusAreaName?: string): void;
|
|
437
|
+
navigateToTopPriorityDetail(priority: FocusAreaTopPriorityInterface, index: number, viewMode: ViewModeEnum, focusAreaName?: string): void;
|
|
438
|
+
openFocusAreaStrengthsListModal(strengths: CategoryStrengthInterface[], viewMode: ViewModeEnum, categoryTitle: string): void;
|
|
439
|
+
navigateToFocusAreaStrengthDetail(strength: CategoryStrengthInterface, categoryTitle: string, viewMode: ViewModeEnum): void;
|
|
440
|
+
openFocusAreaGapsListModal(gaps: CategoryGapInterface[], viewMode: ViewModeEnum, categoryTitle: string): void;
|
|
441
|
+
navigateToFocusAreaGapDetail(gap: CategoryGapInterface, categoryTitle: string, viewMode: ViewModeEnum): void;
|
|
442
|
+
openFocusAreaOpportunitiesListModal(opportunities: CategoryOpportunityInterface[], viewMode: ViewModeEnum, categoryTitle: string): void;
|
|
443
|
+
navigateToFocusAreaOpportunityDetail(opportunity: CategoryOpportunityInterface, categoryTitle: string, viewMode: ViewModeEnum): void;
|
|
352
444
|
closeModal(): void;
|
|
353
445
|
static ɵfac: _angular_core.ɵɵFactoryDeclaration<ModalService, never>;
|
|
354
446
|
static ɵprov: _angular_core.ɵɵInjectableDeclaration<ModalService>;
|
|
@@ -856,9 +948,9 @@ interface CrossDashboardRelationships {
|
|
|
856
948
|
businessAnalysis?: RelatedBusinessContent;
|
|
857
949
|
}
|
|
858
950
|
declare class CrossDashboardRelationshipsService {
|
|
859
|
-
getRelatedFunnelInsights(
|
|
860
|
-
getRelatedFunnelMetrics(
|
|
861
|
-
getRelatedBusinessInsights(
|
|
951
|
+
getRelatedFunnelInsights(goal: GoalV3Interface, allInsights: InsightBlockInterface[]): InsightBlockInterface[];
|
|
952
|
+
getRelatedFunnelMetrics(goal: GoalV3Interface, allMetrics: PerformanceMetricInterface[]): PerformanceMetricInterface[];
|
|
953
|
+
getRelatedBusinessInsights(goal: GoalV3Interface, allBusinessInsights: ProfileAnalysisRecommendationInterface[]): ProfileAnalysisRecommendationInterface[];
|
|
862
954
|
getRelatedContentForGoal(goal: GoalV3Interface, allInsights: InsightBlockInterface[], allMetrics: PerformanceMetricInterface[], allBusinessInsights: ProfileAnalysisRecommendationInterface[]): CrossDashboardRelationships;
|
|
863
955
|
static ɵfac: _angular_core.ɵɵFactoryDeclaration<CrossDashboardRelationshipsService, never>;
|
|
864
956
|
static ɵprov: _angular_core.ɵɵInjectableDeclaration<CrossDashboardRelationshipsService>;
|
|
@@ -904,7 +996,7 @@ declare class ModalComponent {
|
|
|
904
996
|
description: string;
|
|
905
997
|
icon: string;
|
|
906
998
|
} | null>;
|
|
907
|
-
metricsListData: _angular_core.Signal<InsightBlockInterface | PerformanceMetricInterface | AiChartInterface | (InsightBlockInterface | PerformanceMetricInterface)[] | null>;
|
|
999
|
+
metricsListData: _angular_core.Signal<InsightBlockInterface | PerformanceMetricInterface | AiChartInterface | FunnelStrengthsListModalData | FunnelWeaknessesListModalData | FunnelStrengthDetailModalData | FunnelWeaknessDetailModalData | (InsightBlockInterface | PerformanceMetricInterface)[] | null>;
|
|
908
1000
|
metricsListMetrics: _angular_core.Signal<PerformanceMetricInterface[]>;
|
|
909
1001
|
metricsListInsightContext: _angular_core.Signal<{
|
|
910
1002
|
title: string;
|
|
@@ -912,7 +1004,7 @@ declare class ModalComponent {
|
|
|
912
1004
|
businessContext: string;
|
|
913
1005
|
priority: number;
|
|
914
1006
|
} | null>;
|
|
915
|
-
chartsListData: _angular_core.Signal<InsightBlockInterface | PerformanceMetricInterface | AiChartInterface | (InsightBlockInterface | PerformanceMetricInterface)[] | null>;
|
|
1007
|
+
chartsListData: _angular_core.Signal<InsightBlockInterface | PerformanceMetricInterface | AiChartInterface | FunnelStrengthsListModalData | FunnelWeaknessesListModalData | FunnelStrengthDetailModalData | FunnelWeaknessDetailModalData | (InsightBlockInterface | PerformanceMetricInterface)[] | null>;
|
|
916
1008
|
chartsListCharts: _angular_core.Signal<AiChartInterface[]>;
|
|
917
1009
|
chartsListInsightContext: _angular_core.Signal<{
|
|
918
1010
|
title: string;
|
|
@@ -920,7 +1012,7 @@ declare class ModalComponent {
|
|
|
920
1012
|
businessContext: string;
|
|
921
1013
|
priority: number;
|
|
922
1014
|
} | null>;
|
|
923
|
-
recommendationsListData: _angular_core.Signal<InsightBlockInterface | PerformanceMetricInterface | AiChartInterface | (InsightBlockInterface | PerformanceMetricInterface)[] | null>;
|
|
1015
|
+
recommendationsListData: _angular_core.Signal<InsightBlockInterface | PerformanceMetricInterface | AiChartInterface | FunnelStrengthsListModalData | FunnelWeaknessesListModalData | FunnelStrengthDetailModalData | FunnelWeaknessDetailModalData | (InsightBlockInterface | PerformanceMetricInterface)[] | null>;
|
|
924
1016
|
recommendationsListRecommendations: _angular_core.Signal<string[]>;
|
|
925
1017
|
recommendationsListInsightContext: _angular_core.Signal<{
|
|
926
1018
|
title: string;
|
|
@@ -928,7 +1020,7 @@ declare class ModalComponent {
|
|
|
928
1020
|
businessContext: string;
|
|
929
1021
|
priority: number;
|
|
930
1022
|
} | null>;
|
|
931
|
-
competitiveAnalysisData: _angular_core.Signal<InsightBlockInterface | PerformanceMetricInterface | AiChartInterface | (InsightBlockInterface | PerformanceMetricInterface)[] | null>;
|
|
1023
|
+
competitiveAnalysisData: _angular_core.Signal<InsightBlockInterface | PerformanceMetricInterface | AiChartInterface | FunnelStrengthsListModalData | FunnelWeaknessesListModalData | FunnelStrengthDetailModalData | FunnelWeaknessDetailModalData | (InsightBlockInterface | PerformanceMetricInterface)[] | null>;
|
|
932
1024
|
competitiveAnalysisContext: _angular_core.Signal<{
|
|
933
1025
|
title: string;
|
|
934
1026
|
description: string;
|
|
@@ -969,14 +1061,19 @@ declare class ModalComponent {
|
|
|
969
1061
|
hasPreviousState: _angular_core.Signal<boolean>;
|
|
970
1062
|
currentModalState: _angular_core.Signal<{
|
|
971
1063
|
type: "insight" | "metric" | "chart" | "insights-list" | "goal-insights-list" | "goal-business-insights-list" | "metrics-list" | "charts-list" | "recommendations-list" | "competitive-analysis" | "funnel-strengths-list" | "funnel-weaknesses-list" | "funnel-strength-detail" | "funnel-weakness-detail" | "business-insight-detail" | null;
|
|
972
|
-
data: InsightBlockInterface | PerformanceMetricInterface | AiChartInterface | (InsightBlockInterface | PerformanceMetricInterface)[] | null;
|
|
1064
|
+
data: InsightBlockInterface | PerformanceMetricInterface | AiChartInterface | (InsightBlockInterface | PerformanceMetricInterface)[] | FunnelStrengthsListModalData | FunnelWeaknessesListModalData | FunnelStrengthDetailModalData | FunnelWeaknessDetailModalData | null;
|
|
973
1065
|
charts: AiChartInterface[];
|
|
974
1066
|
openedAt: number;
|
|
975
1067
|
previousState: ModalState | null;
|
|
976
1068
|
expandedSection: string | undefined;
|
|
1069
|
+
navigationStack: ModalState[];
|
|
977
1070
|
}>;
|
|
978
1071
|
expandedSection: _angular_core.Signal<string | undefined>;
|
|
979
1072
|
modalTitle: _angular_core.Signal<string>;
|
|
1073
|
+
modalDepth: _angular_core.Signal<number>;
|
|
1074
|
+
baseZIndex: _angular_core.Signal<number>;
|
|
1075
|
+
backdropZIndex: _angular_core.Signal<number>;
|
|
1076
|
+
contentZIndex: _angular_core.Signal<number>;
|
|
980
1077
|
private modalService;
|
|
981
1078
|
private breadcrumbService;
|
|
982
1079
|
shouldShowBreadcrumbs: _angular_core.Signal<boolean>;
|
|
@@ -1078,6 +1175,20 @@ declare class ProfileContextService {
|
|
|
1078
1175
|
static ɵprov: _angular_core.ɵɵInjectableDeclaration<ProfileContextService>;
|
|
1079
1176
|
}
|
|
1080
1177
|
|
|
1178
|
+
declare class ProfileItemLookupService {
|
|
1179
|
+
private profileData;
|
|
1180
|
+
setProfile(profile: ProfileInterface | undefined): void;
|
|
1181
|
+
findItemById(id: string): ProfileItemInterface | undefined;
|
|
1182
|
+
findItemsByIds(ids: string[]): ProfileItemInterface[];
|
|
1183
|
+
findItemWithContext(id: string): {
|
|
1184
|
+
item: ProfileItemInterface;
|
|
1185
|
+
sectionTitle: string;
|
|
1186
|
+
subsectionTitle: string;
|
|
1187
|
+
} | undefined;
|
|
1188
|
+
static ɵfac: _angular_core.ɵɵFactoryDeclaration<ProfileItemLookupService, never>;
|
|
1189
|
+
static ɵprov: _angular_core.ɵɵInjectableDeclaration<ProfileItemLookupService>;
|
|
1190
|
+
}
|
|
1191
|
+
|
|
1081
1192
|
declare enum DisplayModeEnum {
|
|
1082
1193
|
SIMPLIFIED = "SIMPLIFIED",
|
|
1083
1194
|
COMPACT = "COMPACT",
|
|
@@ -1104,18 +1215,19 @@ declare class SymphiqFunnelAnalysisDashboardComponent implements AfterViewInit {
|
|
|
1104
1215
|
searchService: SearchService;
|
|
1105
1216
|
private tooltipService;
|
|
1106
1217
|
private profileContextService;
|
|
1218
|
+
private profileItemLookupService;
|
|
1107
1219
|
modalComponent?: ModalComponent;
|
|
1108
1220
|
dashboardContainer?: ElementRef<HTMLElement>;
|
|
1109
1221
|
protected readonly ViewModeEnum: typeof ViewModeEnum;
|
|
1110
1222
|
requestedByUser: _angular_core.InputSignal<UserInterface | undefined>;
|
|
1111
1223
|
viewMode: _angular_core.InputSignal<ViewModeEnum>;
|
|
1112
1224
|
funnelAnalysis: _angular_core.InputSignal<FunnelAnalysisInterface | undefined>;
|
|
1225
|
+
businessProfile: _angular_core.InputSignal<ProfileInterface | undefined>;
|
|
1113
1226
|
embedded: _angular_core.InputSignal<boolean>;
|
|
1114
1227
|
scrollEvent: _angular_core.InputSignal<ScrollCustomEvent | null | undefined>;
|
|
1115
1228
|
scrollElement: _angular_core.InputSignal<HTMLElement | null | undefined>;
|
|
1116
1229
|
isLoading: _angular_core.InputSignal<boolean | undefined>;
|
|
1117
|
-
|
|
1118
|
-
onboarded: _angular_core.InputSignal<boolean>;
|
|
1230
|
+
isOnboarded: _angular_core.InputSignal<boolean>;
|
|
1119
1231
|
selectedCategory: _angular_core.WritableSignal<string>;
|
|
1120
1232
|
reverseSortOrder: _angular_core.WritableSignal<boolean>;
|
|
1121
1233
|
selectedSectionFilter: _angular_core.WritableSignal<string>;
|
|
@@ -1223,7 +1335,7 @@ declare class SymphiqFunnelAnalysisDashboardComponent implements AfterViewInit {
|
|
|
1223
1335
|
showCompetitiveIntelligence: _angular_core.Signal<boolean>;
|
|
1224
1336
|
tocSections: _angular_core.Signal<ProfileSectionInterface[]>;
|
|
1225
1337
|
private dateFormatCache;
|
|
1226
|
-
constructor(funnelOrderService: FunnelOrderService, viewModeService: ViewModeService, searchService: SearchService, tooltipService: TooltipService, profileContextService: ProfileContextService);
|
|
1338
|
+
constructor(funnelOrderService: FunnelOrderService, viewModeService: ViewModeService, searchService: SearchService, tooltipService: TooltipService, profileContextService: ProfileContextService, profileItemLookupService: ProfileItemLookupService);
|
|
1227
1339
|
ngAfterViewInit(): void;
|
|
1228
1340
|
handleSearchResult(result: SearchResult): void;
|
|
1229
1341
|
clearSearchResult(): void;
|
|
@@ -1251,7 +1363,7 @@ declare class SymphiqFunnelAnalysisDashboardComponent implements AfterViewInit {
|
|
|
1251
1363
|
getCategoryPillClass(categoryValue: string): string;
|
|
1252
1364
|
formatValue(value: number): string;
|
|
1253
1365
|
static ɵfac: _angular_core.ɵɵFactoryDeclaration<SymphiqFunnelAnalysisDashboardComponent, never>;
|
|
1254
|
-
static ɵcmp: _angular_core.ɵɵComponentDeclaration<SymphiqFunnelAnalysisDashboardComponent, "symphiq-funnel-analysis-dashboard", never, { "requestedByUser": { "alias": "requestedByUser"; "required": false; "isSignal": true; }; "viewMode": { "alias": "viewMode"; "required": false; "isSignal": true; }; "funnelAnalysis": { "alias": "funnelAnalysis"; "required": false; "isSignal": true; }; "
|
|
1366
|
+
static ɵcmp: _angular_core.ɵɵComponentDeclaration<SymphiqFunnelAnalysisDashboardComponent, "symphiq-funnel-analysis-dashboard", never, { "requestedByUser": { "alias": "requestedByUser"; "required": false; "isSignal": true; }; "viewMode": { "alias": "viewMode"; "required": false; "isSignal": true; }; "funnelAnalysis": { "alias": "funnelAnalysis"; "required": false; "isSignal": true; }; "businessProfile": { "alias": "businessProfile"; "required": false; "isSignal": true; }; "embedded": { "alias": "embedded"; "required": false; "isSignal": true; }; "scrollEvent": { "alias": "scrollEvent"; "required": false; "isSignal": true; }; "scrollElement": { "alias": "scrollElement"; "required": false; "isSignal": true; }; "isLoading": { "alias": "isLoading"; "required": false; "isSignal": true; }; "isOnboarded": { "alias": "isOnboarded"; "required": false; "isSignal": true; }; }, {}, never, never, true, never>;
|
|
1255
1367
|
}
|
|
1256
1368
|
|
|
1257
1369
|
declare class MetricCardComponent {
|
|
@@ -1339,7 +1451,7 @@ declare class MetricCardComponent {
|
|
|
1339
1451
|
competitiveScoreBadgeLightClass: _angular_core.Signal<string>;
|
|
1340
1452
|
competitiveScoreBadgeDarkClass: _angular_core.Signal<string>;
|
|
1341
1453
|
competitiveScoreBadgeClass: _angular_core.Signal<string>;
|
|
1342
|
-
competitiveScoreTextClass: _angular_core.Signal<"" | "text-
|
|
1454
|
+
competitiveScoreTextClass: _angular_core.Signal<"" | "text-blue-400" | "text-blue-700" | "text-orange-600" | "text-emerald-600">;
|
|
1343
1455
|
competitiveComparisonDefaultClass: _angular_core.Signal<"text-slate-300" | "text-slate-700">;
|
|
1344
1456
|
competitiveComparisonClass: _angular_core.Signal<"text-slate-300" | "text-slate-700" | "text-emerald-600 font-semibold" | "text-orange-600 font-semibold">;
|
|
1345
1457
|
getCompetitiveScoreIcon(): string;
|
|
@@ -1391,9 +1503,9 @@ declare class InsightCardComponent {
|
|
|
1391
1503
|
recommendationsContainerLightClass: _angular_core.Signal<string>;
|
|
1392
1504
|
recommendationsContainerDarkClass: _angular_core.Signal<string>;
|
|
1393
1505
|
recommendationsContainerClass: _angular_core.Signal<string>;
|
|
1394
|
-
priorityBadgeLightClass: _angular_core.Signal<"w-8 h-8 flex items-center justify-center rounded-full text-xs font-bold border-2 backdrop-blur-md
|
|
1395
|
-
priorityBadgeDarkClass: _angular_core.Signal<"w-8 h-8 flex items-center justify-center rounded-full text-xs font-bold border-2 backdrop-blur-md
|
|
1396
|
-
priorityBadgeClass: _angular_core.Signal<"w-8 h-8 flex items-center justify-center rounded-full text-xs font-bold border-2 backdrop-blur-md
|
|
1506
|
+
priorityBadgeLightClass: _angular_core.Signal<"w-8 h-8 flex items-center justify-center rounded-full text-xs font-bold border-2 backdrop-blur-md bg-amber-100/70 text-amber-700 border-amber-400/60" | "w-8 h-8 flex items-center justify-center rounded-full text-xs font-bold border-2 backdrop-blur-md bg-blue-100/70 text-blue-700 border-blue-400/60" | "w-8 h-8 flex items-center justify-center rounded-full text-xs font-bold border-2 backdrop-blur-md bg-slate-100/70 text-slate-700 border-slate-400/60" | "w-8 h-8 flex items-center justify-center rounded-full text-xs font-bold border-2 backdrop-blur-md animate-pulse bg-red-100/70 text-red-700 border-red-400/60">;
|
|
1507
|
+
priorityBadgeDarkClass: _angular_core.Signal<"w-8 h-8 flex items-center justify-center rounded-full text-xs font-bold border-2 backdrop-blur-md bg-amber-500/20 text-amber-400 border-amber-500/50" | "w-8 h-8 flex items-center justify-center rounded-full text-xs font-bold border-2 backdrop-blur-md bg-blue-500/20 text-blue-400 border-blue-500/50" | "w-8 h-8 flex items-center justify-center rounded-full text-xs font-bold border-2 backdrop-blur-md bg-slate-500/20 text-slate-400 border-slate-500/50" | "w-8 h-8 flex items-center justify-center rounded-full text-xs font-bold border-2 backdrop-blur-md animate-pulse bg-red-500/20 text-red-400 border-red-500/50">;
|
|
1508
|
+
priorityBadgeClass: _angular_core.Signal<"w-8 h-8 flex items-center justify-center rounded-full text-xs font-bold border-2 backdrop-blur-md bg-amber-100/70 text-amber-700 border-amber-400/60" | "w-8 h-8 flex items-center justify-center rounded-full text-xs font-bold border-2 backdrop-blur-md bg-blue-100/70 text-blue-700 border-blue-400/60" | "w-8 h-8 flex items-center justify-center rounded-full text-xs font-bold border-2 backdrop-blur-md bg-slate-100/70 text-slate-700 border-slate-400/60" | "w-8 h-8 flex items-center justify-center rounded-full text-xs font-bold border-2 backdrop-blur-md bg-amber-500/20 text-amber-400 border-amber-500/50" | "w-8 h-8 flex items-center justify-center rounded-full text-xs font-bold border-2 backdrop-blur-md bg-blue-500/20 text-blue-400 border-blue-500/50" | "w-8 h-8 flex items-center justify-center rounded-full text-xs font-bold border-2 backdrop-blur-md bg-slate-500/20 text-slate-400 border-slate-500/50" | "w-8 h-8 flex items-center justify-center rounded-full text-xs font-bold border-2 backdrop-blur-md animate-pulse bg-red-100/70 text-red-700 border-red-400/60" | "w-8 h-8 flex items-center justify-center rounded-full text-xs font-bold border-2 backdrop-blur-md animate-pulse bg-red-500/20 text-red-400 border-red-500/50">;
|
|
1397
1509
|
containerLightClass: _angular_core.Signal<"transition-all duration-300 hover:shadow-2xl hover:-translate-y-1 cursor-pointer group bg-gradient-to-br from-white to-blue-50/50 border-2 border-blue-300 hover:border-blue-400 shadow-lg shadow-blue-200/50 hover:shadow-blue-300/60" | "transition-all duration-300 hover:shadow-2xl hover:-translate-y-1 cursor-pointer group bg-white border-slate-200 hover:border-blue-400 hover:shadow-blue-100/50">;
|
|
1398
1510
|
containerDarkClass: _angular_core.Signal<"transition-all duration-300 hover:shadow-2xl hover:-translate-y-1 cursor-pointer group bg-gradient-to-br from-slate-800 to-blue-900/20 border-2 border-blue-500/40 hover:border-blue-400/60 shadow-lg shadow-blue-500/20 hover:shadow-blue-500/30" | "transition-all duration-300 hover:shadow-2xl hover:-translate-y-1 cursor-pointer group bg-slate-800 border-slate-700 hover:border-slate-500 hover:shadow-slate-900/50">;
|
|
1399
1511
|
containerClass: _angular_core.Signal<"transition-all duration-300 hover:shadow-2xl hover:-translate-y-1 cursor-pointer group bg-gradient-to-br from-white to-blue-50/50 border-2 border-blue-300 hover:border-blue-400 shadow-lg shadow-blue-200/50 hover:shadow-blue-300/60" | "transition-all duration-300 hover:shadow-2xl hover:-translate-y-1 cursor-pointer group bg-white border-slate-200 hover:border-blue-400 hover:shadow-blue-100/50" | "transition-all duration-300 hover:shadow-2xl hover:-translate-y-1 cursor-pointer group bg-gradient-to-br from-slate-800 to-blue-900/20 border-2 border-blue-500/40 hover:border-blue-400/60 shadow-lg shadow-blue-500/20 hover:shadow-blue-500/30" | "transition-all duration-300 hover:shadow-2xl hover:-translate-y-1 cursor-pointer group bg-slate-800 border-slate-700 hover:border-slate-500 hover:shadow-slate-900/50">;
|
|
@@ -1580,12 +1692,12 @@ declare class OverallAssessmentComponent {
|
|
|
1580
1692
|
revenueTrendDirection: _angular_core.Signal<TrendDirectionEnum>;
|
|
1581
1693
|
isRevenueTrendPositive: _angular_core.Signal<boolean>;
|
|
1582
1694
|
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">;
|
|
1583
|
-
lightModeTrendIconClass: _angular_core.Signal<"text-
|
|
1695
|
+
lightModeTrendIconClass: _angular_core.Signal<"text-red-600" | "text-emerald-600">;
|
|
1584
1696
|
darkModeTrendIconClass: _angular_core.Signal<"text-emerald-400" | "text-red-400">;
|
|
1585
|
-
trendIconClass: _angular_core.Signal<"text-emerald-400" | "text-
|
|
1586
|
-
lightModeTrendValueClass: _angular_core.Signal<"text-
|
|
1697
|
+
trendIconClass: _angular_core.Signal<"text-emerald-400" | "text-red-400" | "text-red-600" | "text-emerald-600">;
|
|
1698
|
+
lightModeTrendValueClass: _angular_core.Signal<"text-red-600" | "text-emerald-600">;
|
|
1587
1699
|
darkModeTrendValueClass: _angular_core.Signal<"text-emerald-400" | "text-red-400">;
|
|
1588
|
-
trendValueClass: _angular_core.Signal<"text-emerald-400" | "text-
|
|
1700
|
+
trendValueClass: _angular_core.Signal<"text-emerald-400" | "text-red-400" | "text-red-600" | "text-emerald-600">;
|
|
1589
1701
|
formattedRevenueTrend: _angular_core.Signal<string>;
|
|
1590
1702
|
formattedRevenueTarget: _angular_core.Signal<string>;
|
|
1591
1703
|
hasRevenuePacing: _angular_core.Signal<boolean>;
|
|
@@ -1846,7 +1958,6 @@ declare class MobileFABComponent {
|
|
|
1846
1958
|
declare class SymphiqFunnelAnalysisPreviewComponent {
|
|
1847
1959
|
analysisInput: _angular_core.InputSignal<FunnelAnalysisInterface | undefined>;
|
|
1848
1960
|
viewMode: _angular_core.InputSignal<ViewModeEnum>;
|
|
1849
|
-
useSampleData: _angular_core.InputSignal<boolean>;
|
|
1850
1961
|
scrollElement: _angular_core.InputSignal<HTMLElement | null | undefined>;
|
|
1851
1962
|
isLightMode: _angular_core.Signal<boolean>;
|
|
1852
1963
|
onViewAnalysis: _angular_core.OutputEmitterRef<void>;
|
|
@@ -1866,7 +1977,7 @@ declare class SymphiqFunnelAnalysisPreviewComponent {
|
|
|
1866
1977
|
topMetrics: _angular_core.Signal<PerformanceMetricInterface[]>;
|
|
1867
1978
|
formattedRevenueValue: _angular_core.Signal<string>;
|
|
1868
1979
|
formattedRevenueTrend: _angular_core.Signal<string>;
|
|
1869
|
-
revenueStatusIcon: _angular_core.Signal<"
|
|
1980
|
+
revenueStatusIcon: _angular_core.Signal<"→" | "⚠" | "↑" | "•">;
|
|
1870
1981
|
hasCompetitiveData: _angular_core.Signal<boolean>;
|
|
1871
1982
|
hasOverallCompetitiveBenchmark: _angular_core.Signal<boolean>;
|
|
1872
1983
|
overallCompetitiveDescription: _angular_core.Signal<string>;
|
|
@@ -1972,21 +2083,7 @@ declare class SymphiqFunnelAnalysisPreviewComponent {
|
|
|
1972
2083
|
private extractChartData;
|
|
1973
2084
|
handleViewAnalysis(): void;
|
|
1974
2085
|
static ɵfac: _angular_core.ɵɵFactoryDeclaration<SymphiqFunnelAnalysisPreviewComponent, never>;
|
|
1975
|
-
static ɵcmp: _angular_core.ɵɵComponentDeclaration<SymphiqFunnelAnalysisPreviewComponent, "symphiq-funnel-analysis-preview", never, { "analysisInput": { "alias": "funnelAnalysis"; "required": false; "isSignal": true; }; "viewMode": { "alias": "viewMode"; "required": false; "isSignal": true; }; "
|
|
1976
|
-
}
|
|
1977
|
-
|
|
1978
|
-
declare class ProfileItemLookupService {
|
|
1979
|
-
private profileData;
|
|
1980
|
-
setProfile(profile: ProfileInterface | undefined): void;
|
|
1981
|
-
findItemById(id: string): ProfileItemInterface | undefined;
|
|
1982
|
-
findItemsByIds(ids: string[]): ProfileItemInterface[];
|
|
1983
|
-
findItemWithContext(id: string): {
|
|
1984
|
-
item: ProfileItemInterface;
|
|
1985
|
-
sectionTitle: string;
|
|
1986
|
-
subsectionTitle: string;
|
|
1987
|
-
} | undefined;
|
|
1988
|
-
static ɵfac: _angular_core.ɵɵFactoryDeclaration<ProfileItemLookupService, never>;
|
|
1989
|
-
static ɵprov: _angular_core.ɵɵInjectableDeclaration<ProfileItemLookupService>;
|
|
2086
|
+
static ɵcmp: _angular_core.ɵɵComponentDeclaration<SymphiqFunnelAnalysisPreviewComponent, "symphiq-funnel-analysis-preview", never, { "analysisInput": { "alias": "funnelAnalysis"; "required": false; "isSignal": true; }; "viewMode": { "alias": "viewMode"; "required": false; "isSignal": true; }; "scrollElement": { "alias": "scrollElement"; "required": false; "isSignal": true; }; }, { "onViewAnalysis": "onViewAnalysis"; }, never, never, true, never>;
|
|
1990
2087
|
}
|
|
1991
2088
|
|
|
1992
2089
|
declare class SymphiqBusinessAnalysisDashboardComponent implements OnInit, AfterViewInit, OnDestroy {
|
|
@@ -1999,10 +2096,9 @@ declare class SymphiqBusinessAnalysisDashboardComponent implements OnInit, After
|
|
|
1999
2096
|
scrollEvent?: Event;
|
|
2000
2097
|
scrollElement?: HTMLElement;
|
|
2001
2098
|
isLoading: boolean;
|
|
2002
|
-
useSampleData: boolean;
|
|
2003
2099
|
profile?: ProfileInterface;
|
|
2004
2100
|
parentHeaderOffset: number;
|
|
2005
|
-
|
|
2101
|
+
isOnboarded: boolean;
|
|
2006
2102
|
protected headerScrollService: HeaderScrollService;
|
|
2007
2103
|
protected lookupService: ProfileItemLookupService;
|
|
2008
2104
|
protected navigationService: NavigationStateService;
|
|
@@ -2071,7 +2167,7 @@ declare class SymphiqBusinessAnalysisDashboardComponent implements OnInit, After
|
|
|
2071
2167
|
protected getSpinnerClasses(): string;
|
|
2072
2168
|
protected trackBySectionId(index: number, section: ProfileSectionInterface): string | number;
|
|
2073
2169
|
static ɵfac: _angular_core.ɵɵFactoryDeclaration<SymphiqBusinessAnalysisDashboardComponent, never>;
|
|
2074
|
-
static ɵcmp: _angular_core.ɵɵComponentDeclaration<SymphiqBusinessAnalysisDashboardComponent, "symphiq-business-analysis-dashboard", never, { "requestedByUser": { "alias": "requestedByUser"; "required": false; }; "viewMode": { "alias": "viewMode"; "required": false; }; "embedded": { "alias": "embedded"; "required": false; }; "scrollEvent": { "alias": "scrollEvent"; "required": false; }; "scrollElement": { "alias": "scrollElement"; "required": false; }; "isLoading": { "alias": "isLoading"; "required": false; }; "
|
|
2170
|
+
static ɵcmp: _angular_core.ɵɵComponentDeclaration<SymphiqBusinessAnalysisDashboardComponent, "symphiq-business-analysis-dashboard", never, { "requestedByUser": { "alias": "requestedByUser"; "required": false; }; "viewMode": { "alias": "viewMode"; "required": false; }; "embedded": { "alias": "embedded"; "required": false; }; "scrollEvent": { "alias": "scrollEvent"; "required": false; }; "scrollElement": { "alias": "scrollElement"; "required": false; }; "isLoading": { "alias": "isLoading"; "required": false; }; "profile": { "alias": "profile"; "required": false; }; "parentHeaderOffset": { "alias": "parentHeaderOffset"; "required": false; }; "isOnboarded": { "alias": "isOnboarded"; "required": false; }; }, {}, never, never, true, never>;
|
|
2075
2171
|
}
|
|
2076
2172
|
|
|
2077
2173
|
declare class ProfileSectionComponent {
|
|
@@ -2381,8 +2477,8 @@ declare class SymphiqProfileAnalysisDashboardComponent implements OnInit, OnChan
|
|
|
2381
2477
|
profile?: ProfileInterface;
|
|
2382
2478
|
funnelAnalysis?: FunnelAnalysisInterface;
|
|
2383
2479
|
analysisType: ProfileAnalysisTypeEnum;
|
|
2384
|
-
|
|
2385
|
-
|
|
2480
|
+
focusAreaDetails?: FocusAreaDetailInterface[];
|
|
2481
|
+
isOnboarded: boolean;
|
|
2386
2482
|
protected funnelAnalysisSignal: _angular_core.WritableSignal<FunnelAnalysisInterface | undefined>;
|
|
2387
2483
|
protected readonly headerScrollService: HeaderScrollService;
|
|
2388
2484
|
protected readonly modalService: ModalService;
|
|
@@ -2400,6 +2496,35 @@ declare class SymphiqProfileAnalysisDashboardComponent implements OnInit, OnChan
|
|
|
2400
2496
|
protected currentModalNavigationStack: _angular_core.WritableSignal<ModalState[]>;
|
|
2401
2497
|
protected isLightMode: _angular_core.Signal<boolean>;
|
|
2402
2498
|
protected isSimplifiedView: _angular_core.Signal<boolean>;
|
|
2499
|
+
protected isFocusAreaAnalysis: _angular_core.Signal<boolean>;
|
|
2500
|
+
protected isMetricAnalysis: _angular_core.Signal<boolean>;
|
|
2501
|
+
protected isShopAnalysis: _angular_core.Signal<boolean>;
|
|
2502
|
+
focusAreaDomain: _angular_core.Signal<FocusAreaDomainEnum | undefined>;
|
|
2503
|
+
protected focusAreaName: _angular_core.Signal<string>;
|
|
2504
|
+
protected metricName: _angular_core.Signal<string>;
|
|
2505
|
+
protected focusAreaExecutiveSummary: _angular_core.Signal<{
|
|
2506
|
+
gradeRationale: string | undefined;
|
|
2507
|
+
overallGrade?: _jebgem_model.OverallGradeEnum;
|
|
2508
|
+
focusAreaHealth?: _jebgem_model.FocusAreaHealthEnum;
|
|
2509
|
+
narrative?: string;
|
|
2510
|
+
topPriorities?: _jebgem_model.FocusAreaTopPriorityInterface[];
|
|
2511
|
+
quickWins?: _jebgem_model.QuickWinItemInterface[];
|
|
2512
|
+
napkinVisual?: _jebgem_model.NapkinVisualInterface;
|
|
2513
|
+
} | undefined>;
|
|
2514
|
+
protected metricExecutiveSummary: _angular_core.Signal<{
|
|
2515
|
+
gradeRationale: string | undefined;
|
|
2516
|
+
narrative: string | undefined;
|
|
2517
|
+
metric?: string;
|
|
2518
|
+
overallGrade?: _jebgem_model.OverallGradeEnum;
|
|
2519
|
+
metricHealth?: _jebgem_model.MetricHealthEnum;
|
|
2520
|
+
currentValue?: string;
|
|
2521
|
+
targetValue?: string;
|
|
2522
|
+
pacingStatus?: _jebgem_model.PacingStatusEnum;
|
|
2523
|
+
yoyChange?: string;
|
|
2524
|
+
topPriorities?: _jebgem_model.MetricTopPriorityInterface[];
|
|
2525
|
+
quickWins?: _jebgem_model.QuickWinItemInterface[];
|
|
2526
|
+
napkinVisual?: _jebgem_model.NapkinVisualInterface;
|
|
2527
|
+
} | undefined>;
|
|
2403
2528
|
protected executiveSummary: _angular_core.Signal<{
|
|
2404
2529
|
gradeRationale: string | undefined;
|
|
2405
2530
|
overallGrade?: _jebgem_model.OverallGradeEnum;
|
|
@@ -2423,6 +2548,8 @@ declare class SymphiqProfileAnalysisDashboardComponent implements OnInit, OnChan
|
|
|
2423
2548
|
protected allMetrics: _angular_core.Signal<PerformanceMetricInterface[]>;
|
|
2424
2549
|
protected allCharts: _angular_core.Signal<AiChartInterface[]>;
|
|
2425
2550
|
protected allInsights: _angular_core.Signal<_jebgem_model.InsightBlockInterface[]>;
|
|
2551
|
+
protected funnelWeaknesses: _angular_core.Signal<_jebgem_model_lib_funnel_analysis_performance_overview_structured_v3_interface.FunnelWeaknessInterface[]>;
|
|
2552
|
+
protected funnelStrengths: _angular_core.Signal<_jebgem_model_lib_funnel_analysis_performance_overview_structured_v3_interface.FunnelStrengthInterface[]>;
|
|
2426
2553
|
protected allBusinessInsights: _angular_core.Signal<ProfileAnalysisRecommendationInterface[]>;
|
|
2427
2554
|
onWindowScroll(): void;
|
|
2428
2555
|
ngOnChanges(changes: SimpleChanges): void;
|
|
@@ -2434,6 +2561,14 @@ declare class SymphiqProfileAnalysisDashboardComponent implements OnInit, OnChan
|
|
|
2434
2561
|
protected openViewModeSwitcher(): void;
|
|
2435
2562
|
protected closeViewModeSwitcher(): void;
|
|
2436
2563
|
protected openGoalModal(goal: GoalV3Interface): void;
|
|
2564
|
+
protected handleTopPrioritiesClick(): void;
|
|
2565
|
+
protected handlePriorityDetailClick(event: {
|
|
2566
|
+
priority: any;
|
|
2567
|
+
index: number;
|
|
2568
|
+
}): void;
|
|
2569
|
+
protected handleMetricTopPrioritiesClick(): void;
|
|
2570
|
+
protected handleMetricPriorityDetailClick(priority: any): void;
|
|
2571
|
+
private getFocusAreaName;
|
|
2437
2572
|
protected getCurrentModalState(): ModalState;
|
|
2438
2573
|
protected getGoalDetailData(): {
|
|
2439
2574
|
goal: GoalV3Interface;
|
|
@@ -2472,6 +2607,7 @@ declare class SymphiqProfileAnalysisDashboardComponent implements OnInit, OnChan
|
|
|
2472
2607
|
} | null;
|
|
2473
2608
|
protected handleDisplayModeChange(mode: DisplayModeEnum): void;
|
|
2474
2609
|
protected getAnalysisTypeLabel(): string;
|
|
2610
|
+
protected getAnalysisSubtitle(): string;
|
|
2475
2611
|
protected getGradeDisplay(): string;
|
|
2476
2612
|
protected getContainerClasses(): string;
|
|
2477
2613
|
protected getBannerClasses(): string;
|
|
@@ -2506,13 +2642,13 @@ declare class SymphiqProfileAnalysisDashboardComponent implements OnInit, OnChan
|
|
|
2506
2642
|
protected onCriticalGapsClick(summary: ExecutiveSummaryInterface): void;
|
|
2507
2643
|
protected scrollToQuickWins(): void;
|
|
2508
2644
|
static ɵfac: _angular_core.ɵɵFactoryDeclaration<SymphiqProfileAnalysisDashboardComponent, never>;
|
|
2509
|
-
static ɵcmp: _angular_core.ɵɵComponentDeclaration<SymphiqProfileAnalysisDashboardComponent, "symphiq-profile-analysis-dashboard", never, { "viewMode": { "alias": "viewMode"; "required": false; }; "embedded": { "alias": "embedded"; "required": false; }; "profileAnalysis": { "alias": "profileAnalysis"; "required": false; }; "profile": { "alias": "profile"; "required": false; }; "funnelAnalysis": { "alias": "funnelAnalysis"; "required": false; }; "analysisType": { "alias": "analysisType"; "required": false; }; "
|
|
2645
|
+
static ɵcmp: _angular_core.ɵɵComponentDeclaration<SymphiqProfileAnalysisDashboardComponent, "symphiq-profile-analysis-dashboard", never, { "viewMode": { "alias": "viewMode"; "required": false; }; "embedded": { "alias": "embedded"; "required": false; }; "profileAnalysis": { "alias": "profileAnalysis"; "required": false; }; "profile": { "alias": "profile"; "required": false; }; "funnelAnalysis": { "alias": "funnelAnalysis"; "required": false; }; "analysisType": { "alias": "analysisType"; "required": false; }; "focusAreaDetails": { "alias": "focusAreaDetails"; "required": false; }; "isOnboarded": { "alias": "isOnboarded"; "required": false; }; }, {}, never, never, true, never>;
|
|
2510
2646
|
}
|
|
2511
2647
|
|
|
2512
2648
|
declare class ShopWelcomeBannerComponent {
|
|
2513
2649
|
viewMode: ViewModeEnum;
|
|
2514
2650
|
businessName: string;
|
|
2515
|
-
|
|
2651
|
+
isOnboarded: boolean;
|
|
2516
2652
|
protected containerClasses(): string;
|
|
2517
2653
|
protected contentClasses(): string;
|
|
2518
2654
|
protected iconContainerClasses(): string;
|
|
@@ -2527,7 +2663,118 @@ declare class ShopWelcomeBannerComponent {
|
|
|
2527
2663
|
protected nextStepsTitleClasses(): string;
|
|
2528
2664
|
protected nextStepsTextClasses(): string;
|
|
2529
2665
|
static ɵfac: _angular_core.ɵɵFactoryDeclaration<ShopWelcomeBannerComponent, never>;
|
|
2530
|
-
static ɵcmp: _angular_core.ɵɵComponentDeclaration<ShopWelcomeBannerComponent, "symphiq-shop-welcome-banner", never, { "viewMode": { "alias": "viewMode"; "required": false; }; "businessName": { "alias": "businessName"; "required": false; }; "
|
|
2666
|
+
static ɵcmp: _angular_core.ɵɵComponentDeclaration<ShopWelcomeBannerComponent, "symphiq-shop-welcome-banner", never, { "viewMode": { "alias": "viewMode"; "required": false; }; "businessName": { "alias": "businessName"; "required": false; }; "isOnboarded": { "alias": "isOnboarded"; "required": false; }; }, {}, never, never, true, never>;
|
|
2667
|
+
}
|
|
2668
|
+
|
|
2669
|
+
declare class MetricWelcomeBannerComponent {
|
|
2670
|
+
viewMode: ViewModeEnum;
|
|
2671
|
+
metricName?: string;
|
|
2672
|
+
isOnboarded: boolean;
|
|
2673
|
+
protected readonly IconSourceEnum: typeof IconSourceEnum;
|
|
2674
|
+
protected metricDisplayName: _angular_core.Signal<string>;
|
|
2675
|
+
protected metricIcon: _angular_core.Signal<{
|
|
2676
|
+
name: string;
|
|
2677
|
+
source: IconSourceEnum;
|
|
2678
|
+
}>;
|
|
2679
|
+
protected containerClasses(): string;
|
|
2680
|
+
protected contentClasses(): string;
|
|
2681
|
+
protected iconContainerClasses(): string;
|
|
2682
|
+
protected titleClasses(): string;
|
|
2683
|
+
protected textClasses(): string;
|
|
2684
|
+
protected highlightBoxClasses(): string;
|
|
2685
|
+
protected highlightIconClasses(): string;
|
|
2686
|
+
protected highlightTitleClasses(): string;
|
|
2687
|
+
protected highlightListClasses(): string;
|
|
2688
|
+
protected nextStepsBoxClasses(): string;
|
|
2689
|
+
protected nextStepsIconClasses(): string;
|
|
2690
|
+
protected nextStepsTitleClasses(): string;
|
|
2691
|
+
protected nextStepsTextClasses(): string;
|
|
2692
|
+
static ɵfac: _angular_core.ɵɵFactoryDeclaration<MetricWelcomeBannerComponent, never>;
|
|
2693
|
+
static ɵcmp: _angular_core.ɵɵComponentDeclaration<MetricWelcomeBannerComponent, "symphiq-metric-welcome-banner", never, { "viewMode": { "alias": "viewMode"; "required": false; }; "metricName": { "alias": "metricName"; "required": false; }; "isOnboarded": { "alias": "isOnboarded"; "required": false; }; }, {}, never, never, true, never>;
|
|
2694
|
+
}
|
|
2695
|
+
|
|
2696
|
+
declare class FocusAreaExecutiveSummaryComponent {
|
|
2697
|
+
viewMode: ViewModeEnum;
|
|
2698
|
+
summary?: FocusAreaExecutiveSummaryInterface;
|
|
2699
|
+
allGoals: GoalV3Interface[];
|
|
2700
|
+
topPrioritiesClick: EventEmitter<void>;
|
|
2701
|
+
priorityDetailClick: EventEmitter<{
|
|
2702
|
+
priority: FocusAreaTopPriorityInterface;
|
|
2703
|
+
index: number;
|
|
2704
|
+
}>;
|
|
2705
|
+
protected readonly IconSourceEnum: typeof IconSourceEnum;
|
|
2706
|
+
protected onTopPrioritiesClick(): void;
|
|
2707
|
+
protected onPriorityDetailClick(event: {
|
|
2708
|
+
priority: FocusAreaTopPriorityInterface;
|
|
2709
|
+
index: number;
|
|
2710
|
+
}): void;
|
|
2711
|
+
protected scrollToQuickWins(): void;
|
|
2712
|
+
protected formatLabel(label?: string): string;
|
|
2713
|
+
protected getBannerClasses(): string;
|
|
2714
|
+
protected getSectionTitleClasses(): string;
|
|
2715
|
+
protected getSubheadingClasses(): string;
|
|
2716
|
+
protected getTextClasses(): string;
|
|
2717
|
+
protected getNarrativeClasses(): string;
|
|
2718
|
+
protected getTopPrioritiesStatCardClasses(): string;
|
|
2719
|
+
protected getTopPrioritiesStatLabelClasses(): string;
|
|
2720
|
+
protected getTopPrioritiesStatValueClasses(): string;
|
|
2721
|
+
protected getTopPrioritiesButtonTextClasses(): string;
|
|
2722
|
+
protected getQuickWinsStatCardClasses(): string;
|
|
2723
|
+
protected getQuickWinsStatLabelClasses(): string;
|
|
2724
|
+
protected getQuickWinsStatValueClasses(): string;
|
|
2725
|
+
protected getQuickWinsButtonTextClasses(): string;
|
|
2726
|
+
protected getQuickWinCardClasses(): string;
|
|
2727
|
+
protected getQuickWinTextClasses(): string;
|
|
2728
|
+
protected getNumberBadgeClasses(): string;
|
|
2729
|
+
protected getEffortBadgeClasses(effort?: string): string;
|
|
2730
|
+
protected getImpactBadgeClasses(impact?: string): string;
|
|
2731
|
+
protected getMetaTextClasses(): string;
|
|
2732
|
+
static ɵfac: _angular_core.ɵɵFactoryDeclaration<FocusAreaExecutiveSummaryComponent, never>;
|
|
2733
|
+
static ɵcmp: _angular_core.ɵɵComponentDeclaration<FocusAreaExecutiveSummaryComponent, "symphiq-focus-area-executive-summary", never, { "viewMode": { "alias": "viewMode"; "required": false; }; "summary": { "alias": "summary"; "required": false; }; "allGoals": { "alias": "allGoals"; "required": false; }; }, { "topPrioritiesClick": "topPrioritiesClick"; "priorityDetailClick": "priorityDetailClick"; }, never, never, true, never>;
|
|
2734
|
+
}
|
|
2735
|
+
|
|
2736
|
+
declare class MetricExecutiveSummaryComponent {
|
|
2737
|
+
viewMode: ViewModeEnum;
|
|
2738
|
+
summary: MetricExecutiveSummaryInterface;
|
|
2739
|
+
metricName: string;
|
|
2740
|
+
allGoals?: GoalV3Interface[];
|
|
2741
|
+
topPrioritiesClick: EventEmitter<void>;
|
|
2742
|
+
priorityDetailClick: EventEmitter<any>;
|
|
2743
|
+
protected iconSource: IconSourceEnum;
|
|
2744
|
+
protected isDark: _angular_core.Signal<boolean>;
|
|
2745
|
+
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">;
|
|
2746
|
+
protected titleClasses: _angular_core.Signal<"text-slate-100" | "text-slate-900">;
|
|
2747
|
+
protected textClasses: _angular_core.Signal<"text-slate-300" | "text-slate-700">;
|
|
2748
|
+
protected iconClasses: _angular_core.Signal<"text-blue-400" | "text-blue-600">;
|
|
2749
|
+
protected healthBadgeClasses: _angular_core.Signal<string>;
|
|
2750
|
+
protected pacingBadgeClasses: _angular_core.Signal<string>;
|
|
2751
|
+
protected metricCardClasses: _angular_core.Signal<"bg-white border border-slate-200" | "bg-slate-800/50 border border-slate-700/50">;
|
|
2752
|
+
protected metricLabelClasses: _angular_core.Signal<"text-slate-600" | "text-slate-400">;
|
|
2753
|
+
protected metricValueClasses: _angular_core.Signal<"text-slate-100" | "text-slate-900">;
|
|
2754
|
+
protected yoyChangeClasses: _angular_core.Signal<"text-slate-600" | "text-slate-400" | "text-emerald-400" | "text-red-400" | "text-red-600" | "text-emerald-600">;
|
|
2755
|
+
protected getYoyIcon(): string;
|
|
2756
|
+
protected getPacingValueClasses(): string;
|
|
2757
|
+
protected getHealthValueClasses(): string;
|
|
2758
|
+
protected narrativeClasses: _angular_core.Signal<"bg-white border border-slate-200" | "bg-slate-800/50 border border-slate-600/20">;
|
|
2759
|
+
protected narrativeTitleClasses: _angular_core.Signal<"text-slate-200" | "text-slate-800">;
|
|
2760
|
+
protected narrativeTextClasses: _angular_core.Signal<"text-slate-600" | "text-slate-400">;
|
|
2761
|
+
protected sectionTitleClasses: _angular_core.Signal<"text-slate-100" | "text-slate-900">;
|
|
2762
|
+
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">;
|
|
2763
|
+
protected priorityNumberClasses: _angular_core.Signal<"bg-blue-500/20 text-blue-300" | "bg-blue-100 text-blue-800">;
|
|
2764
|
+
protected priorityTitleClasses: _angular_core.Signal<"text-slate-100" | "text-slate-900">;
|
|
2765
|
+
protected priorityTextClasses: _angular_core.Signal<"text-slate-300" | "text-slate-700">;
|
|
2766
|
+
protected impactBoxClasses: _angular_core.Signal<"bg-slate-800/30 border border-slate-700/30" | "bg-slate-50/50 border border-slate-200">;
|
|
2767
|
+
protected impactLabelClasses: _angular_core.Signal<"text-blue-400" | "text-blue-600">;
|
|
2768
|
+
protected impactTextClasses: _angular_core.Signal<"text-slate-600" | "text-slate-400">;
|
|
2769
|
+
protected quickWinCardClasses: _angular_core.Signal<"bg-white border border-slate-200" | "bg-slate-800/50 border border-slate-700/50">;
|
|
2770
|
+
protected numberBadgeClasses: _angular_core.Signal<"bg-blue-500/20 text-blue-300" | "bg-blue-100 text-blue-800">;
|
|
2771
|
+
protected quickWinTextClasses: _angular_core.Signal<"text-slate-100" | "text-slate-900">;
|
|
2772
|
+
protected metaTextClasses: _angular_core.Signal<"text-slate-600" | "text-slate-400">;
|
|
2773
|
+
protected getEffortBadgeClasses(effort: string | undefined): string;
|
|
2774
|
+
protected getImpactBadgeClasses(impact: string | undefined): string;
|
|
2775
|
+
protected formatLabel(str: string | undefined): string;
|
|
2776
|
+
static ɵfac: _angular_core.ɵɵFactoryDeclaration<MetricExecutiveSummaryComponent, never>;
|
|
2777
|
+
static ɵcmp: _angular_core.ɵɵComponentDeclaration<MetricExecutiveSummaryComponent, "symphiq-metric-executive-summary", never, { "viewMode": { "alias": "viewMode"; "required": false; }; "summary": { "alias": "summary"; "required": false; }; "metricName": { "alias": "metricName"; "required": false; }; "allGoals": { "alias": "allGoals"; "required": false; }; }, { "topPrioritiesClick": "topPrioritiesClick"; "priorityDetailClick": "priorityDetailClick"; }, never, never, true, never>;
|
|
2531
2778
|
}
|
|
2532
2779
|
|
|
2533
2780
|
declare class HorizontalBarComponent implements OnInit, OnDestroy {
|
|
@@ -2766,6 +3013,9 @@ interface ConfidenceData {
|
|
|
2766
3013
|
declare class ConfidenceLevelCardComponent implements OnInit, OnDestroy {
|
|
2767
3014
|
viewMode: ViewModeEnum;
|
|
2768
3015
|
currentStepId: string;
|
|
3016
|
+
focusAreaDetails?: FocusAreaDetailInterface[];
|
|
3017
|
+
currentFocusAreaDomain?: FocusAreaDomainEnum;
|
|
3018
|
+
currentMetric?: string;
|
|
2769
3019
|
private elementRef;
|
|
2770
3020
|
private observer?;
|
|
2771
3021
|
private animationFrame?;
|
|
@@ -2775,6 +3025,11 @@ declare class ConfidenceLevelCardComponent implements OnInit, OnDestroy {
|
|
|
2775
3025
|
ngOnDestroy(): void;
|
|
2776
3026
|
private setupObserver;
|
|
2777
3027
|
private animateProgress;
|
|
3028
|
+
private calculateFocusAreaPercentage;
|
|
3029
|
+
private calculateMetricPercentage;
|
|
3030
|
+
private getMetricGrade;
|
|
3031
|
+
private getMetricQualitativeStatus;
|
|
3032
|
+
private getMetricDescription;
|
|
2778
3033
|
protected confidenceData: _angular_core.Signal<ConfidenceData>;
|
|
2779
3034
|
protected shouldPulse: _angular_core.Signal<boolean>;
|
|
2780
3035
|
protected isLightMode: _angular_core.Signal<boolean>;
|
|
@@ -2789,13 +3044,13 @@ declare class ConfidenceLevelCardComponent implements OnInit, OnDestroy {
|
|
|
2789
3044
|
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">;
|
|
2790
3045
|
protected descriptionClasses: _angular_core.Signal<"text-slate-300" | "text-slate-700">;
|
|
2791
3046
|
protected progressLabelClasses: _angular_core.Signal<"text-slate-300" | "text-slate-700">;
|
|
2792
|
-
protected progressValueClasses: _angular_core.Signal<"text-
|
|
3047
|
+
protected progressValueClasses: _angular_core.Signal<"text-blue-400" | "text-blue-600" | "text-emerald-400" | "text-red-400" | "text-red-600" | "text-orange-600" | "text-orange-400" | "text-emerald-600">;
|
|
2793
3048
|
protected progressTrackClasses: _angular_core.Signal<"bg-slate-700/50 shadow-inner" | "bg-slate-200 shadow-inner">;
|
|
2794
3049
|
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">;
|
|
2795
3050
|
protected shimmerClasses: _angular_core.Signal<string>;
|
|
2796
3051
|
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">;
|
|
2797
3052
|
static ɵfac: _angular_core.ɵɵFactoryDeclaration<ConfidenceLevelCardComponent, never>;
|
|
2798
|
-
static ɵcmp: _angular_core.ɵɵComponentDeclaration<ConfidenceLevelCardComponent, "symphiq-confidence-level-card", never, { "viewMode": { "alias": "viewMode"; "required": false; }; "currentStepId": { "alias": "currentStepId"; "required": false; }; }, {}, never, never, true, never>;
|
|
3053
|
+
static ɵcmp: _angular_core.ɵɵComponentDeclaration<ConfidenceLevelCardComponent, "symphiq-confidence-level-card", never, { "viewMode": { "alias": "viewMode"; "required": false; }; "currentStepId": { "alias": "currentStepId"; "required": false; }; "focusAreaDetails": { "alias": "focusAreaDetails"; "required": false; }; "currentFocusAreaDomain": { "alias": "currentFocusAreaDomain"; "required": false; }; "currentMetric": { "alias": "currentMetric"; "required": false; }; }, {}, never, never, true, never>;
|
|
2799
3054
|
}
|
|
2800
3055
|
|
|
2801
3056
|
declare class RelatedContentSidebarComponent {
|
|
@@ -2817,7 +3072,7 @@ declare class RelatedContentSidebarComponent {
|
|
|
2817
3072
|
protected iconClasses: _angular_core.Signal<"text-blue-400" | "text-blue-600">;
|
|
2818
3073
|
protected countClasses: _angular_core.Signal<"text-slate-900" | "text-white">;
|
|
2819
3074
|
protected labelClasses: _angular_core.Signal<"text-slate-600" | "text-slate-400">;
|
|
2820
|
-
protected chevronClasses: _angular_core.Signal<"text-slate-
|
|
3075
|
+
protected chevronClasses: _angular_core.Signal<"text-slate-400 group-hover:text-blue-600" | "text-slate-500 group-hover:text-blue-400">;
|
|
2821
3076
|
protected onFunnelInsightsClick(): void;
|
|
2822
3077
|
protected onFunnelMetricsClick(): void;
|
|
2823
3078
|
protected onBusinessInsightsClick(): void;
|
|
@@ -3154,7 +3409,7 @@ declare class FocusAreaDetailCardComponent {
|
|
|
3154
3409
|
protected isActuallyExpanded: _angular_core.Signal<boolean>;
|
|
3155
3410
|
protected forceExpandedValue: _angular_core.Signal<boolean>;
|
|
3156
3411
|
protected shouldAnimateExpand: _angular_core.Signal<boolean>;
|
|
3157
|
-
protected iconSize: _angular_core.Signal<"w-
|
|
3412
|
+
protected iconSize: _angular_core.Signal<"w-6 h-6" | "w-7 h-7">;
|
|
3158
3413
|
protected relatedRecommendations: _angular_core.Signal<_jebgem_model.ProfileAnalysisRecommendationInterface[]>;
|
|
3159
3414
|
protected statusLabel: _angular_core.Signal<string>;
|
|
3160
3415
|
protected statusBadgeType: _angular_core.Signal<BadgeType>;
|
|
@@ -3219,7 +3474,7 @@ declare class CompetitorAnalysisCardComponent {
|
|
|
3219
3474
|
protected isActuallyExpanded: _angular_core.Signal<boolean>;
|
|
3220
3475
|
protected isExpandedMode: _angular_core.Signal<boolean>;
|
|
3221
3476
|
protected shouldAnimateExpand: _angular_core.Signal<boolean>;
|
|
3222
|
-
protected iconSize: _angular_core.Signal<"w-
|
|
3477
|
+
protected iconSize: _angular_core.Signal<"w-6 h-6" | "w-7 h-7">;
|
|
3223
3478
|
protected animationType: _angular_core.Signal<"none" | "slide-up">;
|
|
3224
3479
|
constructor();
|
|
3225
3480
|
protected hasCompanyInfo: _angular_core.Signal<boolean>;
|
|
@@ -3274,7 +3529,7 @@ declare class OpportunityHighlightBannerComponent {
|
|
|
3274
3529
|
protected titleClasses: _angular_core.Signal<"text-amber-300" | "text-amber-900">;
|
|
3275
3530
|
protected badgeClasses: _angular_core.Signal<"bg-amber-500/30 text-amber-300" | "bg-amber-200 text-amber-800">;
|
|
3276
3531
|
protected messageClasses: _angular_core.Signal<"text-amber-700" | "text-amber-400/90">;
|
|
3277
|
-
protected chevronClasses: _angular_core.Signal<"text-amber-
|
|
3532
|
+
protected chevronClasses: _angular_core.Signal<"text-amber-600" | "text-amber-400">;
|
|
3278
3533
|
handleClick(event: Event): void;
|
|
3279
3534
|
static ɵfac: _angular_core.ɵɵFactoryDeclaration<OpportunityHighlightBannerComponent, never>;
|
|
3280
3535
|
static ɵcmp: _angular_core.ɵɵComponentDeclaration<OpportunityHighlightBannerComponent, "symphiq-opportunity-highlight-banner", never, { "title": { "alias": "title"; "required": false; }; "message": { "alias": "message"; "required": false; }; "isDark": { "alias": "isDark"; "required": false; }; "isExpanded": { "alias": "isExpanded"; "required": false; }; }, { "bannerClick": "bannerClick"; }, never, never, true, never>;
|
|
@@ -3364,6 +3619,10 @@ declare const BUSINESS_PROFILE: ProfileInterface;
|
|
|
3364
3619
|
|
|
3365
3620
|
declare const PROFILE_ANALYSIS_SHOP: ProfileAnalysisInterface;
|
|
3366
3621
|
|
|
3622
|
+
declare const PROFILE_ANALYSIS_FOCUS_AREA_AFFILIATE: ProfileAnalysisInterface;
|
|
3623
|
+
|
|
3624
|
+
declare const PROFILE_ANALYSIS_METRIC_SCREEN_PAGE_VIEWS: ProfileAnalysisInterface;
|
|
3625
|
+
|
|
3367
3626
|
/**
|
|
3368
3627
|
* Shared Theme Color Utilities
|
|
3369
3628
|
*
|
|
@@ -3490,6 +3749,6 @@ declare function getCategoryColor(category: string): CategoryColorPalette;
|
|
|
3490
3749
|
*/
|
|
3491
3750
|
declare function getCategoryBadgeClasses(category: string, isDark: boolean): string;
|
|
3492
3751
|
|
|
3493
|
-
export { AreaChartComponent, BUSINESS_PROFILE, BarChartComponent, BreakdownSectionComponent, BusinessAnalysisModalComponent, BusinessProfileSearchService, ChartCardComponent, ChartContainerComponent, ChartThemeService, CircularProgressComponent, CompetitivePositioningSummaryComponent, CompetitorAnalysisCardComponent, ConfidenceLevelCardComponent, CrossDashboardRelationshipsService, FUNNEL_ANALYSIS, FloatingBackButtonComponent, FloatingTocComponent, FocusAreaDetailCardComponent, FunnelOrderService, GradeBadgeComponent, HeaderScrollService, HierarchyDisplayComponent, HorizontalBarComponent, IconService, InsightCardComponent, LineChartComponent, MetricCardComponent, MetricFormatterService, MetricListItemComponent, MobileBottomNavComponent, MobileFABComponent, ModalComponent, ModalService, NapkinVisualPlaceholderComponent, NavigationStateService, OpportunityHighlightBannerComponent, OverallAssessmentComponent, PROFILE_ANALYSIS_SHOP, PieChartComponent, ProfileItemCardComponent, ProfileSectionComponent, ProfileSubsectionComponent, RelatedContentSidebarComponent, ScrollDepthService, ScrollProgressBarComponent, SearchButtonComponent, SearchModalComponent, SectionDividerComponent, SectionNavigationComponent, ShadowElevationDirective, ShopWelcomeBannerComponent, SkeletonBarComponent, SkeletonCardBaseComponent, SkeletonCircleComponent, SkeletonCompetitorCardComponent, SkeletonCustomerSegmentCardComponent, SkeletonFocusAreaCardComponent, SkeletonGenericCardComponent, SkeletonLoaderComponent, SkeletonPriceTierCardComponent, SkeletonProductCategoryCardComponent, SkeletonRegionCardComponent, SkeletonSeasonCardComponent, SymphiqBusinessAnalysisDashboardComponent, SymphiqFunnelAnalysisDashboardComponent, SymphiqFunnelAnalysisPreviewComponent, SymphiqIconComponent, SymphiqProfileAnalysisDashboardComponent, TooltipContainerComponent, TooltipDataService, TooltipDirective, TooltipService, ViewModeService, ViewportAnimationDirective, VisualizationContainerComponent, getBadgeLabelClasses, getButtonClasses, getCategoryBadgeClasses, getCategoryColor, getCompetitiveBadgeClasses, getContainerClasses, getFooterClasses, getGradeBadgeClasses, getHeaderClasses, getInsightsBadgeClasses, getInsightsCardClasses, getMetricLabelClasses, getMetricMiniCardClasses, getMetricValueClasses, getNarrativeTextClasses, getRevenueCardClasses, getRevenueIconClasses, getStatusBadgeClasses, getStatusDotClasses, getStatusIconClasses, getStatusSummaryClasses, getSubtitleClasses, getTitleClasses, getTrendClasses, getTrendIconClasses, getTrendValueClasses, isLightMode };
|
|
3494
|
-
export type { AnimationType, BusinessInsightDetailModalData, BusinessSearchResult, CategoryColorPalette, CategoryDetailModalData, ChartThemeColors, CriticalGapDetailModalData, CriticalGapsListModalData, CrossDashboardRelationships, FunnelMetricOrder, FunnelStrengthDetailModalData, FunnelStrengthInterface, FunnelStrengthsListModalData, FunnelWeaknessDetailModalData, FunnelWeaknessInterface, FunnelWeaknessesListModalData, GapDetailModalData, GoalBusinessInsightsListModalData, GoalDetailModalData, GoalInsightsListModalData, GoalObjectivesModalData, HeaderScrollConfig, ItemDetailModalData, KeyStrengthDetailModalData, KeyStrengthsListModalData, LayoutMode, Metric, MetricsListModalData, ModalState, NavSection, NavigationState, ObjectiveStrategiesModalData, OpportunityDetailModalData, RelatedBusinessContent, RelatedFunnelContent, ScrollBaseCustomEvent, ScrollBaseDetail, ScrollCustomEvent, ScrollDepthInfo, ScrollDetail, SemanticColors, ShadowLevel, StrategyRecommendationsModalData, StrengthDetailModalData, ThemeColorContext, ThemeMode, TooltipPosition, TooltipState, TooltipType, ViewMode, ViewportBounds, VisualizationData, VisualizationType };
|
|
3752
|
+
export { AreaChartComponent, BUSINESS_PROFILE, BarChartComponent, BreakdownSectionComponent, BusinessAnalysisModalComponent, BusinessProfileSearchService, ChartCardComponent, ChartContainerComponent, ChartThemeService, CircularProgressComponent, CompetitivePositioningSummaryComponent, CompetitorAnalysisCardComponent, ConfidenceLevelCardComponent, CrossDashboardRelationshipsService, FUNNEL_ANALYSIS, FloatingBackButtonComponent, FloatingTocComponent, FocusAreaDetailCardComponent, FocusAreaExecutiveSummaryComponent, FunnelOrderService, GradeBadgeComponent, HeaderScrollService, HierarchyDisplayComponent, HorizontalBarComponent, IconService, InsightCardComponent, LineChartComponent, MetricCardComponent, MetricExecutiveSummaryComponent, MetricFormatterService, MetricListItemComponent, MetricWelcomeBannerComponent, MobileBottomNavComponent, MobileFABComponent, ModalComponent, ModalService, NapkinVisualPlaceholderComponent, NavigationStateService, OpportunityHighlightBannerComponent, OverallAssessmentComponent, PROFILE_ANALYSIS_FOCUS_AREA_AFFILIATE, PROFILE_ANALYSIS_METRIC_SCREEN_PAGE_VIEWS, PROFILE_ANALYSIS_SHOP, PieChartComponent, ProfileItemCardComponent, ProfileSectionComponent, ProfileSubsectionComponent, RelatedContentSidebarComponent, ScrollDepthService, ScrollProgressBarComponent, SearchButtonComponent, SearchModalComponent, SectionDividerComponent, SectionNavigationComponent, ShadowElevationDirective, ShopWelcomeBannerComponent, SkeletonBarComponent, SkeletonCardBaseComponent, SkeletonCircleComponent, SkeletonCompetitorCardComponent, SkeletonCustomerSegmentCardComponent, SkeletonFocusAreaCardComponent, SkeletonGenericCardComponent, SkeletonLoaderComponent, SkeletonPriceTierCardComponent, SkeletonProductCategoryCardComponent, SkeletonRegionCardComponent, SkeletonSeasonCardComponent, SymphiqBusinessAnalysisDashboardComponent, SymphiqFunnelAnalysisDashboardComponent, SymphiqFunnelAnalysisPreviewComponent, SymphiqIconComponent, SymphiqProfileAnalysisDashboardComponent, TooltipContainerComponent, TooltipDataService, TooltipDirective, TooltipService, ViewModeService, ViewportAnimationDirective, VisualizationContainerComponent, getBadgeLabelClasses, getButtonClasses, getCategoryBadgeClasses, getCategoryColor, getCompetitiveBadgeClasses, getContainerClasses, getFooterClasses, getGradeBadgeClasses, getHeaderClasses, getInsightsBadgeClasses, getInsightsCardClasses, getMetricLabelClasses, getMetricMiniCardClasses, getMetricValueClasses, getNarrativeTextClasses, getRevenueCardClasses, getRevenueIconClasses, getStatusBadgeClasses, getStatusDotClasses, getStatusIconClasses, getStatusSummaryClasses, getSubtitleClasses, getTitleClasses, getTrendClasses, getTrendIconClasses, getTrendValueClasses, isLightMode };
|
|
3753
|
+
export type { AnimationType, BusinessInsightDetailModalData, BusinessSearchResult, CategoryColorPalette, CategoryDetailModalData, ChartThemeColors, CriticalGapDetailModalData, CriticalGapsListModalData, CrossDashboardRelationships, FocusAreaGapDetailModalData, FocusAreaGapsListModalData, FocusAreaOpportunitiesListModalData, FocusAreaOpportunityDetailModalData, FocusAreaStrengthDetailModalData, FocusAreaStrengthsListModalData, FunnelMetricOrder, FunnelStrengthDetailModalData, FunnelStrengthInterface, FunnelStrengthsListModalData, FunnelWeaknessDetailModalData, FunnelWeaknessInterface, FunnelWeaknessesListModalData, GapDetailModalData, GoalBusinessInsightsListModalData, GoalDetailModalData, GoalInsightsListModalData, GoalObjectivesModalData, HeaderScrollConfig, ItemDetailModalData, KeyStrengthDetailModalData, KeyStrengthsListModalData, LayoutMode, Metric, MetricsListModalData, ModalState, NavSection, NavigationState, ObjectiveStrategiesModalData, OpportunityDetailModalData, RecommendationBusinessInsightsListModalData, RecommendationInsightsListModalData, RelatedBusinessContent, RelatedFunnelContent, ScrollBaseCustomEvent, ScrollBaseDetail, ScrollCustomEvent, ScrollDepthInfo, ScrollDetail, SemanticColors, ShadowLevel, StrategyRecommendationsModalData, StrengthDetailModalData, ThemeColorContext, ThemeMode, TooltipPosition, TooltipState, TooltipType, TopPrioritiesListModalData, TopPriorityDetailModalData, ViewMode, ViewportBounds, VisualizationData, VisualizationType };
|
|
3495
3754
|
//# sourceMappingURL=index.d.ts.map
|