@eric-emg/symphiq-components 1.2.517 → 1.2.518
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 +1086 -1277
- package/fesm2022/symphiq-components.mjs.map +1 -1
- package/index.d.ts +28 -26
- package/index.d.ts.map +1 -1
- package/package.json +1 -1
package/index.d.ts
CHANGED
|
@@ -1072,7 +1072,7 @@ declare class ModalComponent {
|
|
|
1072
1072
|
private animatedTrendValues;
|
|
1073
1073
|
private animationFrames;
|
|
1074
1074
|
isOpen: _angular_core.Signal<boolean>;
|
|
1075
|
-
modalType: _angular_core.Signal<"
|
|
1075
|
+
modalType: _angular_core.Signal<"insight" | "metric" | "chart" | "insights-list" | "goal-insights-list" | "goal-business-insights-list" | "business-insight-detail" | "metrics-list" | "charts-list" | "recommendations-list" | "competitive-analysis" | "funnel-strengths-list" | "funnel-weaknesses-list" | "funnel-strength-detail" | "funnel-weakness-detail" | null>;
|
|
1076
1076
|
charts: _angular_core.Signal<AiChartInterface[]>;
|
|
1077
1077
|
modalKey: _angular_core.Signal<number>;
|
|
1078
1078
|
insightData: _angular_core.Signal<InsightBlockInterface | null>;
|
|
@@ -1091,7 +1091,7 @@ declare class ModalComponent {
|
|
|
1091
1091
|
description: string;
|
|
1092
1092
|
icon: string;
|
|
1093
1093
|
} | null>;
|
|
1094
|
-
metricsListData: _angular_core.Signal<
|
|
1094
|
+
metricsListData: _angular_core.Signal<PerformanceMetricInterface | AiChartInterface | InsightBlockInterface | FunnelStrengthsListModalData | FunnelWeaknessesListModalData | FunnelStrengthDetailModalData | FunnelWeaknessDetailModalData | (PerformanceMetricInterface | InsightBlockInterface)[] | null>;
|
|
1095
1095
|
metricsListMetrics: _angular_core.Signal<PerformanceMetricInterface[]>;
|
|
1096
1096
|
metricsListInsightContext: _angular_core.Signal<{
|
|
1097
1097
|
title: string;
|
|
@@ -1099,7 +1099,7 @@ declare class ModalComponent {
|
|
|
1099
1099
|
businessContext: string;
|
|
1100
1100
|
priority: number;
|
|
1101
1101
|
} | null>;
|
|
1102
|
-
chartsListData: _angular_core.Signal<
|
|
1102
|
+
chartsListData: _angular_core.Signal<PerformanceMetricInterface | AiChartInterface | InsightBlockInterface | FunnelStrengthsListModalData | FunnelWeaknessesListModalData | FunnelStrengthDetailModalData | FunnelWeaknessDetailModalData | (PerformanceMetricInterface | InsightBlockInterface)[] | null>;
|
|
1103
1103
|
chartsListCharts: _angular_core.Signal<AiChartInterface[]>;
|
|
1104
1104
|
chartsListInsightContext: _angular_core.Signal<{
|
|
1105
1105
|
title: string;
|
|
@@ -1107,7 +1107,7 @@ declare class ModalComponent {
|
|
|
1107
1107
|
businessContext: string;
|
|
1108
1108
|
priority: number;
|
|
1109
1109
|
} | null>;
|
|
1110
|
-
recommendationsListData: _angular_core.Signal<
|
|
1110
|
+
recommendationsListData: _angular_core.Signal<PerformanceMetricInterface | AiChartInterface | InsightBlockInterface | FunnelStrengthsListModalData | FunnelWeaknessesListModalData | FunnelStrengthDetailModalData | FunnelWeaknessDetailModalData | (PerformanceMetricInterface | InsightBlockInterface)[] | null>;
|
|
1111
1111
|
recommendationsListRecommendations: _angular_core.Signal<string[]>;
|
|
1112
1112
|
recommendationsListInsightContext: _angular_core.Signal<{
|
|
1113
1113
|
title: string;
|
|
@@ -1115,7 +1115,7 @@ declare class ModalComponent {
|
|
|
1115
1115
|
businessContext: string;
|
|
1116
1116
|
priority: number;
|
|
1117
1117
|
} | null>;
|
|
1118
|
-
competitiveAnalysisData: _angular_core.Signal<
|
|
1118
|
+
competitiveAnalysisData: _angular_core.Signal<PerformanceMetricInterface | AiChartInterface | InsightBlockInterface | FunnelStrengthsListModalData | FunnelWeaknessesListModalData | FunnelStrengthDetailModalData | FunnelWeaknessDetailModalData | (PerformanceMetricInterface | InsightBlockInterface)[] | null>;
|
|
1119
1119
|
competitiveAnalysisContext: _angular_core.Signal<{
|
|
1120
1120
|
title: string;
|
|
1121
1121
|
description: string;
|
|
@@ -1665,7 +1665,7 @@ declare class MetricCardComponent {
|
|
|
1665
1665
|
competitiveScoreBadgeLightClass: _angular_core.Signal<string>;
|
|
1666
1666
|
competitiveScoreBadgeDarkClass: _angular_core.Signal<string>;
|
|
1667
1667
|
competitiveScoreBadgeClass: _angular_core.Signal<string>;
|
|
1668
|
-
competitiveScoreTextClass: _angular_core.Signal<"" | "text-
|
|
1668
|
+
competitiveScoreTextClass: _angular_core.Signal<"" | "text-blue-400" | "text-blue-700" | "text-emerald-600" | "text-orange-600">;
|
|
1669
1669
|
competitiveComparisonDefaultClass: _angular_core.Signal<"text-slate-700" | "text-slate-300">;
|
|
1670
1670
|
competitiveComparisonClass: _angular_core.Signal<"text-slate-700" | "text-slate-300" | "text-emerald-600 font-semibold" | "text-orange-600 font-semibold">;
|
|
1671
1671
|
getCompetitiveScoreIcon(): string;
|
|
@@ -1908,10 +1908,10 @@ declare class OverallAssessmentComponent {
|
|
|
1908
1908
|
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">;
|
|
1909
1909
|
lightModeTrendIconClass: _angular_core.Signal<"text-emerald-600" | "text-red-600">;
|
|
1910
1910
|
darkModeTrendIconClass: _angular_core.Signal<"text-emerald-400" | "text-red-400">;
|
|
1911
|
-
trendIconClass: _angular_core.Signal<"text-emerald-
|
|
1911
|
+
trendIconClass: _angular_core.Signal<"text-emerald-400" | "text-red-400" | "text-emerald-600" | "text-red-600">;
|
|
1912
1912
|
lightModeTrendValueClass: _angular_core.Signal<"text-emerald-600" | "text-red-600">;
|
|
1913
1913
|
darkModeTrendValueClass: _angular_core.Signal<"text-emerald-400" | "text-red-400">;
|
|
1914
|
-
trendValueClass: _angular_core.Signal<"text-emerald-
|
|
1914
|
+
trendValueClass: _angular_core.Signal<"text-emerald-400" | "text-red-400" | "text-emerald-600" | "text-red-600">;
|
|
1915
1915
|
formattedRevenueTrend: _angular_core.Signal<string>;
|
|
1916
1916
|
formattedRevenueTarget: _angular_core.Signal<string>;
|
|
1917
1917
|
hasRevenuePacing: _angular_core.Signal<boolean>;
|
|
@@ -2797,7 +2797,7 @@ declare class PacingStatusBadgeComponent implements OnDestroy {
|
|
|
2797
2797
|
private animateValue;
|
|
2798
2798
|
protected displayInfo: _angular_core.Signal<PacingDisplayInfo>;
|
|
2799
2799
|
protected containerClasses: _angular_core.Signal<string>;
|
|
2800
|
-
protected targetRotation: _angular_core.Signal<
|
|
2800
|
+
protected targetRotation: _angular_core.Signal<0 | 1 | -1>;
|
|
2801
2801
|
protected rotationStyle: _angular_core.Signal<string>;
|
|
2802
2802
|
protected fullBadgeRotationStyle: _angular_core.Signal<string>;
|
|
2803
2803
|
protected containerSizeClasses: _angular_core.Signal<"inline-flex flex-row items-center rounded-xl border-2 overflow-visible transition-transform hover:rotate-0 pl-1.5" | "inline-flex flex-row items-center rounded-xl border-2 overflow-visible transition-transform hover:rotate-0 pl-2">;
|
|
@@ -4202,18 +4202,18 @@ declare class MetricExecutiveSummaryComponent {
|
|
|
4202
4202
|
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">;
|
|
4203
4203
|
protected titleClasses: _angular_core.Signal<"text-slate-900" | "text-slate-100">;
|
|
4204
4204
|
protected textClasses: _angular_core.Signal<"text-slate-700" | "text-slate-300">;
|
|
4205
|
-
protected iconClasses: _angular_core.Signal<"text-blue-
|
|
4205
|
+
protected iconClasses: _angular_core.Signal<"text-blue-600" | "text-blue-400">;
|
|
4206
4206
|
protected healthBadgeClasses: _angular_core.Signal<string>;
|
|
4207
4207
|
protected pacingBadgeClasses: _angular_core.Signal<string>;
|
|
4208
4208
|
protected metricCardClasses: _angular_core.Signal<"bg-white border border-slate-200" | "bg-slate-800/50 border border-slate-700/50">;
|
|
4209
4209
|
protected metricLabelClasses: _angular_core.Signal<"text-slate-600" | "text-slate-400">;
|
|
4210
4210
|
protected metricValueClasses: _angular_core.Signal<"text-slate-900" | "text-slate-100">;
|
|
4211
|
-
protected yoyChangeClasses: _angular_core.Signal<"text-slate-600" | "text-slate-400" | "text-emerald-
|
|
4211
|
+
protected yoyChangeClasses: _angular_core.Signal<"text-slate-600" | "text-slate-400" | "text-emerald-400" | "text-red-400" | "text-emerald-600" | "text-red-600">;
|
|
4212
4212
|
protected getYoyIcon(): string;
|
|
4213
4213
|
protected getPacingValueClasses(): string;
|
|
4214
4214
|
protected getHealthValueClasses(): string;
|
|
4215
4215
|
protected narrativeClasses: _angular_core.Signal<"bg-white border border-slate-200" | "bg-slate-800/50 border border-slate-600/20">;
|
|
4216
|
-
protected narrativeTitleClasses: _angular_core.Signal<"text-slate-
|
|
4216
|
+
protected narrativeTitleClasses: _angular_core.Signal<"text-slate-800" | "text-slate-200">;
|
|
4217
4217
|
protected narrativeTextClasses: _angular_core.Signal<"text-slate-600" | "text-slate-400">;
|
|
4218
4218
|
protected sectionTitleClasses: _angular_core.Signal<"text-slate-900" | "text-slate-100">;
|
|
4219
4219
|
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">;
|
|
@@ -4221,7 +4221,7 @@ declare class MetricExecutiveSummaryComponent {
|
|
|
4221
4221
|
protected priorityTitleClasses: _angular_core.Signal<"text-slate-900" | "text-slate-100">;
|
|
4222
4222
|
protected priorityTextClasses: _angular_core.Signal<"text-slate-700" | "text-slate-300">;
|
|
4223
4223
|
protected impactBoxClasses: _angular_core.Signal<"bg-slate-800/30 border border-slate-700/30" | "bg-slate-50/50 border border-slate-200">;
|
|
4224
|
-
protected impactLabelClasses: _angular_core.Signal<"text-blue-
|
|
4224
|
+
protected impactLabelClasses: _angular_core.Signal<"text-blue-600" | "text-blue-400">;
|
|
4225
4225
|
protected impactTextClasses: _angular_core.Signal<"text-slate-600" | "text-slate-400">;
|
|
4226
4226
|
protected quickWinCardClasses: _angular_core.Signal<"bg-white border border-slate-200" | "bg-slate-800/50 border border-slate-700/50">;
|
|
4227
4227
|
protected numberBadgeClasses: _angular_core.Signal<"bg-blue-500/20 text-blue-300" | "bg-blue-100 text-blue-800">;
|
|
@@ -4730,6 +4730,8 @@ declare class DashboardHeaderComponent {
|
|
|
4730
4730
|
viewModeLabel: _angular_core.InputSignal<string>;
|
|
4731
4731
|
currentSection: _angular_core.InputSignal<string | undefined>;
|
|
4732
4732
|
currentSubsection: _angular_core.InputSignal<string | undefined>;
|
|
4733
|
+
sectionFading: _angular_core.InputSignal<boolean>;
|
|
4734
|
+
subsectionFading: _angular_core.InputSignal<boolean>;
|
|
4733
4735
|
isLoading: _angular_core.InputSignal<boolean | undefined>;
|
|
4734
4736
|
showControls: _angular_core.InputSignal<boolean>;
|
|
4735
4737
|
searchClick: _angular_core.OutputEmitterRef<void>;
|
|
@@ -4749,7 +4751,7 @@ declare class DashboardHeaderComponent {
|
|
|
4749
4751
|
protected getCondensedTitleClasses(): string;
|
|
4750
4752
|
protected getViewModeButtonClasses(): string;
|
|
4751
4753
|
static ɵfac: _angular_core.ɵɵFactoryDeclaration<DashboardHeaderComponent, never>;
|
|
4752
|
-
static ɵcmp: _angular_core.ɵɵComponentDeclaration<DashboardHeaderComponent, "symphiq-dashboard-header", never, { "requestedByUser": { "alias": "requestedByUser"; "required": false; "isSignal": true; }; "createdDate": { "alias": "createdDate"; "required": false; "isSignal": true; }; "title": { "alias": "title"; "required": false; "isSignal": true; }; "subtitle": { "alias": "subtitle"; "required": false; "isSignal": true; }; "viewMode": { "alias": "viewMode"; "required": false; "isSignal": true; }; "viewModeLabel": { "alias": "viewModeLabel"; "required": false; "isSignal": true; }; "currentSection": { "alias": "currentSection"; "required": false; "isSignal": true; }; "currentSubsection": { "alias": "currentSubsection"; "required": false; "isSignal": true; }; "isLoading": { "alias": "isLoading"; "required": false; "isSignal": true; }; "showControls": { "alias": "showControls"; "required": false; "isSignal": true; }; }, { "searchClick": "searchClick"; "viewModeClick": "viewModeClick"; }, never, never, true, never>;
|
|
4754
|
+
static ɵcmp: _angular_core.ɵɵComponentDeclaration<DashboardHeaderComponent, "symphiq-dashboard-header", never, { "requestedByUser": { "alias": "requestedByUser"; "required": false; "isSignal": true; }; "createdDate": { "alias": "createdDate"; "required": false; "isSignal": true; }; "title": { "alias": "title"; "required": false; "isSignal": true; }; "subtitle": { "alias": "subtitle"; "required": false; "isSignal": true; }; "viewMode": { "alias": "viewMode"; "required": false; "isSignal": true; }; "viewModeLabel": { "alias": "viewModeLabel"; "required": false; "isSignal": true; }; "currentSection": { "alias": "currentSection"; "required": false; "isSignal": true; }; "currentSubsection": { "alias": "currentSubsection"; "required": false; "isSignal": true; }; "sectionFading": { "alias": "sectionFading"; "required": false; "isSignal": true; }; "subsectionFading": { "alias": "subsectionFading"; "required": false; "isSignal": true; }; "isLoading": { "alias": "isLoading"; "required": false; "isSignal": true; }; "showControls": { "alias": "showControls"; "required": false; "isSignal": true; }; }, { "searchClick": "searchClick"; "viewModeClick": "viewModeClick"; }, never, never, true, never>;
|
|
4753
4755
|
}
|
|
4754
4756
|
|
|
4755
4757
|
declare class GradeBadgeComponent {
|
|
@@ -4853,11 +4855,11 @@ declare class ConfidenceLevelCardComponent implements OnInit, OnDestroy {
|
|
|
4853
4855
|
protected gradeBadgeContainerClasses: _angular_core.Signal<string>;
|
|
4854
4856
|
protected glowEffectClasses: _angular_core.Signal<"bg-emerald-500" | "bg-blue-500" | "bg-orange-500" | "bg-red-500">;
|
|
4855
4857
|
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)]">;
|
|
4856
|
-
protected gradeLabelClasses: _angular_core.Signal<"text-emerald-700" | "text-
|
|
4858
|
+
protected gradeLabelClasses: _angular_core.Signal<"text-emerald-700" | "text-red-700" | "text-blue-700" | "text-orange-700" | "text-red-300" | "text-blue-300" | "text-emerald-300" | "text-orange-300">;
|
|
4857
4859
|
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">;
|
|
4858
4860
|
protected descriptionClasses: _angular_core.Signal<"text-slate-700" | "text-slate-300">;
|
|
4859
4861
|
protected progressLabelClasses: _angular_core.Signal<"text-slate-700" | "text-slate-300">;
|
|
4860
|
-
protected progressValueClasses: _angular_core.Signal<"text-
|
|
4862
|
+
protected progressValueClasses: _angular_core.Signal<"text-blue-600" | "text-blue-400" | "text-emerald-400" | "text-red-400" | "text-emerald-600" | "text-red-600" | "text-orange-600" | "text-orange-400">;
|
|
4861
4863
|
protected progressTrackClasses: _angular_core.Signal<"bg-slate-700/50 shadow-inner" | "bg-slate-200 shadow-inner">;
|
|
4862
4864
|
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">;
|
|
4863
4865
|
protected shimmerClasses: _angular_core.Signal<string>;
|
|
@@ -4882,7 +4884,7 @@ declare class RelatedContentSidebarComponent {
|
|
|
4882
4884
|
protected headerClasses: _angular_core.Signal<"text-slate-600" | "text-slate-400">;
|
|
4883
4885
|
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">;
|
|
4884
4886
|
protected iconBgClasses: _angular_core.Signal<"bg-blue-100 text-blue-600" | "bg-blue-900/30 text-blue-400">;
|
|
4885
|
-
protected iconClasses: _angular_core.Signal<"text-blue-
|
|
4887
|
+
protected iconClasses: _angular_core.Signal<"text-blue-600" | "text-blue-400">;
|
|
4886
4888
|
protected countClasses: _angular_core.Signal<"text-slate-900" | "text-white">;
|
|
4887
4889
|
protected labelClasses: _angular_core.Signal<"text-slate-600" | "text-slate-400">;
|
|
4888
4890
|
protected chevronClasses: _angular_core.Signal<"text-slate-500 group-hover:text-blue-400" | "text-slate-400 group-hover:text-blue-600">;
|
|
@@ -4942,11 +4944,11 @@ declare class IndeterminateSpinnerComponent {
|
|
|
4942
4944
|
viewMode: _angular_core.InputSignal<ViewModeEnum>;
|
|
4943
4945
|
size: _angular_core.InputSignal<SpinnerSize>;
|
|
4944
4946
|
color: _angular_core.InputSignal<string | undefined>;
|
|
4945
|
-
svgSize: _angular_core.Signal<
|
|
4947
|
+
svgSize: _angular_core.Signal<60 | 40 | 80>;
|
|
4946
4948
|
circleRadius: _angular_core.Signal<16 | 36 | 26>;
|
|
4947
4949
|
svgCircleRadius: _angular_core.Signal<number>;
|
|
4948
|
-
strokeWidth: _angular_core.Signal<
|
|
4949
|
-
dotSize: _angular_core.Signal<
|
|
4950
|
+
strokeWidth: _angular_core.Signal<2 | 3 | 2.5>;
|
|
4951
|
+
dotSize: _angular_core.Signal<10 | 5 | 7>;
|
|
4950
4952
|
containerClasses: _angular_core.Signal<{
|
|
4951
4953
|
'w-10 h-10': boolean;
|
|
4952
4954
|
'w-[60px] h-[60px]': boolean;
|
|
@@ -5010,7 +5012,7 @@ declare class ChartContainerComponent {
|
|
|
5010
5012
|
titleClass: _angular_core.Signal<"text-slate-900" | "text-white">;
|
|
5011
5013
|
descriptionClass: _angular_core.Signal<"text-slate-600" | "text-slate-400">;
|
|
5012
5014
|
iconClass: _angular_core.Signal<"text-slate-400 group-hover:text-blue-500" | "text-slate-500 group-hover:text-blue-400">;
|
|
5013
|
-
chartIconClass: _angular_core.Signal<"bg-blue-
|
|
5015
|
+
chartIconClass: _angular_core.Signal<"bg-blue-500/20 text-blue-400" | "bg-blue-100 text-blue-600">;
|
|
5014
5016
|
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">;
|
|
5015
5017
|
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">;
|
|
5016
5018
|
isCollapsible: _angular_core.Signal<boolean>;
|
|
@@ -5192,7 +5194,7 @@ declare class TooltipContainerComponent implements AfterViewInit, OnDestroy {
|
|
|
5192
5194
|
isVisible: _angular_core.Signal<boolean>;
|
|
5193
5195
|
tooltipType: _angular_core.Signal<string | null>;
|
|
5194
5196
|
tooltipContent: _angular_core.Signal<string | Record<string, unknown> | undefined>;
|
|
5195
|
-
tooltipPosition: _angular_core.Signal<"top" | "
|
|
5197
|
+
tooltipPosition: _angular_core.Signal<"top" | "auto" | "bottom" | "left" | "right">;
|
|
5196
5198
|
targetRect: _angular_core.Signal<DOMRect | null>;
|
|
5197
5199
|
mousePosition: _angular_core.Signal<{
|
|
5198
5200
|
x: number;
|
|
@@ -5347,11 +5349,11 @@ declare class FocusAreaDetailCardComponent {
|
|
|
5347
5349
|
protected metaLabelClasses: _angular_core.Signal<"text-xs font-medium text-slate-400 uppercase tracking-wide" | "text-xs font-medium text-slate-600 uppercase tracking-wide">;
|
|
5348
5350
|
protected toolChipClasses: _angular_core.Signal<"px-2.5 py-1 rounded-md bg-emerald-500/10 text-emerald-300 text-xs border border-emerald-500/30" | "px-2.5 py-1 rounded-md bg-emerald-50 text-emerald-700 text-xs border border-emerald-200">;
|
|
5349
5351
|
protected expandedSectionClasses: _angular_core.Signal<"p-4 rounded-lg bg-slate-700/30 border border-slate-600/30" | "p-4 rounded-lg bg-slate-50 border border-slate-200">;
|
|
5350
|
-
protected expandedIconClasses: _angular_core.Signal<"text-blue-
|
|
5352
|
+
protected expandedIconClasses: _angular_core.Signal<"text-blue-600" | "text-blue-400">;
|
|
5351
5353
|
protected expandedTitleClasses: _angular_core.Signal<"text-sm font-semibold text-white" | "text-sm font-semibold text-slate-900">;
|
|
5352
5354
|
protected insightItemClasses: _angular_core.Signal<"text-sm text-slate-300 leading-relaxed flex" | "text-sm text-slate-600 leading-relaxed flex">;
|
|
5353
5355
|
protected expandButtonClasses: _angular_core.Signal<"text-sm font-medium text-blue-400" | "text-sm font-medium text-blue-600">;
|
|
5354
|
-
protected chevronClasses: _angular_core.Signal<"text-blue-
|
|
5356
|
+
protected chevronClasses: _angular_core.Signal<"text-blue-600" | "text-blue-400">;
|
|
5355
5357
|
protected toggleExpanded(): void;
|
|
5356
5358
|
protected toggleCompetitiveGap(): void;
|
|
5357
5359
|
onExpandItem(event: CustomEvent): void;
|
|
@@ -5427,11 +5429,11 @@ declare class CompetitorAnalysisCardComponent {
|
|
|
5427
5429
|
protected linkClasses: _angular_core.Signal<"text-sm text-blue-400 hover:text-blue-300 underline transition-colors" | "text-sm text-blue-600 hover:text-blue-700 underline transition-colors">;
|
|
5428
5430
|
protected listItemClasses: _angular_core.Signal<"text-sm text-slate-200 leading-relaxed flex items-start" | "text-sm text-slate-600 leading-relaxed flex items-start">;
|
|
5429
5431
|
protected expandedSectionClasses: _angular_core.Signal<"p-4 rounded-lg bg-slate-700/30 border border-slate-600/30" | "p-4 rounded-lg bg-slate-50 border border-slate-200">;
|
|
5430
|
-
protected expandedIconClasses: _angular_core.Signal<"text-blue-
|
|
5432
|
+
protected expandedIconClasses: _angular_core.Signal<"text-blue-600" | "text-blue-400">;
|
|
5431
5433
|
protected expandedTitleClasses: _angular_core.Signal<"text-sm font-semibold text-white" | "text-sm font-semibold text-slate-900">;
|
|
5432
5434
|
protected expandedTextClasses: _angular_core.Signal<"text-sm text-slate-300 leading-relaxed" | "text-sm text-slate-600 leading-relaxed">;
|
|
5433
5435
|
protected expandButtonClasses: _angular_core.Signal<"text-sm font-medium text-blue-400" | "text-sm font-medium text-blue-600">;
|
|
5434
|
-
protected chevronClasses: _angular_core.Signal<"text-blue-
|
|
5436
|
+
protected chevronClasses: _angular_core.Signal<"text-blue-600" | "text-blue-400">;
|
|
5435
5437
|
protected toggleExpanded(): void;
|
|
5436
5438
|
protected navigateToItem(item: ProfileItemInterface): void;
|
|
5437
5439
|
onExpandItem(event: CustomEvent): void;
|