@eric-emg/symphiq-components 1.2.136 → 1.2.137
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 +5 -4
- package/fesm2022/symphiq-components.mjs.map +1 -1
- package/index.d.ts +49 -48
- package/index.d.ts.map +1 -1
- package/package.json +1 -1
package/index.d.ts
CHANGED
|
@@ -980,7 +980,7 @@ declare class ModalComponent {
|
|
|
980
980
|
private animatedTrendValues;
|
|
981
981
|
private animationFrames;
|
|
982
982
|
isOpen: _angular_core.Signal<boolean>;
|
|
983
|
-
modalType: _angular_core.Signal<"
|
|
983
|
+
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>;
|
|
984
984
|
charts: _angular_core.Signal<AiChartInterface[]>;
|
|
985
985
|
modalKey: _angular_core.Signal<number>;
|
|
986
986
|
insightData: _angular_core.Signal<InsightBlockInterface | null>;
|
|
@@ -999,7 +999,7 @@ declare class ModalComponent {
|
|
|
999
999
|
description: string;
|
|
1000
1000
|
icon: string;
|
|
1001
1001
|
} | null>;
|
|
1002
|
-
metricsListData: _angular_core.Signal<InsightBlockInterface | PerformanceMetricInterface |
|
|
1002
|
+
metricsListData: _angular_core.Signal<InsightBlockInterface | PerformanceMetricInterface | FunnelStrengthsListModalData | FunnelWeaknessesListModalData | FunnelStrengthDetailModalData | FunnelWeaknessDetailModalData | AiChartInterface | (InsightBlockInterface | PerformanceMetricInterface)[] | null>;
|
|
1003
1003
|
metricsListMetrics: _angular_core.Signal<PerformanceMetricInterface[]>;
|
|
1004
1004
|
metricsListInsightContext: _angular_core.Signal<{
|
|
1005
1005
|
title: string;
|
|
@@ -1007,7 +1007,7 @@ declare class ModalComponent {
|
|
|
1007
1007
|
businessContext: string;
|
|
1008
1008
|
priority: number;
|
|
1009
1009
|
} | null>;
|
|
1010
|
-
chartsListData: _angular_core.Signal<InsightBlockInterface | PerformanceMetricInterface |
|
|
1010
|
+
chartsListData: _angular_core.Signal<InsightBlockInterface | PerformanceMetricInterface | FunnelStrengthsListModalData | FunnelWeaknessesListModalData | FunnelStrengthDetailModalData | FunnelWeaknessDetailModalData | AiChartInterface | (InsightBlockInterface | PerformanceMetricInterface)[] | null>;
|
|
1011
1011
|
chartsListCharts: _angular_core.Signal<AiChartInterface[]>;
|
|
1012
1012
|
chartsListInsightContext: _angular_core.Signal<{
|
|
1013
1013
|
title: string;
|
|
@@ -1015,7 +1015,7 @@ declare class ModalComponent {
|
|
|
1015
1015
|
businessContext: string;
|
|
1016
1016
|
priority: number;
|
|
1017
1017
|
} | null>;
|
|
1018
|
-
recommendationsListData: _angular_core.Signal<InsightBlockInterface | PerformanceMetricInterface |
|
|
1018
|
+
recommendationsListData: _angular_core.Signal<InsightBlockInterface | PerformanceMetricInterface | FunnelStrengthsListModalData | FunnelWeaknessesListModalData | FunnelStrengthDetailModalData | FunnelWeaknessDetailModalData | AiChartInterface | (InsightBlockInterface | PerformanceMetricInterface)[] | null>;
|
|
1019
1019
|
recommendationsListRecommendations: _angular_core.Signal<string[]>;
|
|
1020
1020
|
recommendationsListInsightContext: _angular_core.Signal<{
|
|
1021
1021
|
title: string;
|
|
@@ -1023,7 +1023,7 @@ declare class ModalComponent {
|
|
|
1023
1023
|
businessContext: string;
|
|
1024
1024
|
priority: number;
|
|
1025
1025
|
} | null>;
|
|
1026
|
-
competitiveAnalysisData: _angular_core.Signal<InsightBlockInterface | PerformanceMetricInterface |
|
|
1026
|
+
competitiveAnalysisData: _angular_core.Signal<InsightBlockInterface | PerformanceMetricInterface | FunnelStrengthsListModalData | FunnelWeaknessesListModalData | FunnelStrengthDetailModalData | FunnelWeaknessDetailModalData | AiChartInterface | (InsightBlockInterface | PerformanceMetricInterface)[] | null>;
|
|
1027
1027
|
competitiveAnalysisContext: _angular_core.Signal<{
|
|
1028
1028
|
title: string;
|
|
1029
1029
|
description: string;
|
|
@@ -1457,9 +1457,9 @@ declare class MetricCardComponent {
|
|
|
1457
1457
|
competitiveScoreBadgeLightClass: _angular_core.Signal<string>;
|
|
1458
1458
|
competitiveScoreBadgeDarkClass: _angular_core.Signal<string>;
|
|
1459
1459
|
competitiveScoreBadgeClass: _angular_core.Signal<string>;
|
|
1460
|
-
competitiveScoreTextClass: _angular_core.Signal<"" | "text-emerald-600" | "text-blue-
|
|
1461
|
-
competitiveComparisonDefaultClass: _angular_core.Signal<"text-slate-
|
|
1462
|
-
competitiveComparisonClass: _angular_core.Signal<"text-slate-
|
|
1460
|
+
competitiveScoreTextClass: _angular_core.Signal<"" | "text-emerald-600" | "text-blue-700" | "text-blue-400" | "text-orange-600">;
|
|
1461
|
+
competitiveComparisonDefaultClass: _angular_core.Signal<"text-slate-700" | "text-slate-300">;
|
|
1462
|
+
competitiveComparisonClass: _angular_core.Signal<"text-slate-700" | "text-slate-300" | "text-emerald-600 font-semibold" | "text-orange-600 font-semibold">;
|
|
1463
1463
|
getCompetitiveScoreIcon(): string;
|
|
1464
1464
|
getCompetitiveScoreLabel(): string;
|
|
1465
1465
|
getCompetitiveScoreLabelFull(): string;
|
|
@@ -1509,9 +1509,9 @@ declare class InsightCardComponent {
|
|
|
1509
1509
|
recommendationsContainerLightClass: _angular_core.Signal<string>;
|
|
1510
1510
|
recommendationsContainerDarkClass: _angular_core.Signal<string>;
|
|
1511
1511
|
recommendationsContainerClass: _angular_core.Signal<string>;
|
|
1512
|
-
priorityBadgeLightClass: _angular_core.Signal<"w-8 h-8 flex items-center justify-center rounded-full text-xs font-bold border-2 backdrop-blur-md bg-
|
|
1513
|
-
priorityBadgeDarkClass: _angular_core.Signal<"w-8 h-8 flex items-center justify-center rounded-full text-xs font-bold border-2 backdrop-blur-md bg-
|
|
1514
|
-
priorityBadgeClass: _angular_core.Signal<"w-8 h-8 flex items-center justify-center rounded-full text-xs font-bold border-2 backdrop-blur-md bg-
|
|
1512
|
+
priorityBadgeLightClass: _angular_core.Signal<"w-8 h-8 flex items-center justify-center rounded-full text-xs font-bold border-2 backdrop-blur-md animate-pulse bg-red-100/70 text-red-700 border-red-400/60" | "w-8 h-8 flex items-center justify-center rounded-full text-xs font-bold border-2 backdrop-blur-md bg-amber-100/70 text-amber-700 border-amber-400/60" | "w-8 h-8 flex items-center justify-center rounded-full text-xs font-bold border-2 backdrop-blur-md bg-blue-100/70 text-blue-700 border-blue-400/60" | "w-8 h-8 flex items-center justify-center rounded-full text-xs font-bold border-2 backdrop-blur-md bg-slate-100/70 text-slate-700 border-slate-400/60">;
|
|
1513
|
+
priorityBadgeDarkClass: _angular_core.Signal<"w-8 h-8 flex items-center justify-center rounded-full text-xs font-bold border-2 backdrop-blur-md animate-pulse bg-red-500/20 text-red-400 border-red-500/50" | "w-8 h-8 flex items-center justify-center rounded-full text-xs font-bold border-2 backdrop-blur-md bg-amber-500/20 text-amber-400 border-amber-500/50" | "w-8 h-8 flex items-center justify-center rounded-full text-xs font-bold border-2 backdrop-blur-md bg-blue-500/20 text-blue-400 border-blue-500/50" | "w-8 h-8 flex items-center justify-center rounded-full text-xs font-bold border-2 backdrop-blur-md bg-slate-500/20 text-slate-400 border-slate-500/50">;
|
|
1514
|
+
priorityBadgeClass: _angular_core.Signal<"w-8 h-8 flex items-center justify-center rounded-full text-xs font-bold border-2 backdrop-blur-md animate-pulse bg-red-100/70 text-red-700 border-red-400/60" | "w-8 h-8 flex items-center justify-center rounded-full text-xs font-bold border-2 backdrop-blur-md bg-amber-100/70 text-amber-700 border-amber-400/60" | "w-8 h-8 flex items-center justify-center rounded-full text-xs font-bold border-2 backdrop-blur-md bg-blue-100/70 text-blue-700 border-blue-400/60" | "w-8 h-8 flex items-center justify-center rounded-full text-xs font-bold border-2 backdrop-blur-md bg-slate-100/70 text-slate-700 border-slate-400/60" | "w-8 h-8 flex items-center justify-center rounded-full text-xs font-bold border-2 backdrop-blur-md animate-pulse bg-red-500/20 text-red-400 border-red-500/50" | "w-8 h-8 flex items-center justify-center rounded-full text-xs font-bold border-2 backdrop-blur-md bg-amber-500/20 text-amber-400 border-amber-500/50" | "w-8 h-8 flex items-center justify-center rounded-full text-xs font-bold border-2 backdrop-blur-md bg-blue-500/20 text-blue-400 border-blue-500/50" | "w-8 h-8 flex items-center justify-center rounded-full text-xs font-bold border-2 backdrop-blur-md bg-slate-500/20 text-slate-400 border-slate-500/50">;
|
|
1515
1515
|
containerLightClass: _angular_core.Signal<"transition-all duration-300 hover:shadow-2xl hover:-translate-y-1 cursor-pointer group bg-gradient-to-br from-white to-blue-50/50 border-2 border-blue-300 hover:border-blue-400 shadow-lg shadow-blue-200/50 hover:shadow-blue-300/60" | "transition-all duration-300 hover:shadow-2xl hover:-translate-y-1 cursor-pointer group bg-white border-slate-200 hover:border-blue-400 hover:shadow-blue-100/50">;
|
|
1516
1516
|
containerDarkClass: _angular_core.Signal<"transition-all duration-300 hover:shadow-2xl hover:-translate-y-1 cursor-pointer group bg-gradient-to-br from-slate-800 to-blue-900/20 border-2 border-blue-500/40 hover:border-blue-400/60 shadow-lg shadow-blue-500/20 hover:shadow-blue-500/30" | "transition-all duration-300 hover:shadow-2xl hover:-translate-y-1 cursor-pointer group bg-slate-800 border-slate-700 hover:border-slate-500 hover:shadow-slate-900/50">;
|
|
1517
1517
|
containerClass: _angular_core.Signal<"transition-all duration-300 hover:shadow-2xl hover:-translate-y-1 cursor-pointer group bg-gradient-to-br from-white to-blue-50/50 border-2 border-blue-300 hover:border-blue-400 shadow-lg shadow-blue-200/50 hover:shadow-blue-300/60" | "transition-all duration-300 hover:shadow-2xl hover:-translate-y-1 cursor-pointer group bg-white border-slate-200 hover:border-blue-400 hover:shadow-blue-100/50" | "transition-all duration-300 hover:shadow-2xl hover:-translate-y-1 cursor-pointer group bg-gradient-to-br from-slate-800 to-blue-900/20 border-2 border-blue-500/40 hover:border-blue-400/60 shadow-lg shadow-blue-500/20 hover:shadow-blue-500/30" | "transition-all duration-300 hover:shadow-2xl hover:-translate-y-1 cursor-pointer group bg-slate-800 border-slate-700 hover:border-slate-500 hover:shadow-slate-900/50">;
|
|
@@ -1700,10 +1700,10 @@ declare class OverallAssessmentComponent {
|
|
|
1700
1700
|
revenueTrendArrowPath: _angular_core.Signal<"M5.293 9.707a1 1 0 010-1.414l4-4a1 1 0 011.414 0l4 4a1 1 0 01-1.414 1.414L11 7.414V15a1 1 0 11-2 0V7.414L6.707 9.707a1 1 0 01-1.414 0z" | "M14.707 10.293a1 1 0 010 1.414l-4 4a1 1 0 01-1.414 0l-4-4a1 1 0 111.414-1.414L9 12.586V5a1 1 0 012 0v7.586l2.293-2.293a1 1 0 011.414 0z" | "M3 10h11m0 0l-4-4m4 4l-4 4">;
|
|
1701
1701
|
lightModeTrendIconClass: _angular_core.Signal<"text-emerald-600" | "text-red-600">;
|
|
1702
1702
|
darkModeTrendIconClass: _angular_core.Signal<"text-emerald-400" | "text-red-400">;
|
|
1703
|
-
trendIconClass: _angular_core.Signal<"text-emerald-
|
|
1703
|
+
trendIconClass: _angular_core.Signal<"text-emerald-600" | "text-emerald-400" | "text-red-600" | "text-red-400">;
|
|
1704
1704
|
lightModeTrendValueClass: _angular_core.Signal<"text-emerald-600" | "text-red-600">;
|
|
1705
1705
|
darkModeTrendValueClass: _angular_core.Signal<"text-emerald-400" | "text-red-400">;
|
|
1706
|
-
trendValueClass: _angular_core.Signal<"text-emerald-
|
|
1706
|
+
trendValueClass: _angular_core.Signal<"text-emerald-600" | "text-emerald-400" | "text-red-600" | "text-red-400">;
|
|
1707
1707
|
formattedRevenueTrend: _angular_core.Signal<string>;
|
|
1708
1708
|
formattedRevenueTarget: _angular_core.Signal<string>;
|
|
1709
1709
|
hasRevenuePacing: _angular_core.Signal<boolean>;
|
|
@@ -1983,7 +1983,7 @@ declare class SymphiqFunnelAnalysisPreviewComponent {
|
|
|
1983
1983
|
topMetrics: _angular_core.Signal<PerformanceMetricInterface[]>;
|
|
1984
1984
|
formattedRevenueValue: _angular_core.Signal<string>;
|
|
1985
1985
|
formattedRevenueTrend: _angular_core.Signal<string>;
|
|
1986
|
-
revenueStatusIcon: _angular_core.Signal<"
|
|
1986
|
+
revenueStatusIcon: _angular_core.Signal<"↑" | "•" | "→" | "⚠">;
|
|
1987
1987
|
hasCompetitiveData: _angular_core.Signal<boolean>;
|
|
1988
1988
|
hasOverallCompetitiveBenchmark: _angular_core.Signal<boolean>;
|
|
1989
1989
|
overallCompetitiveDescription: _angular_core.Signal<string>;
|
|
@@ -2158,6 +2158,7 @@ declare class SymphiqCreateAccountDashboardComponent implements AfterViewInit, O
|
|
|
2158
2158
|
scrollElement: _angular_core.InputSignal<HTMLElement | null | undefined>;
|
|
2159
2159
|
accountData: _angular_core.InputSignal<CreateAccountData | undefined>;
|
|
2160
2160
|
forDemo: _angular_core.InputSignal<boolean>;
|
|
2161
|
+
showNextStepAction: _angular_core.InputSignal<boolean>;
|
|
2161
2162
|
onContinue: _angular_core.OutputEmitterRef<CreateAccountData>;
|
|
2162
2163
|
stepClick: _angular_core.OutputEmitterRef<number>;
|
|
2163
2164
|
nextStepClick: _angular_core.OutputEmitterRef<void>;
|
|
@@ -2203,7 +2204,7 @@ declare class SymphiqCreateAccountDashboardComponent implements AfterViewInit, O
|
|
|
2203
2204
|
protected stickyButtonContainerClasses(): string;
|
|
2204
2205
|
protected continueButtonClasses(): string;
|
|
2205
2206
|
static ɵfac: _angular_core.ɵɵFactoryDeclaration<SymphiqCreateAccountDashboardComponent, never>;
|
|
2206
|
-
static ɵcmp: _angular_core.ɵɵComponentDeclaration<SymphiqCreateAccountDashboardComponent, "symphiq-create-account-dashboard", never, { "embedded": { "alias": "embedded"; "required": false; "isSignal": true; }; "parentHeaderOffset": { "alias": "parentHeaderOffset"; "required": false; "isSignal": true; }; "viewMode": { "alias": "viewMode"; "required": false; "isSignal": true; }; "scrollEvent": { "alias": "scrollEvent"; "required": false; "isSignal": true; }; "scrollElement": { "alias": "scrollElement"; "required": false; "isSignal": true; }; "accountData": { "alias": "accountData"; "required": false; "isSignal": true; }; "forDemo": { "alias": "forDemo"; "required": false; "isSignal": true; }; }, { "onContinue": "onContinue"; "stepClick": "stepClick"; "nextStepClick": "nextStepClick"; }, never, never, true, never>;
|
|
2207
|
+
static ɵcmp: _angular_core.ɵɵComponentDeclaration<SymphiqCreateAccountDashboardComponent, "symphiq-create-account-dashboard", never, { "embedded": { "alias": "embedded"; "required": false; "isSignal": true; }; "parentHeaderOffset": { "alias": "parentHeaderOffset"; "required": false; "isSignal": true; }; "viewMode": { "alias": "viewMode"; "required": false; "isSignal": true; }; "scrollEvent": { "alias": "scrollEvent"; "required": false; "isSignal": true; }; "scrollElement": { "alias": "scrollElement"; "required": false; "isSignal": true; }; "accountData": { "alias": "accountData"; "required": false; "isSignal": true; }; "forDemo": { "alias": "forDemo"; "required": false; "isSignal": true; }; "showNextStepAction": { "alias": "showNextStepAction"; "required": false; "isSignal": true; }; }, { "onContinue": "onContinue"; "stepClick": "stepClick"; "nextStepClick": "nextStepClick"; }, never, never, true, never>;
|
|
2207
2208
|
}
|
|
2208
2209
|
|
|
2209
2210
|
declare class SymphiqConnectGaDashboardComponent implements AfterViewInit, OnDestroy {
|
|
@@ -2694,7 +2695,7 @@ declare class SymphiqProfileAnalysisDashboardComponent implements OnInit, OnChan
|
|
|
2694
2695
|
protected isFocusAreaAnalysis: _angular_core.Signal<boolean>;
|
|
2695
2696
|
protected isMetricAnalysis: _angular_core.Signal<boolean>;
|
|
2696
2697
|
protected isShopAnalysis: _angular_core.Signal<boolean>;
|
|
2697
|
-
protected currentStepId: _angular_core.Signal<"
|
|
2698
|
+
protected currentStepId: _angular_core.Signal<"shop-analysis" | "focus-area-analysis" | "metric-analysis">;
|
|
2698
2699
|
focusAreaDomain: _angular_core.Signal<FocusAreaDomainEnum | undefined>;
|
|
2699
2700
|
protected focusAreaName: _angular_core.Signal<string>;
|
|
2700
2701
|
protected metricName: _angular_core.Signal<string>;
|
|
@@ -2939,32 +2940,32 @@ declare class MetricExecutiveSummaryComponent {
|
|
|
2939
2940
|
protected iconSource: IconSourceEnum;
|
|
2940
2941
|
protected isDark: _angular_core.Signal<boolean>;
|
|
2941
2942
|
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">;
|
|
2942
|
-
protected titleClasses: _angular_core.Signal<"text-slate-
|
|
2943
|
-
protected textClasses: _angular_core.Signal<"text-slate-
|
|
2943
|
+
protected titleClasses: _angular_core.Signal<"text-slate-900" | "text-slate-100">;
|
|
2944
|
+
protected textClasses: _angular_core.Signal<"text-slate-700" | "text-slate-300">;
|
|
2944
2945
|
protected iconClasses: _angular_core.Signal<"text-blue-400" | "text-blue-600">;
|
|
2945
2946
|
protected healthBadgeClasses: _angular_core.Signal<string>;
|
|
2946
2947
|
protected pacingBadgeClasses: _angular_core.Signal<string>;
|
|
2947
2948
|
protected metricCardClasses: _angular_core.Signal<"bg-white border border-slate-200" | "bg-slate-800/50 border border-slate-700/50">;
|
|
2948
2949
|
protected metricLabelClasses: _angular_core.Signal<"text-slate-600" | "text-slate-400">;
|
|
2949
|
-
protected metricValueClasses: _angular_core.Signal<"text-slate-
|
|
2950
|
-
protected yoyChangeClasses: _angular_core.Signal<"text-slate-600" | "text-slate-400" | "text-emerald-
|
|
2950
|
+
protected metricValueClasses: _angular_core.Signal<"text-slate-900" | "text-slate-100">;
|
|
2951
|
+
protected yoyChangeClasses: _angular_core.Signal<"text-slate-600" | "text-slate-400" | "text-emerald-600" | "text-emerald-400" | "text-red-600" | "text-red-400">;
|
|
2951
2952
|
protected getYoyIcon(): string;
|
|
2952
2953
|
protected getPacingValueClasses(): string;
|
|
2953
2954
|
protected getHealthValueClasses(): string;
|
|
2954
2955
|
protected narrativeClasses: _angular_core.Signal<"bg-white border border-slate-200" | "bg-slate-800/50 border border-slate-600/20">;
|
|
2955
2956
|
protected narrativeTitleClasses: _angular_core.Signal<"text-slate-200" | "text-slate-800">;
|
|
2956
2957
|
protected narrativeTextClasses: _angular_core.Signal<"text-slate-600" | "text-slate-400">;
|
|
2957
|
-
protected sectionTitleClasses: _angular_core.Signal<"text-slate-
|
|
2958
|
+
protected sectionTitleClasses: _angular_core.Signal<"text-slate-900" | "text-slate-100">;
|
|
2958
2959
|
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">;
|
|
2959
2960
|
protected priorityNumberClasses: _angular_core.Signal<"bg-blue-500/20 text-blue-300" | "bg-blue-100 text-blue-800">;
|
|
2960
|
-
protected priorityTitleClasses: _angular_core.Signal<"text-slate-
|
|
2961
|
-
protected priorityTextClasses: _angular_core.Signal<"text-slate-
|
|
2961
|
+
protected priorityTitleClasses: _angular_core.Signal<"text-slate-900" | "text-slate-100">;
|
|
2962
|
+
protected priorityTextClasses: _angular_core.Signal<"text-slate-700" | "text-slate-300">;
|
|
2962
2963
|
protected impactBoxClasses: _angular_core.Signal<"bg-slate-800/30 border border-slate-700/30" | "bg-slate-50/50 border border-slate-200">;
|
|
2963
2964
|
protected impactLabelClasses: _angular_core.Signal<"text-blue-400" | "text-blue-600">;
|
|
2964
2965
|
protected impactTextClasses: _angular_core.Signal<"text-slate-600" | "text-slate-400">;
|
|
2965
2966
|
protected quickWinCardClasses: _angular_core.Signal<"bg-white border border-slate-200" | "bg-slate-800/50 border border-slate-700/50">;
|
|
2966
2967
|
protected numberBadgeClasses: _angular_core.Signal<"bg-blue-500/20 text-blue-300" | "bg-blue-100 text-blue-800">;
|
|
2967
|
-
protected quickWinTextClasses: _angular_core.Signal<"text-slate-
|
|
2968
|
+
protected quickWinTextClasses: _angular_core.Signal<"text-slate-900" | "text-slate-100">;
|
|
2968
2969
|
protected metaTextClasses: _angular_core.Signal<"text-slate-600" | "text-slate-400">;
|
|
2969
2970
|
protected getEffortBadgeClasses(effort: string | undefined): string;
|
|
2970
2971
|
protected getImpactBadgeClasses(impact: string | undefined): string;
|
|
@@ -3010,7 +3011,7 @@ declare class CircularProgressComponent implements OnInit, OnDestroy {
|
|
|
3010
3011
|
backgroundColor: _angular_core.InputSignal<string>;
|
|
3011
3012
|
showPercentage: _angular_core.InputSignal<boolean>;
|
|
3012
3013
|
textClasses: _angular_core.InputSignal<string>;
|
|
3013
|
-
strokeLinecap: _angular_core.InputSignal<"
|
|
3014
|
+
strokeLinecap: _angular_core.InputSignal<"round" | "butt" | "square">;
|
|
3014
3015
|
animationDuration: _angular_core.InputSignal<number>;
|
|
3015
3016
|
animationDelay: _angular_core.InputSignal<number>;
|
|
3016
3017
|
private elementRef;
|
|
@@ -3041,7 +3042,7 @@ declare class VisualizationContainerComponent {
|
|
|
3041
3042
|
data: unknown;
|
|
3042
3043
|
}>;
|
|
3043
3044
|
containerClass: _angular_core.Signal<"" | "cursor-pointer">;
|
|
3044
|
-
iconClass: _angular_core.Signal<"text-slate-
|
|
3045
|
+
iconClass: _angular_core.Signal<"text-slate-400 group-hover:text-blue-500" | "text-slate-500 group-hover:text-blue-400">;
|
|
3045
3046
|
onExpandClick(event: Event): void;
|
|
3046
3047
|
onVisualizationClick(event: Event): void;
|
|
3047
3048
|
static ɵfac: _angular_core.ɵɵFactoryDeclaration<VisualizationContainerComponent, never>;
|
|
@@ -3121,17 +3122,17 @@ declare class SearchModalComponent {
|
|
|
3121
3122
|
iconClass: _angular_core.Signal<"text-slate-400" | "text-slate-500">;
|
|
3122
3123
|
clearButtonClass: _angular_core.Signal<"bg-slate-100 text-slate-600 hover:bg-slate-200" | "bg-slate-700 text-slate-300 hover:bg-slate-600">;
|
|
3123
3124
|
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">;
|
|
3124
|
-
resultsContainerClass: _angular_core.Signal<"border-slate-
|
|
3125
|
+
resultsContainerClass: _angular_core.Signal<"border-slate-200" | "border-slate-700">;
|
|
3125
3126
|
resultTitleClass: _angular_core.Signal<"text-slate-900" | "text-white">;
|
|
3126
3127
|
resultDescClass: _angular_core.Signal<"text-slate-600" | "text-slate-400">;
|
|
3127
3128
|
breadcrumbClass: _angular_core.Signal<string>;
|
|
3128
3129
|
typeBadgeClass: _angular_core.Signal<"bg-slate-100 text-slate-600" | "bg-slate-700 text-slate-300">;
|
|
3129
3130
|
arrowClass: _angular_core.Signal<"text-slate-400" | "text-slate-500">;
|
|
3130
|
-
emptyStateClass: _angular_core.Signal<"border-slate-
|
|
3131
|
-
emptyIconClass: _angular_core.Signal<"text-slate-
|
|
3131
|
+
emptyStateClass: _angular_core.Signal<"border-slate-200" | "border-slate-700">;
|
|
3132
|
+
emptyIconClass: _angular_core.Signal<"text-slate-600" | "text-slate-300">;
|
|
3132
3133
|
emptyTitleClass: _angular_core.Signal<"text-slate-900" | "text-white">;
|
|
3133
3134
|
emptyDescClass: _angular_core.Signal<"text-slate-600" | "text-slate-400">;
|
|
3134
|
-
shortcutsClass: _angular_core.Signal<"bg-slate-50 border-slate-
|
|
3135
|
+
shortcutsClass: _angular_core.Signal<"bg-slate-900/50 border-slate-700" | "bg-slate-50 border-slate-200">;
|
|
3135
3136
|
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">;
|
|
3136
3137
|
shortcutTextClass: _angular_core.Signal<"text-slate-600" | "text-slate-400">;
|
|
3137
3138
|
static ɵfac: _angular_core.ɵɵFactoryDeclaration<SearchModalComponent, never>;
|
|
@@ -3143,7 +3144,7 @@ declare class GradeBadgeComponent {
|
|
|
3143
3144
|
gradeRationale: _angular_core.InputSignal<string>;
|
|
3144
3145
|
label: _angular_core.InputSignal<string>;
|
|
3145
3146
|
viewMode: _angular_core.InputSignal<ViewModeEnum>;
|
|
3146
|
-
tooltipPosition: _angular_core.InputSignal<"top" | "
|
|
3147
|
+
tooltipPosition: _angular_core.InputSignal<"top" | "bottom" | "left" | "right">;
|
|
3147
3148
|
isLightMode: _angular_core.Signal<boolean>;
|
|
3148
3149
|
formattedGrade: _angular_core.Signal<string>;
|
|
3149
3150
|
shouldPulse: _angular_core.Signal<boolean>;
|
|
@@ -3232,11 +3233,11 @@ declare class ConfidenceLevelCardComponent implements OnInit, OnDestroy {
|
|
|
3232
3233
|
protected gradeBadgeContainerClasses: _angular_core.Signal<string>;
|
|
3233
3234
|
protected glowEffectClasses: _angular_core.Signal<"bg-emerald-500" | "bg-blue-500" | "bg-orange-500" | "bg-red-500">;
|
|
3234
3235
|
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)]">;
|
|
3235
|
-
protected gradeLabelClasses: _angular_core.Signal<"text-
|
|
3236
|
+
protected gradeLabelClasses: _angular_core.Signal<"text-emerald-700" | "text-blue-700" | "text-red-700" | "text-orange-700" | "text-red-300" | "text-emerald-300" | "text-blue-300" | "text-orange-300">;
|
|
3236
3237
|
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">;
|
|
3237
|
-
protected descriptionClasses: _angular_core.Signal<"text-slate-
|
|
3238
|
-
protected progressLabelClasses: _angular_core.Signal<"text-slate-
|
|
3239
|
-
protected progressValueClasses: _angular_core.Signal<"text-emerald-
|
|
3238
|
+
protected descriptionClasses: _angular_core.Signal<"text-slate-700" | "text-slate-300">;
|
|
3239
|
+
protected progressLabelClasses: _angular_core.Signal<"text-slate-700" | "text-slate-300">;
|
|
3240
|
+
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">;
|
|
3240
3241
|
protected progressTrackClasses: _angular_core.Signal<"bg-slate-700/50 shadow-inner" | "bg-slate-200 shadow-inner">;
|
|
3241
3242
|
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">;
|
|
3242
3243
|
protected shimmerClasses: _angular_core.Signal<string>;
|
|
@@ -3259,12 +3260,12 @@ declare class RelatedContentSidebarComponent {
|
|
|
3259
3260
|
protected funnelMetricsCount: _angular_core.Signal<number>;
|
|
3260
3261
|
protected businessInsightsCount: _angular_core.Signal<number>;
|
|
3261
3262
|
protected headerClasses: _angular_core.Signal<"text-slate-600" | "text-slate-400">;
|
|
3262
|
-
protected buttonClasses: _angular_core.Signal<"bg-slate-
|
|
3263
|
+
protected buttonClasses: _angular_core.Signal<"bg-slate-50 border-slate-200 hover:border-blue-500/50 hover:bg-slate-100" | "bg-slate-800/50 border-slate-700 hover:border-blue-500/50 hover:bg-slate-700/50">;
|
|
3263
3264
|
protected iconBgClasses: _angular_core.Signal<"bg-blue-100 text-blue-600" | "bg-blue-900/30 text-blue-400">;
|
|
3264
3265
|
protected iconClasses: _angular_core.Signal<"text-blue-400" | "text-blue-600">;
|
|
3265
3266
|
protected countClasses: _angular_core.Signal<"text-slate-900" | "text-white">;
|
|
3266
3267
|
protected labelClasses: _angular_core.Signal<"text-slate-600" | "text-slate-400">;
|
|
3267
|
-
protected chevronClasses: _angular_core.Signal<"text-slate-
|
|
3268
|
+
protected chevronClasses: _angular_core.Signal<"text-slate-500 group-hover:text-blue-400" | "text-slate-400 group-hover:text-blue-600">;
|
|
3268
3269
|
protected onFunnelInsightsClick(): void;
|
|
3269
3270
|
protected onFunnelMetricsClick(): void;
|
|
3270
3271
|
protected onBusinessInsightsClick(): void;
|
|
@@ -3284,11 +3285,11 @@ declare class ChartContainerComponent {
|
|
|
3284
3285
|
isExpanded: _angular_core.WritableSignal<boolean>;
|
|
3285
3286
|
protected ChartTypeEnum: typeof ChartTypeEnum;
|
|
3286
3287
|
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">;
|
|
3287
|
-
headerClass: _angular_core.Signal<"border-slate-
|
|
3288
|
+
headerClass: _angular_core.Signal<"border-slate-200" | "border-slate-700">;
|
|
3288
3289
|
titleClass: _angular_core.Signal<"text-slate-900" | "text-white">;
|
|
3289
3290
|
descriptionClass: _angular_core.Signal<"text-slate-600" | "text-slate-400">;
|
|
3290
|
-
iconClass: _angular_core.Signal<"text-slate-
|
|
3291
|
-
chartIconClass: _angular_core.Signal<"bg-blue-
|
|
3291
|
+
iconClass: _angular_core.Signal<"text-slate-400 group-hover:text-blue-500" | "text-slate-500 group-hover:text-blue-400">;
|
|
3292
|
+
chartIconClass: _angular_core.Signal<"bg-blue-100 text-blue-600" | "bg-blue-500/20 text-blue-400">;
|
|
3292
3293
|
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">;
|
|
3293
3294
|
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">;
|
|
3294
3295
|
isCollapsible: _angular_core.Signal<boolean>;
|
|
@@ -3306,7 +3307,7 @@ declare class LineChartComponent implements OnInit, AfterViewInit, OnDestroy {
|
|
|
3306
3307
|
showAxisLabels: _angular_core.InputSignal<boolean>;
|
|
3307
3308
|
viewMode: _angular_core.InputSignal<ViewModeEnum>;
|
|
3308
3309
|
currencySymbol: _angular_core.InputSignal<string>;
|
|
3309
|
-
chartHeight: _angular_core.Signal<"
|
|
3310
|
+
chartHeight: _angular_core.Signal<"500px" | "133px">;
|
|
3310
3311
|
cursorColor: _angular_core.Signal<9741240 | 16777215>;
|
|
3311
3312
|
tooltipTextColor: _angular_core.Signal<0 | 16777215>;
|
|
3312
3313
|
chartHash: _angular_core.Signal<string>;
|
|
@@ -3350,7 +3351,7 @@ declare class BarChartComponent implements OnInit, AfterViewInit, OnDestroy {
|
|
|
3350
3351
|
showAxisLabels: _angular_core.InputSignal<boolean>;
|
|
3351
3352
|
viewMode: _angular_core.InputSignal<ViewModeEnum>;
|
|
3352
3353
|
currencySymbol: _angular_core.InputSignal<string>;
|
|
3353
|
-
chartHeight: _angular_core.Signal<"
|
|
3354
|
+
chartHeight: _angular_core.Signal<"500px" | "175px">;
|
|
3354
3355
|
cursorColor: _angular_core.Signal<9741240 | 16777215>;
|
|
3355
3356
|
tooltipTextColor: _angular_core.Signal<0 | 16777215>;
|
|
3356
3357
|
chartHash: _angular_core.Signal<string>;
|
|
@@ -3387,7 +3388,7 @@ declare class PieChartComponent implements OnInit, AfterViewInit, OnDestroy {
|
|
|
3387
3388
|
showAxisLabels: _angular_core.InputSignal<boolean>;
|
|
3388
3389
|
viewMode: _angular_core.InputSignal<ViewModeEnum>;
|
|
3389
3390
|
currencySymbol: _angular_core.InputSignal<string>;
|
|
3390
|
-
chartHeight: _angular_core.Signal<"
|
|
3391
|
+
chartHeight: _angular_core.Signal<"500px" | "200px">;
|
|
3391
3392
|
chartHash: _angular_core.Signal<string>;
|
|
3392
3393
|
chartDiv: ElementRef;
|
|
3393
3394
|
private root?;
|
|
@@ -3423,7 +3424,7 @@ declare class AreaChartComponent implements OnInit, AfterViewInit, OnDestroy {
|
|
|
3423
3424
|
showAxisLabels: _angular_core.InputSignal<boolean>;
|
|
3424
3425
|
viewMode: _angular_core.InputSignal<ViewModeEnum>;
|
|
3425
3426
|
currencySymbol: _angular_core.InputSignal<string>;
|
|
3426
|
-
chartHeight: _angular_core.Signal<"
|
|
3427
|
+
chartHeight: _angular_core.Signal<"500px" | "133px">;
|
|
3427
3428
|
cursorColor: _angular_core.Signal<9741240 | 16777215>;
|
|
3428
3429
|
chartHash: _angular_core.Signal<string>;
|
|
3429
3430
|
chartDiv: ElementRef;
|
|
@@ -3464,7 +3465,7 @@ declare class TooltipContainerComponent {
|
|
|
3464
3465
|
isVisible: _angular_core.Signal<boolean>;
|
|
3465
3466
|
tooltipType: _angular_core.Signal<string | null>;
|
|
3466
3467
|
tooltipContent: _angular_core.Signal<string | Record<string, unknown> | undefined>;
|
|
3467
|
-
tooltipPosition: _angular_core.Signal<"
|
|
3468
|
+
tooltipPosition: _angular_core.Signal<"top" | "bottom" | "left" | "right" | "auto">;
|
|
3468
3469
|
targetRect: _angular_core.Signal<DOMRect | null>;
|
|
3469
3470
|
mousePosition: _angular_core.Signal<{
|
|
3470
3471
|
x: number;
|
|
@@ -3600,7 +3601,7 @@ declare class FocusAreaDetailCardComponent {
|
|
|
3600
3601
|
protected isActuallyExpanded: _angular_core.Signal<boolean>;
|
|
3601
3602
|
protected forceExpandedValue: _angular_core.Signal<boolean>;
|
|
3602
3603
|
protected shouldAnimateExpand: _angular_core.Signal<boolean>;
|
|
3603
|
-
protected iconSize: _angular_core.Signal<"w-
|
|
3604
|
+
protected iconSize: _angular_core.Signal<"w-6 h-6" | "w-7 h-7">;
|
|
3604
3605
|
protected relatedRecommendations: _angular_core.Signal<_jebgem_model.ProfileAnalysisRecommendationInterface[]>;
|
|
3605
3606
|
protected statusLabel: _angular_core.Signal<string>;
|
|
3606
3607
|
protected statusBadgeType: _angular_core.Signal<BadgeType>;
|
|
@@ -3665,7 +3666,7 @@ declare class CompetitorAnalysisCardComponent {
|
|
|
3665
3666
|
protected isActuallyExpanded: _angular_core.Signal<boolean>;
|
|
3666
3667
|
protected isExpandedMode: _angular_core.Signal<boolean>;
|
|
3667
3668
|
protected shouldAnimateExpand: _angular_core.Signal<boolean>;
|
|
3668
|
-
protected iconSize: _angular_core.Signal<"w-
|
|
3669
|
+
protected iconSize: _angular_core.Signal<"w-6 h-6" | "w-7 h-7">;
|
|
3669
3670
|
protected animationType: _angular_core.Signal<"none" | "slide-up">;
|
|
3670
3671
|
constructor();
|
|
3671
3672
|
protected hasCompanyInfo: _angular_core.Signal<boolean>;
|
|
@@ -3720,7 +3721,7 @@ declare class OpportunityHighlightBannerComponent {
|
|
|
3720
3721
|
protected titleClasses: _angular_core.Signal<"text-amber-300" | "text-amber-900">;
|
|
3721
3722
|
protected badgeClasses: _angular_core.Signal<"bg-amber-500/30 text-amber-300" | "bg-amber-200 text-amber-800">;
|
|
3722
3723
|
protected messageClasses: _angular_core.Signal<"text-amber-700" | "text-amber-400/90">;
|
|
3723
|
-
protected chevronClasses: _angular_core.Signal<"text-amber-
|
|
3724
|
+
protected chevronClasses: _angular_core.Signal<"text-amber-600" | "text-amber-400">;
|
|
3724
3725
|
handleClick(event: Event): void;
|
|
3725
3726
|
static ɵfac: _angular_core.ɵɵFactoryDeclaration<OpportunityHighlightBannerComponent, never>;
|
|
3726
3727
|
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>;
|